-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.27 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
{
"name": "firebase-functions-downloader",
"version": "0.0.5",
"type": "module",
"description": "Downloads firebase/google cloud functions code",
"repository": "https://github.com/omar-dulaimi/firebase-functions-downloader",
"bin": {
"firebase-fd": "lib/bin/index.js"
},
"scripts": {
"build": "tsc",
"clean": "rm -rf lib",
"package:publish": "./package.sh && cd package && npm publish"
},
"author": {
"name": "Omar Dulaimi",
"url": "https://github.com/omar-dulaimi"
},
"keywords": [
"firebase-cloud-functions",
"firebase-functions-downloader",
"firebase"
],
"license": "MIT",
"dependencies": {
"axios": "^1.2.2",
"boxen": "^4.0.0",
"chalk": "^4.1.0",
"clear": "^0.1.0",
"commander": "^9.4.1",
"figlet": "^1.5.2",
"googleapis": "^110.0.0",
"ora": "^6.1.2",
"p-map": "^4.0.0"
},
"devDependencies": {
"@types/chalk": "^2.2.0",
"@types/clear": "^0.1.2",
"@types/commander": "^2.12.2",
"@types/figlet": "^1.5.5",
"@types/node": "^17.0.35",
"typescript": "^4.7.2"
},
"bugs": {
"url": "https://github.com/omar-dulaimi/firebase-functions-downloader/issues"
},
"homepage": "https://github.com/omar-dulaimi/firebase-functions-downloader#readme",
"private": true
}