forked from eclipse-glsp/glsp-server-node
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
61 lines (61 loc) · 1.54 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
{
"name": "@eclipse-glsp/graph",
"version": "1.1.0-next",
"description": "The typescript implementation of the GLSP graphical model (GModel)",
"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",
"css"
],
"dependencies": {
"@eclipse-glsp/protocol": "next"
},
"devDependencies": {
"@types/uuid": "8.3.1"
},
"scripts": {
"prepare": "yarn clean && yarn build && yarn lint",
"clean": "rimraf tsconfig.tsbuildinfo lib",
"build": "tsc",
"test": "mocha --config ../../.mocharc.json \"./src/**/*.spec.?(ts|tsx)\"",
"test:ci": "export JUNIT_REPORT_PATH=./report.xml && yarn test --reporter mocha-jenkins-reporter",
"lint": "eslint --ext .ts,.tsx ./src",
"lint:fix": "eslint --fix --ext .ts,.tsx ./src",
"watch": "tsc -w"
},
"publishConfig": {
"access": "public"
},
"main": "lib/index",
"types": "lib/index"
}