forked from hyperledger-caliper/caliper
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
71 lines (71 loc) · 1.96 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
{
"name": "caliper",
"description": "Performance benchmarking for Hyperledger blockchain technologies. You must install [Lerna](https://lernajs.io) to build this multi-package repository.",
"version": "0.4.3-unstable",
"repository": {
"type": "git",
"url": "https://github.com/hyperledger/caliper"
},
"scripts": {
"repoclean": "lerna clean",
"bootstrap": "lerna bootstrap",
"pretest": "npm run licchk",
"licchk": "license-check-and-add",
"test": "lerna run test",
"version-fix": "node ./packages/caliper-publish/publish.js version fix",
"force-clean": "./scripts/force-clean.sh"
},
"engines": {
"node": ">=10.22.0",
"npm": ">=6.14.0"
},
"dependencies": {},
"devDependencies": {
"lerna": "^3.18.3",
"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": "# "
}
}
}
},
"license": "Apache-2.0"
}