We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 53c2d0b commit f70d2dfCopy full SHA for f70d2df
1 file changed
package.json
@@ -5,7 +5,8 @@
5
"main": "app.js",
6
"license": "MIT",
7
"scripts": {
8
- "test": "npm run-script standard",
+ "test": "npm run-script standard && npm run-script jsonlint",
9
+ "jsonlint": "find . -not -path './node_modules/*' -type f -name '*.json' | while read json; do echo $json ; jsonlint -q $json; done",
10
"standard": "node ./node_modules/standard/bin/cmd.js",
11
"dev": "webpack --config webpack.config.js --progress --colors --watch",
12
"build": "webpack --config webpack.production.js --progress --colors --bail",
@@ -159,6 +160,7 @@
159
160
"html-webpack-plugin": "^2.25.0",
161
"imports-loader": "^0.7.0",
162
"json-loader": "^0.5.4",
163
+ "jsonlint": "^1.6.2",
164
"less": "^2.7.1",
165
"less-loader": "^2.2.3",
166
"optimize-css-assets-webpack-plugin": "^1.3.0",
0 commit comments