-
Notifications
You must be signed in to change notification settings - Fork 84
/
package.json
42 lines (42 loc) · 1.03 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
{
"name": "auto-approve-action",
"version": "3.1.0",
"description": "Automatically approve pull requests",
"main": "dist/main.ts",
"scripts": {
"build": "ncc build src/main.ts",
"format": "prettier --write **/*.ts",
"format-check": "prettier --check **/*.ts",
"test": "jest",
"test:watch": "jest --watchAll"
},
"repository": {
"type": "git",
"url": "git+https://github.com/hmarr/auto-approve-action.git"
},
"keywords": [
"actions"
],
"author": "hmarr",
"license": "MIT",
"bugs": {
"url": "https://github.com/hmarr/auto-approve-action/issues"
},
"homepage": "https://github.com/hmarr/auto-approve-action#readme",
"dependencies": {
"@actions/core": "^1.10.1",
"@actions/github": "^6.0.0"
},
"devDependencies": {
"@types/jest": "^29.5.12",
"@types/node": "^20.11.16",
"@vercel/ncc": "^0.38.1",
"jest": "^29.7.0",
"msw": "^2.1.5",
"nock": "^13.5.1",
"prettier": "^3.2.4",
"ts-jest": "^29.1.2",
"typescript": "^5.3.3"
},
"prettier": {}
}