forked from eclipse-glsp/glsp-server-node
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
32 lines (32 loc) · 1.1 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
{
"private": true,
"name": "parent",
"version": "1.0.0",
"engines": {
"yarn": ">=1.7.0 <2.x.x"
},
"scripts": {
"prepare": "lerna run prepare",
"build": "lerna run build",
"watch": "lerna run --parallel watch",
"lint": "lerna run lint --",
"test": "lerna run test",
"test:ci": "lerna run test:ci",
"publish:prepare": "lerna version --ignore-scripts --yes --no-push",
"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",
"upgrade:next": "yarn upgrade -p \"@eclipse-glsp*\"",
"start": "yarn --cwd examples/workflow-server start:server"
},
"devDependencies": {
"@eclipse-glsp/config": "^1.0.0",
"@types/node": "12.x",
"lerna": "^4.0.0",
"reflect-metadata": "^0.1.13",
"typescript": "~4.5.5"
},
"workspaces": [
"packages/*",
"examples/workflow-server"
]
}