-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (43 loc) · 963 Bytes
/
package.json
File metadata and controls
47 lines (43 loc) · 963 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
44
45
46
47
{
"name": "doks-server",
"version": "0.0.1",
"description": "An API allowing to search through programming docs",
"keywords": [
"docs",
"doks",
"api",
"code",
"search",
"docset",
"docsets"
],
"main" : "./index.js",
"directories" : {
"lib" : "./lib"
},
"bin": {
"doks-server": "./bin/doks-server"
},
"dependencies" : {
"underscore": "1.4.4",
"q": "0.9.4",
"sqlite3": "2.1.7",
"request": "2.14.0",
"restify": "2.6.0",
"commander": "1.1.1"
},
"engines" : {
"node" : "0.8.x"
},
"engineStrict": true,
"author" : {
"name" : "Aaron O'Mullan",
"email" : "aaron.omullan@gmail.com",
"url" : "http://friendco.de"
},
"maintainer" : [
"Aaron O'Mullan <aaron.omullan@gmail.com>"
],
"author": "Aaron O'Mullan",
"license": "BSD"
}