forked from hyperledger-caliper/caliper
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
105 lines (105 loc) · 3.02 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
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
{
"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",
"lint": "npx eslint .",
"list": "node ./scripts/list.js",
"nyc": "nyc mocha --recursive -t 10000",
"e2e": "node ./scripts/main.js",
"bench": "node ./scripts/main.js",
"startclient": "node ./src/comm/client/zoo-client.js",
"burrow-deps": "npm install --no-save @monax/[email protected] [email protected]",
"composer-deps": "npm install --no-save [email protected] [email protected] [email protected] [email protected] [email protected]",
"fabric-v1.3-deps": "npm install --no-save [email protected] [email protected] [email protected] [email protected]",
"fabric-v1.4-deps": "npm install --no-save [email protected] [email protected] [email protected] [email protected]",
"iroha-deps": "npm install --no-save [email protected]",
"sawtooth-deps": "npm install --no-save protocol-buffers sawtooth-sdk"
},
"engines": {
"node": ">=8.10.0",
"npm": ">=5.6.0"
},
"engine-strict": true,
"engineStrict": true,
"files": [
"*",
"src/comm/template/report.html"
],
"dependencies": {
"cbor": "^3.0.3",
"compare-versions": "^3.4.0",
"commander": "^2.19.0",
"dockerode": "^2.5.0",
"fs-extra": "^4.0.2",
"js-yaml": "^3.12.0",
"jsrsasign": "^8.0.4",
"moment": "^2.22.2",
"mustache": "^2.3.0",
"nconf": "^0.10.0",
"nconf-yaml": "^1.0.2",
"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",
"tmp": "0.0.33",
"winston": "^2.4.4",
"winston-daily-rotate-file": "^3.5.1"
},
"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/composer/**",
"src/contract/**",
"src/fabric/**",
"src/gui/**",
"src/iroha/**",
"scripts/**",
"test/**"
],
"reporter": [
"text-summary",
"html"
],
"all": true,
"check-coverage": false,
"statements": 5,
"branches": 8,
"functions": 7,
"lines": 5
},
"license": "Apache-2.0",
"licenses": [
{
"type": "Apache-2.0",
"url": "https://github.com/hyperledger/caliper/blob/master/LICENSE"
}
]
}