mirror of https://github.com/actions/toolkit
49 lines
1.1 KiB
JSON
49 lines
1.1 KiB
JSON
{
|
|
"name": "@actions/github",
|
|
"version": "2.2.0",
|
|
"description": "Actions github lib",
|
|
"keywords": [
|
|
"github",
|
|
"actions"
|
|
],
|
|
"homepage": "https://github.com/actions/toolkit/tree/master/packages/github",
|
|
"license": "MIT",
|
|
"main": "lib/github.js",
|
|
"types": "lib/github.d.ts",
|
|
"directories": {
|
|
"lib": "lib",
|
|
"test": "__tests__"
|
|
},
|
|
"files": [
|
|
"lib"
|
|
],
|
|
"publishConfig": {
|
|
"access": "public"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/actions/toolkit.git",
|
|
"directory": "packages/github"
|
|
},
|
|
"scripts": {
|
|
"audit-moderate": "npm install && npm audit --audit-level=moderate",
|
|
"test": "jest",
|
|
"build": "tsc",
|
|
"format": "prettier --write **/*.ts",
|
|
"format-check": "prettier --check **/*.ts",
|
|
"tsc": "tsc"
|
|
},
|
|
"bugs": {
|
|
"url": "https://github.com/actions/toolkit/issues"
|
|
},
|
|
"dependencies": {
|
|
"@actions/http-client": "^1.0.3",
|
|
"@octokit/graphql": "^4.3.1",
|
|
"@octokit/rest": "^16.43.1"
|
|
},
|
|
"devDependencies": {
|
|
"jest": "^25.1.0",
|
|
"proxy": "^1.0.1"
|
|
}
|
|
}
|