1
mirror of https://github.com/valentineus/iii-client.git synced 2025-12-21 14:13:22 +04:00

Removing unnecessary dependencies.

This commit is contained in:
Valentin Popov
2017-09-05 05:45:02 +00:00
parent 4d7d17a98a
commit 9bbf640866
2 changed files with 110 additions and 294 deletions

View File

@@ -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"
}
}