forked from eclipse-glsp/glsp-server-node
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
79 lines (79 loc) · 1.96 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
{
"name": "@eclipse-glsp/server",
"version": "2.2.0-next",
"description": "A js server framework for Eclipse GLSP",
"keywords": [
"eclipse",
"graphics",
"diagram",
"modeling",
"visualization",
"glsp",
"diagram editor"
],
"homepage": "https://www.eclipse.org/glsp/",
"bugs": "https://github.com/eclipse-glsp/glsp/issues",
"repository": {
"type": "git",
"url": "https://github.com/eclipse-glsp/glsp-server-node.git"
},
"license": "(EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0)",
"author": {
"name": "Eclipse GLSP"
},
"contributors": [
{
"name": "STMicroelectronics",
"url": "https://www.st.com/"
},
{
"name": "Eclipse GLSP Project",
"email": "[email protected]",
"url": "https://projects.eclipse.org/projects/ecd.glsp"
}
],
"main": "./lib/node/index",
"browser": {
"lib/node/index": "./lib/browser/index"
},
"types": "lib/common/index",
"files": [
"lib",
"src",
"node.js",
"node.d.ts",
"browser.d.ts",
"browser.js",
"common.d.ts",
"common.js"
],
"scripts": {
"build": "tsc -b",
"clean": "rimraf lib tsconfig.tsbuildinfo coverage .nyc_output",
"lint": "eslint --ext .ts,.tsx ./src",
"lint:ci": "yarn lint -o eslint.xml -f checkstyle",
"prepare": "yarn clean && yarn build",
"test": "mocha --config ../../.mocharc \"./src/**/*.spec.?(ts|tsx)\"",
"test:ci": "export JUNIT_REPORT_PATH=./report.xml && yarn test --reporter mocha-jenkins-reporter",
"test:coverage": "nyc yarn test:ci",
"watch": "tsc -w"
},
"dependencies": {
"@eclipse-glsp/graph": "^2.2.0-next",
"@eclipse-glsp/protocol": "next",
"@types/uuid": "8.3.1",
"commander": "^8.3.0",
"fast-json-patch": "^3.1.0",
"winston": "^3.3.3",
"ws": "^8.12.1"
},
"devDependencies": {
"@types/ws": "^8.5.4"
},
"peerDependencies": {
"inversify": "^6.0.0"
},
"publishConfig": {
"access": "public"
}
}