actions-setup/package.json
2024-03-26 20:31:10 +00:00

50 lines
1.4 KiB
JSON

{
"name": "setup-earthly",
"version": "0.0.0",
"private": true,
"description": "Setup the earthly in a GitHub Actions build environment",
"main": "dist/index.js",
"scripts": {
"package": "ncc build -o dist/setup src/setup-earthly.ts --source-map --license LICENSE && ncc build -o dist/cache-save src/cache-save.ts --source-map --license LICENSE",
"test": "jest --coverage src/**/*",
"lint": "eslint src/**/*.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/earthly/actions-setup.git"
},
"author": "earthly technologies",
"keywords": [
"actions",
"earthly",
"setup"
],
"dependencies": {
"@actions/cache": "^3.2.4",
"@actions/core": "^1.10.0",
"@actions/github": "^6.0.0",
"@actions/io": "^1.1.2",
"@actions/tool-cache": "^2.0.1",
"@octokit/core": "^4.1.0",
"@octokit/plugin-paginate-rest": "^5.0.1",
"jest-playback": "^4.0.0",
"make-dir": "^4.0.0",
"mkdirp-promise": "^5.0.1",
"node-fetch": "^3.2.10",
"semver": "^7.3.8"
},
"devDependencies": {
"@types/jest": "^29.2.0",
"@types/node": "^20.0.0",
"@types/semver": "^7.3.13",
"@typescript-eslint/eslint-plugin": "^7.0.0",
"@typescript-eslint/parser": "^7.0.0",
"@vercel/ncc": "^0.38.0",
"eslint": "^8.26.0",
"jest": "^29.2.2",
"prettier": "^3.0.0",
"ts-jest": "^29.0.3",
"typescript": "^5.0.0"
}
}