Updated linter

This commit is contained in:
Tim Schaub
2015-12-02 07:13:55 -08:00
parent 08e470c01b
commit 5283fd346b
8 changed files with 21 additions and 115 deletions

View File

@@ -22,7 +22,8 @@
},
"main": "lib/index.js",
"scripts": {
"test": "node tasks.js lint test"
"pretest": "eslint lib test",
"test": "mocha --recursive test"
},
"dependencies": {
"async": "0.2.9",
@@ -35,11 +36,16 @@
"wrench": "1.5.1"
},
"devDependencies": {
"mocha": "~1.18.2",
"chai": "~1.9.1",
"eslint": "^1.10.3",
"eslint-config-tschaub": "^2.0.0",
"jshint": "~2.4.4",
"chai": "~1.9.1"
"mocha": "~1.18.2"
},
"bin": {
"gh-pages": "bin/gh-pages"
},
"eslintConfig": {
"extends": "tschaub"
}
}