tgapi
Version:
Actual Telegram bot API with Rx-driven updates and full Flow type coverage
101 lines (100 loc) • 2.54 kB
JSON
{
"name": "tgapi",
"version": "2.0.0",
"description": "Actual Telegram bot API with Rx-driven updates and full Flow type coverage",
"main": "lib/bundle.js",
"engines": {
"node": ">=6.0.0"
},
"files": [
"README.md",
"LICENSE.md",
"lib",
"esm",
"src"
],
"scripts": {
"build": "rollup -c",
"flow-entry": "cp lib/index.js.flow esm/index.js.flow",
"generate-core": "NODE_ENV=script babel-node src/scripts/generateCore",
"lint": "eslint .",
"flow": "flow",
"test": "ava --verbose",
"test:nyc": "nyc ava --verbose",
"coverage": "nyc report --reporter=text-lcov | coveralls",
"preversion": "git checkout master && yarn lint && yarn flow",
"postversion": "git push --follow-tags"
},
"husky": {
"hooks": {
"pre-commit": "yarn lint && yarn flow"
}
},
"dependencies": {
"core-js": "^2.5.7",
"events": "^3.0.0",
"form-data": "^2.3.3",
"isomorphic-fetch": "^2.2.1",
"symbol-observable": "^1.2.0"
},
"devDependencies": {
"@babel/cli": "^7.1.5",
"@babel/core": "^7.1.6",
"@babel/node": "^7.0.0",
"@babel/preset-env": "^7.1.6",
"@babel/preset-flow": "^7.0.0",
"@babel/register": "^7.0.0",
"ava": "^0.25.0",
"babel-eslint": "^10.0.1",
"babel-plugin-istanbul": "^5.1.0",
"coveralls": "^3.0.2",
"eslint": "^5.9.0",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-config-prettier": "^3.3.0",
"eslint-plugin-flowtype": "^3.2.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-prettier": "^3.0.0",
"esm": "^3.0.84",
"flow-bin": "^0.86.0",
"flow-typed": "^2.5.1",
"husky": "^1.2.0",
"jquery": "^3.3.1",
"jsdom": "^13.0.0",
"nyc": "^13.1.0",
"prettier": "^1.15.2",
"rollup": "^0.67.3",
"rollup-plugin-babel": "4.0.3",
"rollup-plugin-clear": "^2.0.7",
"rollup-plugin-commonjs": "^9.2.0",
"rollup-plugin-flow-entry": "^0.2.0",
"shx": "^0.3.2",
"sinon": "^7.1.1",
"wordwrap": "^1.0.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/bigslycat/tgapi.git"
},
"keywords": [
"API",
"bot",
"bots",
"Telegram",
"tg",
"rx",
"rxjs",
"reactive",
"flow",
"flowtype"
],
"author": {
"name": "Pavel Tereschenko",
"email": "me@pavlik.pro",
"url": "https://github.com/bigslycat"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/bigslycat/tgapi/issues"
},
"homepage": "https://github.com/bigslycat/tgapi#readme"
}