actions-setup/package.json

50 lines
1.4 KiB
JSON
Raw Normal View History

{
"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
},
"repository": {
"type": "git",
2022-03-27 19:48:50 -07:00
"url": "git+https://github.com/earthly/actions-setup.git"
},
2022-03-27 19:48:50 -07:00
"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",
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",
"node-fetch": "^3.2.10",
"semver": "^7.3.8"
2022-03-27 19:48:50 -07:00
},
"devDependencies": {
"@types/jest": "^29.2.0",
"@types/node": "^18.11.7",
"@types/semver": "^7.3.13",
"@typescript-eslint/eslint-plugin": "^5.41.0",
"@typescript-eslint/parser": "^5.41.0",
"@vercel/ncc": "^0.34.0",
"eslint": "^8.26.0",
"jest": "^29.2.2",
2024-03-26 19:52:16 +00:00
"prettier": "^3.0.0",
"ts-jest": "^29.0.3",
"typescript": "^4.8.4"
}
}