forked from mirrors/probot
43 lines
821 B
JSON
43 lines
821 B
JSON
{
|
|
"name": "github-probot",
|
|
"version": "1.0.0",
|
|
"description": "a trainable robot that responds to activity on GitHub",
|
|
"main": "index.js",
|
|
"scripts": {
|
|
"start": "node server.js",
|
|
"test": "mocha && xo"
|
|
},
|
|
"author": "Brandon Keepers",
|
|
"license": "ISC",
|
|
"dependencies": {
|
|
"bunyan": "^1.8.5",
|
|
"dotenv": "^2.0.0",
|
|
"expect": "^1.20.2",
|
|
"github": "^6.0.4",
|
|
"github-webhook-handler": "^0.6.0",
|
|
"handlebars": "^4.0.5",
|
|
"jsonwebtoken": "^7.1.9"
|
|
},
|
|
"devDependencies": {
|
|
"mocha": "^3.0.2",
|
|
"xo": "^0.16.0"
|
|
},
|
|
"xo": {
|
|
"esnext": true,
|
|
"space": true,
|
|
"rules": {
|
|
"camelcase": 1,
|
|
"no-else-return": 0,
|
|
"key-spacing": 0
|
|
},
|
|
"ignores": [],
|
|
"envs": [
|
|
"node",
|
|
"mocha"
|
|
]
|
|
},
|
|
"engines": {
|
|
"node": "6.6.0"
|
|
}
|
|
}
|