setup-kubectl/package.json

31 lines
740 B
JSON
Raw Normal View History

2019-09-10 12:10:21 +02:00
{
"name": "setup-kubectl-action",
"version": "0.0.0",
"private": true,
"main": "lib/run.js",
"scripts": {
"build": "tsc --outDir .\\lib\\ --rootDir .\\src\\",
"test": "jest",
"test-coverage": "jest --coverage"
2019-09-10 12:10:21 +02:00
},
"keywords": [
"actions",
"node",
"setup"
],
"author": "GitHub",
"license": "MIT",
"dependencies": {
"@actions/core": "^1.2.6",
2019-09-10 12:10:21 +02:00
"@actions/exec": "^1.0.0",
"@actions/tool-cache": "^1.0.0"
},
"devDependencies": {
"@types/node": "^12.0.4",
"jest": "^26.0.1",
"@types/jest": "^25.2.2",
"ts-jest": "^25.5.1",
"typescript": "3.9.2"
2019-09-10 12:10:21 +02:00
}
}