-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
87 lines (87 loc) · 2.12 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
86
87
{
"name": "l10n-packages",
"description": "L10n packages",
"private": true,
"scripts": {
"test": "jest",
"test-ci": "jest --ci --silent --reporters=jest-junit --coverageReporters=cobertura",
"lint": "eslint .",
"lint-ci": "eslint . -f @microsoft/eslint-formatter-sarif -o build/eslint-results.sarif",
"prepack": "npm t",
"prepare": "husky"
},
"repository": {
"type": "git",
"url": "git@github.com:bluecatengineering/l10n-packages.git"
},
"devDependencies": {
"@babel/core": "^7.14.3",
"@babel/eslint-parser": "^7.16.5",
"@babel/preset-env": "^7.14.2",
"@bluecateng/commitlint-config-bluecateng": "^1.0.1",
"@bluecateng/eslint-config-node": "^5.0.2",
"@bluecateng/git-check-push": "^1.0.0",
"@commitlint/cli": "^19.3.0",
"@commitlint/config-conventional": "^19.2.2",
"@microsoft/eslint-formatter-sarif": "^3.0.0",
"@rollup/plugin-node-resolve": "^16.0.0",
"@rollup/plugin-terser": "^0.4.0",
"@types/jest": "^29.5.12",
"babel-plugin-macros": "^3.1.0",
"eslint": "^9.19.0",
"husky": "^9.0.11",
"jest": "^29.0.3",
"jest-junit": "^16.0.0",
"lerna": "^8.1.2",
"lint-staged": "^15.2.2",
"prettier": "^3.2.5",
"rollup": "^4.16.4"
},
"workspaces": [
"packages/*"
],
"commitlint": {
"extends": [
"@bluecateng/commitlint-config-bluecateng"
]
},
"jest": {
"automock": true,
"clearMocks": true,
"collectCoverage": true,
"coveragePathIgnorePatterns": [
"packages/.*/index.js"
],
"coverageThreshold": {
"global": {
"branches": 100,
"functions": 100,
"lines": 100,
"statements": 100
}
},
"transform": {
"\\.js$": "babel-jest"
}
},
"jest-junit": {
"suiteName": "unit tests",
"outputDirectory": "build/test-results",
"outputName": "unit.xml"
},
"lint-staged": {
"*.js": [
"eslint --fix --max-warnings 0 --no-ignore",
"prettier --write"
],
"*.ts": [
"prettier --write"
],
"*.md": [
"prettier --write"
],
"*.{yaml,yml}": [
"prettier --write"
]
}
}