-
Notifications
You must be signed in to change notification settings - Fork 52
/
package.json
56 lines (56 loc) · 1.74 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
46
47
48
49
50
51
52
53
54
55
56
{
"name": "@fabric/soundtrack",
"version": "0.2.0",
"description": "experimental music streaming",
"repository": "git@github.com:FabricLabs/soundtrack.git",
"main": "scripts/cli.js",
"entry": "types/soundtrack.js",
"preferGlobal": true,
"engines": {
"node": "~12.16"
},
"bin": {
"soundtrack": "./scripts/cli.js"
},
"scripts": {
"cli": "node scripts/cli.js",
"coverage": "nyc npm test",
"docs": "npm run make:docs && ecstatic docs",
"make:coverage": "nyc report --reporter html",
"make:coverage:raw": "nyc report --reporter=text-lcov > reports/coverage.lcov",
"make:api": "jsdoc2md --configure jsdoc.json --files types/** node_modules/@fabric/core/types/{interface,chain,state}.js README.md > API.md",
"make:docs": "npm run make:api && node_modules/.bin/jsdoc -c jsdoc.json types API.md node_modules/@fabric/core/types/{interface,chain,state}.js -d docs/ && glob-run js-beautify --indent-size 2 -r docs/*.html",
"report:coverage": "nmp run make:coverage:raw && codecov",
"review:coverage": "npm run make:coverage && ecstatic reports/coverage",
"start": "node scripts/cli.js",
"test": "mocha tests"
},
"keywords": [
"fabric",
"bitcoin",
"soundtrack"
],
"author": "Fabric Labs",
"license": "MIT",
"dependencies": {
"@fabric/core": "martindale/fabric#peering-wallet",
"blessed": "^0.1.81"
},
"devDependencies": {
"codecov": "^3.8.0",
"ecstatic": "^4.1.4",
"glob-run": "^0.1.7",
"js-beautify": "^1.13.0",
"jsdoc": "FabricLabs/jsdoc#fabric",
"jsdoc-to-markdown": "^6.0.1",
"mocha": "^8.1.3",
"nyc": "^15.1.0"
},
"nyc": {
"exclude": [
"tests"
],
"report-dir": "./reports/coverage",
"temp-dir": "./reports/nyc"
}
}