2021-04-20 15:28:53 -07:00
|
|
|
{
|
|
|
|
"name": "setup-earthly",
|
|
|
|
"version": "0.0.0",
|
|
|
|
"private": true,
|
2022-03-27 19:48:50 -07:00
|
|
|
"description": "Setup the earthly in a GitHub Actions build environment",
|
|
|
|
"main": "dist/index.js",
|
|
|
|
"scripts": {
|
2022-04-20 18:32:57 -07:00
|
|
|
"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",
|
2022-04-18 18:30:58 -07:00
|
|
|
"test": "jest --coverage src/**/*",
|
|
|
|
"lint": "eslint src/**/*.ts"
|
2022-03-27 19:48:50 -07:00
|
|
|
},
|
2021-04-20 15:28:53 -07:00
|
|
|
"repository": {
|
|
|
|
"type": "git",
|
2022-03-27 19:48:50 -07:00
|
|
|
"url": "git+https://github.com/earthly/actions-setup.git"
|
2021-04-20 15:28:53 -07:00
|
|
|
},
|
2022-03-27 19:48:50 -07:00
|
|
|
"author": "earthly technologies",
|
2021-04-20 15:28:53 -07:00
|
|
|
"keywords": [
|
|
|
|
"actions",
|
|
|
|
"earthly",
|
|
|
|
"setup"
|
|
|
|
],
|
|
|
|
"dependencies": {
|
2024-03-18 11:20:12 -05:00
|
|
|
"@actions/cache": "^3.2.4",
|
2022-11-07 10:52:24 -08:00
|
|
|
"@actions/core": "^1.10.0",
|
2024-03-26 19:55:13 +00:00
|
|
|
"@actions/github": "^6.0.0",
|
2022-11-07 10:52:24 -08:00
|
|
|
"@actions/io": "^1.1.2",
|
|
|
|
"@actions/tool-cache": "^2.0.1",
|
|
|
|
"@octokit/core": "^4.1.0",
|
|
|
|
"@octokit/plugin-paginate-rest": "^5.0.1",
|
2024-03-26 19:57:56 +00:00
|
|
|
"jest-playback": "^4.0.0",
|
2024-03-26 19:35:53 +00:00
|
|
|
"make-dir": "^4.0.0",
|
2022-03-27 19:48:50 -07:00
|
|
|
"mkdirp-promise": "^5.0.1",
|
2022-11-07 10:52:24 -08:00
|
|
|
"node-fetch": "^3.2.10",
|
|
|
|
"semver": "^7.3.8"
|
2022-03-27 19:48:50 -07:00
|
|
|
},
|
|
|
|
"devDependencies": {
|
2022-11-07 10:52:24 -08:00
|
|
|
"@types/jest": "^29.2.0",
|
2024-03-26 20:25:56 +00:00
|
|
|
"@types/node": "^20.0.0",
|
2022-11-07 10:52:24 -08:00
|
|
|
"@types/semver": "^7.3.13",
|
2024-03-26 20:28:45 +00:00
|
|
|
"@typescript-eslint/eslint-plugin": "^7.0.0",
|
|
|
|
"@typescript-eslint/parser": "^7.0.0",
|
2024-03-26 20:31:10 +00:00
|
|
|
"@vercel/ncc": "^0.38.0",
|
2022-11-07 10:52:24 -08:00
|
|
|
"eslint": "^8.26.0",
|
|
|
|
"jest": "^29.2.2",
|
2024-03-26 19:52:16 +00:00
|
|
|
"prettier": "^3.0.0",
|
2022-11-07 10:52:24 -08:00
|
|
|
"ts-jest": "^29.0.3",
|
2024-03-26 20:20:58 +00:00
|
|
|
"typescript": "^5.0.0"
|
2021-04-20 15:28:53 -07:00
|
|
|
}
|
|
|
|
}
|