-
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) · 1.07 KB
/
package.json
File metadata and controls
43 lines (43 loc) · 1.07 KB
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": "couch-proxy-experiment",
"description": "This is an experiment of how you can build a CouchDB proxy on top of restify.",
"version": "0.1.0-12",
"homepage": "https://github.com/null2/couch-proxy-experiment",
"author": {
"name": "Johannes J. Schmidt",
"email": "[email protected]"
},
"repository": {
"type": "git",
"url": "git://github.com/null2/couch-proxy-experiment.git"
},
"bugs": {
"url": "https://github.com/null2/couch-proxy-experiment/issues"
},
"licenses": [
{
"type": "MIT",
"url": "https://github.com/null2/couch-proxy-experiment/blob/master/LICENSE-MIT"
}
],
"main": "lib/couch-proxy",
"engines": {
"node": ">= 0.6.0"
},
"scripts": {
"test": "grunt nodeunit",
"start": "node bin/server"
},
"devDependencies": {
"grunt-contrib-jshint": "~0.1.1",
"grunt-contrib-nodeunit": "~0.1.2",
"grunt-contrib-watch": "~0.2.0",
"grunt": "~0.4.0"
},
"keywords": [],
"dependencies": {
"restify": "~2.4.1",
"request": "~2.20.0"
},
"subdomain": "null2-couch-proxy"
}