2023-01-14 08:11:40 -06:00
|
|
|
{
|
2023-04-10 20:36:00 -04:00
|
|
|
"name": "rtx-action",
|
2023-03-06 09:38:55 -06:00
|
|
|
"version": "1.1.1",
|
2023-01-14 08:11:40 -06:00
|
|
|
"private": true,
|
2023-04-10 20:36:00 -04:00
|
|
|
"description": "rtx tool setup action",
|
2023-01-14 08:11:40 -06:00
|
|
|
"main": "lib/main.js",
|
|
|
|
"scripts": {
|
|
|
|
"build": "tsc",
|
|
|
|
"format": "prettier --write '**/*.ts'",
|
|
|
|
"format-check": "prettier --check '**/*.ts'",
|
|
|
|
"lint": "eslint src/**/*.ts",
|
2023-04-10 20:36:00 -04:00
|
|
|
"package": "ncc build --source-map --license licenses.txt && ncc build -o dist/cache-save lib/cache-save.js --source-map",
|
2023-01-14 08:11:40 -06:00
|
|
|
"test": "jest",
|
2023-01-14 08:44:01 -06:00
|
|
|
"all": "npm run build && npm run format && npm run lint && npm run package && npm test",
|
|
|
|
"prepare": "husky install"
|
2023-01-14 08:11:40 -06:00
|
|
|
},
|
|
|
|
"repository": {
|
|
|
|
"type": "git",
|
2023-08-27 12:12:44 -05:00
|
|
|
"url": "git+https://github.com/jdx/rtx-action.git"
|
2023-01-14 08:11:40 -06:00
|
|
|
},
|
|
|
|
"keywords": [
|
|
|
|
"actions",
|
2023-04-10 20:36:00 -04:00
|
|
|
"rtx",
|
2023-01-14 08:11:40 -06:00
|
|
|
"setup"
|
|
|
|
],
|
|
|
|
"author": "",
|
|
|
|
"license": "MIT",
|
|
|
|
"dependencies": {
|
2023-08-09 18:20:58 -05:00
|
|
|
"@actions/cache": "^3.2.2",
|
2023-01-14 08:36:43 -06:00
|
|
|
"@actions/core": "^1.10.0",
|
2023-04-10 20:36:00 -04:00
|
|
|
"@actions/exec": "^1.1.1",
|
|
|
|
"@actions/glob": "^0.4.0"
|
2023-01-14 08:11:40 -06:00
|
|
|
},
|
|
|
|
"devDependencies": {
|
2023-08-28 07:55:25 -05:00
|
|
|
"@tsconfig/node16": "^16.1.1",
|
2023-09-18 13:41:48 +00:00
|
|
|
"@types/node": "^20.6.2",
|
2023-09-18 08:39:08 -05:00
|
|
|
"@typescript-eslint/eslint-plugin": "^6.7.0",
|
2023-09-18 13:46:45 +00:00
|
|
|
"@typescript-eslint/parser": "^6.7.0",
|
2023-02-20 03:57:01 +00:00
|
|
|
"@vercel/ncc": "^0.36.1",
|
2023-09-18 13:44:07 +00:00
|
|
|
"eslint": "^8.49.0",
|
2023-09-04 12:05:27 +00:00
|
|
|
"eslint-plugin-github": "^4.10.0",
|
2023-07-17 14:34:22 +00:00
|
|
|
"eslint-plugin-jest": "^27.2.3",
|
2023-08-09 18:20:58 -05:00
|
|
|
"eslint-plugin-prettier": "^5.0.0",
|
2023-03-25 15:19:50 -05:00
|
|
|
"husky": "^8.0.3",
|
2023-08-28 13:05:01 +00:00
|
|
|
"jest": "^29.6.4",
|
2023-01-14 08:11:40 -06:00
|
|
|
"js-yaml": "^4.1.0",
|
2023-09-04 12:11:07 +00:00
|
|
|
"prettier": "^3.0.3",
|
2023-07-10 10:18:37 +00:00
|
|
|
"ts-jest": "^29.1.1",
|
2023-09-04 12:02:40 +00:00
|
|
|
"typescript": "^5.2.2"
|
2023-01-14 08:11:40 -06:00
|
|
|
}
|
|
|
|
}
|