forked from hashicorp-forge/go-test-split-action
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 1001 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": "test-split-go",
"version": "1.0.1",
"private": "true",
"description": "Github action that lists a subset of tests suitable for passing into go test -run",
"main": "dist/index.js",
"scripts": {
"build": "ncc build src/action.ts -o dist --license licenses.txt",
"format": "prettier --write '**/*.ts'",
"format-check": "prettier --check '**/*.ts'",
"test": "jest",
"prepare": "husky install"
},
"repository": {
"type": "git",
"url": "git+https://github.com/hashicorp-forge/go-test-split-action.git"
},
"author": {
"name": "Brandon Croft",
"email": "[email protected]"
},
"license": "MPL-2.0",
"dependencies": {
"@actions/core": "^1.10.0",
"@actions/exec": "^1.1.1",
"fast-xml-parser": "^4.2.5"
},
"devDependencies": {
"@types/jest": "^29.2.1",
"@vercel/ncc": "^0.34.0",
"husky": "^8.0.2",
"jest": "^29.2.2",
"prettier": "^2.7.1",
"ts-jest": "^29.0.3",
"typescript": "^4.8.4"
}
}