-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.26 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.26 KB
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
{
"private": "true",
"name": "@eclipse-emfcloud/tasklist-glsp",
"version": "0.7.0",
"description": "GLSP sprotty diagrams for the EMF model TaskList DSL",
"license": "(EPL-2.0 OR MIT)",
"keywords": [
"glsp",
"tasklist",
"diagram"
],
"author": {
"name": "Eclipse emf.cloud Project"
},
"homepage": "https://www.eclipse.org/emfcloud/",
"repository": {
"type": "git",
"url": "https://github.com/eclipse-emfcloud/modelserver-glsp-integration"
},
"bugs": "https://github.com/eclipse-emfcloud/modelserver-glsp-integration/issues",
"contributors": [
{
"name": "Eclipse emf.cloud Project",
"email": "emfcloud-dev@eclipse.org",
"url": "https://projects.eclipse.org/projects/ecd.emfcloud"
}
],
"files": [
"lib",
"src",
"css"
],
"dependencies": {
"@eclipse-glsp/client": "1.1.0-RC08"
},
"devDependencies": {
"rimraf": "^2.6.1",
"typescript": "~4.5.5"
},
"scripts": {
"prepare": "yarn clean && yarn build && yarn lint",
"clean": "rimraf tsconfig.tsbuildinfo lib",
"build": "tsc",
"lint": "eslint -c ../.eslintrc.js --ext .ts,.tsx ./src",
"watch": "tsc -w",
"upgrade:latest": "ncu @eclipse-glsp* --target @rc -u"
},
"main": "lib/index",
"types": "lib/index"
}