-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
40 lines (40 loc) · 1.22 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": "coindex",
"version": "0.2.0",
"description": "a cryptocurrency index for the masses",
"main": "lib/js/src/Main.bs.js",
"repository": "https://github.com/jeffreywescott/coindex",
"author": "Jeffrey Wescott <[email protected]>",
"license": "ISC",
"engines": {
"node": "~8.11"
},
"scripts": {
"build": "./node_modules/.bin/bsb -make-world",
"build:clean": "./node_modules/.bin/bsb -clean-world",
"build:watch": "./node_modules/.bin/bsb -make-world -w",
"rebalance": "yarn run build && node lib/js/src/Main.bs.js",
"test": "yarn build && ./node_modules/.bin/nyc --all ./node_modules/.bin/tape lib/js/test/**/*.bs.js | ./node_modules/.bin/tap-spec",
"test:coverage": "./node_modules/.bin/nyc report --reporter=text-lcov | ./node_modules/.bin/coveralls"
},
"dependencies": {
"@glennsl/bs-json": "^1.3.2",
"bs-fetch": "^0.2.1",
"bs-node": "reasonml-community/bs-node",
"bs-platform": "^3.0.0",
"json2csv": "^4.0.3",
"minimist": "^1.2.0",
"node-fetch": "^2.1.2"
},
"devDependencies": {
"bs-tape": "^0.2.1",
"coveralls": "^3.0.1",
"nyc": "^11.7.3",
"tap-spec": "^4.1.1"
},
"nyc": {
"include": [
"lib/js/src/**/*.bs.js"
]
}
}