-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
46 lines (46 loc) · 1.13 KB
/
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
37
38
39
40
41
42
43
44
45
46
{
"name": "@peckjon/reject-pr-approval-from-committer",
"version": "1.0.0",
"description": "Do not allow a committer on a GitHub pull request to approve the PR.",
"main": "dist/main.ts",
"scripts": {
"build": "npm run format && ncc build src/main.ts",
"format": "prettier --write **/*.ts",
"format-check": "prettier --check **/*.ts",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/peckjon/reject-pr-approval-from-committer.git"
},
"keywords": [
"actions",
"pr",
"pull request",
"approve",
"github",
"GitHub"
],
"author": "peckjon",
"contributors": [
"Cognite AS",
"hmarr",
"James Hu",
"some-natalie"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/peckjon/reject-pr-approval-from-committer/issues"
},
"homepage": "https://github.com/peckjon/reject-pr-approval-from-committer#readme",
"dependencies": {
"@actions/core": "^1.9.1",
"@actions/github": "^5.1.0"
},
"devDependencies": {
"@types/node": "^14.0.1",
"@zeit/ncc": "^0.22.3",
"prettier": "^2.7.1",
"typescript": "^4.8.3"
}
}