2019-10-30 14:48:49 -04:00
{
"name" : "cache" ,
2022-04-05 05:53:11 +00:00
"version" : "3.0.2" ,
2019-10-30 14:48:49 -04:00
"private" : true ,
"description" : "Cache dependencies and build outputs" ,
"main" : "dist/restore/index.js" ,
"scripts" : {
2020-02-13 12:38:56 -05:00
"build" : "tsc && ncc build -o dist/restore src/restore.ts && ncc build -o dist/save src/save.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" : {
2022-04-05 05:53:11 +00:00
"@actions/cache" : "^2.0.1" ,
2020-11-03 13:04:09 -06:00
"@actions/core" : "^1.2.6" ,
2022-03-21 04:42:02 +00:00
"@actions/exec" : "^1.1.1" ,
"@actions/io" : "^1.1.2"
2019-10-30 14:48:49 -04:00
} ,
"devDependencies" : {
2022-03-21 04:42:02 +00:00
"@types/jest" : "^27.4.1" ,
2019-11-06 13:41:45 -05:00
"@types/nock" : "^11.1.0" ,
2022-03-21 04:42:02 +00:00
"@types/node" : "^16.11.26" ,
2022-03-30 15:33:23 +05:30
"@typescript-eslint/eslint-plugin" : "^5.16.0" ,
"@typescript-eslint/parser" : "^5.16.0" ,
2019-10-30 14:48:49 -04:00
"@zeit/ncc" : "^0.20.5" ,
2022-03-21 04:42:02 +00:00
"eslint" : "^8.11.0" ,
"eslint-config-prettier" : "^8.5.0" ,
2022-01-28 11:00:27 +00:00
"eslint-plugin-import" : "^2.25.4" ,
2022-03-30 15:33:23 +05:30
"eslint-plugin-jest" : "^26.1.3" ,
2022-01-31 12:55:11 +05:30
"eslint-plugin-prettier" : "^4.0.0" ,
"eslint-plugin-simple-import-sort" : "^7.0.0" ,
2022-02-15 16:44:17 +05:30
"jest" : "^27.5.1" ,
"jest-circus" : "^27.5.1" ,
2019-11-06 13:41:45 -05:00
"nock" : "^11.7.0" ,
2022-03-30 15:33:23 +05:30
"prettier" : "^2.6.1" ,
"ts-jest" : "^27.1.4" ,
2021-04-12 12:21:20 -05:00
"typescript" : "^3.9.9"
2019-10-30 14:48:49 -04:00
}
}