-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
92 lines (92 loc) · 2.48 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
{
"name": "hoodie-plugin-store-crypto",
"version": "0.0.0-development",
"description": "End-to-end crypto plugin for the Hoodie client store.",
"main": "index.js",
"types": "index.d.ts",
"engines": {
"node": ">=10"
},
"scripts": {
"update-coc": "weallbehave -o . && git add CODE_OF_CONDUCT.md && git commit -m 'docs(coc): updated CODE_OF_CONDUCT.md'",
"update-contrib": "weallcontribute -o . && git add CONTRIBUTING.md && git commit -m 'docs(contributing): updated CONTRIBUTING.md'",
"pretest": "standard",
"test": "node tests | tap-spec",
"textlint": "textlint README.md docs/*",
"fix:docs": "textlint --fix README.md docs/*",
"fix:style": "standard --fix",
"start": "hoodie",
"semantic-release": "semantic-release",
"snyk-protect": "snyk protect",
"prepare": "npm run snyk-protect"
},
"repository": {
"type": "git",
"url": "https://github.com/Terreii/hoodie-plugin-store-crypto.git"
},
"keywords": [
"hoodie",
"plugin",
"storage",
"pouchdb",
"offlinefirst",
"sync",
"data",
"crypto",
"cryptography",
"end-to-end",
"ete"
],
"author": "Christopher Astfalk <[email protected]>",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/Terreii/hoodie-plugin-store-crypto/issues"
},
"homepage": "https://github.com/Terreii/hoodie-plugin-store-crypto#readme",
"files": [
"index.js",
"index.d.ts",
"hoodie",
"lib"
],
"devDependencies": {
"browserify": "^17.0.0",
"hoodie": "^28.2.10",
"pouchdb-adapter-memory": "^7.2.2",
"pouchdb-core": "^7.2.2",
"pouchdb-hoodie-api": "^2.0.0",
"pouchdb-replication": "^7.2.2",
"puppeteer": "^5.5.0",
"puppeteer-firefox": "^0.5.1",
"semantic-release": "^19.0.3",
"snyk": "^1.437.3",
"standard": "^14.3.4",
"tap-spec": "^5.0.0",
"tape": "^5.0.1",
"textlint": "^11.7.7",
"textlint-rule-alex": "^3.0.0",
"textlint-rule-common-misspellings": "^1.0.1",
"textlint-rule-rousseau": "^1.4.6",
"typescript": "^4.1.3",
"weallbehave": "^1.2.0",
"weallcontribute": "^1.0.9"
},
"dependencies": {
"@hoodie/store-client": "^8.3.0",
"@types/pouchdb-core": "^7.0.7",
"browserify-aes": "^1.2.0",
"buffer": "^6.0.3",
"lie": "^3.3.0",
"lodash": "^4.17.20",
"pbkdf2": "^3.1.2",
"pouchdb-errors": "^7.2.2",
"randombytes": "^2.1.0",
"uuid": "^8.3.2"
},
"release": {
"branches": [
"latest"
]
},
"snyk": true
}