[READ-ONLY] Mirror of https://github.com/andrioid/gh-action-k8s-set-image. A more compact way of setting images across a Kubernetes cluster
746 B
36 lines
1{
2 "name": "gh-action-kubernetes-set-image",
3 "version": "1.0.0",
4 "description": "",
5 "main": "lib/index.js",
6 "scripts": {
7 "build": "tsc && ncc build --source-map",
8 "test": "jest"
9 },
10 "keywords": [],
11 "author": "",
12 "license": "ISC",
13 "dependencies": {
14 "@actions/core": "^1.2.4",
15 "@actions/exec": "^1.0.4"
16 },
17 "devDependencies": {
18 "@types/jest": "^26.0.10",
19 "@types/node": "^14.6.0",
20 "@vercel/ncc": "^0.24.0",
21 "jest": "^26.4.2",
22 "ts-jest": "^26.3.0",
23 "typescript": "^4.0.2"
24 },
25 "jest": {
26 "transform": {
27 ".(ts|tsx)": "ts-jest"
28 },
29 "testRegex": "(/__tests__/.*|\\.(test|spec))\\.(ts|tsx|js)$",
30 "moduleFileExtensions": [
31 "ts",
32 "tsx",
33 "js"
34 ]
35 }
36}