-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.02 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.02 KB
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
{
"name": "setup-testkube-cli",
"version": "1.0.0",
"private": true,
"description": "Setup the testkube CLI in github actions",
"main": "lib/main.js",
"scripts": {
"build": "ncc build src/run.ts -o lib",
"format": "prettier --write .",
"format-check": "prettier --check .",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Sonlis/setup-testkube-cli.git"
},
"keywords": [
"actions",
"node",
"setup",
"testkube"
],
"author": "Sonlis",
"license": "MIT",
"dependencies": {
"@actions/core": "^1.10.0",
"@actions/tool-cache": "^2.0.1",
"axios": "^1.2.3",
"tar": "^6.1.13"
},
"devDependencies": {
"@types/node": "^18.11.18",
"@typescript-eslint/parser": "^4.33.0",
"@vercel/ncc": "^0.36.0",
"eslint": "^7.32.0",
"eslint-plugin-github": "^4.3.2",
"eslint-plugin-jest": "^25.3.2",
"jest": "^27.2.5",
"js-yaml": "^4.1.0",
"prettier": "2.8.3",
"ts-jest": "^27.1.2",
"typescript": "^4.4.4"
}
}