-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
44 lines (44 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
{
"name": "pouchdb-auth",
"main": "lib/index.js",
"version": "3.0.1",
"description": "A PouchDB plug-in that simulates CouchDB's authentication daemon. Includes a users db that functions like CouchDB's.",
"repository": {
"type": "git",
"url": "https://github.com/pouchdb/pouchdb-auth.git"
},
"keywords": [
"pouch",
"pouchdb",
"couch",
"couchdb",
"users",
"authentication",
"auth"
],
"license": "Apache-2.0",
"author": "Marten de Vries",
"dependencies": {
"base64url": "^1.0.5",
"couchdb-calculate-session-id": "^1.1.0",
"crypto-lite": "^0.1.0",
"pouchdb-bulkdocs-wrapper": "^1.0.0",
"pouchdb-plugin-error": "^1.0.0",
"pouchdb-promise": "^5.4.0",
"pouchdb-req-http-query": "^2.0.0",
"pouchdb-system-db": "^1.0.0",
"pouchdb-validation": "^1.1.0",
"pouchdb-wrappers": "^1.0.0",
"promise-nodify": "^1.0.0",
"secure-random": "^1.1.1"
},
"devDependencies": {
"extend": "^3.0.0",
"pouchdb-plugin-helper": "^3.0.0"
},
"scripts": {
"helper": "./node_modules/.bin/pouchdb-plugin-helper",
"test": "npm run helper -- test",
"build": "npm run helper -- build Auth"
}
}