Update deps and .jshintrc.

JSHint 2.1.4 comes with a `shelljs` option which we can use instead of defining the individual globals.
This commit is contained in:
XhmikosR 2013-06-27 09:35:34 +03:00 committed by PKEuS
parent 99ad6f3735
commit 9ae9c71d0d
2 changed files with 4 additions and 13 deletions

View File

@ -14,17 +14,8 @@
"noempty": true,
"plusplus": false,
"regexp": true,
"shelljs": true,
"strict": false,
"trailing": true,
"unused": true,
"globals": {
"cd": true,
"cp": true,
"target": true,
"echo": true,
"cat": true,
"exec": true,
"require": true,
"__dirname": true
}
"unused": true
}

View File

@ -19,9 +19,9 @@
"lint": "node run-tests"
},
"dependencies": {
"clean-css": "~1.0.6",
"clean-css": "~1.0.10",
"csslint": "~0.9.10",
"jshint": "~2.1.3",
"jshint": "~2.1.4",
"shelljs": "~0.1.4",
"uglify-js": "~2.3.6"
},