-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
57 lines (57 loc) · 1.27 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
{
"name": "fabric-dev-servers",
"version": "0.0.14",
"description": "Helper Scripts to start Hyperledger Fabric v1.0 for development/test purposes",
"private": true,
"repository": {
"type": "git",
"url": "https://github.com/hyperledger/composer-tools.git"
},
"author": "Hyperledger Composer",
"license": "Apache-2.0",
"keywords": [
"hyperledger",
"blockchain",
"solutions"
],
"scripts": {
"licchk": "license-check-and-add",
"prepare": "npm run build-archives",
"build-archives": "gulp --gulpfile .travis/gulp.js",
"test": "npm run licchk"
},
"devDependencies": {
"gulp": "^3.9.1",
"gulp-gzip": "^1.4.0",
"gulp-tar": "^1.9.0",
"gulp-zip": "^4.0.0",
"license-check-and-add": "~2.3.0"
},
"license-check-and-add-config": {
"folder": ".",
"license": "LICENSE.txt",
"exact_paths_method": "EXCLUDE",
"exact_paths": [
"node_modules"
],
"file_type_method": "INCLUDE",
"file_types": [
".js",
".sh",
".md"
],
"license_formats": {
"js": {
"prepend": "/*",
"append": " */",
"eachLine": {
"prepend": " * "
}
},
"md": {
"file": "../../markdown-license.txt"
}
},
"insert_license": false
}
}