change-string-case/node_modules/@actions/github/package.json

49 lines
1.1 KiB
JSON
Raw Normal View History

2022-11-04 00:55:07 +08:00
{
"name": "@actions/github",
2023-10-26 04:27:07 +08:00
"version": "6.0.0",
2022-11-04 00:55:07 +08:00
"description": "Actions github lib",
"keywords": [
"github",
"actions"
],
2023-10-26 04:27:07 +08:00
"homepage": "https://github.com/actions/toolkit/tree/main/packages/github",
2022-11-04 00:55:07 +08:00
"license": "MIT",
"main": "lib/github.js",
"types": "lib/github.d.ts",
"directories": {
"lib": "lib",
"test": "__tests__"
},
"files": [
"lib",
"!.DS_Store"
],
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "git+https://github.com/actions/toolkit.git",
"directory": "packages/github"
},
"scripts": {
2023-10-26 04:27:07 +08:00
"audit-moderate": "npm install && npm audit --json --audit-level=moderate > audit.json",
2022-11-04 00:55:07 +08:00
"test": "jest",
"build": "tsc",
"format": "prettier --write **/*.ts",
"format-check": "prettier --check **/*.ts",
"tsc": "tsc"
},
"bugs": {
"url": "https://github.com/actions/toolkit/issues"
},
"dependencies": {
2023-10-26 04:27:07 +08:00
"@actions/http-client": "^2.2.0",
"@octokit/core": "^5.0.1",
"@octokit/plugin-paginate-rest": "^9.0.0",
"@octokit/plugin-rest-endpoint-methods": "^10.0.0"
2022-11-04 00:55:07 +08:00
},
"devDependencies": {
2023-10-26 04:27:07 +08:00
"proxy": "^2.1.1"
2022-11-04 00:55:07 +08:00
}
2023-10-26 04:27:07 +08:00
}