mirror of
https://github.com/zhigang1992/probot.git
synced 2026-06-16 11:50:10 +08:00
40 lines
743 B
JSON
40 lines
743 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": {
|
|
"debug": "2.2.0",
|
|
"expect": "^1.20.2",
|
|
"github": "^5.2.0",
|
|
"github-webhook-handler": "^0.6.0",
|
|
"handlebars": "^4.0.5"
|
|
},
|
|
"devDependencies": {
|
|
"mocha": "^3.0.2",
|
|
"xo": "^0.16.0"
|
|
},
|
|
"xo": {
|
|
"esnext": true,
|
|
"space": true,
|
|
"rules": {
|
|
"no-else-return": 0,
|
|
"key-spacing": 0
|
|
},
|
|
"ignores": [],
|
|
"envs": [
|
|
"node",
|
|
"mocha"
|
|
]
|
|
},
|
|
"engines": {
|
|
"node": "6.6.0"
|
|
}
|
|
}
|