be-framework
Version:
BE is a framework for supercharging your BotEngine bots
58 lines (57 loc) • 1.16 kB
JSON
{
"name": "be-framework",
"version": "0.7.0",
"access": "public",
"description": "BE is a framework for supercharging your BotEngine bots",
"main": "src/index.js",
"scripts": {
"precommit": "lint-staged",
"prepush": "npm test",
"lint": "xo",
"test": "jest --coverage"
},
"keywords": [
"bot",
"bots",
"botengine"
],
"author": "Marios Antonoudiou <mariosant@sent.com>",
"license": "MIT",
"dependencies": {
"basic-auth": "^2.0.0",
"micro": "^9.3.2",
"query-string": "^6.1.0",
"ramda": "^0.25.0",
"url-parse": "^1.4.3",
"url-pattern": "^1.0.3"
},
"devDependencies": {
"delay": "^3.1.0",
"eslint-config-prettier": "^2.9.0",
"husky": "^0.14.3",
"jest": "^22.3.0",
"lint-staged": "^6.1.0",
"micro": "^9.3.2",
"micro-dev": "^3.0.0",
"node-mocks-http": "^1.7.0",
"nodemon": "^1.15.1",
"prettier": "^1.10.2",
"ramda": "^0.25.0",
"xo": "^0.20.3"
},
"lint-staged": {
"*.js": [
"xo --fix",
"git add"
]
},
"xo": {
"envs": [
"jest"
],
"prettier": true
},
"jest": {
"testEnvironment": "node"
}
}