-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.22 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.22 KB
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
{
"name": "firecrypt",
"version": "5.0.0",
"description": "Transparent encryption for Firebase",
"main": "dist/node/firecrypt.js",
"browser": "dist/browser/firecrypt.js",
"scripts": {
"lint": "eslint",
"build": "rollup -c rollup.config.js",
"prepublish": "yarn build",
"update": "yarn upgrade-interactive --latest"
},
"repository": "https://github.com/Reviewable/firecrypt",
"keywords": [
"firebase",
"encryption"
],
"author": "Piotr Kaminski <piotr@ideanest.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/Reviewable/firecrypt/issues"
},
"homepage": "https://github.com/Reviewable/firecrypt",
"engines": {
"node": ">=20.x"
},
"dependencies": {
"crypto-js": "^4.0.0",
"cryptojs-extension": "github:reviewable/cryptojs-extension",
"fflate": "^0.8.2",
"lru-cache": "^11.2.6"
},
"peerDependencies": {
"firebase": "9.x || 10.x",
"firebase-admin": "10.x || 11.x || 12.x || 13.x"
},
"optionalDependencies": {
"firebase-childrenkeys": "2.x || 3.x"
},
"devDependencies": {
"eslint": "^9.39.1",
"reviewable-configs": "Reviewable/reviewable-configs#master",
"rollup": "^4.53.3",
"rollup-plugin-minify-es": "^1.1.1"
}
}