-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
52 lines (52 loc) · 1.55 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
41
42
43
44
45
46
47
48
49
50
51
52
{
"name": "testing-farm-as-github-action",
"version": "2.0.0",
"description": "A GitHub action will schedule a user defined tests to the Testing Farm to run tmt tests",
"main": "src/main.ts",
"type": "module",
"directories": {
"test": "tests"
},
"scripts": {
"build": "tsc",
"format": "prettier --write '**/*.ts'",
"format-check": "prettier --check '**/*.ts'",
"package": "ncc build --source-map --license licenses.txt",
"test": "vitest run --coverage",
"update-snapshots": "vitest run --update",
"all": "yarn && yarn run build && yarn run format && yarn run package && yarn test"
},
"packageManager": "[email protected]",
"repository": {
"type": "git",
"url": "git+https://github.com/sclorg/testing-farm-as-github-action.git"
},
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/sclorg/testing-farm-as-github-action/issues"
},
"homepage": "https://github.com/sclorg/testing-farm-as-github-action#readme",
"dependencies": {
"@actions/core": "1.10.1",
"@actions/github": "6.0.0",
"@octokit/core": "6.1.2",
"@octokit/plugin-throttling": "9.3.1",
"@octokit/rest": "21.0.2",
"@octokit/types": "13.6.1",
"date-fns": "4.1.0",
"issue-metadata": "0.2.3",
"testing-farm": "1.10.0",
"zod": "3.23.5"
},
"devDependencies": {
"@total-typescript/ts-reset": "0.6.1",
"@types/node": "22.8.6",
"@vercel/ncc": "0.38.2",
"@vitest/coverage-v8": "2.1.4",
"prettier": "3.3.3",
"ts-node": "10.9.2",
"typescript": "5.6.3",
"vitest": "2.1.4"
}
}