-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
82 lines (82 loc) · 1.66 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
{
"name": "drone-journey",
"version": "0.0.36",
"description": "My Smart Contract",
"main": "index.js",
"engines": {
"node": ">=8",
"npm": ">=5"
},
"scripts": {
"lint": "eslint .",
"test-watch": "ava --verbose --watch",
"test": "nyc ava",
"test-contract": "mocha --watch",
"start": "fabric-chaincode-node start"
},
"engineStrict": true,
"author": "John Doe",
"license": "Apache-2.0",
"dependencies": {
"fabric-contract-api": "1.4.1",
"fabric-shim": "1.4.1",
"uuid": "^3.3.3"
},
"devDependencies": {
"@types/chai": "^4.2.6",
"@types/chai-as-promised": "^7.1.2",
"@types/fs-extra": "^8.0.1",
"@types/mocha": "^5.2.7",
"@types/uuid": "^3.4.6",
"ava": "^2.4.0",
"chai": "^4.2.0",
"chai-as-promised": "^7.1.1",
"eslint": "^5.9.0",
"fabric-client": "^1.4.3",
"fabric-network": "^1.4.2",
"fs-extra": "^8.1.0",
"mocha": "^5.2.0",
"nyc": "^14.0.0",
"sinon": "^7.1.1",
"sinon-chai": "^3.3.0",
"ts-node": "^8.5.2",
"typescript": "^3.7.2",
"winston": "^3.2.1"
},
"ava": {
"files": [
"functionalTests/*.spec.ts"
],
"sources": [
"lib/**/*",
"services/**/*"
],
"compileEnhancements": false,
"extensions": [
"ts"
],
"require": [
"ts-node/register"
],
"environmentVariables": {
"NODE_ENV": "dev"
}
},
"nyc": {
"exclude": [
".eslintrc.js",
"coverage/**",
"test/**"
],
"reporter": [
"text-summary",
"html"
],
"all": true,
"check-coverage": true,
"statements": 100,
"branches": 100,
"functions": 100,
"lines": 100
}
}