forked from Kunstmaan/hyperledger-fabric-client-utils
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
40 lines (40 loc) · 1.19 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
{
"name": "@kunstmaan/hyperledger-fabric-client-utils",
"version": "0.5.0",
"description": "Client utilities for communicating with chaincode on a Hyperledger Fabric blockchain network.",
"main": "./src/index.js",
"scripts": {
"lint": "eslint .",
"test": "npm run lint && jest --runInBand",
"start-dev-network": "node test/startDevNetwork.js",
"test-watch": "jest --watch --runInBand"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Kunstmaan/hyperledger-fabric-client-utils.git"
},
"keywords": [
"Chaincode",
"Hyperledger",
"Fabric"
],
"author": "janb87",
"license": "MIT",
"bugs": {
"url": "https://github.com/Kunstmaan/hyperledger-fabric-client-utils/issues"
},
"homepage": "https://github.com/Kunstmaan/hyperledger-fabric-client-utils#readme",
"devDependencies": {
"@kunstmaan/hyperledger-fabric-chaincode-dev-setup": "^0.5.2",
"eslint": "^4.19.1",
"eslint-config-airbnb-base": "^12.1.0",
"eslint-plugin-import": "^2.11.0",
"eslint-plugin-jest": "^21.15.1",
"jest": "^22.4.3"
},
"dependencies": {
"fabric-client": "^1.3.0",
"lodash.droprightwhile": "^4.6.0",
"log4js": "^2.5.3"
}
}