diff options
Diffstat (limited to 'package.json')
-rw-r--r-- | package.json | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/package.json b/package.json index a8e8e0a..0cc805d 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "iii-client", - "version": "0.0.2", + "version": "0.0.3", "description": "Simple API for communicating with the bot of the \"iii.ru\" service.", "homepage": "https://github.com/valentineus/iii-client", "license": "MIT", @@ -27,12 +27,14 @@ "babel-cli": "^6.24.1", "babel-core": "^6.24.1", "babel-preset-es2015": "^6.24.1", + "eslint": "^3.19.0", "jsdoc": "^3.4.3", "minami": "^1.2.3" }, "scripts": { + "check": "eslint ./src/*", "jsdoc": "jsdoc --template ./node_modules/minami --destination ./docs ./src/index.js", "compile": "babel --presets es2015 --minified --no-comments --source-maps --out-dir ./lib/ ./src/", - "prepublish": "npm run compile && npm run jsdoc" + "prepublish": "npm run check && npm run jsdoc && npm run compile" } } |