-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
40 lines (40 loc) · 1.13 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
{
"name": "bs-containers",
"version": "0.0.1",
"description": "This is a Bucklescript port of the ocaml-containers project",
"main": "index.js",
"scripts": {
"start": "bsb -w",
"doc": "ocamldoc -html -I lib/bs/src -I doc/stdlib-cmi -d doc src/*.mli",
"build": "bsb -make-world",
"clean": "bsb -clean-world && rm -rf lib",
"coverage": "npm run build && nyc ava && nyc report --reporter=html",
"test": "npm run build && jest",
"watch:bsb": "bsb -make-world -w",
"watch:jest": "jest --watchAll",
"watch:screen": "screen -c .screenrc"
},
"keywords": [],
"author": "Bob Fang",
"license": "BSD-2-Clause",
"devDependencies": {
"bs-platform": "^1.7.1",
"nyc": "^10.1.2",
"tap-nyan": "^1.1.0",
"infinite-jest": "glennsl/infinite-jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/dorafmon/bscontainers.git"
},
"bugs": {
"url": "https://github.com/dorafmon/bscontainers/issues"
},
"homepage": "https://github.com/dorafmon/bscontainers#readme",
"jest": {
"testRegex": "lib/js/tests/test.js"
},
"nyc": {
"report-dir": "./doc/coverage"
}
}