-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 1.25 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
{
"name": "greetings-api",
"version": "1.0.0",
"description": "Just testing",
"main": "app/index.js",
"keywords": [
"express",
"sandbox"
],
"license": "MIT",
"private": true,
"dependencies": {
"bunyan": "^1.8.1",
"bunyan-request-logger": "^1.1.0",
"commander": "^2.9.0",
"express": "^4.13.4"
},
"scripts": {
"lint": "eslint .; exit 0",
"start": "node app/index.js start",
"start:dev": "LOG_LEVEL=DEBUG nodemon app/index.js start | bunyan -o short",
"stop": "node app/index.js stop",
"stop:dev": "node app/index.js stop | bunyan -o short",
"pretest": "rm -rf ./coverage",
"test": "LOG_LEVEL=ERROR istanbul cover _mocha -- -r test/unit/index.js app/**/*.test.js",
"test:e2e": "LOG_LEVEL=ERROR mocha --delay -r test/e2e/index.js test/e2e/*.spec.js",
"test:export-coverage": "cat ./coverage/lcov.info | coveralls"
},
"devDependencies": {
"babel-preset-es2015": "^6.9.0",
"chai": "^3.5.0",
"chai-http": "^3.0.0",
"coveralls": "^2.11.12",
"eslint": "^3.4.0",
"eslint-config-standard": "^6.0.0",
"eslint-plugin-promise": "^2.0.1",
"eslint-plugin-standard": "^2.0.0",
"istanbul": "^0.4.5",
"mocha": "^3.0.2",
"proxyquire": "^1.7.10",
"sinon": "^1.17.6"
}
}