Merge pull request #836 from roramirez/check-wrong-configuration

Check wrong configuration
This commit is contained in:
Michael Teeuw
2017-04-07 08:42:04 +02:00
committed by GitHub
5 changed files with 79 additions and 4 deletions

View File

@@ -7,9 +7,10 @@
"start": "sh run-start.sh",
"install": "cd vendor && npm install",
"postinstall": "sh installers/postinstall/postinstall.sh",
"test": "./node_modules/mocha/bin/mocha tests --recursive",
"test:unit": "./node_modules/mocha/bin/mocha tests/unit --recursive",
"test:e2e": "./node_modules/mocha/bin/mocha tests/e2e --recursive"
"test": "NODE_ENV=test ./node_modules/mocha/bin/mocha tests --recursive",
"test:unit": "NODE_ENV=test ./node_modules/mocha/bin/mocha tests/unit --recursive",
"test:e2e": "NODE_ENV=test ./node_modules/mocha/bin/mocha tests/e2e --recursive",
"config:check": "node tests/configs/check_config.js"
},
"repository": {
"type": "git",
@@ -39,6 +40,7 @@
"grunt-markdownlint": "^1.0.13",
"grunt-stylelint": "latest",
"grunt-yamllint": "latest",
"jshint": "^2.9.4",
"http-auth": "^3.1.3",
"mocha": "^3.2.0",
"spectron": "^3.4.1",