-
Notifications
You must be signed in to change notification settings - Fork 82
/
package.json
46 lines (46 loc) · 1.55 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
{
"name":"short",
"version":"2.6.0",
"author":"Edward Hotchkiss <[email protected]>",
"description":"Node.js URL Shortener backed by Mongoose.js",
"contributors":[
{ "name": "Edward Hotchkiss", "email": "[email protected]" },
{ "name": "Kevin Roth", "github": "http://github.com/thinkroth" },
{ "name": "Chase Brammer", "github":"https://github.com/cbrammer" },
{ "name": "Chris Lynch", "github":"https://github.com/lynchseattle" },
{ "name": "CashLee", "github": "https://github.com/lbj96347" },
{ "name": "Patrick Williams", "github": "https://github.com/pwmckenna" },
{ "name": "Niklas Nihlén", "github": "https://github.com/nippe" },
{ "name": "Matt Roman", "github": "https://github.com/romanmt" },
{ "name": "Jan Paul Erkelens", "github": "https://github.com/jperkelens" },
{ "name": "Tarang Shah", "github": "https://github.com/t27" }
],
"homepage": "http://edwardhotchkiss.github.com/short",
"repository":{
"type":"git",
"url":"git://github.com/edwardhotchkiss/short.git"
},
"keywords":["short","url","shortener","tiny","uri","vanity","bit.ly"],
"main":"./lib/short",
"engines":{
"node":">=0.10.0"
},
"dependencies":{
"node-promise":"0.5.8",
"mongoose":"4.0.6",
"short-id":"0.1.0-1"
},
"devDependencies":{
"vows":"0.7.0"
},
"bugs": {
"url": "https://github.com/edwardhotchkiss/short/issues"
},
"license":{
"type":"MIT",
"url":"http://github.com/edwardhotchkiss/short/LICENSE"
},
"scripts":{
"test":"vows test/*.test.js --spec"
}
}