forked from pouchdb/express-pouchdb
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
60 lines (60 loc) · 1.88 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
48
49
50
51
52
53
54
55
56
57
58
59
60
{
"name": "express-pouchdb",
"description": "Express submodule with a CouchDB style REST interface to PouchDB.",
"version": "1.0.2",
"homepage": "https://github.com/pouchdb/express-pouchdb",
"author": {
"name": "Nick Thompson",
"email": "[email protected]"
},
"repository": {
"type": "git",
"url": "git://github.com/pouchdb/express-pouchdb.git"
},
"main": "./lib/index.js",
"dependencies": {
"basic-auth": "^1.0.0",
"bluebird": "^2.2.2",
"body-parser": "^1.5.2",
"compression": "^1.0.10",
"cookie-parser": "^1.3.2",
"extend": "^1.2.1",
"header-case-normalizer": "^1.0.2",
"multiparty": "^3.3.1",
"node-uuid": "1.4.1",
"on-finished": "^2.1.1",
"pouchdb-all-dbs": "^1.0.0",
"pouchdb-auth": "^1.0.2",
"pouchdb-find": "^0.1.0",
"pouchdb-list": "^1.0.0",
"pouchdb-replicator": "^2.1.0",
"pouchdb-rewrite": "^1.0.0",
"pouchdb-security": "^1.2.0",
"pouchdb-show": "^1.0.0",
"pouchdb-size": "^1.0.0",
"pouchdb-update": "^1.0.0",
"pouchdb-validation": "^1.1.5",
"pouchdb-vhost": "^1.0.0",
"pouchdb-wrappers": "^1.3.6",
"raw-body": "^1.1.5"
},
"devDependencies": {
"express": "4.10.5",
"fs-extra": "^0.13.0",
"jshint": "2.8.0",
"memdown": "^1.0.0",
"mocha": "^2.0.1",
"pouchdb": "^5.2.0",
"pouchdb-server": "^0.9.0",
"supertest": "^0.15.0"
},
"scripts": {
"jshint": "jshint -c .jshintrc lib test",
"test-pouchdb": "./bin/test-setup.sh && ./bin/test-pouchdb.sh",
"test-pouchdb-minimum": "./bin/test-setup.sh && ./bin/test-pouchdb-minimum.sh",
"test-couchdb": "./bin/test-setup.sh && cd node_modules/pouchdb-server && npm run test-couchdb",
"test-express-pouchdb": "./node_modules/.bin/mocha",
"test": "npm run jshint && npm run test-express-pouchdb && npm run test-pouchdb && npm run test-pouchdb-minimum"
},
"files": ["lib", "fauxton"]
}