forked from hmarr/auto-approve-action
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 1.07 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
{
"name": "ship-show-ask",
"version": "0.1.3",
"description": "GitHub Action for a Ship, Show, Ask branching strategy from PR title",
"main": "dist/main.ts",
"scripts": {
"build": "ncc build src/main.ts",
"format": "prettier --write **/*.ts",
"format-check": "prettier --check **/*.ts",
"test": "jest --coverage",
"test:watch": "jest --watchAll"
},
"repository": {
"type": "git",
"url": "git+https://github.com/tsinis/ship-show-ask.git"
},
"keywords": [
"actions",
"ship-show-ask"
],
"author": "tsinis",
"license": "MIT",
"bugs": {
"url": "https://github.com/tsinis/ship-show-ask/issues"
},
"homepage": "https://github.com/tsinis/ship-show-ask#readme",
"dependencies": {
"@actions/core": "^1.10.1",
"@actions/github": "^6.0.0"
},
"devDependencies": {
"@types/jest": "^29.5.12",
"@types/node": "^20.12.2",
"@vercel/ncc": "^0.38.1",
"jest": "^29.7.0",
"msw": "^2.2.13",
"nock": "^13.5.4",
"prettier": "^3.2.5",
"ts-jest": "^29.1.2",
"typescript": "^5.4.3"
},
"prettier": {}
}