-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 825 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 825 Bytes
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
{
"name": "github-action-jest-shards",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"build": "esbuild src/index.ts --platform=node --bundle --minify --outfile=dist/index.js",
"test": "jest --runInBand"
},
"simple-git-hooks": {
"pre-commit": "pnpm run build && git add -A ."
},
"dependencies": {
"@actions/artifact": "^1.1.0",
"@actions/core": "^1.8.2",
"@actions/github": "^5.0.3",
"@actions/io": "^1.1.2",
"@types/lodash": "^4.14.182",
"jest": "^28.1.1",
"lodash": "^4.17.21"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@types/jest": "^28.1.1",
"@types/node": "^17.0.41",
"esbuild": "^0.14.43",
"simple-git-hooks": "^2.8.0",
"ts-jest": "^28.0.4",
"typescript": "^4.7.3"
}
}