-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
41 lines (41 loc) · 1005 Bytes
/
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
{
"name": "pouch-box",
"version": "2.0.2",
"description": "Asymmetric encrypted PouchDB, powered by NaCl's curve25519-xsalsa20-poly1305.",
"main": "index.js",
"scripts": {
"test": "tape test.js | tap-spec",
"build": "browserify ./ > dist/pouch-box.js"
},
"repository": {
"type": "git",
"url": "git@github.com:jo/pouch-box.git"
},
"keywords": [
"pouchdb",
"couchdb",
"crypto",
"nacl",
"curve25519"
],
"author": "Johannes J. Schmidt <schmidt@netzmerk.com> (http://die-tf.de/)",
"license": "MIT",
"bugs": {
"url": "https://github.com/jo/pouch-box/issues"
},
"homepage": "https://github.com/jo/pouch-box",
"dependencies": {
"couch-box": "^1.0.1",
"couch-nacl-permit": "^1.0.0",
"pouchdb-promise": "0.0.0",
"transform-pouch": "^1.0.1",
"tweetnacl": "^0.13.1"
},
"devDependencies": {
"browserify": "^9.0.8",
"memdown": "^1.0.0",
"pouchdb": "^3.4.0",
"tap-spec": "^3.0.0",
"tape": "^4.0.0"
}
}