{
  "name": "botmaster",
  "version": "3.2.0",
  "description": "Framework allowing developers to write bots that are agnostic with respect to the channel used by their users (messenger, telegram etc...)",
  "main": "./lib/index.js",
  "scripts": {
    "test": "export NODE_ENV=test; nyc --reporter=lcov --reporter=html ava; nyc report",
    "test-debug": "export NODE_ENV=test DEBUG=botmaster:*; nyc --reporter=lcov --reporter=html ava",
    "test-watch": "export NODE_ENV=test; ava --watch",
    "coveralls": "cat ./coverage/lcov.info | coveralls",
    "postversion": "git push && git push --tags",
    "report": "nyc report",
    "botmaster-docs": "jsdoc2md lib/botmaster.js > api-reference/botmaster.md",
    "base-bot-docs": "jsdoc2md lib/base_bot.js > api-reference/base-bot.md",
    "outgoing-message-docs": "jsdoc2md lib/outgoing_message.js > api-reference/outgoing-message.md",
    "docs": "mkdir -p api-reference; yarn botmaster-docs; yarn base-bot-docs; yarn outgoing-message-docs",
    "docs-deploy": "yarn docs && cp -r api-reference ../botmasterai.github.io/docs"
  },
  "ava": {
    "files": [
      "tests/**/*.js",
      "!**/index.js"
    ],
    "source": [],
    "match": [],
    "serial": true,
    "verbose": true,
    "failFast": true,
    "tap": false,
    "powerAssert": false
  },
  "nyc": {
    "check-coverage": true,
    "lines": 100,
    "statements": 100,
    "functions": 100,
    "branches": 100,
    "exclude": [
      "tests"
    ]
  },
  "repository": {
    "type": "git",
    "url": "https://github.com/jdwuarin/botmaster"
  },
  "bugs": {
    "url": "https://github.com/jdwuarin/botmaster/issues"
  },
  "keywords": [
    "bot",
    "framework",
    "toolkit",
    "botmaster",
    "slack",
    "messenger",
    "telegram",
    "twitter",
    "bot-library"
  ],
  "dependencies": {
    "debug": "^3.1.0",
    "lodash": "^4.17.4"
  },
  "engines": {
    "node": "4.x.x || >=6.x.x"
  },
  "devDependencies": {
    "ava": "^0.19.1",
    "body-parser": "^1.18.2",
    "botmaster-test-fixtures": "^2.1.0",
    "coveralls": "^3.0.0",
    "eslint": "^4.16.0",
    "eslint-config-airbnb": "^16.1.0",
    "eslint-plugin-ava": "^4.5.0",
    "eslint-plugin-import": "^2.8.0",
    "eslint-plugin-jsx-a11y": "^6.0.3",
    "eslint-plugin-react": "^7.6.0",
    "express": "^4.16.2",
    "jsdoc-to-markdown": "^4.0.1",
    "koa": "^2.4.1",
    "nyc": "^11.4.1",
    "request-promise": "^4.2.2"
  },
  "author": "JD Wuarin <jwuarin@uk.ibm.com>",
  "license": "MIT"
}
