summaryrefslogtreecommitdiff
path: root/package.json
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--package.json14
1 files changed, 9 insertions, 5 deletions
diff --git a/package.json b/package.json
index 7e38fda8..04b969e3 100644
--- a/package.json
+++ b/package.json
@@ -5,15 +5,17 @@
"main": "app.js",
"license": "MIT",
"scripts": {
- "test": "npm run-script standard",
+ "test": "npm run-script standard && npm run-script jsonlint",
+ "jsonlint": "find . -not -path './node_modules/*' -type f -name '*.json' | while read json; do echo $json ; jsonlint -q $json; done",
"standard": "node ./node_modules/standard/bin/cmd.js",
"dev": "webpack --config webpack.config.js --progress --colors --watch",
- "build": "webpack --config webpack.production.js --progress --colors",
+ "build": "webpack --config webpack.production.js --progress --colors --bail",
"postinstall": "bin/heroku",
- "start": "node app.js"
+ "start": "node app.js",
+ "doctoc": "doctoc --title='# Table of Contents' README.md"
},
"dependencies": {
- "Idle.Js": "github:shawnmclean/Idle.js",
+ "Idle.Js": "git+https://github.com/shawnmclean/Idle.js",
"async": "^2.1.4",
"aws-sdk": "^2.7.20",
"blueimp-md5": "^2.6.0",
@@ -96,7 +98,7 @@
"pg-hstore": "^2.3.2",
"prismjs": "^1.6.0",
"randomcolor": "^0.4.4",
- "raphael": "github:dmitrybaranovskiy/raphael",
+ "raphael": "git+https://github.com/dmitrybaranovskiy/raphael",
"request": "^2.79.0",
"reveal.js": "^3.3.0",
"scrypt": "^6.0.3",
@@ -151,6 +153,7 @@
"babel-runtime": "^6.20.0",
"copy-webpack-plugin": "^4.0.1",
"css-loader": "^0.26.1",
+ "doctoc": "^1.3.0",
"ejs-loader": "^0.3.0",
"exports-loader": "^0.6.3",
"expose-loader": "^0.7.1",
@@ -159,6 +162,7 @@
"html-webpack-plugin": "^2.25.0",
"imports-loader": "^0.7.0",
"json-loader": "^0.5.4",
+ "jsonlint": "^1.6.2",
"less": "^2.7.1",
"less-loader": "^2.2.3",
"optimize-css-assets-webpack-plugin": "^1.3.0",