-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
43 lines (43 loc) · 1001 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": "unshrtn",
"description": "A leveldb backed URL unshortening microservice",
"version": "0.0.13",
"license": "MIT",
"main": "index",
"engines": {
"node": ">= 6"
},
"author": {
"name": "Ed Summers",
"email": "[email protected]",
"url": "https://inkdroid.org"
},
"repository": {
"type": "git",
"url": "https://github.com/edsu/shrtn"
},
"dependencies": {
"commander": "^2.20.3",
"express": "^4.17.1",
"level": "^5.0.0",
"metaweb": "0.0.10",
"supertest": "^3.3.0",
"winston": "^3.3.3"
},
"devDependencies": {
"chai": "^4.2.0",
"mocha": "^4.1.0",
"rimraf": "latest"
},
"scripts": {
"start": "node commands/unshrtn",
"test": "mocha --colors --reporter spec test.js"
},
"bin": {
"unshrtn": "commands/unshrtn",
"unshrtn-dump": "commands/unshrtn-dump",
"unshrtn-get": "commands/unshrtn-get",
"unshrtn-load": "commands/unshrtn-load",
"unshrtn-start": "commands/unshrtn-start"
}
}