Bumps [jest](https://github.com/jestjs/jest/tree/HEAD/packages/jest) from 30.4.2 to 30.5.1. - [Release notes](https://github.com/jestjs/jest/releases) - [Changelog](https://github.com/jestjs/jest/blob/main/CHANGELOG.md) - [Commits](https://github.com/jestjs/jest/commits/v30.5.1/packages/jest) --- updated-dependencies: - dependency-name: jest dependency-version: 30.5.1 dependency-type: direct:development update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <[email protected]>
44 lines
1.1 KiB
JSON
44 lines
1.1 KiB
JSON
{
|
|
"name": "ccache-action",
|
|
"version": "1.0.0",
|
|
"description": "github action to speedup building using ccache",
|
|
"main": "dist/restore/index.js",
|
|
"scripts": {
|
|
"metadata": "metadata/generate.sh",
|
|
"prepare": "ncc build --target es2020 -o dist/restore src/restore.ts && ncc build --target es2020 -o dist/save src/save.ts",
|
|
"test": "NODE_OPTIONS='--experimental-vm-modules' npx jest"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/hendrikmuhs/ccache-action.git"
|
|
},
|
|
"keywords": [
|
|
"actions",
|
|
"ccache",
|
|
"cache",
|
|
"c++",
|
|
"cpp",
|
|
"c"
|
|
],
|
|
"author": "Hendrik Muhs",
|
|
"license": "MIT",
|
|
"dependencies": {
|
|
"@actions/cache": "^6.2.0",
|
|
"@actions/core": "^3.0.0",
|
|
"@actions/exec": "^3.0.0",
|
|
"@actions/io": "^3.0.2"
|
|
},
|
|
"devDependencies": {
|
|
"@types/jest": "^30.0.0",
|
|
"@types/node": "^26.4.0",
|
|
"@vercel/ncc": "^0.44.1",
|
|
"jest": "^30.5.1",
|
|
"ts-jest": "^29.4.4",
|
|
"typescript": "^5.9.3"
|
|
},
|
|
"bugs": {
|
|
"url": "https://github.com/hendrikmuhs/ccache-action/issues"
|
|
},
|
|
"homepage": "https://github.com/hendrikmuhs/ccache-action#readme"
|
|
}
|