-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
75 lines (75 loc) · 1.75 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
{
"name": "nimble-logistic-contract",
"version": "0.0.1",
"description": "",
"main": "dist/index.js",
"scripts": {
"lint": "tslint -c tslint.json 'src/**/*.ts'",
"pretest": "npm run lint",
"test": "nyc mocha -r ts-node/register src/**/*.spec.ts",
"start": "fabric-chaincode-node start",
"build": "tsc",
"build:watch": "tsc -w",
"prepublishOnly": "npm run build"
},
"engineStrict": true,
"author": "Ayeshmantha Perera",
"license": "Apache-2.0",
"devDependencies": {
"@types/chai": "^4.1.7",
"@types/chai-as-promised": "^7.1.0",
"@types/mocha": "^5.2.7",
"@types/mockery": "^1.4.29",
"@types/node": "11.12.2",
"@types/sinon": "^5.0.7",
"@types/sinon-chai": "^3.2.1",
"@types/uuid": "^3.4.4",
"chai": "^4.2.0",
"chai-as-promised": "^7.1.1",
"mocha": "^5.2.0",
"mockery": "^2.1.0",
"nodemon": "^1.18.10",
"nyc": "^14.0.0",
"sinon": "^7.1.1",
"sinon-chai": "^3.3.0",
"ts-mock-imports": "^1.2.3",
"ts-node": "^8.3.0",
"ts-watch": "^1.0.8",
"tsc-watch": "^2.1.2",
"tslint": "5.14.0",
"typescript": "^3.5.2",
"winston": "^3.2.1"
},
"dependencies": {
"@ampretia/x509": "^0.4.0",
"asn1js": "^2.0.22",
"esm": "^3.2.25",
"fabric-contract-api": "^2.0.0",
"fabric-shim": "^2.0.0",
"pkijs": "^2.1.76",
"reflect-metadata": "^0.1.13",
"reflect-params": "1.0.1",
"uuid": "^3.3.2"
},
"nyc": {
"extension": [
".ts"
],
"exclude": [
"coverage/**",
"dist/**",
"**/*.spec.ts",
"functionalTests/**"
],
"reporter": [
"text-summary",
"html"
],
"all": true,
"check-coverage": true,
"statements": 50,
"branches": 50,
"functions": 50,
"lines": 50
}
}