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.5 KiB
JSON
Raw Permalink Normal View History

2017-05-29 01:46:00 +03:00
{
2017-09-28 16:58:15 +04:00
"name": "iii-client",
2017-11-08 05:28:32 +04:00
"version": "3.2.2",
2017-09-28 16:58:15 +04:00
"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 23:10:53 +04:00
"chai": "^4.1.2",
2017-09-28 17:09:43 +04:00
"eslint": "^3.19.0",
2017-09-28 23:10:53 +04:00
"mocha": "^3.5.3",
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",
2017-10-09 19:36:14 +04:00
"rollup-plugin-node-globals": "^1.1.0",
"uuid": "^3.1.0"
2017-09-28 16:58:15 +04:00
},
"scripts": {
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",
"test": "mocha src/test.js --compilers js:babel-core/register",
2017-09-28 23:10:53 +04:00
"check": "eslint ./src/index.js"
2017-09-28 16:58:15 +04:00
}
2017-05-29 01:46:00 +03:00
}