aboutsummaryrefslogtreecommitdiff
path: root/package.json
diff options
context:
space:
mode:
authorValentin Popov <info@valentineus.link>2017-05-29 07:02:09 +0300
committerValentin Popov <info@valentineus.link>2017-05-29 07:02:09 +0300
commitc43c75e3d1c4c7a9b2fb71c7cf7e1086ea8fddf4 (patch)
tree0b1f3313312bdb00ef48f2a4fbfd43939f5140b3 /package.json
parentcb354fc09830944839ae4221a0bbe485d2cb64dd (diff)
downloadiii-client-c43c75e3d1c4c7a9b2fb71c7cf7e1086ea8fddf4.tar.xz
iii-client-c43c75e3d1c4c7a9b2fb71c7cf7e1086ea8fddf4.zip
Release of version 0.0.3.
Diffstat (limited to 'package.json')
-rw-r--r--package.json6
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"
}
}