initial commit of actions

This commit is contained in:
2026-01-31 18:56:04 +01:00
commit 949ece5785
44660 changed files with 12034344 additions and 0 deletions

View File

@@ -0,0 +1,59 @@
{
"name": "file-existence-action",
"version": "1.1.0",
"private": true,
"description": "GitHub Action to check for file existence",
"main": "lib/main.js",
"scripts": {
"build": "tsc",
"format": "prettier --write **/*.ts",
"format-check": "prettier --check **/*.ts",
"lint": "eslint src/**/*.ts",
"pack": "ncc build",
"test": "mocha",
"all": "npm run build && npm run format && npm run lint && npm run pack && npm test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/andstor/file-existence-action.git"
},
"keywords": [
"actions",
"file",
"existence",
"checker"
],
"author": {
"name": "André Storhaug",
"email": "andr3.storhaug@gmail.com",
"url": "https://github.com/andstor"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/andstor/file-existence-action/issues"
},
"dependencies": {
"@actions/core": "^1.6.0",
"glob": "^7.2.0",
"tmp": "^0.2.1"
},
"devDependencies": {
"@types/chai": "^4.3.0",
"@types/glob": "^7.2.0",
"@types/mocha": "^9.1.0",
"@types/node": "^16.10.5",
"@types/tmp": "^0.2.3",
"@typescript-eslint/parser": "^5.8.1",
"@vercel/ncc": "^0.31.1",
"@zeit/ncc": "^0.20.5",
"chai": "^4.3.6",
"eslint": "^7.32.0",
"eslint-plugin-github": "^4.3.5",
"eslint-plugin-jest": "^26.1.1",
"js-yaml": "^4.1.0",
"mocha": "^9.2.1",
"prettier": "2.5.1",
"ts-node": "^10.5.0",
"typescript": "^4.4.4"
}
}