-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
69 lines (69 loc) · 1.67 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
{
"name": "node-red-contrib-fabric",
"version": "0.0.3",
"description": "Hyperledger Fabric nodes for node-red",
"dependencies": {
"fabric-network": "1.4.0",
"fabric-client": "1.4.0"
},
"devDependencies": {
"eslint": "^5.14.1",
"license-check-and-add": "2.3.1"
},
"engines": {
"node": ">=8.9.5"
},
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "https://github.com/caroline-church/node-red-contrib-fabric"
},
"keywords": [
"node-red",
"fabric",
"blockchain",
"hyperledger",
"solutions"
],
"node-red": {
"nodes": {
"fabric": "nodes/fabric.js",
"fabric-config": "nodes/fabric-config.js"
}
},
"scripts": {
"licchk": "license-check-and-add",
"test": "npm run licchk"
},
"author": "Caroline Church",
"license-check-and-add-config": {
"folder": ".",
"license": "LICENSE.txt",
"exact_paths_method": "EXCLUDE",
"exact_paths": [
"node_modules"
],
"file_type_method": "EXCLUDE",
"file_types": [
".yml"
],
"insert_license": false,
"license_formats": {
"editorconfig": {
"eachLine": {
"prepend": "# "
}
},
"js": {
"prepend": "/*",
"append": " */",
"eachLine": {
"prepend": " * "
}
},
"md": {
"file": "../../markdown-license.txt"
}
}
}
}