-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 1.43 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
{
"name": "es6-babel-node-sample-1",
"version": "1.0.0",
"description": "",
"main": "index.js",
"dependencies": {
"body-parser": "^1.15.2",
"express": "^4.14.0",
"helmet": "^2.2.0",
"morgan": "^1.7.0"
},
"scripts": {
"minimum-required-coverage": "nyc check-coverage --branches 90 --lines 90 --functions 90 --branches 90",
"report-coverage": "cat ./coverage/lcov.info | codecov",
"watch:test": "node_modules/mocha/bin/_mocha src/index.test.js -w --compilers js:babel-core/register",
"test": "_mocha src/index.test.js --compilers js:babel-core/register",
"cover": "nyc npm t",
"dev": "babel-node src/index.js",
"prestart": "babel src --out-dir dist",
"start": "DEBUG=express:* node dist/index.js"
},
"devDependencies": {
"babel-cli": "^6.14.0",
"babel-preset-es2015": "^6.14.0",
"babel-preset-stage-2": "^6.13.0",
"babel-register": "^6.14.0",
"chai": "^3.5.0",
"codecov": "^1.0.1",
"commitizen": "^2.8.6",
"ghooks": "^1.3.2",
"istanbul": "^0.4.5",
"mocha": "^3.0.2",
"nodemon": "^1.10.2",
"nyc": "^8.3.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/akanippayyur/es6-babel-node-sample-1.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/akanippayyur/es6-babel-node-sample-1/issues"
},
"homepage": "https://github.com/akanippayyur/es6-babel-node-sample-1#readme"
}