-
Notifications
You must be signed in to change notification settings - Fork 38
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 732 Bytes
/
package.json
File metadata and controls
29 lines (29 loc) · 732 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
{
"author": "Ian Young <ian.greenleaf@gmail.com>",
"name": "githubot",
"description": "Hubot-compatible Github API wrapper for Node.js",
"version": "1.0.1",
"homepage": "https://github.com/iangreenleaf/githubot",
"license": "MIT",
"repository": {
"type": "git",
"url": "git@github.com:iangreenleaf/githubot.git"
},
"main": "./lib/githubot",
"scripts": {
"prepublish": "coffee -o lib -c src && cat .gitignore | grep -v '^lib$' > .npmignore",
"test": "make test"
},
"engines": {
"node": ">=0.10.0"
},
"dependencies": {
"scoped-http-client": ">= 0.9.8",
"async": "0.2.x"
},
"devDependencies": {
"mocha": "~2.2",
"coffee-script": "~1.9.1",
"nock": "~0.28.3"
}
}