-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
50 lines (50 loc) · 1.46 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
{
"name": "@ryanvade/enforce-pr-description-length-action",
"version": "1.1.2",
"description": "Enforce Pull Request Description Lengths",
"main": "dist/index.js",
"scripts": {
"build": "tsc",
"format": "prettier --write **/*.ts",
"format-check": "prettier --check **/*.ts",
"lint": "eslint src/**/*.ts",
"package": "tsc && ncc build --source-map --license licenses.txt",
"test": "jest --coverage"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ryanvade/enforce-pr-description-length-action.git"
},
"keywords": [
"actions",
"pullrequests",
"jira"
],
"author": "Ryan Owens <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/ryanvade/enforce-pr-description-length-action/issues"
},
"homepage": "https://github.com/ryanvade/enforce-pr-description-length-action#readme",
"dependencies": {
"@actions/core": "^1.10.1",
"@actions/github": "^6.0.0",
"@octokit/webhooks": "^13.3.0",
"@types/jest": "^29.5.12",
"@types/node": "^20.14.11",
"@vercel/ncc": "^0.38.1",
"eslint-plugin-github": "^5.0.1",
"eslint-plugin-jest": "^28.6.0",
"jest": "^29.7.0",
"jest-circus": "^29.7.0",
"js-yaml": "^4.1.0",
"prettier": "^3.3.3",
"ts-jest": "^29.2.3",
"typescript": "^5.5.3"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^7.17.0",
"@typescript-eslint/parser": "^7.16.1",
"eslint": "^8.57.0"
}
}