probot/package.json

21 lines
427 B
JSON
Raw Normal View History

2016-09-17 00:10:30 +08:00
{
"name": "probot",
"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 00:10:30 +08:00
"test": "mocha"
},
"author": "Brandon Keepers",
"license": "ISC",
"dependencies": {
"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": {
"mocha": "^3.0.2"
}
}