0
mirror of https://github.com/valentineus/iii-client.git synced 2025-05-15 04:11:17 +03:00
iii-client/package.json
dependabot[bot] 9d0a0bd2e6
Bump eslint from 3.19.0 to 7.6.0
Bumps [eslint](https://github.com/eslint/eslint) from 3.19.0 to 7.6.0.
- [Release notes](https://github.com/eslint/eslint/releases)
- [Changelog](https://github.com/eslint/eslint/blob/master/CHANGELOG.md)
- [Commits](https://github.com/eslint/eslint/compare/v3.19.0...v7.6.0)

Signed-off-by: dependabot[bot] <support@github.com>
2020-08-03 15:03:36 +00:00

48 lines
1.5 KiB
JSON

{
"name": "iii-client",
"version": "3.2.2",
"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": "^7.6.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",
"uuid": "^3.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"
}
}