-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 845 Bytes
/
package.json
File metadata and controls
29 lines (29 loc) · 845 Bytes
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
{
"name": "@leverj/lever",
"type": "module",
"private": true,
"engines": {
"node": ">= 22.15.0"
},
"packageManager": "yarn@4.12.0",
"workspaces": [
"packages/*"
],
"scripts": {
"test": "yarn workspaces foreach --all run test",
"dependency:check": "yarn workspaces foreach --all run dependency:check",
"publish:prerelease": "up=prerelease yarn publish:up",
"publish:patch": "up=patch yarn publish:up",
"publish:minor": "up=minor yarn publish:up",
"publish:major": "up=major yarn publish:up",
"publish:up": "lerna version $up --force-publish --exact --git-tag-version --push --yes && lerna publish from-git --yes"
},
"devDependencies": {
"depcheck": "^1.4.7",
"expect": "^30.2.0",
"lerna": "^9.0.3",
"mocha": "^11.7.5",
"sinon": "^21.0.0",
"yargs": "^18.0.0"
}
}