-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
32 lines (32 loc) · 927 Bytes
/
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
{
"private": true,
"name": "chdman-js",
"workspaces": [
"packages/*"
],
"scripts": {
"lock:regen": "rm -rf package-lock.json packages/*/package-lock.json node_modules/ packages/*/node_modules/ && npm install --force",
"clean": "lerna clean --yes && rm -rf packages/*/dist packages/*/*.tgz",
"build": "lerna run build",
"lint": "lerna run lint",
"lint:fix": "lerna run lint:fix",
"test": "lerna run test",
"test:force": "lerna run test --skip-nx-cache",
"test:unit": "lerna run test:unit",
"test:coverage": "lerna run test:coverage",
"bump:major": "lerna version major --yes",
"bump:minor": "lerna version minor --yes",
"bump:patch": "lerna version patch --yes",
"pack:all": "lerna exec -- npm pack"
},
"dependencies": {},
"devDependencies": {
"lerna": "^8.1.8"
},
"engines": {
"node": ">=16.12.0"
},
"volta": {
"node": "20.11.1"
}
}