2023-05-25 18:22:24 +00:00
|
|
|
{
|
2023-07-23 19:31:48 +00:00
|
|
|
"name": "@tj-actions/changed-files",
|
2024-01-25 19:37:33 +00:00
|
|
|
"version": "42.0.2",
|
2023-07-23 19:31:48 +00:00
|
|
|
"description": "Github action to retrieve all (added, copied, modified, deleted, renamed, type changed, unmerged, unknown) files and directories.",
|
2023-05-25 18:22:24 +00:00
|
|
|
"main": "lib/main.js",
|
|
|
|
"publishConfig": {
|
|
|
|
"registry": "https://npm.pkg.github.com"
|
|
|
|
},
|
|
|
|
"scripts": {
|
|
|
|
"build": "tsc",
|
2023-12-05 04:09:37 +00:00
|
|
|
"format": "prettier --write src/*.ts src/**/*.ts",
|
|
|
|
"format-check": "prettier --check src/*.ts src/**/*.ts",
|
|
|
|
"lint": "eslint src/*.ts src/**/*.ts --max-warnings 0",
|
|
|
|
"lint:fix": "eslint --fix src/*.ts src/**/*.ts",
|
2023-05-25 18:22:24 +00:00
|
|
|
"package": "ncc build lib/main.js --source-map --license licenses.txt",
|
|
|
|
"test": "jest --coverage",
|
|
|
|
"all": "yarn build && yarn format && yarn lint && yarn package && yarn test"
|
|
|
|
},
|
|
|
|
"repository": {
|
|
|
|
"type": "git",
|
2023-07-23 19:30:24 +00:00
|
|
|
"url": "git+https://github.com/tj-actions/changed-files.git"
|
2023-05-25 18:22:24 +00:00
|
|
|
},
|
|
|
|
"keywords": [
|
|
|
|
"actions",
|
|
|
|
"glob",
|
|
|
|
"github-actions"
|
|
|
|
],
|
|
|
|
"author": "Tonye Jack",
|
|
|
|
"license": "MIT",
|
|
|
|
"bugs": {
|
2023-07-23 19:30:24 +00:00
|
|
|
"url": "https://github.com/tj-actions/changed-files/issues"
|
2023-05-25 18:22:24 +00:00
|
|
|
},
|
2023-07-23 19:30:24 +00:00
|
|
|
"homepage": "https://github.com/tj-actions/changed-files#readme",
|
2023-05-25 18:22:24 +00:00
|
|
|
"dependencies": {
|
2023-06-27 02:19:20 +00:00
|
|
|
"@actions/core": "^1.10.0",
|
|
|
|
"@actions/exec": "^1.1.1",
|
2023-10-10 17:58:18 +00:00
|
|
|
"@actions/github": "^6.0.0",
|
2023-09-04 21:29:37 +00:00
|
|
|
"@octokit/rest": "^20.0.1",
|
2023-06-27 02:21:48 +00:00
|
|
|
"lodash": "^4.17.21",
|
2023-06-27 02:19:20 +00:00
|
|
|
"micromatch": "^4.0.5",
|
2023-07-09 08:46:27 +00:00
|
|
|
"yaml": "^2.3.1"
|
2023-05-25 18:22:24 +00:00
|
|
|
},
|
|
|
|
"devDependencies": {
|
2023-06-27 02:19:20 +00:00
|
|
|
"@types/jest": "^29.5.2",
|
|
|
|
"@types/lodash": "^4.14.195",
|
|
|
|
"@types/micromatch": "^4.0.2",
|
|
|
|
"@types/node": "^20.3.2",
|
|
|
|
"@types/uuid": "^9.0.2",
|
2023-07-10 22:39:33 +00:00
|
|
|
"@typescript-eslint/eslint-plugin": "^6.0.0",
|
|
|
|
"@typescript-eslint/parser": "^6.0.0",
|
2023-09-06 20:36:35 +00:00
|
|
|
"@vercel/ncc": "^0.38.0",
|
2023-06-27 02:19:20 +00:00
|
|
|
"eslint": "^8.43.0",
|
|
|
|
"eslint-plugin-github": "^4.8.0",
|
|
|
|
"eslint-plugin-jest": "^27.2.2",
|
2023-07-09 08:46:27 +00:00
|
|
|
"eslint-plugin-prettier": "^5.0.0-alpha.2",
|
2023-08-21 22:11:26 +00:00
|
|
|
"eslint-config-prettier": "^9.0.0",
|
2023-06-27 02:19:20 +00:00
|
|
|
"jest": "^29.5.0",
|
2023-07-09 08:46:27 +00:00
|
|
|
"prettier": "^3.0.0",
|
2023-06-27 02:19:20 +00:00
|
|
|
"ts-jest": "^29.1.0",
|
|
|
|
"typescript": "^5.1.3"
|
2023-05-25 18:22:24 +00:00
|
|
|
}
|
|
|
|
}
|