-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
98 lines (98 loc) · 2.71 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
94
95
96
97
98
{
"engines": {
"composer": ""
},
"name": "agricultureinput-network",
"version": "0.0.1",
"description": "Network for keep track of agriculture inputs",
"scripts": {
"prepublish": "mkdirp ./agricultureinput-network/dist && composer archive create --sourceType dir --sourceName . -a ./agricultureinput-network/dist/agricultureinput-network.bna",
"pretest": "npm run lint",
"lint": "eslint ./agricultureinput-network",
"postlint": "npm run licchk",
"licchk": "license-check",
"postlicchk": "npm run doc",
"doc": "jsdoc --readme ./README.md --pedantic --recurse -c jsdoc.json -d agricultureinput-network/out",
"test-inner": "mocha -t 0 --recursive && cucumber-js",
"test-cover": "nyc npm run test-inner",
"test": "mocha agricultureinput-network/test --recursive -t 4000",
"start": "node index"
},
"author": "Raj Dhamsaniya, SEAS student",
"license": "Apache-2.0",
"devDependencies": {
"extend": "",
"browserfs": "^1.2.0",
"chai": "^3.5.0",
"chai-as-promised": "^6.0.0",
"composer-connector-embedded": "^0.16.0",
"composer-cucumber-steps": "^0.16.0",
"composer-admin": "^0.16.0",
"composer-client": "^0.16.0",
"composer-common": "^0.16.0",
"composer-runtime": "^0.16.0",
"composer-runtime-hlfv1": "^0.16.0",
"cucumber": "^2.2.0",
"eslint": "^3.6.1",
"istanbul": "^0.4.5",
"jsdoc": "^3.5",
"license-check": "^1.1.5",
"mkdirp": "^0.5.1",
"mocha": "^3.2.0",
"moment": "^2.17.1",
"nyc": "^11.0.2"
},
"license-check-config": {
"src": [
"**/*.js",
"!./coverage/**/*",
"!./node_modules/**/*",
"!./agricultureinput-network/out/**/*",
"!./HTML/js-utils/**/*",
"!./agricultureinput-network/scripts/**/*"
],
"path": "header.txt",
"blocking": true,
"logInfo": false,
"logError": true
},
"nyc": {
"exclude": [
"coverage/**",
"agricultureinput-network/features/**",
"agricultureinput-network/out/**",
"agricultureinput-network/test/**"
],
"reporter": [
"text-summary",
"html"
],
"all": true,
"check-coverage": true,
"statements": 100,
"branches": 100,
"functions": 100,
"lines": 100
},
"dependencies": {
"body-parser": "^1.18.1",
"cfenv": "^1.0.4",
"connect-busboy": "0.0.2",
"cookie-parser": "^1.4.3",
"date-format": "",
"ejs": "",
"express": "^4.15.4",
"express-session": "^1.15.5",
"fabric-client": "^1.0.2",
"fs": "0.0.1-security",
"http": "0.0.0",
"https": "^1.0.0",
"mime": "^2.0.2",
"os": "^0.1.1",
"path": "^0.12.7",
"sleep": "^5.1.1",
"uuid": "^3.1.0",
"vcap_services": "^0.3.4",
"websocket": "^1.0.24"
}
}