mirror of
https://github.com/actions/runner.git
synced 2026-03-13 18:07:13 -04:00
Bumps [@typescript-eslint/parser](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/parser) from 8.47.0 to 8.54.0. - [Release notes](https://github.com/typescript-eslint/typescript-eslint/releases) - [Changelog](https://github.com/typescript-eslint/typescript-eslint/blob/main/packages/parser/CHANGELOG.md) - [Commits](https://github.com/typescript-eslint/typescript-eslint/commits/v8.54.0/packages/parser) --- updated-dependencies: - dependency-name: "@typescript-eslint/parser" dependency-version: 8.54.0 dependency-type: direct:development update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com>
52 lines
1.3 KiB
JSON
52 lines
1.3 KiB
JSON
{
|
|
"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",
|
|
"all": "npm run format && npm run lint && npm run build && npm run pack",
|
|
"prepare": "cd ../../../../ && husky"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/actions/runner.git"
|
|
},
|
|
"keywords": [
|
|
"actions"
|
|
],
|
|
"lint-staged": {
|
|
"*.md": [
|
|
"prettier --write",
|
|
"git add ."
|
|
],
|
|
"*.{ts,json}": [
|
|
"sh -c 'npm run all'",
|
|
"git add ."
|
|
]
|
|
},
|
|
"author": "GitHub Actions",
|
|
"license": "MIT",
|
|
"dependencies": {
|
|
"@actions/glob": "^0.4.0"
|
|
},
|
|
"devDependencies": {
|
|
"@stylistic/eslint-plugin": "^3.1.0",
|
|
"@types/node": "^22.0.0",
|
|
"@typescript-eslint/eslint-plugin": "^8.0.0",
|
|
"@typescript-eslint/parser": "^8.54.0",
|
|
"@vercel/ncc": "^0.38.3",
|
|
"eslint": "^8.47.0",
|
|
"eslint-plugin-github": "^4.10.2",
|
|
"eslint-plugin-prettier": "^5.0.0",
|
|
"husky": "^9.1.7",
|
|
"lint-staged": "^15.5.0",
|
|
"prettier": "^3.0.3",
|
|
"typescript": "^5.9.3"
|
|
}
|
|
}
|