-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathpackage.json
42 lines (42 loc) · 1.35 KB
/
package.json
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
30
31
32
33
34
35
36
37
38
39
40
41
42
{
"name": "github3",
"author": "Edward Hotchkiss <[email protected]>",
"contributors":[
{ "name": "Edward Hotchkiss", "github": "https://github.com/edwardhotchkiss" },
{ "name": "Mark Lussier", "github": "https://github.com/intabulas" },
{ "name": "@dolphin278", "github": "https://github.com/dolphin278" },
{ "name": "Matias Woloski", "github":"https://github.com/woloski" },
{ "name": "Tejesh Mehta", "github": "https://github.com/tjmehta" },
{ "name": "wemotom", "github": "https://github.com/wemotom" },
{ "name": "Luke Arduini", "github": "https://github.com/st-luke" },
{ "name": "Matt Loar", "github": "https://github.com/mloar" }
],
"homepage": "http://github.com/edwardhotchkiss/github3",
"description": "Node.js GitHub API (v3) Wrapper",
"version": "1.2.0",
"repository": {
"type": "git",
"url": "git://github.com/edwardhotchkiss/github3.git"
},
"bugs": {
"url": "https://github.com/edwardhotchkiss/github3/issues"
},
"keywords": ["github", "api", "wrapper", "git", "3"],
"main": "./lib/github3",
"engines": {
"node":">= 0.8.0"
},
"dependencies": {
"request":"2.12.0"
},
"devDependencies":{
"vows":"0.7.0"
},
"licenses":[{
"type":"MIT",
"url":"http://github.com/edwardhotchkiss/github3/LICENSE"
}],
"scripts": {
"test": "vows test/*.test.js --spec"
}
}