1
0
Files
cache/package.json
T

54 lines
1.5 KiB
JSON
Raw Normal View History

2019-10-30 14:48:49 -04:00
{
"name": "cache",
"version": "5.0.4",
2019-10-30 14:48:49 -04:00
"private": true,
"description": "Cache dependencies and build outputs",
"main": "dist/restore/index.js",
"scripts": {
2022-12-21 19:38:44 +05:30
"build": "tsc && ncc build -o dist/restore src/restore.ts && ncc build -o dist/save src/save.ts && ncc build -o dist/restore-only src/restoreOnly.ts && ncc build -o dist/save-only src/saveOnly.ts",
2019-10-30 14:48:49 -04:00
"test": "tsc --noEmit && jest --coverage",
2019-11-12 17:01:15 -05:00
"lint": "eslint **/*.ts --cache",
"format": "prettier --write **/*.ts",
2020-02-13 12:38:56 -05:00
"format-check": "prettier --check **/*.ts"
2019-10-30 14:48:49 -04:00
},
"repository": {
"type": "git",
"url": "git+https://github.com/actions/cache.git"
},
"keywords": [
"actions",
"node",
"cache"
],
"author": "GitHub",
"license": "MIT",
"dependencies": {
"@actions/cache": "^5.0.5",
"@actions/core": "^2.0.3",
"@actions/exec": "^2.0.0",
"@actions/io": "^2.0.0"
2019-10-30 14:48:49 -04:00
},
"devDependencies": {
2025-07-24 20:07:06 +00:00
"@types/jest": "^29.5.14",
2019-11-06 13:41:45 -05:00
"@types/nock": "^11.1.0",
2025-07-24 20:07:06 +00:00
"@types/node": "^24.1.0",
"@typescript-eslint/eslint-plugin": "^7.2.0",
"@typescript-eslint/parser": "^7.2.0",
2024-12-04 11:59:05 -08:00
"@vercel/ncc": "^0.38.3",
2022-11-30 08:23:43 +00:00
"eslint": "^8.28.0",
2025-07-24 20:07:06 +00:00
"eslint-config-prettier": "^9.1.2",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-jest": "^27.9.0",
"eslint-plugin-prettier": "^5.5.3",
"eslint-plugin-simple-import-sort": "^12.1.1",
"jest": "^29.7.0",
"jest-circus": "^29.7.0",
2022-11-30 08:23:43 +00:00
"nock": "^13.2.9",
2025-07-24 20:07:06 +00:00
"prettier": "^3.6.2",
"ts-jest": "^29.4.0",
"typescript": "^5.8.3"
},
"engines": {
"node": ">=24"
2019-10-30 14:48:49 -04:00
}
2025-08-06 12:21:30 -07:00
}