forked from mirrors/probot
31 lines
629 B
JSON
31 lines
629 B
JSON
{
|
|
"name": "hubbot",
|
|
"version": "1.0.0",
|
|
"description": "a trainable robot that responds to activity on GitHub",
|
|
"main": "index.js",
|
|
"scripts": {
|
|
"run": "node server.js",
|
|
"lint": "xo",
|
|
"test": "mocha",
|
|
"ci": "npm test && npm run lint"
|
|
},
|
|
"author": "Brandon Keepers",
|
|
"license": "ISC",
|
|
"dependencies": {
|
|
"expect": "^1.20.2",
|
|
"github": "^3.1.0",
|
|
"github-webhook-handler": "^0.6.0",
|
|
"handlebars": "^4.0.5"
|
|
},
|
|
"devDependencies": {
|
|
"mocha": "^3.0.2",
|
|
"xo": "^0.16.0"
|
|
},
|
|
"xo": {
|
|
"space": true,
|
|
"rules": {},
|
|
"ignores": [],
|
|
"envs": ["node", "mocha"]
|
|
}
|
|
}
|