forked from calvinmetcalf/crypto-pouch
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 1.01 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
{
"name": "crypto-pouch",
"version": "3.1.1",
"description": "encrypted pouchdb/couchdb database",
"main": "index.js",
"scripts": {
"test": "node test.js | tspec",
"build": "browserify ./ > bundle.js",
"min": "browserify ./ | uglifyjs -mc > bundle.min.js"
},
"repository": {
"type": "git",
"url": "https://github.com/calvinmetcalf/crypto-pouch.git"
},
"keywords": [
"pouchdb",
"couchdb",
"encrypted"
],
"author": "Calvin Metcalf",
"license": "MIT",
"bugs": {
"url": "https://github.com/calvinmetcalf/crypto-pouch/issues"
},
"homepage": "https://github.com/calvinmetcalf/crypto-pouch",
"dependencies": {
"chacha": "^2.1.0",
"native-crypto": "^1.5.2",
"node-uuid": "^1.4.3",
"pouchdb-promise": "^6.1.0",
"randombytes": "^2.0.3",
"transform-pouch": "^1.1.0"
},
"devDependencies": {
"browserify": "^13.0.0",
"memdown": "^1.0.0",
"pouchdb": "^6.1.0",
"tap-spec": "^4.1.1",
"tape": "^4.5.1",
"uglify-js": "^2.6.2"
}
}