-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
52 lines (52 loc) · 1.39 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
48
49
50
51
52
{
"name": "pr-lint-body",
"version": "0.2.0",
"description": "A GitHub Action to ensure that your PR body 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",
"postinstall": "husky install",
"prepack": "pinst --disable",
"postpack": "pinst --enable"
},
"repository": {
"type": "git",
"url": "git+https://github.com/dyte-in/pr-lint-body"
},
"keywords": [
"actions",
"container",
"github",
"toolkit",
"lint"
],
"author": "Morrison Cole <[email protected]>",
"contributors": [
"Amogh Lele 'SphericalKat' <[email protected]>"
],
"license": "ISC",
"bugs": {
"url": "https://github.com/dyte-in/pr-lint-body/issues"
},
"homepage": "https://github.com/dyte-in/pr-lint-body#readme",
"dependencies": {
"@actions/core": "1.6.0",
"@actions/github": "5.0.0"
},
"devDependencies": {
"@types/node": "16.11.26",
"@typescript-eslint/eslint-plugin": "5.13.0",
"@typescript-eslint/parser": "5.13.0",
"@vercel/ncc": "0.33.3",
"eslint": "8.10.0",
"eslint-config-prettier": "8.5.0",
"husky": "^7.0.0",
"pinst": "^3.0.0",
"prettier": "2.5.1",
"typescript": "4.6.2"
},
"packageManager": "[email protected]"
}