probot/package.json

31 lines
629 B
JSON
Raw Normal View History

2016-09-17 00:10:30 +08:00
{
2016-09-17 02:44:21 +08:00
"name": "hubbot",
2016-09-17 00:10:30 +08:00
"version": "1.0.0",
"description": "a trainable robot that responds to activity on GitHub",
"main": "index.js",
"scripts": {
2016-09-17 00:11:49 +08:00
"run": "node server.js",
2016-09-17 02:44:21 +08:00
"lint": "xo",
2016-09-17 02:47:26 +08:00
"test": "mocha",
"ci": "npm test && npm run lint"
2016-09-17 00:10:30 +08:00
},
"author": "Brandon Keepers",
"license": "ISC",
"dependencies": {
2016-09-17 02:21:53 +08:00
"expect": "^1.20.2",
2016-09-17 00:10:30 +08:00
"github": "^3.1.0",
2016-09-17 01:18:13 +08:00
"github-webhook-handler": "^0.6.0",
"handlebars": "^4.0.5"
2016-09-17 00:10:30 +08:00
},
"devDependencies": {
2016-09-17 02:44:21 +08:00
"mocha": "^3.0.2",
"xo": "^0.16.0"
},
"xo": {
"space": true,
"rules": {},
"ignores": [],
"envs": ["node", "mocha"]
2016-09-17 00:10:30 +08:00
}
}