2019-07-29 17:09:32 +00:00
|
|
|
{
|
|
|
|
"name": "@actions/github",
|
2020-06-03 01:39:46 +00:00
|
|
|
"version": "3.0.0",
|
2019-07-29 17:09:32 +00:00
|
|
|
"description": "Actions github lib",
|
|
|
|
"keywords": [
|
|
|
|
"github",
|
|
|
|
"actions"
|
|
|
|
],
|
|
|
|
"homepage": "https://github.com/actions/toolkit/tree/master/packages/github",
|
|
|
|
"license": "MIT",
|
|
|
|
"main": "lib/github.js",
|
2019-12-17 16:03:58 +00:00
|
|
|
"types": "lib/github.d.ts",
|
2019-07-29 17:09:32 +00:00
|
|
|
"directories": {
|
|
|
|
"lib": "lib",
|
|
|
|
"test": "__tests__"
|
|
|
|
},
|
|
|
|
"files": [
|
2020-06-04 19:14:19 +00:00
|
|
|
"lib",
|
|
|
|
"!.DS_Store"
|
2019-07-29 17:09:32 +00:00
|
|
|
],
|
|
|
|
"publishConfig": {
|
|
|
|
"access": "public"
|
|
|
|
},
|
|
|
|
"repository": {
|
|
|
|
"type": "git",
|
2019-09-25 02:30:51 +00:00
|
|
|
"url": "git+https://github.com/actions/toolkit.git",
|
|
|
|
"directory": "packages/github"
|
2019-07-29 17:09:32 +00:00
|
|
|
},
|
|
|
|
"scripts": {
|
2020-01-03 22:54:10 +00:00
|
|
|
"audit-moderate": "npm install && npm audit --audit-level=moderate",
|
2019-07-29 17:09:32 +00:00
|
|
|
"test": "jest",
|
|
|
|
"build": "tsc",
|
2019-12-06 12:52:04 +00:00
|
|
|
"format": "prettier --write **/*.ts",
|
|
|
|
"format-check": "prettier --check **/*.ts",
|
2019-07-29 17:09:32 +00:00
|
|
|
"tsc": "tsc"
|
|
|
|
},
|
|
|
|
"bugs": {
|
|
|
|
"url": "https://github.com/actions/toolkit/issues"
|
|
|
|
},
|
|
|
|
"dependencies": {
|
2020-06-19 18:35:19 +00:00
|
|
|
"@actions/http-client": "^1.0.8",
|
|
|
|
"@octokit/core": "^3.0.0",
|
|
|
|
"@octokit/plugin-paginate-rest": "^2.2.3",
|
|
|
|
"@octokit/plugin-rest-endpoint-methods": "^4.0.0"
|
2019-07-29 17:09:32 +00:00
|
|
|
},
|
|
|
|
"devDependencies": {
|
2020-03-09 18:17:29 +00:00
|
|
|
"jest": "^25.1.0",
|
2020-01-18 19:28:37 +00:00
|
|
|
"proxy": "^1.0.1"
|
2019-07-29 17:09:32 +00:00
|
|
|
}
|
|
|
|
}
|