-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
62 lines (62 loc) · 2.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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
{
"name": "comdb",
"version": "6.0.0-beta",
"description": "A PouchDB plugin that transparently encrypts and decrypts its data.",
"main": "index.js",
"files": [],
"scripts": {
"release": "npm run test && npm run build && npm run build:min",
"build": "browserify -s ComDB -x crypto -x buffer -o bundle.js index.js ",
"build:min": "uglifyjs -mc -o bundle.min.js bundle.js",
"test": "npm run test:lint && npm run test:node && npm run test:browser",
"test:lint": "standard && dependency-check --unused --no-dev .",
"test:node": "mocha",
"test:browser": "mochify test.js",
"cov": "npm run cov:node && npm run cov:browser && nyc report",
"cov:node": "nyc -s npm run test:node",
"cov:browser": "nyc -s --no-clean --instrument false mochify --transform [ babelify --ignore [ test ] --plugins [ babel-plugin-istanbul ] ] test.js",
"coveralls": "npm run cov && nyc report --reporter=text-lcov > lcov.info",
"example": "npm run example:couchdb && npm run example:e2e && npm run example:inplace",
"example:couchdb": "./examples/couchdb.js",
"example:e2e": "./examples/e2e.js",
"example:inplace": "./examples/inplace.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/garbados/comdb.git"
},
"keywords": [
"couchdb",
"pouchdb",
"p2p",
"e2e"
],
"author": "Diana Thayer <[email protected]>",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/garbados/comdb/issues"
},
"homepage": "https://github.com/garbados/comdb#readme",
"dependencies": {
"garbados-crypt": "^3.0.0-alpha",
"pouchdb-md5": "^7.3.0",
"transform-pouch": "^2.0.0",
"tweetnacl": "^1.0.3",
"tweetnacl-util": "^0.15.1",
"uuid": "^8.3.2"
},
"devDependencies": {
"babel-plugin-istanbul": "^6.1.1",
"babelify": "^10.0.0",
"browserify": "^17.0.0",
"dependency-check": "^4.1.0",
"lodash.isequal": "^4.5.0",
"mocha": "^9.2.2",
"mochify": "^9.2.0",
"nyc": "^15.1.0",
"pouchdb": "^7.3.0",
"pouchdb-adapter-memory": "^7.3.0",
"standard": "^17.0.0",
"uglify-js": "^3.15.4"
}
}