This repository has been archived by the owner on Nov 25, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 28
/
package.json
80 lines (80 loc) · 2.24 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
{
"name": "@theledger/fabric-mock-stub",
"version": "5.0.1",
"description": "Mock implementation of the hyperledger fabric-shim package for testing",
"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",
"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/wearetheledger/fabric-mock-stub.git"
},
"keywords": [],
"author": "TheLedger <https://github.com/wearetheledger>",
"license": "MIT",
"bugs": {
"url": "https://github.com/wearetheledger/fabric-mock-stub/issues"
},
"homepage": "https://github.com/wearetheledger/fabric-mock-stub#readme",
"devDependencies": {
"@types/chai": "^4.0.4",
"@types/lodash": "^4.14.104",
"@types/mocha": "^5.2.1",
"@types/node": "^10.3.0",
"@types/winston": "^2.3.8",
"chai": "^4.1.2",
"codecov": "^3.0.4",
"coveralls": "^3.0.0",
"husky": "^0.15.0-rc.8",
"istanbul": "^0.4.5",
"mocha": "^5.0.3",
"nyc": "^12.0.2",
"rimraf": "^2.6.2",
"tslint": "5.9.1",
"typedoc": "^0.16.2"
},
"dependencies": {
"@theledger/couchdb-query-engine": "^2.4.4",
"@types/google-protobuf": "^3.7.2",
"fabric-shim": "^1.4.x",
"google-protobuf": "^3.6.1",
"lodash": "^4.17.11",
"ts-node": "^8.6.2",
"typescript": "^3.7.4",
"winston": "^2.4.0"
},
"publishConfig": {
"registry": "https://registry.npmjs.org",
"access": "public"
},
"husky": {
"hooks": {
"pre-push": "npm run test && git add ."
}
},
"nyc": {
"include": [
"src/**/*.ts"
],
"extension": [
".ts"
],
"require": [
"ts-node/register"
],
"reporter": [
"text"
],
"sourceMap": true,
"instrument": true
}
}