-
Notifications
You must be signed in to change notification settings - Fork 22
/
package.json
36 lines (36 loc) · 926 Bytes
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
{
"name": "create-pull-request",
"version": "1.0.0",
"private": true,
"description": "A GitHub action for creating pull requests.",
"main": "dist/index.js",
"scripts": {
"postinstall": "git config core.hooksPath .githooks",
"build": "webpack --mode production",
"compile": "tsc",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/thomaseizinger/create-pull-request.git"
},
"author": "Thomas Eizinger",
"license": "MIT",
"dependencies": {
"@actions/core": "^1.10.0",
"@octokit/action": "^1.3.0",
"https-proxy-agent": "^5.0.0"
},
"devDependencies": {
"@types/jest": "^24.0.23",
"@types/node": "^20.12.7",
"jest": "^24.9.0",
"jest-circus": "^25.1.0",
"mock-env": "^0.2.0",
"ts-jest": "^24.2.0",
"ts-loader": "^6.2.1",
"typescript": "^3.7.3",
"webpack": "^4.41.2",
"webpack-cli": "^3.3.10"
}
}