-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
24 lines (24 loc) · 623 Bytes
/
package.json
File metadata and controls
24 lines (24 loc) · 623 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
{
"name": "create-or-update-pull-request-action",
"private": true,
"version": "1.0.0",
"description": "A GitHub Action to create or update a pull request based on local changes",
"main": "index.js",
"scripts": {
"build": "ncc build index.js -o dist"
},
"repository": "github:gr2m/create-or-update-pull-request-action",
"keywords": [
"github-action"
],
"author": "Gregor Martynus (https://twitter.com/gr2m)",
"license": "ISC",
"dependencies": {
"@actions/core": "^1.2.6",
"@octokit/core": "^3.5.1",
"execa": "^2.0.4"
},
"devDependencies": {
"@zeit/ncc": "^0.20.5"
}
}