-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.56 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 1.56 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
{
"name": "reviewable-enterprise-tools",
"version": "3.1.0",
"type": "module",
"description": "Admin tools for Reviewable Enterprise",
"bin": {
"extract_data": "./extract_data.js",
"load_data": "./load_data.js",
"read": "./read.js"
},
"scripts": {
"extract_data": "node ./extract_data.js",
"load_data": "node ./load_data.js",
"lint": "eslint *.js lib/*.js"
},
"engines": {
"node": ">=20"
},
"repository": "https://github.com/Reviewable/enterprise-tools",
"keywords": [
"firebase",
"encryption",
"reviewable"
],
"author": "Piotr Kaminski <piotr@reviewable.io>",
"license": "MIT",
"bugs": {
"url": "https://github.com/Reviewable/enterprise-tools/issues"
},
"homepage": "https://github.com/Reviewable/enterprise-tools#readme",
"dependencies": {
"@types/async": "^3.2.18",
"agentkeepalive": "^4.1.3",
"any-promise": "^1.3.0",
"async": "^3.2.0",
"bytes": "^3.1.0",
"command-line-args": "^5.1.1",
"command-line-usage": "^7.0.1",
"download": "^8.0.0",
"event-stream": "^4.0.1",
"firebase-admin": "^12.0.0",
"firecrypt": "^5.0.0",
"hubkit": "^6.0.0",
"lodash": "^4.17.20",
"ms": "^2.1.2",
"nodefire": "^3.0.0",
"pace": "0.0.4",
"promise-readable": "^6.0.0",
"promise-writable": "^6.0.0",
"request": "^2.88.2",
"stream-throttle": "^0.1.3",
"yargs": "^17.7.2"
},
"devDependencies": {
"eslint": "^9.39.1",
"eslint-plugin-lodash": "^7.1.0",
"globals": "^16.5.0",
"reviewable-configs": "Reviewable/reviewable-configs"
}
}