forked from nemtsov/express-starter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 loc) · 1.34 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
{
"private": true,
"name": "babel-express-starter",
"version": "1.0.0",
"description": "Babel, Express, starter project",
"scripts": {
"dev": "nodemon server.js",
"lint": "eslint lib test",
"test": "npm run lint && npm run test-cover && npm run test-check-coverage",
"test-watch": "babel-node ./node_modules/.bin/_mocha --require should --recursive --reporter min --watch",
"test-cover": "babel-node ./node_modules/.bin/babel-istanbul cover _mocha -- --require should --recursive",
"test-check-coverage": "babel-istanbul check-coverage --statements 100 --functions 100 --branches 100 --lines 100"
},
"license": "MIT",
"dependencies": {
"babel-preset-nodejs-lts": "^1.2.1",
"babel-register": "^6.5.1",
"body-parser": "^1.14.2",
"cors": "^2.7.1",
"dotenv-safe": "^2.2.0",
"express": "^4.13.4",
"express-async-wrap": "^1.0.0",
"namespaced-console-logger": "^1.0.1",
"request-promise": "^2.0.0"
},
"engines": {
"node": ">=4.2.0"
},
"babel": {
"presets": [
"nodejs-lts"
]
},
"devDependencies": {
"babel-cli": "^6.5.1",
"babel-eslint": "^4.1.8",
"babel-istanbul": "^0.6.0",
"eslint": "^1.10.3",
"mocha": "^2.4.5",
"nodemon": "^1.8.1",
"proxyquire": "^1.7.4",
"require-directory": "^2.1.1",
"should": "^8.2.1",
"sinon": "^1.17.3"
}
}