forked from hyperledger-caliper/caliper
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
89 lines (89 loc) · 2 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
{
"name": "caliper",
"version": "0.1.0",
"repository": {
"type": "git",
"url": "https://github.com/hyperledger/caliper"
},
"scripts": {
"test": "npm run lint && npm run nyc && npm run e2e",
"nyc": "nyc mocha --recursive -t 10000",
"e2e": "node ./scripts/test.js",
"lint": "npx eslint .",
"list": "node ./scripts/list.js",
"startclient": "node ./src/comm/client/zoo-client.js"
},
"engines": {
"node": ">=8.10.0",
"npm": ">=5.6.0"
},
"engine-strict": true,
"engineStrict": true,
"dependencies": {
"cbor": "^3.0.3",
"commander": "^2.11.0",
"dockerode": "^2.5.0",
"fs-extra": "^4.0.2",
"jsrsasign": "^8.0.4",
"mustache": "^2.3.0",
"node-zookeeper-client": "^0.2.2",
"ora": "^1.2.0",
"pidusage": "^1.1.6",
"ps-node": "^0.1.6",
"request": "^2.81.0",
"request-promise": "^4.2.1",
"systeminformation": "^3.23.7",
"table": "^4.0.1",
"tape": "^4.8.0",
"tape-promise": "^1.1.0"
},
"devDependencies": {
"chai": "^3.5.0",
"eslint": "^4.19.1",
"mocha": "3.4.2",
"nyc": "11.1.0",
"rewire": "^4.0.0",
"sinon": "2.3.8"
},
"optionalDependencies": {
"ajv": "^6.0.0"
},
"nyc": {
"exclude": [
"benchmark/**",
"docs/**",
"network/**",
"coverage/**",
"src/comm/*.js",
"src/comm/client/**",
"src/comm/rate-control/pidRate.js",
"src/comm/rate-control/rateControl.js",
"src/comm/rate-control/rateInterface.js",
"src/composer/**",
"src/contract/**",
"src/fabric/**",
"src/gui/**",
"src/iroha/**",
"src/sawtooth/**",
"scripts/**",
"test/**"
],
"reporter": [
"text-summary",
"html"
],
"all": true,
"check-coverage": true,
"statements": 100,
"branches": 100,
"functions": 100,
"lines": 100
},
"license": "Apache-2.0",
"licenses": [
{
"type": "Apache-2.0",
"url": "https://github.com/hyperledger/caliper/blob/master/LICENSE"
}
]
}