2019-11-09 09:24:47 +01:00
|
|
|
{
|
|
|
|
"name": "create-pull-request",
|
2024-09-03 09:54:12 +02:00
|
|
|
"version": "7.0.0",
|
2020-05-17 10:21:11 +02:00
|
|
|
"private": true,
|
2019-11-09 09:24:47 +01:00
|
|
|
"description": "Creates a pull request for changes to your repository in the actions workspace",
|
2020-05-17 10:21:11 +02:00
|
|
|
"main": "lib/main.js",
|
2019-11-09 09:24:47 +01:00
|
|
|
"scripts": {
|
2020-05-17 10:21:11 +02:00
|
|
|
"build": "tsc && ncc build",
|
|
|
|
"format": "prettier --write '**/*.ts'",
|
|
|
|
"format-check": "prettier --check '**/*.ts'",
|
|
|
|
"lint": "eslint src/**/*.ts",
|
2020-05-23 07:43:16 +02:00
|
|
|
"test:unit": "jest unit",
|
|
|
|
"test:int": "__test__/integration-tests.sh",
|
2020-07-23 08:04:58 +02:00
|
|
|
"test": "npm run test:unit && npm run test:int"
|
2019-11-09 09:24:47 +01:00
|
|
|
},
|
|
|
|
"repository": {
|
|
|
|
"type": "git",
|
|
|
|
"url": "git+https://github.com/peter-evans/create-pull-request.git"
|
|
|
|
},
|
2020-05-17 10:21:11 +02:00
|
|
|
"keywords": [
|
|
|
|
"actions",
|
|
|
|
"pull",
|
|
|
|
"request"
|
|
|
|
],
|
2019-11-09 09:24:47 +01:00
|
|
|
"author": "Peter Evans",
|
|
|
|
"license": "MIT",
|
|
|
|
"bugs": {
|
|
|
|
"url": "https://github.com/peter-evans/create-pull-request/issues"
|
|
|
|
},
|
|
|
|
"homepage": "https://github.com/peter-evans/create-pull-request",
|
|
|
|
"dependencies": {
|
2024-10-08 14:17:23 +02:00
|
|
|
"@actions/core": "^1.11.1",
|
2022-10-17 04:28:01 +02:00
|
|
|
"@actions/exec": "^1.1.1",
|
2024-09-03 09:54:12 +02:00
|
|
|
"@octokit/core": "^6.1.2",
|
2024-12-03 13:24:58 +01:00
|
|
|
"@octokit/plugin-paginate-rest": "^11.3.6",
|
2024-10-08 14:17:31 +02:00
|
|
|
"@octokit/plugin-rest-endpoint-methods": "^13.2.6",
|
2024-10-08 14:20:37 +02:00
|
|
|
"@octokit/plugin-throttling": "^9.3.2",
|
2024-11-04 12:47:07 +01:00
|
|
|
"node-fetch-native": "^1.6.4",
|
2024-09-03 09:54:12 +02:00
|
|
|
"p-limit": "^6.1.0",
|
2023-09-19 14:26:58 +02:00
|
|
|
"uuid": "^9.0.1"
|
2019-11-09 09:24:47 +01:00
|
|
|
},
|
|
|
|
"devDependencies": {
|
2024-10-29 13:54:34 +01:00
|
|
|
"@types/jest": "^29.5.14",
|
2024-12-03 13:25:16 +01:00
|
|
|
"@types/node": "^18.19.67",
|
2024-09-03 15:06:13 +02:00
|
|
|
"@typescript-eslint/eslint-plugin": "^7.18.0",
|
2024-09-03 15:02:10 +02:00
|
|
|
"@typescript-eslint/parser": "^7.18.0",
|
2024-11-19 13:43:10 +01:00
|
|
|
"@vercel/ncc": "^0.38.3",
|
2024-09-17 14:34:38 +02:00
|
|
|
"eslint": "^8.57.1",
|
2024-12-10 13:24:26 +01:00
|
|
|
"eslint-import-resolver-typescript": "^3.7.0",
|
2024-03-05 13:34:17 +01:00
|
|
|
"eslint-plugin-github": "^4.10.2",
|
2024-10-08 14:17:36 +02:00
|
|
|
"eslint-plugin-import": "^2.31.0",
|
2024-02-20 13:58:31 +01:00
|
|
|
"eslint-plugin-jest": "^27.9.0",
|
2024-07-23 14:19:34 +02:00
|
|
|
"eslint-plugin-prettier": "^5.2.1",
|
2023-09-12 14:45:26 +02:00
|
|
|
"jest": "^29.7.0",
|
2023-09-12 14:41:53 +02:00
|
|
|
"jest-circus": "^29.7.0",
|
2023-09-26 14:07:17 +02:00
|
|
|
"jest-environment-jsdom": "^29.7.0",
|
2022-01-28 03:42:48 +01:00
|
|
|
"js-yaml": "^4.1.0",
|
2024-12-10 13:24:33 +01:00
|
|
|
"prettier": "^3.4.2",
|
2024-08-27 14:55:27 +02:00
|
|
|
"ts-jest": "^29.2.5",
|
2024-11-26 14:00:03 +01:00
|
|
|
"typescript": "^5.7.2",
|
2024-11-19 13:43:05 +01:00
|
|
|
"undici": "^6.21.0"
|
2019-11-09 09:24:47 +01:00
|
|
|
}
|
|
|
|
}
|