-
Notifications
You must be signed in to change notification settings - Fork 14
/
package.json
97 lines (97 loc) · 2.63 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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
{
"name": "sprotty-theia",
"version": "0.12.0",
"description": "Glue code for Sprotty diagrams in a Theia IDE",
"license": "(EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0)",
"keywords": [
"theia",
"sprotty",
"diagram",
"theia-extension"
],
"homepage": "https://github.com/eclipse/sprotty-theia",
"bugs": "https://github.com/eclipse/sprotty-theia/issues",
"author": {
"name": "Eclipse Sprotty"
},
"contributors": [
{
"name": "Jan Köhnlein",
"email": "[email protected]",
"url": "http://typefox.io"
},
{
"name": "Philip Langer",
"email": "[email protected]",
"url": "https://www.eclipsesource.com"
},
{
"name": "Tobias Ortmayr",
"email": "[email protected]",
"url": "https://www.eclipsesource.com"
},
{
"name": "Miro Spönemann",
"email": "[email protected]",
"url": "http://typefox.io"
}
],
"peerDependencies": {
"@theia/core": "^1.33",
"@theia/editor": "^1.33",
"@theia/filesystem": "^1.33",
"@theia/monaco": "^1.33",
"sprotty": "^0.12.0",
"sprotty-protocol": "^0.12.0"
},
"devDependencies": {
"@types/chai": "^4.2.12",
"@types/mocha": "^8.0.0",
"@typescript-eslint/eslint-plugin": "5.39.0",
"@typescript-eslint/parser": "5.39.0",
"chai": "^4.2.0",
"eslint": "^8.24.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-header": "^3.1.1",
"eslint-plugin-no-null": "^1.0.2",
"jenkins-mocha": "^8.0.0",
"keytar": "^7.7.0",
"mocha": "^8.1.0",
"rimraf": "^3.0.2",
"semver": "^7.3.2",
"ts-node": "^8.10.2",
"typescript": "^4.8.4",
"@theia/core": "1.33",
"@theia/editor": "1.33",
"@theia/filesystem": "1.33",
"@theia/monaco": "1.33",
"sprotty": "^0.12.0",
"sprotty-protocol": "^0.12.0"
},
"scripts": {
"clean": "rimraf lib artifacts",
"build": "tsc -p ./tsconfig.json && yarn run lint",
"lint": "eslint \"src/**/!(*.spec.ts*)\"",
"watch": "tsc -w -p ./tsconfig.json",
"test": "jenkins-mocha --opts ./configs/mocha.opts \"./src/**/*.spec.?(ts|tsx)\"",
"prepare": "yarn run clean && yarn run build",
"prepublishOnly": "yarn run test",
"publish:next": "yarn publish --new-version \"$(semver $npm_package_version -i minor)-next.$(git rev-parse --short HEAD)\" --tag next",
"publish:latest": "yarn publish --tag latest"
},
"files": [
"lib",
"src",
"css"
],
"main": "lib/index",
"types": "lib/index",
"theiaExtensions": [
{
"frontend": "lib/theia/diagram-module"
}
],
"eslintIgnore": [
"src/**/*.spec.?(ts|tsx)"
]
}