-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
37 lines (37 loc) · 1000 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": "testkube-run-action",
"description": "GitHub Action to execute tests and test suites on the Testkube platform.",
"version": "1.0.0",
"license": "MIT",
"author": "Kubeshop",
"main": "dist/index.js",
"engines": {
"npm": ">=9.0.0"
},
"scripts": {
"build": "rimraf dist && npx ncc build src/index.ts --license licenses.txt"
},
"repository": {
"type": "git",
"url": "git+https://github.com/kubeshop/testkube-run-action.git"
},
"bugs": {
"url": "https://github.com/kubeshop/testkube-run-action/issues"
},
"homepage": "https://github.com/kubeshop/testkube-run-action#readme",
"dependencies": {
"@actions/core": "^1.10.0",
"@actions/github": "^5.1.1",
"@actions/tool-cache": "^2.0.1",
"got": "^12.6.0",
"which": "^4.0.0"
},
"devDependencies": {
"@types/node": "^18.16.3",
"@types/tar": "^6.1.6",
"@types/which": "^3.0.0",
"@vercel/ncc": "^0.36.1",
"rimraf": "^5.0.0",
"typescript": "^5.0.4"
}
}