-
Notifications
You must be signed in to change notification settings - Fork 15
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.7 KB
/
package.json
File metadata and controls
61 lines (61 loc) · 1.7 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
{
"name": "root",
"private": true,
"workspaces": {
"packages": [
"packages/*",
"examples/*"
]
},
"engines": {
"node": ">=18",
"pnpm": ">=8"
},
"scripts": {
"version": "pnpm install && git add pnpm-lock.yaml",
"preinstall": "npx only-allow pnpm",
"prepare": "husky install",
"release:version": "lerna version",
"release:publish": "lerna publish from-git --yes --no-verify-access",
"ci": "npm-run-all format:validate ci:subpackages legal:* coverage:merge",
"ci:subpackages": "lerna run ci",
"format:fix": "prettier --write --ignore-path .gitignore \"**/*.@(ts|js|json|md)\"",
"format:validate": "prettier --check --ignore-path .gitignore \"**/*.@(ts|js|json|md)\"",
"coverage:merge": "node ./scripts/merge-coverage",
"legal:copy-reuse": "pnpm -r exec -- shx cp -r ../../.reuse .reuse",
"legal:copy-license": "pnpm -r exec -- shx cp -r ../../LICENSES LICENSES"
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"lint-staged": {
"*.{js,ts,json,md}": [
"prettier --write"
],
"*.{ts,js}": [
"eslint --fix --max-warnings=0 --ignore-pattern=!.*"
]
},
"devDependencies": {
"@commitlint/cli": "18.4.3",
"@commitlint/config-conventional": "18.4.3",
"@types/chai": "4.3.11",
"@types/mocha": "10.0.6",
"@types/node": "18.15.3",
"chai": "4.3.10",
"chai-exclude": "2.1.0",
"cz-conventional-changelog": "3.3.0",
"husky": "8.0.3",
"lerna": "9.0.3",
"lint-staged": "15.2.0",
"mocha": "10.2.0",
"npm-run-all": "4.1.5",
"nyc": "15.1.0",
"prettier": "1.19.1",
"rimraf": "5.0.5",
"shx": "0.3.4",
"typescript": "5.3.3"
}
}