We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6b549d3 commit cc5aaa1Copy full SHA for cc5aaa1
1 file changed
package.json
@@ -19,7 +19,7 @@
19
"dev": "webpack --config webpack.dev.js --progress --colors --watch",
20
"doctoc": "doctoc --title='# Table of Contents' README.md",
21
"lint": "standard",
22
- "jsonlint": "find . -not -path './node_modules/*' -type f -name '*.json' -o -type f -name '*.json.example' | while read json; do echo $json ; jq . $json; done",
+ "jsonlint": "find . -type f -not -ipath \"./node_modules/*\" \\( -name \"*.json\" -o -name \"*.json.*\" \\) | xargs -n 1 -I{} -- bash -c 'echo {}; jq . {} > /dev/null;'",
23
"start": "sequelize db:migrate && node app.js",
24
"mocha": "mocha --require intelli-espower-loader --exit ./test --recursive",
25
"coverage": "nyc mocha --require intelli-espower-loader --exit --recursive ./test",
0 commit comments