forked from eclipse-theia/theia
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
53 lines (53 loc) · 1.89 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
{
"private": true,
"name": "@theia/example-browser",
"version": "0.3.7",
"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 && rimraf errorShots",
"build": "theia build",
"watch": "yarn build --watch",
"start": "theia start",
"start:debug": "yarn start --logLevel=debug",
"test": "wdio",
"coverage:compile": "yarn build --config coverage-webpack.config.js",
"coverage:remap": "remap-istanbul -i coverage/coverage.json -o coverage/coverage-final.json --exclude 'frontend/index.js' && rimraf coverage/coverage.json",
"coverage:report:html": "istanbul report --root coverage --format html",
"coverage:report:lcov": "istanbul report --root coverage --format lcov",
"coverage": "yarn coverage:compile && yarn test && yarn coverage:remap && yarn coverage:report:lcov && yarn coverage:report:html"
},
"devDependencies": {
"@theia/cli": "^0.3.7"
}
}