-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
77 lines (77 loc) · 1.82 KB
/
package.json
File metadata and controls
77 lines (77 loc) · 1.82 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
{
"name": "@solidkeyab/firebase-devops-toolkit",
"version": "0.1.1",
"description": "Enterprise-grade Firebase DevOps toolkit - 80+ production-ready scripts for local development, deployment, and team collaboration",
"main": "manage.sh",
"scripts": {
"test": "echo \"No tests specified\" && exit 0",
"postinstall": "chmod +x *.sh local/*.sh remote/*.sh 2>/dev/null || true && echo \"Firebase DevOps Toolkit installed successfully!\""
},
"keywords": [
"firebase",
"emulator",
"microservices",
"deployment",
"devops",
"serverless",
"cloud-functions",
"firestore",
"pubsub",
"gcp",
"google-cloud",
"development-tools",
"cli"
],
"author": "SolidKey AB <dev@solidkey.se>",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/SolidKeyAB/firebase-devops-toolkit.git"
},
"bugs": {
"url": "https://github.com/SolidKeyAB/firebase-devops-toolkit/issues"
},
"homepage": "https://github.com/SolidKeyAB/firebase-devops-toolkit#readme",
"publishConfig": {
"registry": "https://npm.pkg.github.com"
},
"engines": {
"node": ">=18.0.0"
},
"peerDependencies": {
"firebase-tools": ">=13.0.0"
},
"files": [
"*.sh",
"*.js",
"*.md",
"local/",
"remote/",
"examples/",
"docs/",
"templates/",
"lib/"
],
"bin": {
"firebase-devops": "./manage.sh",
"fdt": "./manage.sh"
},
"directories": {
"doc": "docs",
"example": "examples",
"lib": "lib"
},
"dependencies": {
"dotenv": "^16.3.1",
"express": "^4.18.2",
"express-rate-limit": "^7.1.5",
"express-session": "^1.17.3",
"helmet": "^7.1.0",
"http-proxy-middleware": "^2.0.6"
},
"devDependencies": {},
"funding": {
"type": "github",
"url": "https://github.com/sponsors/SolidKeyAB"
}
}