2019-10-30 21:48:49 +03:00
{
"name" : "cache" ,
2022-10-13 12:02:55 +03:00
"version" : "3.0.11" ,
2019-10-30 21:48:49 +03:00
"private" : true ,
"description" : "Cache dependencies and build outputs" ,
"main" : "dist/restore/index.js" ,
"scripts" : {
2020-02-13 20:38:56 +03:00
"build" : "tsc && ncc build -o dist/restore src/restore.ts && ncc build -o dist/save src/save.ts" ,
2019-10-30 21:48:49 +03:00
"test" : "tsc --noEmit && jest --coverage" ,
2019-11-13 01:01:15 +03:00
"lint" : "eslint **/*.ts --cache" ,
"format" : "prettier --write **/*.ts" ,
2020-02-13 20:38:56 +03:00
"format-check" : "prettier --check **/*.ts"
2019-10-30 21:48:49 +03:00
} ,
"repository" : {
"type" : "git" ,
"url" : "git+https://github.com/actions/cache.git"
} ,
"keywords" : [
"actions" ,
"node" ,
"cache"
] ,
"author" : "GitHub" ,
"license" : "MIT" ,
"dependencies" : {
2022-10-13 13:34:22 +03:00
"@actions/cache" : "^3.0.5" ,
2022-10-05 19:50:52 +03:00
"@actions/core" : "^1.10.0" ,
2022-03-21 07:42:02 +03:00
"@actions/exec" : "^1.1.1" ,
"@actions/io" : "^1.1.2"
2019-10-30 21:48:49 +03:00
} ,
"devDependencies" : {
2022-05-04 14:21:09 +03:00
"@types/jest" : "^27.5.0" ,
2019-11-06 21:41:45 +03:00
"@types/nock" : "^11.1.0" ,
2022-05-04 14:21:09 +03:00
"@types/node" : "^16.11.33" ,
"@typescript-eslint/eslint-plugin" : "^5.22.0" ,
"@typescript-eslint/parser" : "^5.22.0" ,
2019-10-30 21:48:49 +03:00
"@zeit/ncc" : "^0.20.5" ,
2022-05-04 14:21:09 +03:00
"eslint" : "^8.14.0" ,
2022-03-21 07:42:02 +03:00
"eslint-config-prettier" : "^8.5.0" ,
2022-05-04 14:17:33 +03:00
"eslint-plugin-import" : "^2.26.0" ,
2022-05-04 14:21:09 +03:00
"eslint-plugin-jest" : "^26.1.5" ,
2022-01-31 10:25:11 +03:00
"eslint-plugin-prettier" : "^4.0.0" ,
"eslint-plugin-simple-import-sort" : "^7.0.0" ,
2022-05-04 14:17:33 +03:00
"jest" : "^28.0.3" ,
2022-02-15 14:14:17 +03:00
"jest-circus" : "^27.5.1" ,
2022-05-04 14:17:33 +03:00
"nock" : "^13.2.4" ,
2022-05-04 14:21:09 +03:00
"prettier" : "^2.6.2" ,
2022-05-08 21:34:20 +03:00
"ts-jest" : "^28.0.2" ,
2022-05-04 14:17:33 +03:00
"typescript" : "^4.6.4"
2019-10-30 21:48:49 +03:00
}
2022-10-05 19:50:52 +03:00
}