forked from eclipse-sprotty/sprotty-theia
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
72 lines (72 loc) · 1.92 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
{
"name": "sprotty-theia",
"version": "0.6.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": "Miro Spönemann",
"email": "[email protected]",
"url": "http://typefox.io"
}
],
"dependencies": {
"@theia/core": "next",
"@theia/editor": "next",
"@theia/filesystem": "next",
"@theia/languages": "next",
"@theia/monaco": "next",
"sprotty": "next"
},
"devDependencies": {
"@types/chai": "^4.1.3",
"@types/mocha": "^5.2.0",
"chai": "^4.1.2",
"jenkins-mocha": "^6.0.0",
"mocha": "^5.1.1",
"rimraf": "^2.6.1",
"semver": "5.6.0",
"ts-node": "<7.0.0",
"tslint": "^5.5.0",
"typescript": "2.9.1"
},
"scripts": {
"clean": "rimraf lib artifacts",
"build": "tsc -p ./tsconfig.json && yarn run lint",
"lint": "tslint -c ./configs/tslint.json --project ./tsconfig.json",
"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"
}
]
}