We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f1c48ce commit fa14f47Copy full SHA for fa14f47
Makefile
package.json
@@ -36,6 +36,11 @@
36
"uglify-js": "^3.10.0"
37
},
38
"scripts": {
39
+ "build": "npm run build:jison && npm run build:mv && npm run build:web && npm run build:webmin",
40
+ "build:jison": "jison src/jsonlint.y src/jsonlint.l",
41
+ "build:mv": "node -e require('fs').renameSync('jsonlint.js','lib/jsonlint-ext.js')",
42
+ "build:web": "node scripts/bundle.js > web/jsonlint-ext.js",
43
+ "build:webmin": "node scripts/bundle.js | uglifyjs > web/jsonlint-ext.min.js",
44
"test": "node test/all-tests.js"
45
46
"optionalDependencies": {}
0 commit comments