forked from FirebaseExtended/action-hosting-deploy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
30 lines (30 loc) · 862 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
{
"private": true,
"name": "firebase-hosting-preview-action",
"main": "bin/action.min.js",
"source": "src/index.ts",
"devDependencies": {
"@actions/core": "^1.2.6",
"@actions/exec": "^1.0.3",
"@actions/github": "^2.1.1",
"@tsconfig/node12": "^1.0.7",
"@types/tmp": "^0.2.0",
"husky": "^4.2.5",
"microbundle": "^0.12.3",
"prettier": "^2.1.2",
"pretty-quick": "^3.0.2",
"tmp": "^0.2.1",
"typescript": "^4.0.3"
},
"scripts": {
"format:check": "prettier . --list-different",
"format": "prettier --write .",
"build": "microbundle -f cjs --target node --compress --no-sourcemap src/index.ts",
"build:watch": "microbundle watch -f cjs --target node --compress --no-sourcemap src/index.ts"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged && npm run build"
}
}
}