forked from Slashgear/action-check-pr-title
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 1.29 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": "action-check-pr-title",
"version": "4.3.0",
"description": "Github action to check Pull Request title based on JS Regexp",
"repository": "[email protected]:Slashgear/action-check-pr-title.git",
"author": "Slashgear <[email protected]>",
"license": "MIT",
"keywords": [
"github",
"actions"
],
"private": true,
"main": "lib/index.js",
"scripts": {
"build": "tsc",
"lint": "eslint .",
"format": "prettier --write --ignore-unknown '**/*'",
"format-check": "prettier --check --ignore-unknown '**/*'",
"package": "ncc build --source-map --license licenses.txt",
"test": "jest --passWithNoTests",
"preversion": "pnpm format-check && pnpm run build && pnpm run package && git add ."
},
"dependencies": {
"@actions/core": "^1.4.0",
"@actions/github": "^5.0.1"
},
"devDependencies": {
"@types/jest": "^29.0.3",
"@types/node": "^20.3.1",
"@typescript-eslint/parser": "^5.22.0",
"@typescript-eslint/eslint-plugin": "^5.48.0",
"@vercel/ncc": "^0.36.0",
"eslint": "^8.31.0",
"eslint-plugin-github": "^4.1.1",
"eslint-plugin-jest": "^27.4.3",
"eslint-plugin-prettier": "^4.0.0",
"jest": "^29.0.3",
"js-yaml": "^4.1.0",
"prettier": "2.8.8",
"ts-jest": "^29.0.3",
"typescript": "^5.1.3"
}
}