Remove NODE_ENV environment var in nom scripts

This commit is contained in:
Tankred Hase 2017-08-18 21:36:55 +08:00
parent 80c760681c
commit 74063915c7
1 changed files with 2 additions and 2 deletions

View File

@ -10,8 +10,8 @@
"node": ">=8"
},
"scripts": {
"start": ": ${NODE_ENV=development} && node index.js",
"test": ": ${NODE_ENV=development} && npm run test:lint && npm run test:unit && npm run test:integration",
"start": "node index.js",
"test": "npm run test:lint && npm run test:unit && npm run test:integration",
"test:lint": "eslint config src test *.js",
"test:unit": "mocha --opts test/mocha.opts ./test/unit/",
"test:integration": "mocha --opts test/mocha.opts ./test/integration",