-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1.24 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
{
"name": "firecrypt",
"version": "3.1.1",
"description": "Transparent encryption for Firebase",
"main": "dist/node/firecrypt.js",
"browser": "dist/browser/firecrypt.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "rollup -c rollup.config.js",
"update": "yarn upgrade-interactive --latest"
},
"repository": {
"type": "git",
"url": "git://github.com/pkaminski/firecrypt.git"
},
"keywords": [
"firebase",
"encryption"
],
"author": "Piotr Kaminski <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/pkaminski/firecrypt/issues"
},
"homepage": "https://github.com/pkaminski/firecrypt",
"engines": {
"node": ">=8.x"
},
"dependencies": {
"crypto-js": "^4.0.0",
"cryptojs-extension": "github:reviewable/cryptojs-extension",
"serialized-lru-cache": "^3.1.0"
},
"peerDependencies": {
"firebase": "9.x || 10.x",
"firebase-admin": "10.x || 11.x || 12.x"
},
"optionalDependencies": {
"firebase-childrenkeys": "2.x || 3.x"
},
"devDependencies": {
"@rollup/plugin-buble": "^0.21.3",
"babel-core": "^6.26.3",
"eslint": "^8.21.0",
"rollup": "^2.26.4",
"rollup-plugin-minify-es": "^1.1.1"
}
}