-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 884 Bytes
/
Copy pathpackage.json
File metadata and controls
37 lines (37 loc) · 884 Bytes
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
{
"name": "demoServer",
"version": "1.1.4",
"repository": "https://github.ibm.com/CloudNetworking/networking-cicd",
"description": "This is a very basic RESTful API server written in NodeJS",
"main": "app.js",
"scripts": {
"code": "plato -r -q -d report components/*.js",
"coverage": "istanbul cover ./node_modules/mocha/bin/_mocha",
"start": "node app.js",
"test": "standard --fix && mocha"
},
"author": [
"Tobias Rahloff <rahloff@gmail.com>"
],
"license": "GPL-3.0",
"dependencies": {
"body-parser": "1.16.1",
"express": "4.14.0",
"nedb": "1.8.0"
},
"devDependencies": {
"chai": "3.5.0",
"chai-http": "3.0.0",
"debug": "2.6.1",
"istanbul": "0.4.5",
"mocha": "3.2.0",
"plato": "^1.7.0",
"standard": "8.6.0"
},
"standard": {
"ignore": [
"**/test/**",
"**/report/**"
]
}
}