forked from hyperledger-caliper/caliper
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
91 lines (91 loc) · 2.36 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
{
"name": "@hyperledger/caliper-cli",
"description": "Hyperledger Caliper CLI, for convenience running of a performance benchmark to test blockchain technologies",
"version": "0.6.1-unstable",
"repository": {
"type": "git",
"url": "https://github.com/hyperledger/caliper",
"directory": "packages/caliper-cli"
},
"bin": {
"caliper": "caliper.js"
},
"main": "index.js",
"publishConfig": {
"access": "public"
},
"scripts": {
"pretest": "npm run licchk",
"licchk": "license-check-and-add",
"test": "npm run lint",
"lint": "npx eslint .",
"nyc": "nyc --reporter=text --reporter=clover mocha --recursive -t 10000"
},
"engines": {
"node": ">=18.19.0",
"npm": ">=6.14.16"
},
"dependencies": {
"@hyperledger/caliper-core": "0.6.1-unstable",
"@hyperledger/caliper-fabric": "0.6.1-unstable",
"@hyperledger/caliper-ethereum": "0.6.1-unstable",
"yargs": "15.3.1"
},
"devDependencies": {
"eslint": "^5.16.0",
"mocha": "3.4.2",
"nyc": "11.1.0",
"license-check-and-add": "2.3.6"
},
"license-check-and-add-config": {
"folder": ".",
"license": "../../LICENSE.txt",
"exact_paths_method": "EXCLUDE",
"exact_paths": [
"node_modules",
".nyc_output",
"coverage",
".gitignore",
"log"
],
"file_type_method": "EXCLUDE",
"file_types": [
".yml",
".md",
".log"
],
"insert_license": false,
"license_formats": {
"js": {
"prepend": "/*",
"append": "*/",
"eachLine": {
"prepend": "* "
}
},
"editorconfig|yaml": {
"prepend": "#",
"append": "#",
"eachLine": {
"prepend": "# "
}
}
}
},
"nyc": {
"exclude": [
"lib/**"
],
"reporter": [
"text-summary",
"html"
],
"all": true,
"check-coverage": false,
"statements": 5,
"branches": 8,
"functions": 7,
"lines": 5
},
"license": "Apache-2.0"
}