forked from zero-archive/node-url-shortener
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
39 lines (39 loc) · 879 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
{
"name": "node-url-shortener",
"description": "A modern, minimalist, and lightweight URL shortener using Node.js and Redis",
"version": "0.8.1",
"author": "dotzero <[email protected]>",
"license": "MIT",
"repository": {
"type": "git",
"url": "http://github.com/dotzero/node-url-shortener"
},
"dependencies": {
"base58": "^1.0.1",
"body-parser": "^1.18.2",
"cors": "^2.8.4",
"ejs": "^2.5.8",
"express": "^4.16.3",
"method-override": "^2.3.10",
"morgan": "^1.9.0",
"redis": "^2.8.0",
"yargs": "^11.0.0"
},
"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"
}
}