1
0
Fork 0
mirror of https://code.forgejo.org/actions/cache.git synced 2025-04-20 19:56:18 +02:00
cache/package.json

55 lines
1.5 KiB
JSON
Raw Normal View History

2019-10-30 14:48:49 -04:00
{
"name": "cache",
2020-02-05 10:40:53 -05:00
"version": "1.1.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": {
"@actions/core": "^1.2.0",
"@actions/exec": "^1.0.1",
"@actions/glob": "^0.1.0",
"@actions/http-client": "^1.0.6",
2019-10-30 14:48:49 -04:00
"@actions/io": "^1.0.1",
2020-03-21 11:00:34 +09:00
"uuid": "^7.0.2"
2019-10-30 14:48:49 -04:00
},
"devDependencies": {
2020-03-21 11:00:34 +09:00
"@types/jest": "^25.1.4",
"@types/nock": "^11.1.0",
2020-03-21 11:00:34 +09:00
"@types/node": "^13.9.1",
"@types/uuid": "^7.0.0",
2019-11-13 06:48:02 +09:00
"@typescript-eslint/eslint-plugin": "^2.7.0",
"@typescript-eslint/parser": "^2.7.0",
2020-03-21 11:00:34 +09:00
"@zeit/ncc": "^0.21.1",
2019-11-13 06:48:02 +09:00
"eslint": "^6.6.0",
"eslint-config-prettier": "^6.5.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-jest": "^23.0.3",
"eslint-plugin-prettier": "^3.1.1",
"eslint-plugin-simple-import-sort": "^5.0.2",
2020-03-21 11:00:34 +09:00
"jest": "^25.1.0",
"jest-circus": "^25.1.0",
"nock": "^12.0.2",
"prettier": "^1.19.1",
2020-03-21 11:00:34 +09:00
"ts-jest": "^25.2.1",
"typescript": "^3.7.3"
2019-10-30 14:48:49 -04:00
}
}