forked from zero-archive/node-url-shortener
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 903 Bytes
/
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
{
"name": "node-url-shortener",
"description": "URL Shortener using Node.js and Redis",
"version": "0.7.0",
"author": "dotzero <[email protected]>",
"license": "MIT",
"engines": [
"node"
],
"repository": {
"type": "git",
"url": "http://github.com/dotzero/node-url-shortener"
},
"dependencies": {
"base58": "^0.1.0",
"body-parser": "^1.15.1",
"cors": "^2.7.1",
"ejs": "^2.4.1",
"express": "^4.13.4",
"method-override": "^2.3.6",
"morgan": "^1.7.0",
"redis": "^2.6.0-2",
"serve-favicon": "^2.3.0",
"yargs": "^4.7.1"
},
"devDependencies": {
"expect.js": "^0.3.1",
"fakeredis": "^1.0.3",
"mocha": "^2.4.5",
"superagent": "^2.0.0-alpha.3",
"superagent-mocker": "^0.4.0"
},
"keywords": [
"url",
"shortener",
"redis",
"rest"
],
"scripts": {
"start": "node app",
"test": "mocha"
}
}