forked from edwardhotchkiss/short
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
85 lines (85 loc) · 1.8 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
{
"name": "short",
"version": "2.6.0",
"author": "Edward Hotchkiss <edward@edwardhotchkiss.com>",
"description": "Node.js URL Shortener backed by Mongoose.js",
"contributors": [
{
"name": "Edward Hotchkiss",
"email": "edward@edwardhotchkiss.com"
},
{
"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": {
"mongoose": "4.0.6",
"node-promise": "0.5.8",
"object-hash": "^1.1.4",
"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"
}
}