-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
66 lines (66 loc) · 1.85 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
58
59
60
61
62
63
64
65
66
{
"name": "@nordcom/lint-commit-regexp",
"version": "0.1.0",
"description": "RegExp commit message linter",
"prettier": "@nordcom/prettier",
"main": "./build/index.js",
"type": "module",
"engines": {
"npm": ">=8",
"node": "22"
},
"scripts": {
"build": "tsc --project tsconfig.json",
"lint": "npm-run-all --parallel lint:*",
"lint:prettier": "prettier src/**/*.* --check",
"lint:types": "npm run build -- --noEmit",
"test": "jest --coverage --passWithNoTests"
},
"author": {
"name": "Nordcom Group Inc.",
"email": "opensource@nordcom.io",
"url": "https://nordcom.io/"
},
"contributors": [
{
"name": "Filiph Siitam Sandström",
"email": "filiph@nordcom.io",
"url": "https://github.com/filiphsps/"
}
],
"repository": {
"type": "git",
"url": "git+https://github.com/NordcomInc/lint-commit-regexp.git"
},
"keywords": [
"github-actions",
"linter",
"lint-commit",
"commi-message",
"utility",
"cli"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/NordcomInc/lint-commit-regexp/issues"
},
"homepage": "https://github.com/NordcomInc/lint-commit-regexp/#readme",
"devDependencies": {
"@nordcom/prettier": "0.1.1",
"@types/jest": "29.5.14",
"@types/node": "22.10.5",
"eslint": "8.57.1",
"eslint-config-prettier": "10.0.1",
"eslint-plugin-github": "5.1.6",
"eslint-plugin-jest": "28.11.0",
"jest": "29.7.0",
"npm-run-all2": "7.0.2",
"prettier": "3.4.2",
"ts-jest": "29.2.5",
"typescript": "5.7.3"
},
"dependencies": {
"@actions/core": "1.11.1",
"@actions/github": "6.0.0"
}
}