forked from igorgsduarte/firebase-rollback-hosting-action
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
36 lines (36 loc) · 988 Bytes
/
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
{
"private": true,
"name": "firebase-rollback-hosting-action",
"author": "Igor Gottschalg <[email protected]>",
"exports": {
".": "./dist/index.js"
},
"engines": {
"node": ">=20"
},
"scripts": {
"bundle": "npm run format:write && npm run package",
"format:check": "prettier . --list-different",
"format": "prettier --write .",
"package": "npx ncc build src/index.js -o dist --source-map --license licenses.txt"
},
"dependencies": {
"axios": "^1.7.7",
"googleapis": "^144.0.0",
"node-fetch": "^3.3.2",
"@actions/core": "^1.11.1",
"@actions/exec": "^1.1.1",
"@actions/github": "^6.0.0"
},
"devDependencies": {
"@babel/core": "^7.26.0",
"@babel/eslint-parser": "^7.25.9",
"@babel/preset-env": "^7.26.0",
"@github/local-action": "^2.2.0",
"@vercel/ncc": "^0.38.3",
"eslint": "^8.57.1",
"eslint-plugin-github": "^5.0.2",
"make-coverage-badge": "^1.2.0",
"prettier": "^3.3.3"
}
}