forked from hyperledger/fabric-sdk-node
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
93 lines (93 loc) · 2.45 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
{
"name": "fabric-sdk-node",
"version": "1.3.1-snapshot",
"testFabricVersion": "1.3.0",
"testFabricThirdParty": "0.4.13",
"docsLatestVersion": "release-1.3",
"main": "index.js",
"repository": {
"type": "gerrit",
"url": "https://gerrit.hyperledger.org/r/#/admin/projects/fabric-sdk-node"
},
"homepage": "https://www.hyperledger.org/projects/fabric",
"author": {
"name": "hyperledger/fabric",
"email": "[email protected]"
},
"scripts": {
"test": "gulp test-headless",
"compile": "tsc --project test/typescript",
"compile:w": "tsc --project test/typescript --watch"
},
"devDependencies": {
"@cloudant/cloudant": "^2.1.0",
"bn.js": "^4.11.8",
"bunyan": "^1.8.10",
"chai": "^4.1.2",
"chai-as-promised": "^7.1.1",
"del": "^3.0.0",
"elliptic": "^6.3.2",
"eslint": "^5.1.0",
"fabric-ca-client": "file:./fabric-ca-client",
"fabric-client": "file:./fabric-client",
"fabric-network": "file:./fabric-network",
"fs-extra": "^6.0.1",
"gulp": "^3.9.1",
"gulp-add-src": "^1.0.0",
"gulp-debug": "^4.0.0",
"gulp-eslint": "^3.0.1",
"gulp-jsdoc3": "^2.0.0",
"gulp-mocha": "^6.0.0",
"gulp-replace": "^1.0.0",
"gulp-shell": "^0.6.3",
"gulp-tape": "0.0.9",
"gulp-watch": "^5.0.0",
"gunzip-maybe": "^1.3.1",
"heapdump": "^0.3.9",
"intercept-stdout": "^0.1.2",
"jsrsasign": "^7.2.2",
"log4js": "^2.6.1",
"mocha": "5.2.0",
"mock-couch": "git+https://github.com/jimthematrix/mock-couch.git",
"mockery": "^2.1.0",
"nano": "^6.4.4",
"nyc": "^12.0.2",
"require-dir": "^1.0.0",
"rewire": "^4.0.1",
"rimraf": "2.6.2",
"sinon": "6.1.3",
"tap-colorize": "^1.2.0",
"tape": "^4.5.1",
"tape-promise": "^3.0.0",
"tar-fs": "^1.13.0",
"targz": "^1.0.1",
"typescript": "2.8.3",
"winston": "^2.2.0",
"x509": "^0.3.2"
},
"nyc": {
"include": [
"fabric-network/lib/**/*.js",
"fabric-client/lib/**/*.js",
"fabric-ca-client/lib/FabricCAClientImpl.js",
"fabric-ca-client/lib/helper.js",
"fabric-ca-client/lib/IdentityService.js",
"fabric-ca-client/lib/AffiliationService.js"
],
"reporter": [
"lcov",
"json",
"text",
"text-summary",
"cobertura"
],
"cache": true
},
"license": "Apache-2.0",
"licenses": [
{
"type": "Apache-2.0",
"url": "https://github.com/hyperledger/fabric/blob/master/LICENSE"
}
]
}