2017-05-29 01:46:00 +03:00
|
|
|
{
|
2017-09-28 16:58:15 +04:00
|
|
|
"name": "iii-client",
|
|
|
|
"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",
|
|
|
|
"author": {
|
|
|
|
"name": "Valentin Popov",
|
|
|
|
"email": "info@valentineus.link",
|
|
|
|
"url": "https://valentineus.link/"
|
|
|
|
},
|
|
|
|
"bugs": {
|
|
|
|
"url": "https://github.com/valentineus/iii-client/issues"
|
|
|
|
},
|
|
|
|
"repository": {
|
|
|
|
"type": "git",
|
|
|
|
"url": "git://github.com/valentineus/iii-client.git"
|
|
|
|
},
|
|
|
|
"keywords": [
|
|
|
|
"simple",
|
|
|
|
"client",
|
|
|
|
"iii",
|
|
|
|
"bot"
|
|
|
|
],
|
2017-09-28 18:14:56 +04:00
|
|
|
"main": "./dist/standalone.js",
|
2017-09-28 16:58:15 +04:00
|
|
|
"devDependencies": {
|
|
|
|
"babel-cli": "^6.24.1",
|
|
|
|
"babel-core": "^6.24.1",
|
2017-09-28 17:09:43 +04:00
|
|
|
"babel-loader": "^7.1.2",
|
2017-09-28 16:58:15 +04:00
|
|
|
"babel-preset-es2015": "^6.24.1",
|
2017-09-28 17:09:43 +04:00
|
|
|
"eslint": "^3.19.0",
|
2017-09-28 18:14:56 +04:00
|
|
|
"uglify-js": "^3.1.2",
|
2017-09-28 17:09:43 +04:00
|
|
|
"webpack": "^3.6.0"
|
2017-09-28 16:58:15 +04:00
|
|
|
},
|
|
|
|
"scripts": {
|
2017-09-28 18:14:56 +04:00
|
|
|
"minify-standalone": "uglifyjs --mangle --compress --toplevel --source-map --output dist/standalone.min.js dist/standalone.js",
|
|
|
|
"minify-browser": "uglifyjs --mangle --compress --toplevel --source-map --output dist/bundle.min.js dist/bundle.js",
|
|
|
|
"minify": "npm run minify-browser && npm run minify-standalone",
|
|
|
|
"build-standalone": "babel --out-file dist/standalone.js src/index.js",
|
2017-09-28 17:09:43 +04:00
|
|
|
"build-browser": "webpack --config webpack.config.js",
|
2017-09-28 18:14:56 +04:00
|
|
|
"build": "npm run build-browser && npm run build-standalone",
|
2017-09-28 16:58:15 +04:00
|
|
|
"check": "eslint ./src/*"
|
|
|
|
}
|
2017-05-29 01:46:00 +03:00
|
|
|
}
|