-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1008 Bytes
/
package.json
File metadata and controls
43 lines (43 loc) · 1008 Bytes
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": "moniker-api",
"version": "0.0.0",
"description": "Moniker database koa api",
"main": "lib/server.js",
"files": [
"index.js",
"lib/server.js"
],
"scripts": {
"start": "./bin/start",
"debug-routes": "./bin/debug-routes",
"test": "echo \"Error: no test specified\" && exit 1"
},
"config": {
"port": 14320,
"dbpath": ".moniker-test",
"dbname": "names.lev"
},
"author": "Matt Styles",
"repository": "git://github.com/monikerjs/moniker-api.git",
"license": "WTFPL",
"dependencies": {
"babel": "^5.0.8",
"chalk": "^1.0.0",
"koa-router": "^4.3.2",
"level-party": "^1.0.1",
"level-promisify": "^2.0.0-rc",
"level-sublevel": "^6.4.6",
"mkdirp": "^0.5.0",
"node-uuid": "^1.4.3",
"osenv": "^0.1.0"
},
"devDependencies": {
"co-body": "^1.1.0",
"co-views": "^0.3.0",
"hogan.js": "^3.0.2",
"koa": "^0.18.1",
"koa-logger": "^1.2.2",
"koa-mount": "^1.3.0",
"koa-static": "^1.4.9"
}
}