2019-10-30 19:48:49 +01:00
|
|
|
{
|
|
|
|
"name": "cache",
|
2021-11-23 05:21:00 +01:00
|
|
|
"version": "2.1.7",
|
2019-10-30 19:48:49 +01:00
|
|
|
"private": true,
|
|
|
|
"description": "Cache dependencies and build outputs",
|
|
|
|
"main": "dist/restore/index.js",
|
|
|
|
"scripts": {
|
2020-02-13 18:38:56 +01:00
|
|
|
"build": "tsc && ncc build -o dist/restore src/restore.ts && ncc build -o dist/save src/save.ts",
|
2019-10-30 19:48:49 +01:00
|
|
|
"test": "tsc --noEmit && jest --coverage",
|
2019-11-12 23:01:15 +01:00
|
|
|
"lint": "eslint **/*.ts --cache",
|
|
|
|
"format": "prettier --write **/*.ts",
|
2020-02-13 18:38:56 +01:00
|
|
|
"format-check": "prettier --check **/*.ts"
|
2019-10-30 19:48:49 +01:00
|
|
|
},
|
|
|
|
"repository": {
|
|
|
|
"type": "git",
|
|
|
|
"url": "git+https://github.com/actions/cache.git"
|
|
|
|
},
|
|
|
|
"keywords": [
|
|
|
|
"actions",
|
|
|
|
"node",
|
|
|
|
"cache"
|
|
|
|
],
|
|
|
|
"author": "GitHub",
|
|
|
|
"license": "MIT",
|
|
|
|
"dependencies": {
|
2021-11-23 04:14:41 +01:00
|
|
|
"@actions/cache": "^1.0.8",
|
2020-11-03 20:04:09 +01:00
|
|
|
"@actions/core": "^1.2.6",
|
2019-10-30 19:48:49 +01:00
|
|
|
"@actions/exec": "^1.0.1",
|
2021-04-12 19:21:20 +02:00
|
|
|
"@actions/io": "^1.1.0"
|
2019-10-30 19:48:49 +01:00
|
|
|
},
|
|
|
|
"devDependencies": {
|
2022-01-31 07:36:04 +01:00
|
|
|
"@types/jest": "^27.4.0",
|
2019-11-06 19:41:45 +01:00
|
|
|
"@types/nock": "^11.1.0",
|
2022-01-28 12:00:27 +01:00
|
|
|
"@types/node": "^12.20.42",
|
2019-11-12 22:48:02 +01:00
|
|
|
"@typescript-eslint/eslint-plugin": "^2.7.0",
|
|
|
|
"@typescript-eslint/parser": "^2.7.0",
|
2019-10-30 19:48:49 +01:00
|
|
|
"@zeit/ncc": "^0.20.5",
|
2022-01-31 07:36:04 +01:00
|
|
|
"eslint": "^8.8.0",
|
2021-04-12 19:21:20 +02:00
|
|
|
"eslint-config-prettier": "^6.15.0",
|
2022-01-28 12:00:27 +01:00
|
|
|
"eslint-plugin-import": "^2.25.4",
|
2022-01-31 07:36:04 +01:00
|
|
|
"eslint-plugin-jest": "^26.0.0",
|
2021-04-12 19:21:20 +02:00
|
|
|
"eslint-plugin-prettier": "^3.3.1",
|
2020-03-18 14:35:13 +01:00
|
|
|
"eslint-plugin-simple-import-sort": "^5.0.2",
|
2022-01-31 07:36:04 +01:00
|
|
|
"jest": "^27.4.7",
|
|
|
|
"jest-circus": "^27.4.6",
|
2019-11-06 19:41:45 +01:00
|
|
|
"nock": "^11.7.0",
|
2019-12-13 23:24:37 +01:00
|
|
|
"prettier": "^1.19.1",
|
2022-01-31 07:36:04 +01:00
|
|
|
"ts-jest": "^27.1.3",
|
2021-04-12 19:21:20 +02:00
|
|
|
"typescript": "^3.9.9"
|
2019-10-30 19:48:49 +01:00
|
|
|
}
|
|
|
|
}
|