forked from eclipse-theia/theia
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
52 lines (52 loc) · 1.51 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
{
"private": true,
"name": "@theia/example-electron",
"version": "0.3.7",
"theia": {
"target": "electron"
},
"dependencies": {
"@theia/callhierarchy": "^0.3.7",
"@theia/core": "^0.3.7",
"@theia/cpp": "^0.3.7",
"@theia/editor": "^0.3.7",
"@theia/extension-manager": "^0.3.7",
"@theia/file-search": "^0.3.7",
"@theia/filesystem": "^0.3.7",
"@theia/git": "^0.3.7",
"@theia/java": "^0.3.7",
"@theia/keymaps": "^0.3.7",
"@theia/languages": "^0.3.7",
"@theia/markers": "^0.3.7",
"@theia/merge-conflicts": "^0.3.7",
"@theia/messages": "^0.3.7",
"@theia/metrics": "^0.3.7",
"@theia/monaco": "^0.3.7",
"@theia/navigator": "^0.3.7",
"@theia/outline-view": "^0.3.7",
"@theia/output": "^0.3.7",
"@theia/preferences": "^0.3.7",
"@theia/preview": "^0.3.7",
"@theia/process": "^0.3.7",
"@theia/python": "^0.3.7",
"@theia/search-in-workspace": "^0.3.7",
"@theia/task": "^0.3.7",
"@theia/terminal": "^0.3.7",
"@theia/typescript": "^0.3.7",
"@theia/userstorage": "^0.3.7",
"@theia/workspace": "^0.3.7"
},
"scripts": {
"prepare": "yarn run clean && yarn build",
"clean": "theia clean",
"build": "theia build",
"watch": "yarn build --watch",
"start": "theia start",
"start:debug": "yarn start --loglevel=debug",
"test": "electron-mocha --timeout 60000 --require ts-node/register \"./test/**/*.espec.ts\"",
"test:ui": "wdio wdio.conf.js"
},
"devDependencies": {
"@theia/cli": "^0.3.7"
}
}