mirror of
https://github.com/actions/runner.git
synced 2025-12-10 04:06:57 +00:00
36 lines
927 B
JSON
36 lines
927 B
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 build && npm run format && npm run lint && npm run pack"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/actions/runner.git"
|
|
},
|
|
"keywords": [
|
|
"actions"
|
|
],
|
|
"author": "GitHub Actions",
|
|
"license": "MIT",
|
|
"dependencies": {
|
|
"@actions/glob": "^0.1.0"
|
|
},
|
|
"devDependencies": {
|
|
"@types/node": "^12.7.12",
|
|
"@typescript-eslint/parser": "^5.15.0",
|
|
"@vercel/ncc": "^0.36.0",
|
|
"eslint": "^8.11.0",
|
|
"eslint-plugin-github": "^4.3.5",
|
|
"prettier": "^1.19.1",
|
|
"typescript": "^3.6.4"
|
|
}
|
|
}
|