forked from hyperledger-caliper/caliper
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
85 lines (85 loc) · 2.12 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
{
"name": "caliper-publish",
"description": "Hyperledger Caliper internal CLI for publishing packages",
"version": "0.5.1-unstable",
"private": true,
"repository": {
"type": "git",
"url": "https://github.com/hyperledger/caliper",
"directory": "packages/caliper-publish"
},
"main": "publish.js",
"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": ">=14.19.0",
"npm": ">=6.14.16"
},
"dependencies": {
"yargs": "15.3.1"
},
"devDependencies": {
"eslint": "^5.16.0",
"mocha": "3.4.2",
"nyc": "11.1.0",
"pm2": "2.10.1",
"verdaccio": "3.12.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|Dockerfile": {
"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"
}