-
Notifications
You must be signed in to change notification settings - Fork 30
/
Copy pathpackage.json
36 lines (36 loc) · 1.32 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
34
35
36
{
"private": true,
"name": "parent",
"version": "1.0.0",
"engines": {
"yarn": ">=1.7.0 <2.x.x",
"node": ">=14.18.0"
},
"license": "(EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 OR MIT)",
"author": {
"name": "Eclipse GLSP"
},
"homepage": "https://www.eclipse.org/glsp/",
"repository": {
"type": "git",
"url": "https://github.com/eclipse-glsp/glsp-examples.git"
},
"bugs": "https://github.com/eclipse-glsp/glsp/issues",
"contributors": [
{
"name": "Eclipse GLSP Project",
"email": "[email protected]",
"url": "https://projects.eclipse.org/projects/ecd.glsp"
}
],
"scripts": {
"build": "yarn build:workflow && yarn build:project-templates",
"build:project-templates": "yarn build:java-emf-theia && yarn build:node-json-theia && yarn build:node-json-vscode && yarn build:java-emf-eclipse",
"build:java-emf-theia": "yarn --cwd project-templates/java-emf-theia install",
"build:node-json-theia": "yarn --cwd project-templates/node-json-theia install",
"build:node-json-vscode": "yarn --cwd project-templates/node-json-vscode install",
"build:java-emf-eclipse": "yarn --cwd project-templates/java-emf-eclipse install",
"build:workflow": "yarn --cwd workflow install",
"start:workflow": "yarn --cwd workflow/workflow-browser-app start"
}
}