forked from wearetheledger/fabric-node-chaincode-utils
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 2.28 KB
/
package.json
File metadata and controls
65 lines (65 loc) · 2.28 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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
{
"name": "@solarlabru/fabric-chaincode-utils",
"version": "5.1.6",
"description": "",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "npm run clean && tsc",
"test": "mocha -r ts-node/register test/**/*.spec.ts --reporter spec",
"test:coverage": "nyc --no-clean mocha -r ts-node/register test/**/*.spec.ts --reporter spec",
"report-coverage": "nyc report --reporter=text-lcov > coverage.lcov && codecov",
"lint": "tslint --fix -c tslint.json './src/**/*.ts'",
"clean": "rimraf dist",
"prepare": "npm run build",
"watch": "npm-scripts-watcher",
"generate:docs": "rimraf docs && typedoc src --out docs --target ES6 --excludePrivate && touch docs/.nojekyll && touch docs/modules/.nojekyll"
},
"repository": {
"type": "git",
"url": "git+https://github.com/SolarLabRU/fabric-chaincode-utils.git"
},
"keywords": [],
"author": "SolarLabRU <https://github.com/SolarLabRU>",
"license": "MIT",
"bugs": {
"url": "https://github.com/SolarLabRU/fabric-chaincode-utils/issues"
},
"homepage": "https://github.com/SolarLabRU/fabric-chaincode-utils#readme",
"devDependencies": {
"@theledger/fabric-mock-stub": "^5.0.0",
"@theledger/fabric-shim-crypto-types": "^1.0.5",
"@types/chai": "^4.2.8",
"@types/mocha": "^5.2.1",
"@types/node": "^10.3.0",
"@types/winston": "^2.3.8",
"@types/yup": "^0.24.9",
"chai": "^4.2.0",
"codecov": "^3.2.0",
"coveralls": "^3.0.0",
"google-protobuf": "^3.7.0-rc.2",
"husky": "^1.3.1",
"istanbul": "^0.4.5",
"mocha": "^5.0.3",
"npm-scripts-watcher": "^1.0.2",
"nyc": "^15.0.0",
"rimraf": "^2.6.2",
"ts-node": "^8.6.2",
"tslint": "5.9.1",
"typedoc": "^0.15.2",
"typescript": "^3.7.5"
},
"dependencies": {
"@theledger/couchdb-query-engine": "^2.4.4",
"aguid": "^2.0.0",
"fabric-shim": "^1.4.2",
"fabric-shim-crypto": "^1.4.4",
"serialize-error": "^3.0.0",
"winston": "^2.4.4",
"yup": "^0.27.0"
},
"publishConfig": {
"registry": "https://registry.npmjs.org",
"access": "public"
}
}