-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
44 lines (44 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
41
42
43
44
{
"name": "bs-tape",
"version": "0.3.0",
"description": "BuckleScript bindings for tape",
"repository": {
"type": "git",
"url": "https://github.com/jeffreywescott/bs-tape.git"
},
"keywords": [
"bucklescript",
"tape",
"testing"
],
"author": "Jeffrey Wescott <jeffrey.wescott@gmail.com>",
"license": "ISC",
"bugs": {
"url": "https://github.com/jeffreywescott/bs-tape/issues"
},
"homepage": "https://github.com/jeffreywescott/bs-tape#readme",
"scripts": {
"build": "bsb -make-world",
"build:watch": "bsb -make-world -w",
"build:clean": "bsb -clean-world",
"test": "yarn build && ./node_modules/.bin/nyc --all node ./lib/js/example/UseTape.bs.js | ./node_modules/.bin/tap-spec",
"test:coverage": "./node_modules/.bin/nyc report --reporter=text-lcov | ./node_modules/.bin/coveralls"
},
"dependencies": {
"tape": "^4.9.0"
},
"peerDependencies": {
"bs-platform": "^3.0.0"
},
"devDependencies": {
"bs-platform": "^3.0.0",
"coveralls": "^3.0.1",
"nyc": "^11.7.3",
"tap-spec": "^4.1.1"
},
"nyc": {
"include": [
"lib/js/src/**/*.bs.js"
]
}
}