-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 745 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 745 Bytes
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
{
"name": "firebase-trigger",
"version": "1.1.0",
"description": "Update firebase data when your build completes",
"main": "lib/index.js",
"scripts": {
"build": "tsc",
"pack": "ncc build",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/w9jds/firebase-trigger.git"
},
"keywords": [
"action",
"utility"
],
"author": "Jeremy Shore",
"license": "MIT",
"bugs": {
"url": "https://github.com/w9jds/firebase-trigger/issues"
},
"homepage": "https://github.com/w9jds/firebase-trigger#readme",
"dependencies": {
"@actions/core": "^1.8.2",
"firebase-admin": "^10.2.0"
},
"devDependencies": {
"jest": "^28.1.0",
"typescript": "^4.6.4"
}
}