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

View File

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