generated from actions/typescript-action
-
Notifications
You must be signed in to change notification settings - Fork 28
/
package.json
67 lines (67 loc) · 1.79 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
{
"name": "setup-kind",
"version": "0.6.0",
"private": true,
"description": "GitHub Action to setup KinD (Kubernetes in Docker)",
"main": "lib/main.js",
"scripts": {
"build": "npm run build:main && npm run build:post",
"build:main": "ncc build --minify -o dist/main src/main.ts",
"build:post": "ncc build --minify -o dist/post src/post.ts",
"lint": "eslint '**/*.{ts,json}'",
"lint:fix": "npm run lint --fix",
"pre-commit": "lint-staged",
"prepare": "husky install",
"test": "jest",
"test:coverage": "npm run test --coverage"
},
"repository": {
"type": "git",
"url": "git+https://github.com/engineerd/setup-kind.git"
},
"keywords": [
"actions",
"docker",
"kind",
"kubernetes",
"k8s",
"node",
"setup"
],
"author": "Engineerd",
"license": "MIT",
"dependencies": {
"@actions/artifact": "^2.1.11",
"@actions/cache": "^3.2.4",
"@actions/core": "^1.11.1",
"@actions/exec": "^1.1.1",
"@actions/glob": "^0.5.0",
"@actions/io": "^1.1.3",
"@actions/tool-cache": "^2.0.1",
"semver": "^7.6.3",
"uuid": "^10.0.0"
},
"devDependencies": {
"@eslint/js": "^9.13.0",
"@types/jest": "^29.5.13",
"@types/node": "^22.7.7",
"@types/semver": "^7.5.8",
"@types/uuid": "^10.0.0",
"@typescript-eslint/eslint-plugin": "^8.10.0",
"@typescript-eslint/parser": "^8.10.0",
"@vercel/ncc": "^0.38.2",
"eslint": "^9.13.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-jest": "^28.8.3",
"eslint-plugin-prettier": "^5.2.1",
"globals": "^15.11.0",
"husky": "^9.1.6",
"jest": "^29.7.0",
"lint-staged": "^15.2.10",
"prettier": "^3.3.3",
"ts-jest": "^29.2.5",
"ts-node": "^10.9.2",
"typescript": "^5.6.3",
"typescript-eslint": "^8.10.0"
}
}