-
Notifications
You must be signed in to change notification settings - Fork 43
/
package.json
44 lines (44 loc) · 1.09 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": "crypto-pouch",
"version": "4.0.2",
"description": "encrypted pouchdb/couchdb database",
"main": "index.js",
"scripts": {
"test": "standard && dependency-check --unused --no-dev . && mocha",
"cov": "nyc npm test",
"build": "browserify . > bundle.js",
"min": "browserify . | uglifyjs -mc > bundle.min.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/calvinmetcalf/crypto-pouch.git"
},
"keywords": [
"pouchdb",
"couchdb",
"encrypted"
],
"author": "Calvin Metcalf",
"contributors": [
"Diana Belle <[email protected]>"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/calvinmetcalf/crypto-pouch/issues"
},
"homepage": "https://github.com/calvinmetcalf/crypto-pouch",
"dependencies": {
"garbados-crypt": "^3.0.0-beta",
"transform-pouch": "^2.0.0"
},
"devDependencies": {
"browserify": "^17.0.0",
"dependency-check": "^4.1.0",
"memdown": "^6.0.0",
"mocha": "^10.8.2",
"nyc": "^15.1.0",
"pouchdb": "^9.0.0",
"standard": "^16.0.3",
"uglify-js": "^3.13.5"
}
}