-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
45 lines (45 loc) · 1.08 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
{
"name": "@digitake/bs-rest-api",
"version": "1.3.2",
"description": "BuckleScript REST API Builder",
"main": "index.js",
"repository": {
"type": "git",
"url": "https://github.com/digitake/bs-rest-api.git"
},
"scripts": {
"build": "bsb -make-world",
"start": "bsb -make-world -w",
"clean": "bsb -clean-world",
"setup-test": "npm install bs-platform @glennsl/bs-jest",
"test": "jest --testMatch='**/js/__tests__/*test.bs.js'",
"ci-test": "npm test -- --coverage --updateSnapshot"
},
"keywords": [
"BuckleScript",
"ReasonML",
"JavaScript",
"REST",
"Web",
"browser"
],
"author": "“digitake” <“digitake@gmail.com”>",
"license": "MIT",
"dependencies": {
"@glennsl/bs-json": "^5.0.2",
"bs-fetch": "^0.5.2",
"bs-promise-monad": "^0.4.3"
},
"peerDependencies": {
"bs-platform": "^7.3.1"
},
"devDependencies": {
"@glennsl/bs-jest": "^0.5.1",
"bs-platform": "^7.3.1"
},
"files": [
"src/",
"bsconfig.json"
],
"publishConfig": { "registry": "https://npm.pkg.github.com/" }
}