forked from hyperledger-caliper/caliper
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
95 lines (95 loc) · 2.41 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
{
"name": "@hyperledger/generator-caliper",
"description": "Yeoman generator for Hyperledger Caliper",
"version": "0.5.1-unstable",
"author": "Lynn Muswere",
"homepage": "https://hyperledger.github.io/caliper/",
"repository": {
"type": "git",
"url": "https://github.com/hyperledger/caliper"
},
"main": "generators/callback/index.js",
"keywords": [
"yeoman-generator",
"hyperledger",
"caliper"
],
"scripts": {
"pretest": "npm run licchk",
"licchk": "license-check-and-add",
"test": "npm run lint && npm run nyc",
"lint": "npx eslint .",
"nyc": "nyc --reporter=text --reporter=clover mocha --recursive -t 10000"
},
"engines": {
"node": ">=18.19.0",
"npm": ">=6.14.16"
},
"files": [
"generators"
],
"dependencies": {
"yeoman-generator": "3.1.1",
"camelcase": "6.0.0"
},
"devDependencies": {
"chai": "^3.5.0",
"eslint": "^5.16.0",
"js-yaml": "^3.13.1",
"license-check-and-add": "2.3.6",
"mocha": "3.4.2",
"nyc": "11.1.0",
"yeoman-assert": "^3.1.1",
"yeoman-test": "^2.3.0"
},
"license": "Apache-2.0",
"license-check-and-add-config": {
"folder": ".",
"license": "../../LICENSE.txt",
"exact_paths_method": "EXCLUDE",
"exact_paths": [
"node_modules",
".nyc_output",
"coverage"
],
"file_type_method": "EXCLUDE",
"file_types": [
".yml",
".md"
],
"insert_license": false,
"license_formats": {
"js": {
"prepend": "/*",
"append": "*/",
"eachLine": {
"prepend": "* "
}
},
"editorconfig|yaml": {
"prepend": "#",
"append": "#",
"eachLine": {
"prepend": "# "
}
}
}
},
"nyc": {
"exclude": [
"test/**",
"coverage/**",
"generators/benchmark/templates/**"
],
"reporter": [
"text-summary",
"html"
],
"all": true,
"check-coverage": true,
"statements": 1,
"branches": 1,
"functions": 1,
"lines": 1
}
}