UNPKG

bottender-rollbar

Version:

Rollbar middleware for Bottender.

48 lines (47 loc) 1.13 kB
{ "name": "bottender-rollbar", "description": "Rollbar middleware for Bottender.", "license": "MIT", "version": "0.1.0", "main": "src/index.js", "scripts": { "precommit": "lint-staged", "lint": "eslint src examples", "lint:fix": "npm run lint -- --fix", "lint:staged": "lint-staged", "test": "npm run lint:fix && npm run testonly", "testonly": "jest", "testonly:cov": "jest --coverage --runInBand --forceExit", "testonly:watch": "jest --watch", "preversion": "npm test" }, "dependencies": { "rollbar": "^2.3.8" }, "devDependencies": { "eslint": "^4.16.0", "eslint-config-yoctol-base": "^0.15.0", "eslint-plugin-import": "^2.8.0", "eslint-plugin-prettier": "^2.5.0", "husky": "^0.14.3", "jest": "^22.1.4", "lint-staged": "^6.1.0", "prettier": "^1.10.2", "prettier-package-json": "^1.4.0" }, "keywords": [ "bottender", "conversational-form", "form" ], "lint-staged": { "*.js": [ "eslint --fix", "git add" ], "package.json": [ "prettier-package-json --write", "git add" ] } }