-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 1.86 KB
/
package.json
File metadata and controls
73 lines (73 loc) · 1.86 KB
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
{
"name": "commitlint-packages",
"description": "commitlint packages",
"license": "ISC",
"private": true,
"scripts": {
"test": "jest",
"test-ci": "jest --ci --maxWorkers=50% --reporters=summary --reporters=jest-junit --coverageReporters=cobertura",
"lint": "eslint",
"lint-ci": "eslint -f @microsoft/eslint-formatter-sarif -o build/eslint-results.sarif",
"reformat": "prettier --write \"**/*.+(js|jsx|json|less|md|yml+)\"",
"prepack": "npm t",
"prepare": "husky"
},
"repository": {
"type": "git",
"url": "git@github.com:bluecatengineering/commitlint-packages.git"
},
"devDependencies": {
"@babel/core": "^7.16.0",
"@babel/preset-env": "^7.16.4",
"@bluecateng/prettier-config": "^1.0.0",
"@commitlint/cli": "^20.5.0",
"@commitlint/config-conventional": "^20.5.0",
"@microsoft/eslint-formatter-sarif": "^3.1.0",
"@types/jest": "^30.0.0",
"babel-jest": "^30.3.0",
"eslint": "^9.39.4",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-jest": "^29.15.0",
"husky": "^9.1.7",
"jest": "^30.3.0",
"jest-junit": "^16.0.0",
"lerna": "^9.0.7",
"lint-staged": "^16.4.0",
"prettier": "^3.8.1"
},
"workspaces": [
"packages/*"
],
"jest": {
"automock": true,
"clearMocks": true,
"collectCoverage": true,
"coveragePathIgnorePatterns": [
"/node_modules/"
],
"coverageThreshold": {
"global": {
"branches": 100,
"functions": 100,
"lines": 100,
"statements": 100
}
},
"transformIgnorePatterns": [
"/node_modules/"
]
},
"jest-junit": {
"outputDirectory": "build"
},
"prettier": "@bluecateng/prettier-config",
"lint-staged": {
"*.{js,mjs}": [
"eslint --fix --max-warnings 0 --no-ignore",
"prettier --write"
],
"*.md": [
"prettier --write"
]
}
}