forked from eclipse-glsp/glsp
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 1.14 KB
/
package.json
File metadata and controls
33 lines (33 loc) · 1.14 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
{
"name": "parent",
"version": "1.0.0-next",
"private": true,
"workspaces": [
"dev-packages/*"
],
"scripts": {
"all": "yarn install && yarn lint",
"build": "lerna run build",
"check:headers": "yarn start:cli checkHeaders . -t lastCommit",
"check:pr": "yarn all && yarn check:headers",
"clean": "lerna run clean",
"lint": "lerna run lint",
"lint:ci": "lerna run lint:ci",
"prepare": "lerna run prepare",
"publish:latest": "lerna publish from-git --no-git-reset --no-git-tag-version --no-verify-access --no-push",
"publish:next": "SHA=$(git rev-parse --short HEAD) && lerna publish preminor --exact --canary --preid next.${SHA} --dist-tag next --no-git-reset --no-git-tag-version --no-push --ignore-scripts --yes --no-verify-access",
"publish:prepare": "lerna version --ignore-scripts --yes --no-push",
"start:cli": " yarn --cwd dev-packages/cli start",
"watch": "lerna run --parallel watch"
},
"devDependencies": {
"@types/node": "16.x",
"lerna": "^6.1.0",
"rimraf": "^3.0.2",
"typescript": "^4.9.3"
},
"engines": {
"node": ">=16.11.0",
"yarn": ">=1.7.0 <2.x.x"
}
}