diff options
author | Valentin Popov <info@valentineus.link> | 2017-07-29 03:39:18 +0300 |
---|---|---|
committer | Valentin Popov <info@valentineus.link> | 2017-07-29 03:39:18 +0300 |
commit | 4d7d17a98ae96cc2de7c398fa730512705741905 (patch) | |
tree | 4b0f9fd667433358560ab84e90de1b306985fd71 /package.json | |
parent | a7e3aec6138e60e4ffc208d07670965b61dddab4 (diff) | |
download | iii-client-4d7d17a98ae96cc2de7c398fa730512705741905.tar.xz iii-client-4d7d17a98ae96cc2de7c398fa730512705741905.zip |
Release of version 2.0.0.
Diffstat (limited to 'package.json')
-rw-r--r-- | package.json | 12 |
1 files changed, 5 insertions, 7 deletions
diff --git a/package.json b/package.json index 3c877aa..4c14819 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "iii-client", - "version": "1.1.3", + "version": "2.0.0", "description": "Simple API for communicating with the bot of the \"iii.ru\" service.", "homepage": "https://github.com/valentineus/iii-client", "license": "MIT", @@ -26,15 +26,13 @@ "devDependencies": { "babel-cli": "^6.24.1", "babel-core": "^6.24.1", + "babel-preset-babili": "^0.1.4", "babel-preset-es2015": "^6.24.1", - "eslint": "^3.19.0", - "jsdoc": "^3.4.3", - "minami": "^1.2.3" + "eslint": "^3.19.0" }, "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 check && npm run jsdoc && npm run compile" + "compile": "babel --presets es2015,babili --no-comments --source-maps --out-file ./lib/index.js ./src/index.js", + "prepublish": "npm run check && npm run compile" } } |