mise-action/package.json

52 lines
1.4 KiB
JSON
Raw Normal View History

2023-01-14 08:11:40 -06: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,
"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",
"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",
"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",
"@actions/exec": "^1.1.1",
"@actions/glob": "^0.4.0"
2023-01-14 08:11:40 -06:00
},
"devDependencies": {
"@tsconfig/node16": "^16.1.1",
"@types/node": "^20.8.3",
"@typescript-eslint/eslint-plugin": "^6.7.5",
"@typescript-eslint/parser": "^6.7.4",
"@vercel/ncc": "^0.38.0",
"eslint": "^8.51.0",
"eslint-plugin-github": "^4.10.1",
"eslint-plugin-jest": "^27.4.2",
"eslint-plugin-prettier": "^5.0.1",
2023-03-25 15:19:50 -05:00
"husky": "^8.0.3",
"jest": "^29.7.0",
2023-01-14 08:11:40 -06:00
"js-yaml": "^4.1.0",
"prettier": "^3.0.3",
"ts-jest": "^29.1.1",
"typescript": "^5.2.2"
2023-01-14 08:11:40 -06:00
}
}