mirror of
https://github.com/valentineus/iii-client.git
synced 2025-04-28 01:41:25 +03:00
47 lines
1.4 KiB
JSON
47 lines
1.4 KiB
JSON
{
|
|
"name": "iii-client",
|
|
"version": "2.1.0",
|
|
"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"
|
|
],
|
|
"main": "./dist/standalone.js",
|
|
"devDependencies": {
|
|
"babel-cli": "^6.24.1",
|
|
"babel-core": "^6.24.1",
|
|
"babel-preset-es2015": "^6.24.1",
|
|
"babel-preset-es2015-rollup": "^3.0.0",
|
|
"chai": "^4.1.2",
|
|
"eslint": "^3.19.0",
|
|
"mocha": "^3.5.3",
|
|
"rollup": "^0.50.0",
|
|
"rollup-plugin-babel": "^3.0.2",
|
|
"rollup-plugin-node-builtins": "^2.1.2",
|
|
"rollup-plugin-node-globals": "^1.1.0"
|
|
},
|
|
"scripts": {
|
|
"build-standalone": "babel src/index.js --out-file dist/standalone.js",
|
|
"build-browser": "rollup --config rollup.config.js",
|
|
"build": "npm run build-browser && npm run build-standalone",
|
|
"test": "mocha src/test.js --compilers js:babel-core/register",
|
|
"check": "eslint ./src/index.js"
|
|
}
|
|
}
|