-
Notifications
You must be signed in to change notification settings - Fork 27
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.26 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.26 KB
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 <admin@morrisoncole.co.uk>",
"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.1"
},
"devDependencies": {
"@types/node": "24.10.0",
"@typescript-eslint/eslint-plugin": "8.46.3",
"@typescript-eslint/parser": "8.46.3",
"@vercel/ncc": "0.38.4",
"eslint": "9.39.1",
"eslint-config-prettier": "10.1.8",
"jest": "30.2.0",
"prettier": "3.7.1",
"ts-jest": "29.4.5",
"typescript": "5.9.3"
},
"packageManager": "yarn@4.12.0"
}