Files
codeql-action/node_modules/@actions/tool-cache/package.json
T

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

53 lines
1.2 KiB
JSON
Raw Normal View History

{
2020-06-18 18:43:30 +02:00
"name": "@actions/tool-cache",
2022-10-13 13:25:43 -07:00
"version": "2.0.1",
"description": "Actions tool-cache lib",
2020-06-18 18:43:30 +02:00
"keywords": [
"github",
"actions",
"exec"
],
2021-06-23 14:07:01 +01:00
"homepage": "https://github.com/actions/toolkit/tree/main/packages/tool-cache",
2020-06-18 18:43:30 +02:00
"license": "MIT",
"main": "lib/tool-cache.js",
"types": "lib/tool-cache.d.ts",
"directories": {
"lib": "lib",
"test": "__tests__"
},
"files": [
"lib",
"scripts"
],
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "git+https://github.com/actions/toolkit.git",
"directory": "packages/tool-cache"
},
"scripts": {
2021-06-23 14:07:01 +01:00
"audit-moderate": "npm install && npm audit --json --audit-level=moderate > audit.json",
"test": "echo \"Error: run tests from root\" && exit 1",
"tsc": "tsc"
},
2020-06-18 18:43:30 +02:00
"bugs": {
"url": "https://github.com/actions/toolkit/issues"
},
"dependencies": {
2021-06-23 14:07:01 +01:00
"@actions/core": "^1.2.6",
2020-06-18 18:43:30 +02:00
"@actions/exec": "^1.0.0",
2022-10-13 13:25:43 -07:00
"@actions/http-client": "^2.0.1",
2021-06-23 14:07:01 +01:00
"@actions/io": "^1.1.1",
2020-06-18 18:43:30 +02:00
"semver": "^6.1.0",
"uuid": "^3.3.2"
},
"devDependencies": {
"@types/nock": "^10.0.3",
"@types/semver": "^6.0.0",
"@types/uuid": "^3.4.4",
"nock": "^10.0.6"
}
2022-02-24 17:03:29 +00:00
}