forked from hyperledger-caliper/caliper
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
84 lines (84 loc) · 2.26 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
{
"name": "caliper",
"description": "Performance benchmarking for Hyperledger blockchain technologies.",
"version": "0.6.1-unstable",
"repository": {
"type": "git",
"url": "https://github.com/hyperledger/caliper"
},
"scripts": {
"pretest": "npm run licchk --workspaces",
"licchk": "license-check-and-add",
"test": "npm run test --workspaces",
"version-fix": "node ./packages/caliper-publish/publish.js version fix",
"force-clean": "./scripts/force-clean.sh"
},
"engines": {
"node": ">=18.19.0",
"npm": ">=7.24.2"
},
"dependencies": {},
"devDependencies": {
"license-check-and-add": "2.3.6",
"repolinter": "0.8.2"
},
"license-check-and-add-config": {
"folder": ".",
"license": "LICENSE.txt",
"exact_paths_method": "EXCLUDE",
"exact_paths": [
"CODEOWNERS",
"LICENSE",
".idea",
"node_modules",
".nyc_output",
"coverage",
"scripts",
".git",
".gitignore",
"packages",
"log"
],
"file_type_method": "EXCLUDE",
"file_types": [
".yml",
".md",
".log",
".html"
],
"insert_license": false,
"license_formats": {
"js|cto|qry|go": {
"prepend": "/*",
"append": "*/",
"eachLine": {
"prepend": "* "
}
},
"cfg|editorconfig|yaml|py": {
"prepend": "#",
"append": "#",
"eachLine": {
"prepend": "# "
}
},
"puml": {
"prepend": "'",
"append": "'",
"eachLine": {
"prepend": "' "
}
}
}
},
"license": "Apache-2.0",
"workspaces": [
"packages/caliper-core",
"packages/caliper-ethereum",
"packages/caliper-fabric",
"packages/caliper-cli",
"packages/caliper-publish",
"packages/caliper-tests-integration",
"packages/generator-caliper"
]
}