-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
50 lines (50 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
50
{
"name": "firebase-storage-func-helper",
"version": "1.1.0",
"description": "A helper to simplify the usage of firebase storage functions",
"type": "module",
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"types": "./dist/index.d.cts",
"files": [
"dist"
],
"scripts": {
"build": "tsup",
"test": "echo \"Error: no test specified\" && exit 1",
"prettier": "prettier --ignore-unknown '**/*'",
"prettier:write": "npm run prettier -- --write",
"prettier:check": "npm run prettier -- --check"
},
"repository": {
"type": "git",
"url": "https://github.com/marvin-kolja/firebase-storage-func-helper.git"
},
"packageManager": "[email protected]",
"keywords": [
"firebase",
"storage",
"cloud",
"functions",
"content-type",
"path"
],
"author": "Marvin Willms",
"license": "ISC",
"bugs": {
"url": "https://github.com/marvin-kolja/firebase-storage-func-helper/issues"
},
"homepage": "https://github.com/marvin-kolja/firebase-storage-func-helper#readme",
"devDependencies": {
"prettier": "3.2.4",
"ts-node": "^10.9.2",
"tsup": "^8.0.1",
"typescript": "^5.3.3"
},
"peerDependencies": {
"firebase-functions": "> 4.6.0 < 6.0.0"
},
"dependencies": {
"path-to-regexp": "^8.2.0"
}
}