2020-05-20 23:03:08 +08:00
|
|
|
{
|
2020-06-16 03:49:10 +08:00
|
|
|
"name": "paths-filter",
|
2020-05-21 19:46:48 +08:00
|
|
|
"version": "1.0.0",
|
2023-12-09 09:07:04 +08:00
|
|
|
"engines": {
|
|
|
|
"node": ">= 20"
|
|
|
|
},
|
2020-05-20 23:03:08 +08:00
|
|
|
"private": true,
|
2020-06-16 03:49:10 +08:00
|
|
|
"description": "Execute your workflow steps only if relevant files are modified.",
|
2020-05-20 23:03:08 +08:00
|
|
|
"main": "lib/main.js",
|
|
|
|
"scripts": {
|
|
|
|
"build": "tsc",
|
|
|
|
"format": "prettier --write **/*.ts",
|
|
|
|
"format-check": "prettier --check **/*.ts",
|
|
|
|
"lint": "eslint src/**/*.ts",
|
|
|
|
"pack": "ncc build",
|
|
|
|
"test": "jest",
|
|
|
|
"all": "npm run build && npm run format && npm run lint && npm run pack && npm test"
|
|
|
|
},
|
|
|
|
"repository": {
|
|
|
|
"type": "git",
|
|
|
|
"url": "git+https://github.com/actions/typescript-action.git"
|
|
|
|
},
|
|
|
|
"keywords": [
|
|
|
|
"actions",
|
|
|
|
"node",
|
|
|
|
"setup"
|
|
|
|
],
|
|
|
|
"author": "YourNameOrOrganization",
|
|
|
|
"license": "MIT",
|
|
|
|
"dependencies": {
|
2022-10-13 03:15:02 +08:00
|
|
|
"@actions/core": "^1.10.0",
|
2022-10-12 05:01:54 +08:00
|
|
|
"@actions/exec": "^1.1.1",
|
2020-05-21 06:31:16 +08:00
|
|
|
"@actions/github": "^2.2.0",
|
2020-05-23 20:23:31 +08:00
|
|
|
"@octokit/webhooks": "^7.6.2",
|
2020-11-09 07:36:08 +08:00
|
|
|
"picomatch": "^2.2.2"
|
2020-05-20 23:03:08 +08:00
|
|
|
},
|
|
|
|
"devDependencies": {
|
2022-02-01 14:55:41 +08:00
|
|
|
"@types/jest": "^27.4.0",
|
2020-05-21 06:31:16 +08:00
|
|
|
"@types/js-yaml": "^3.12.4",
|
|
|
|
"@types/minimatch": "^3.0.3",
|
2020-05-23 20:23:31 +08:00
|
|
|
"@types/node": "^14.0.5",
|
2020-11-09 07:36:08 +08:00
|
|
|
"@types/picomatch": "^2.2.1",
|
2022-02-01 14:48:18 +08:00
|
|
|
"@typescript-eslint/eslint-plugin": "^5.10.2",
|
|
|
|
"@typescript-eslint/parser": "^5.10.2",
|
2023-12-05 03:54:44 +08:00
|
|
|
"@vercel/ncc": "^0.38.1",
|
2022-06-10 04:36:15 +08:00
|
|
|
"eslint": "^8.17.0",
|
|
|
|
"eslint-plugin-github": "^4.3.6",
|
2020-05-20 23:03:08 +08:00
|
|
|
"eslint-plugin-jest": "^22.21.0",
|
2022-02-01 14:55:41 +08:00
|
|
|
"jest": "^27.4.7",
|
|
|
|
"jest-circus": "^27.4.6",
|
2020-05-23 20:23:31 +08:00
|
|
|
"js-yaml": "^3.14.0",
|
|
|
|
"prettier": "^2.0.5",
|
2022-02-01 14:55:41 +08:00
|
|
|
"ts-jest": "^27.1.3",
|
2020-05-23 20:23:31 +08:00
|
|
|
"typescript": "^3.9.3"
|
2020-05-21 19:46:48 +08:00
|
|
|
}
|
2020-05-20 23:03:08 +08:00
|
|
|
}
|