2020-01-19 10:32:13 -05:00
|
|
|
{
|
|
|
|
|
"name": "hashFiles",
|
|
|
|
|
"version": "1.0.0",
|
|
|
|
|
"description": "GitHub Actions HashFiles() expression function",
|
|
|
|
|
"main": "lib/hashFiles.js",
|
|
|
|
|
"scripts": {
|
|
|
|
|
"build": "tsc",
|
|
|
|
|
"format": "prettier --write **/*.ts",
|
|
|
|
|
"format-check": "prettier --check **/*.ts",
|
|
|
|
|
"lint": "eslint src/**/*.ts",
|
|
|
|
|
"pack": "ncc build -o ../../layoutbin/hashFiles",
|
2023-08-24 10:14:11 -04:00
|
|
|
"all": "npm run format && npm run lint && npm run build && npm run pack",
|
2025-09-01 10:16:05 +01:00
|
|
|
"prepare": "cd ../../../../ && husky"
|
2020-01-19 10:32:13 -05:00
|
|
|
},
|
|
|
|
|
"repository": {
|
|
|
|
|
"type": "git",
|
|
|
|
|
"url": "git+https://github.com/actions/runner.git"
|
|
|
|
|
},
|
|
|
|
|
"keywords": [
|
|
|
|
|
"actions"
|
|
|
|
|
],
|
2023-08-24 10:14:11 -04:00
|
|
|
"lint-staged": {
|
|
|
|
|
"*.md": [
|
|
|
|
|
"prettier --write",
|
|
|
|
|
"git add ."
|
|
|
|
|
],
|
|
|
|
|
"*.{ts,json}": [
|
|
|
|
|
"sh -c 'npm run all'",
|
|
|
|
|
"git add ."
|
|
|
|
|
]
|
|
|
|
|
},
|
2020-01-19 10:32:13 -05:00
|
|
|
"author": "GitHub Actions",
|
|
|
|
|
"license": "MIT",
|
|
|
|
|
"dependencies": {
|
2026-04-10 12:40:28 +01:00
|
|
|
"@actions/glob": "^0.6.1"
|
2020-01-19 10:32:13 -05:00
|
|
|
},
|
|
|
|
|
"devDependencies": {
|
2026-03-07 22:13:23 +00:00
|
|
|
"@stylistic/eslint-plugin": "^5.10.0",
|
2025-11-18 10:12:23 -05:00
|
|
|
"@types/node": "^22.0.0",
|
2026-04-08 07:44:38 +00:00
|
|
|
"@typescript-eslint/eslint-plugin": "^8.58.1",
|
2026-04-10 12:40:28 +01:00
|
|
|
"@typescript-eslint/parser": "^8.58.1",
|
2025-08-30 03:24:53 +00:00
|
|
|
"@vercel/ncc": "^0.38.3",
|
2023-08-15 17:47:07 -04:00
|
|
|
"eslint": "^8.47.0",
|
2025-08-30 04:03:46 +00:00
|
|
|
"eslint-plugin-github": "^4.10.2",
|
2023-08-11 16:33:23 -04:00
|
|
|
"eslint-plugin-prettier": "^5.0.0",
|
2025-08-30 03:19:49 +00:00
|
|
|
"husky": "^9.1.7",
|
2026-04-10 12:40:28 +01:00
|
|
|
"lint-staged": "^16.4.0",
|
2025-03-14 14:51:10 -04:00
|
|
|
"prettier": "^3.0.3",
|
2026-04-10 09:01:34 +01:00
|
|
|
"typescript": "^6.0.2"
|
2020-01-19 10:32:13 -05:00
|
|
|
}
|
2025-03-14 14:51:10 -04:00
|
|
|
}
|