-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
41 lines (41 loc) · 1.17 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
{
"private": true,
"name": "firebase-rollback-hosting-action",
"main": "bin/action.min.js",
"author": "Igor Gottschalg <igorgsduarte@gmail.com>",
"source": "src/index.ts",
"devDependencies": {
"@actions/core": "^1.10.0",
"@actions/exec": "^1.1.1",
"@actions/github": "^5.1.1",
"@babel/core": "^7.12.3",
"@babel/preset-env": "^7.12.1",
"@babel/preset-typescript": "^7.12.1",
"@tsconfig/node12": "^1.0.7",
"@types/jest": "^27.4.1",
"@types/tmp": "^0.2.0",
"babel-jest": "^27.5.1",
"dotenv": "^16.0.0",
"esbuild": "^0.14.36",
"husky": "^7.0.0",
"jest": "^27.5.1",
"prettier": "^2.7.1",
"pretty-quick": "^3.1.3",
"tmp": "^0.2.1",
"ts-jest": "^27.1.4",
"ts-node": "^10.9.1",
"typescript": "^4.8.4"
},
"scripts": {
"format:check": "prettier . --list-different",
"format": "prettier --write .",
"build": "esbuild src/index.ts --bundle --minify --format=cjs --platform=node --target=node12 --outfile=./bin/action.min.js",
"test": "jest --watchAll",
"prepare": "husky install"
},
"dependencies": {
"axios": "^1.1.3",
"googleapis": "^108.0.0",
"node-fetch": "^3.2.10"
}
}