generated from actions/container-toolkit-action
-
Notifications
You must be signed in to change notification settings - Fork 23
/
Copy pathpackage.json
47 lines (47 loc) · 1.26 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
47
{
"name": "pr-lint-action",
"version": "1.7.1",
"description": "A GitHub Action to ensure that your PR title matches a given regex.",
"main": "lib/index.js",
"scripts": {
"build": "tsc",
"package": "ncc build --source-map --license licenses.txt",
"lint:eslint": "eslint . --ext .ts",
"lint:prettier": "prettier \"**/*.{ts,md,json,yml}\" --write",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/MorrisonCole/pr-lint-action"
},
"keywords": [
"actions",
"container",
"github",
"toolkit",
"lint"
],
"author": "Morrison Cole <[email protected]>",
"license": "ISC",
"bugs": {
"url": "https://github.com/MorrisonCole/pr-lint-action/issues"
},
"homepage": "https://github.com/MorrisonCole/pr-lint-action#readme",
"dependencies": {
"@actions/core": "1.11.1",
"@actions/github": "6.0.0"
},
"devDependencies": {
"@types/node": "22.13.2",
"@typescript-eslint/eslint-plugin": "8.24.0",
"@typescript-eslint/parser": "8.24.0",
"@vercel/ncc": "0.38.3",
"eslint": "9.20.1",
"eslint-config-prettier": "10.0.1",
"jest": "29.7.0",
"prettier": "3.5.1",
"ts-jest": "29.2.5",
"typescript": "5.7.3"
},
"packageManager": "[email protected]"
}