0
mirror of https://github.com/valentineus/iii-client.git synced 2025-04-28 01:41:25 +03:00
iii-client/package.json

48 lines
1.7 KiB
JSON
Raw Normal View History

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",
"babel-preset-es2015": "^6.24.1",
2017-09-28 20:47:06 +04:00
"babel-preset-es2015-rollup": "^3.0.0",
2017-09-28 17:09:43 +04:00
"eslint": "^3.19.0",
2017-09-28 20:47:06 +04:00
"rollup": "^0.50.0",
"rollup-plugin-babel": "^3.0.2",
"rollup-plugin-node-builtins": "^2.1.2",
"rollup-plugin-node-globals": "^1.1.0",
"uglify-js": "^3.1.2"
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",
2017-09-28 20:47:06 +04:00
"build-standalone": "babel src/index.js --out-file dist/standalone.js",
"build-browser": "rollup --config rollup.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
}