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": {
|
2023-08-15 17:47:07 -04:00
|
|
|
"@actions/glob": "^0.4.0"
|
2020-01-19 10:32:13 -05:00
|
|
|
},
|
|
|
|
|
"devDependencies": {
|
2025-11-18 10:12:23 -05:00
|
|
|
"@stylistic/eslint-plugin": "^3.1.0",
|
|
|
|
|
"@types/node": "^22.0.0",
|
|
|
|
|
"@typescript-eslint/eslint-plugin": "^8.0.0",
|
|
|
|
|
"@typescript-eslint/parser": "^8.0.0",
|
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",
|
2025-03-14 14:51:10 -04:00
|
|
|
"lint-staged": "^15.5.0",
|
|
|
|
|
"prettier": "^3.0.3",
|
2026-01-07 18:52:44 +00:00
|
|
|
"typescript": "^5.9.3"
|
2020-01-19 10:32:13 -05:00
|
|
|
}
|
2025-03-14 14:51:10 -04:00
|
|
|
}
|