forked from MorrisonCole/pr-lint-action
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 1.18 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": "pr-lint-action",
"version": "1.1.1",
"description": "A GitHub Action to ensure that your PR title matches a given regex.",
"main": "lib/main.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"
},
"repository": {
"type": "git",
"url": "git+https://github.com/MorrisonCole/pr-lint-action"
},
"keywords": [
"actions",
"container",
"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.5.0",
"@actions/github": "5.0.0"
},
"devDependencies": {
"@types/node": "16.9.1",
"@typescript-eslint/eslint-plugin": "4.31.1",
"@typescript-eslint/parser": "4.31.1",
"@vercel/ncc": "0.31.1",
"eslint": "7.32.0",
"eslint-config-prettier": "8.3.0",
"prettier": "2.4.0",
"typescript": "4.4.3"
},
"packageManager": "[email protected]"
}