-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
33 lines (33 loc) · 1.28 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
{
"private": true,
"name": "ilib-mono",
"packageManager": "[email protected]+sha512.cce0f9de9c5a7c95bef944169cc5dfe8741abfb145078c0d508b868056848a87c81e626246cb60967cbd7fd29a6c062ef73ff840d96b3c86c40ac92cf4a813ee",
"scripts": {
"build": "turbo build",
"postinstall": "cp git-hooks/* .git/hooks/",
"coverage": "turbo coverage",
"coverage:affected": "turbo coverage --affected",
"coverage:ci:affected": "turbo coverage --concurrency=5 --affected",
"test": "pnpm test:affected",
"test:affected": "turbo test --affected --output-logs=new-only",
"test:all": "turbo test",
"test:all:force": "turbo test --force",
"test:ci": "turbo test --concurrency=5",
"test:ci:affected": "pnpm test:ci --affected",
"doc": "pnpm -F '[origin/main]' doc",
"release": "pnpm build && pnpm changeset publish",
"run:loctool": "NODE_PATH=packages node --inspect packages/loctool/loctool.js",
"run:lint": "NODE_PATH=packages node --inspect packages/ilib-lint/src/index.js"
},
"devDependencies": {
"@changesets/cli": "^2.27.9",
"jest-junit": "^16.0.0",
"semver": "^7.6.3",
"turbo": "^2.2.3"
},
"pnpm": {
"patchedDependencies": {
"@changesets/[email protected]": "patches/@[email protected]"
}
}
}