This repository was archived by the owner on Aug 31, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.35 KB
/
Copy pathpackage.json
File metadata and controls
59 lines (59 loc) · 1.35 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
{
"private": true,
"scripts": {
"build": "lerna run --parallel build",
"lint": "eslint ./",
"test": "jest",
"test:watch": "yarn test -- --watch --coverage false",
"prerelease": "yarn test --no-cache",
"release": "lerna publish --conventional-commits --message \"chore(npm): publish\"",
"commit": "git-cz",
"commit:retry": "git-cz --retry",
"commitmsg": "commitlint -e"
},
"workspaces": [
"packages/*"
],
"devDependencies": {
"@commitlint/cli": "^7.5.0",
"@commitlint/config-conventional": "^7.5.0",
"@commitlint/travis-cli": "^7.5.0",
"codecov": "^3.1.0",
"commitizen": "^3.0.5",
"cz-customizable": "^6.0.0",
"eslint": "^5.13.0",
"eslint-config-xo-space": "^0.21.0",
"husky": "^1.3.1",
"jest": "^24.1.0",
"lerna": "^3.10.8"
},
"config": {
"commitizen": {
"path": "node_modules/cz-customizable"
},
"cz-customizable": {
"config": "commitizen.config.js"
}
},
"jest": {
"projects": [
"./packages/*"
],
"collectCoverage": true,
"collectCoverageFrom": [
"**/*.js",
"!**/node_modules/**",
"!**/coverage/**",
"!**/templates/**",
"!**/lib/**"
],
"coverageThreshold": {
"global": {
"branches": 80,
"functions": 90,
"lines": 90,
"statements": 90
}
}
}
}