forked from eclipse-glsp/glsp-server-node
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
57 lines (57 loc) · 1.39 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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
{
"name": "@eclipse-glsp-examples/workflow-server",
"version": "1.1.0-next",
"description": "GLSP node server for the workflow example",
"license": "(EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0)",
"keywords": [
"eclipse",
"graphics",
"diagram",
"modeling",
"visualization",
"glsp",
"diagram editor"
],
"author": {
"name": "Eclipse GLSP"
},
"homepage": "https://www.eclipse.org/glsp/",
"repository": {
"type": "git",
"url": "https://github.com/eclipse-glsp/glsp-server-node.git"
},
"bugs": "https://github.com/eclipse-glsp/glsp/issues",
"contributors": [
{
"name": "STMicroelectronics",
"url": "https://www.st.com/"
},
{
"name": "Eclipse GLSP Project",
"email": "[email protected]",
"url": "https://projects.eclipse.org/projects/ecd.glsp"
}
],
"files": [
"lib",
"src"
],
"dependencies": {
"@eclipse-glsp/layout-elk": "1.1.0-next",
"@eclipse-glsp/server-node": "1.1.0-next"
},
"scripts": {
"prepare": "yarn clean && yarn build && yarn lint",
"clean": "rimraf tsconfig.tsbuildinfo lib",
"build": "tsc",
"lint": "eslint --ext .ts,.tsx ./src",
"lint:fix": "eslint --fix --ext .ts,.tsx ./src",
"watch": "tsc -w",
"start:server": "yarn ts-node src/index.ts"
},
"publishConfig": {
"access": "public"
},
"main": "lib/index",
"types": "lib/index"
}