Permalink
Cannot retrieve contributors at this time
51 lines (51 sloc)
1.39 KB
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"name": "cache", | |
"version": "3.0.6", | |
"private": true, | |
"description": "Cache dependencies and build outputs", | |
"main": "dist/restore/index.js", | |
"scripts": { | |
"build": "tsc && ncc build -o dist/restore src/restore.ts && ncc build -o dist/save src/save.ts", | |
"test": "tsc --noEmit && jest --coverage", | |
"lint": "eslint **/*.ts --cache", | |
"format": "prettier --write **/*.ts", | |
"format-check": "prettier --check **/*.ts" | |
}, | |
"repository": { | |
"type": "git", | |
"url": "git+https://github.com/actions/cache.git" | |
}, | |
"keywords": [ | |
"actions", | |
"node", | |
"cache" | |
], | |
"author": "GitHub", | |
"license": "MIT", | |
"dependencies": { | |
"@actions/cache": "^3.0.1", | |
"@actions/core": "^1.7.0", | |
"@actions/exec": "^1.1.1", | |
"@actions/io": "^1.1.2" | |
}, | |
"devDependencies": { | |
"@types/jest": "^27.5.0", | |
"@types/nock": "^11.1.0", | |
"@types/node": "^16.11.33", | |
"@typescript-eslint/eslint-plugin": "^5.22.0", | |
"@typescript-eslint/parser": "^5.22.0", | |
"@zeit/ncc": "^0.20.5", | |
"eslint": "^8.14.0", | |
"eslint-config-prettier": "^8.5.0", | |
"eslint-plugin-import": "^2.26.0", | |
"eslint-plugin-jest": "^26.1.5", | |
"eslint-plugin-prettier": "^4.0.0", | |
"eslint-plugin-simple-import-sort": "^7.0.0", | |
"jest": "^28.0.3", | |
"jest-circus": "^27.5.1", | |
"nock": "^13.2.4", | |
"prettier": "^2.6.2", | |
"ts-jest": "^28.0.2", | |
"typescript": "^4.6.4" | |
} | |
} |