forked from iQXCorp/node-bitlyapi
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.09 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
43
44
45
46
47
48
{
"name": "node-bitlyapi",
"version": "0.4.0",
"description": "An OAuth, endpoint-complete, NodeJS interface for the public Bitly API",
"homepage": "http://www.projectspong.com/portfolio-type/nodebitlyapi/",
"author": {
"name": "Nathaniel Kirby",
"url":"http://www.projectspong.com",
"email":"nate@projectspong.com"
},
"repository": {
"type":"git",
"url":"https://github.com/nkirby/node-bitlyapi"
},
"bugs": {
"url":"https://github.com/nkirby/node-bitlyapi/issues",
"email":"nate@projectspong.com"
},
"licenses": [
{
"type":"MIT",
"url": "https://github.com/nkirby/node-bitlyapi/blob/master/LICENSE"
}
],
"main": "lib/bitly.js",
"engines": {
"node": ">= 0.8.0"
},
"keywords":[
"bitly",
"shorten",
"api",
"url",
"link"
],
"readmeFilename": "README.md",
"devDependencies": {
"grunt": "~0.4.2",
"grunt-contrib-coffee": "~0.8.2",
"grunt-contrib-watch": "~0.5.3",
"grunt-banner": "~0.2.0"
},
"dependencies": {
"btoa": "~1.1.1",
"request": "2.83.x",
"querystring": "~0.2.0"
}
}