-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.8 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.8 KB
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
{
"name": "@fabric/hub",
"version": "0.1.0-RC1",
"description": "Peer rendezvous for Fabric.",
"main": "scripts/hub.js",
"engines": {
"node": "16.17.1"
},
"scripts": {
"build": "node scripts/build.js",
"coverage": "c8 npm test",
"make:api": "jsdoc2md --configure jsdoc.json --files services/hub.js README.md > API.md",
"make:app": "node scripts/build.js",
"make:coverage": "npm run coverage && c8 report --reporter html",
"reports": "npm run report:install && npm run report:coverage",
"report:coverage": "npm run make:coverage && c8 report --reporter=text-lcov > reports/coverage.lcov",
"report:install": "rm -rf node_modules && echo \"\n\" > package-lock.json && echo \"$ npm i\" > reports/install.log && npm i >> reports/install.log",
"report:legal": "node_modules/.bin/license-checker --json > reports/licenses.json",
"start": "npm run make:app && node scripts/hub.js",
"sync": "npm run sync:specs",
"sync:specs": "scripts/import-specs.sh",
"test": "mocha tests"
},
"repository": {
"type": "git",
"url": "git+https://github.com/FabricLabs/hub.fabric.pub.git"
},
"keywords": [
"fabric",
"p2p",
"bitcoin",
"blockchain",
"sidechain"
],
"author": "Fabric Labs",
"license": "MIT",
"bugs": {
"url": "https://github.com/FabricLabs/hub.fabric.pub/issues"
},
"homepage": "https://github.com/FabricLabs/hub.fabric.pub#readme",
"dependencies": {
"@fabric/core": "FabricLabs/fabric#feature/v0.1.0-RC1",
"@fabric/http": "FabricLabs/fabric-http#feature/graphql"
},
"devDependencies": {
"@babel/preset-env": "7.20.2",
"@babel/preset-react": "7.18.6",
"c8": "7.11.3",
"jsdoc-to-markdown": "8.0.0",
"mocha": "10",
"react": "18.2.0",
"react-dom": "18.2.0",
"semantic-ui-react": "2.1.4"
}
}