-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
37 lines (37 loc) · 920 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
37
{
"name": "setup-firebase",
"version": "1.0.0",
"description": "Setup Firebase Action",
"main": "lib/setup-firebase.js",
"scripts": {
"build": "ncc build -o dist/setup src/setup-firebase.ts",
"format": "prettier --write **/*.ts",
"format-check": "prettier --check **/*.ts",
"test": "jest",
"pre-checkin": "npm run format && npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/w9jds/setup-firebase.git"
},
"keywords": [
"actions",
"firebase",
"setup"
],
"author": "Jeremy Shore",
"license": "MIT",
"devDependencies": {
"@types/command-exists": "^1.2.3",
"@vercel/ncc": "^0.34.0",
"prettier": "^2.8.8",
"typescript": "^4.9.5"
},
"dependencies": {
"@actions/cache": "^3.2.4",
"@actions/core": "^1.10.1",
"@actions/exec": "^1.1.1",
"@actions/io": "^1.1.3",
"command-exists": "^1.2.9"
}
}