...
|
...
|
@@ -5,9 +5,8 @@ |
|
|
"main": "app.js",
|
|
|
"scripts": {
|
|
|
"test": "./node_modules/.bin/ava",
|
|
|
"babel": "./node_modules/.bin/babel-node",
|
|
|
"dev": "./node_modules/.bin/nodemon -e js --ignore public/ --ignore packages/ starter.js",
|
|
|
"start": "./node_modules/.bin/babel-node app.js"
|
|
|
"dev": "nodemon -e js --ignore public/ --ignore packages/ --harmony app.js",
|
|
|
"start": "node --harmony app.js"
|
|
|
},
|
|
|
"repository": {
|
|
|
"type": "git",
|
...
|
...
|
@@ -17,12 +16,6 @@ |
|
|
"node",
|
|
|
"ci"
|
|
|
],
|
|
|
"babel": {
|
|
|
"presets": [
|
|
|
"es2015",
|
|
|
"stage-3"
|
|
|
]
|
|
|
},
|
|
|
"ava": {
|
|
|
"require": [
|
|
|
"babel-register"
|
...
|
...
|
@@ -69,13 +62,6 @@ |
|
|
"utility": "^1.8.0"
|
|
|
},
|
|
|
"devDependencies": {
|
|
|
"ava": "^0.14.0",
|
|
|
"babel-cli": "^6.9.0",
|
|
|
"babel-core": "^6.9.0",
|
|
|
"babel-polyfill": "^6.9.0",
|
|
|
"babel-preset-es2015": "^6.9.0",
|
|
|
"babel-preset-stage-3": "^6.5.0",
|
|
|
"babel-register": "^6.9.0",
|
|
|
"nodemon": "^1.9.2"
|
|
|
"ava": "^0.14.0"
|
|
|
}
|
|
|
} |
...
|
...
|
|