-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.08 KB
/
package.json
File metadata and controls
42 lines (42 loc) · 1.08 KB
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
{
"name": "@kunstmaan/hyperledger-fabric-node-chaincode-utils",
"version": "0.4.0",
"description": "Utilities for writing Hyperledger Fabric chaincode in node.js",
"main": "./src/index.js",
"scripts": {
"test": "npm run lint",
"lint": "eslint ."
},
"repository": {
"type": "git",
"url": "git+https://github.com/Kunstmaan/hyperledger-fabric-node-chaincode-utils.git"
},
"keywords": [
"chaincode",
"hyperledger",
"fabric",
"node.js"
],
"author": "Kunstmaan",
"license": "MIT",
"bugs": {
"url": "https://github.com/Kunstmaan/hyperledger-fabric-node-chaincode-utils/issues"
},
"homepage": "https://github.com/Kunstmaan/hyperledger-fabric-node-chaincode-utils#readme",
"dependencies": {
"grpc": "^1.8.4",
"js-sha3": "^0.7.0",
"jsrsasign": "^8.0.5",
"lodash": "^4.17.4",
"log4js": "^2.5.2"
},
"devDependencies": {
"eslint": "^4.17.0",
"eslint-config-airbnb-base": "^12.1.0",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-jest": "^21.7.0"
},
"peerDependencies": {
"fabric-shim": "^1.1.2"
}
}