mirror of
https://github.com/actions/runner.git
synced 2025-12-11 12:57:05 +00:00
36 lines
923 B
JSON
36 lines
923 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": "^2.8.0",
|
|
"@zeit/ncc": "^0.20.5",
|
|
"eslint": "^6.8.0",
|
|
"eslint-plugin-github": "^2.0.0",
|
|
"prettier": "^1.19.1",
|
|
"typescript": "^3.6.4"
|
|
}
|
|
}
|