-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
85 lines (85 loc) · 2.09 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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
{
"name": "semantic-release-commits-lint",
"version": "1.1.0",
"description": "semantic-release plugin to lint a message commit",
"main": "index.js",
"type": "module",
"scripts": {
"lint": "xo",
"lint:fix": "xo --fix",
"test": "cross-env NODE_OPTIONS=--experimental-vm-modules jest --ci --coverage",
"test:debug": "node --inspect --trace-warnings --experimental-vm-modules node_modules/.bin/jest --runInBand",
"jest-coverage-badges": "jest-coverage-badges --output ./coverage/lcov-report"
},
"jest": {
"testRegex": "(/tests/.*|(\\.|/)(test|spec))\\.js$",
"coverageReporters": [
"json-summary",
"text",
"lcov"
]
},
"xo": {
"prettier": true,
"space": true
},
"homepage": "https://github.com/BondarenkoAlex/semantic-release-commits-lint#readme",
"keywords": [
"changelog",
"commitlint",
"commits",
"lint",
"conventional-changelog",
"conventional-commits",
"publish",
"release",
"semantic-release"
],
"author": "Aleksei Bondarenko",
"license": "MIT",
"engines": {
"node": ">=18",
"npm": ">=8.9.0"
},
"repository": {
"type": "git",
"url": "https://github.com/BondarenkoAlex/semantic-release-commits-lint.git"
},
"bugs": {
"url": "https://github.com/BondarenkoAlex/semantic-release-commits-lint/issues"
},
"contributors": [
"Aleksei Bondarenko <[email protected]>"
],
"dependencies": {
"@commitlint/format": "^19.3.0",
"@commitlint/lint": "^19.2.2",
"@commitlint/load": "^19.2.0",
"@commitlint/read": "^19.2.1",
"@semantic-release/error": "^4.0.0",
"debug": "^4.3.5",
"lodash.isempty": "^4.0.0"
},
"devDependencies": {
"cross-env": "^7.0.3",
"jest": "^29.6.0",
"jest-coverage-badges": "^1.1.2",
"semantic-release": "^20.0.0",
"tempy": "^3.1.0",
"xo": "^0.58.0"
},
"peerDependencies": {
"jest": "^29.6.0",
"semantic-release": ">=20",
"xo": "^0.58.0"
},
"prettier": {
"tabWidth": 4,
"singleQuote": false
},
"files": [
"lib",
"index.js"
],
"packageManager": "[email protected]"
}