forked from pouchdb/pouchdb-server
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 1.16 KB
/
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
44
45
46
47
{
"name": "pouchdb-server",
"description": "A standalone REST interface server for PouchDB.",
"version": "1.0.0",
"homepage": "https://github.com/pouchdb/pouchdb-server",
"author": {
"name": "Nick Thompson",
"email": "ncthom91@gmail.com"
},
"repository": {
"type": "git",
"url": "git://github.com/pouchdb/pouchdb-server.git"
},
"bin": {
"pouchdb-server": "./bin/pouchdb-server"
},
"scripts": {
"start": "node ./bin/pouchdb-server",
"test-pouchdb": "./bin/test-pouchdb.sh",
"test-couchdb": "./bin/test-couchdb.sh",
"jshint": "./node_modules/.bin/jshint bin/pouchdb-server lib"
},
"engines": {
"node": ">= 0.8.0"
},
"dependencies": {
"bluebird": "^2.4.2",
"colors": "^1.0.3",
"corser": "~2.0.0",
"couchdb-harness": "*",
"couchdb-log-parse": "^0.0.3",
"express": "^4.10.4",
"express-pouchdb": "^1.0.0",
"http-pouchdb": "^1.1.0",
"killable": "^1.0.0",
"memdown": "^1.0.0",
"mkdirp": "^0.5.0",
"nomnom": "^1.8.1",
"pouchdb": "^5.0.0",
"serve-favicon": "~2.0.1",
"tail": "^0.4.0",
"wordwrap": "0.0.2"
},
"devDependencies": {
"jshint": "^2.5.10"
}
}