forked from pksunkara/octonode
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
28 lines (28 loc) · 752 Bytes
/
package.json
File metadata and controls
28 lines (28 loc) · 752 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
{
"name": "octonode",
"description": "nodejs wrapper for github v3 api",
"version": "0.1.0",
"author": "Pavan Kumar Sunkara <pavan.sss1991@gmail.com> (http://pksunkara.github.com)",
"contributors": [
{ "name": "Pavan Kumar Sunkara", "email": "pavan.sss1991@gmail.com" }
],
"dependencies": {
"request": "*"
},
"devDependencies": {
"coffee-script": "~1.1.3",
"nock": "~0.6.2",
"vows": "~0.6.0"
},
"keywords": ["wrapper", "api", "v3", "github"],
"repository": {
"type": "git",
"url": "git://github.com/pksunkara/octonode.git"
},
"main": "./lib/octonode",
"scripts": {
"test": "vows --spec $(find test -name '*-test.js')",
"prepublish": "cake lib"
},
"engines": { "node": ">0.4.11" }
}