diff options
author | Valentin Popov <valentineus@gmail.com> | 2017-09-05 08:45:02 +0300 |
---|---|---|
committer | Valentin Popov <valentineus@gmail.com> | 2017-09-05 08:45:02 +0300 |
commit | 9bbf6408667dac34afaf2ff6b7f0ce0d57b0e6b1 (patch) | |
tree | ea9e8e2096f6f370e76a756150b9ca197f85256c /package.json | |
parent | 4d7d17a98ae96cc2de7c398fa730512705741905 (diff) | |
download | iii-client-9bbf6408667dac34afaf2ff6b7f0ce0d57b0e6b1.tar.xz iii-client-9bbf6408667dac34afaf2ff6b7f0ce0d57b0e6b1.zip |
Removing unnecessary dependencies.
Diffstat (limited to 'package.json')
-rw-r--r-- | package.json | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/package.json b/package.json index 4c14819..c4f167c 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "iii-client", - "version": "2.0.0", + "version": "2.0.1", "description": "Simple API for communicating with the bot of the \"iii.ru\" service.", "homepage": "https://github.com/valentineus/iii-client", "license": "MIT", @@ -26,13 +26,12 @@ "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" }, "scripts": { "check": "eslint ./src/*", - "compile": "babel --presets es2015,babili --no-comments --source-maps --out-file ./lib/index.js ./src/index.js", + "compile": "babel --presets es2015 --minified --no-comments --source-maps --out-file ./lib/index.js ./src/index.js", "prepublish": "npm run check && npm run compile" } } |