UNPKG

bottender-dashbot

Version:
81 lines (80 loc) 1.96 kB
{ "name": "bottender-dashbot", "description": "Middleware for using Dashbot with Bottender.", "license": "MIT", "repository": { "type": "git", "url": "https://github.com/bottenderjs/bottender-dashbot.git" }, "version": "0.2.1", "main": "lib/index.js", "files": [ "express.js", "koa.js", "lib", "micro.js", "restify.js" ], "scripts": { "build": "npm run clean && babel src -d lib --ignore __tests__", "clean": "rimraf lib", "precommit": "lint-staged", "lint": "eslint src", "lint:fix": "npm run lint -- --fix", "lint:staged": "lint-staged", "prepublish": "npm run build", "test": "npm run lint:fix && npm run testonly", "testonly": "jest", "testonly:cov": "jest --coverage --runInBand --forceExit", "testonly:watch": "jest --watch", "preversion": "npm test" }, "dependencies": { "dashbot": "^9.4.1" }, "peerDependencies": { "bottender": ">= 0.14.8" }, "devDependencies": { "babel-cli": "^6.26.0", "babel-eslint": "^8.0.3", "babel-jest": "^21.2.0", "babel-plugin-transform-class-properties": "^6.24.1", "babel-plugin-transform-object-rest-spread": "^6.26.0", "babel-preset-env": "^1.6.1", "eslint": "^4.12.1", "eslint-config-prettier": "^2.9.0", "eslint-config-yoctol-base": "^0.14.1", "eslint-plugin-import": "^2.8.0", "eslint-plugin-prettier": "^2.3.1", "husky": "^0.14.3", "jest": "^21.2.1", "lint-staged": "^6.0.0", "prettier": "^1.8.2", "prettier-package-json": "^1.4.0", "rimraf": "^2.6.2" }, "keywords": [ "bottender", "dashbot" ], "engines": { "node": ">=7.6" }, "jest": { "testEnvironment": "node", "timers": "fake", "resetModules": true, "resetMocks": true }, "lint-staged": { "package.json": [ "prettier-package-json --write", "git add" ], "*.js": [ "eslint --fix", "git add" ] } }