-
Notifications
You must be signed in to change notification settings - Fork 201
/
package.json
40 lines (40 loc) · 1.14 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
{
"private": true,
"name": "firebase-hosting-preview-action",
"main": "bin/action.min.js",
"source": "src/index.ts",
"devDependencies": {
"@actions/core": "^1.10.0",
"@actions/exec": "^1.1.1",
"@actions/github": "^5.1.1",
"@babel/core": "^7.21.4",
"@babel/preset-env": "^7.24.6",
"@babel/preset-typescript": "^7.24.6",
"@tsconfig/node12": "^1.0.11",
"@types/jest": "^29.5.1",
"@types/tmp": "^0.2.3",
"babel-jest": "^29.5.0",
"husky": "^9.0.11",
"jest": "^29.5.0",
"microbundle": "^0.15.1",
"prettier": "^2.8.7",
"pretty-quick": "^3.3.1",
"tmp": "^0.2.1",
"ts-jest": "^29.1.3",
"ts-node": "^10.9.1",
"typescript": "^5.0.4"
},
"scripts": {
"format:check": "prettier . --list-different",
"format": "prettier --write .",
"build": "microbundle --format cjs --target node --no-compress --no-sourcemap src/index.ts",
"build:watch": "microbundle watch --format cjs --target node --no-compress --no-sourcemap src/index.ts",
"test": "jest"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged && npm run build"
}
},
"version": "0.8.0"
}