forked from GsActions/commit-message-checker
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
57 lines (57 loc) · 1.52 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
53
54
55
56
57
{
"name": "@linkorb/commit-message-checker",
"version": "1.0.0",
"description": "GitHub Action that checks commit messages of pushes and pull request against a regex pattern",
"keywords": [
"github",
"actions",
"commit",
"message",
"pull",
"request",
"push"
],
"homepage": "https://github.com/linkorb/commit-message-checker#readme",
"license": "MIT",
"author": "Simon Gilli <[email protected]> (https://gilbertsoft.org)",
"files": [
"action.yml",
"dist",
"lib"
],
"main": "lib/main.js",
"repository": {
"type": "git",
"url": "https://github.com/linkorb/commit-message-checker.git"
},
"scripts": {
"build": "tsc",
"format": "prettier --write '**/*.ts'",
"format-check": "prettier --check '**/*.ts'",
"lint": "eslint src/**/*.ts",
"package": "ncc build",
"test": "jest",
"all": "npm run build && npm run format && npm run lint && npm run package && npm test"
},
"dependencies": {
"@actions/core": "^1.10.1",
"@actions/github": "^6.0.0",
"@octokit/graphql": "^5.0.6"
},
"devDependencies": {
"@tsconfig/node20": "^20.1.2",
"@types/jest": "^29.5.12",
"@types/node": "^20.11.16",
"@types/node-fetch": "^2.6.11",
"@typescript-eslint/parser": "^5.62.0",
"@vercel/ncc": "^0.38.1",
"eslint": "^8.56.0",
"eslint-plugin-github": "^4.10.1",
"eslint-plugin-jest": "^27.6.3",
"jest": "^29.7.0",
"js-yaml": "^4.1.0",
"prettier": "3.2.5",
"ts-jest": "^29.1.2",
"typescript": "^4.9.5"
}
}