forked from eclipse-theia/theia-cpp-extensions
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
67 lines (67 loc) · 2.8 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
{
"private": true,
"name": "parent",
"version": "0.0.0",
"engines": {
"yarn": "1.0.x || >=1.2.1",
"node": ">=12.14.1 <13"
},
"resolution": {
"**/@types/node": "12"
},
"devDependencies": {
"@types/chai": "^4.0.1",
"@types/jsdom": "^11.0.4",
"@types/mocha": "^2.2.41",
"@types/node": "12",
"@types/webdriverio": "^4.7.0",
"chai": "^4.1.0",
"concurrently": "^3.5.0",
"ignore-styles": "^5.0.1",
"jsdom": "^11.5.1",
"lerna": "^2.2.0",
"mocha": "^3.4.2",
"nyc": "^11.0.3",
"reflect-metadata": "^0.1.10",
"shelljs": "^0.8.0",
"temp": "^0.8.3",
"ts-node": "<7.0.0",
"tslint": "^5.12.0",
"tslint-language-service": "^0.9.9",
"typescript": "^3"
},
"scripts": {
"prepare": "lerna run prepare && yarn download:plugins",
"rebuild:browser": "theia rebuild:browser",
"rebuild:electron": "theia rebuild:electron",
"watch": "lerna run watch --parallel",
"publish": "yarn && yarn test && yarn publish:latest",
"publish:latest": "node scripts/theia-version.js latest && lerna publish && yarn publish:check",
"publish:next": "node scripts/theia-version.js next && yarn next:publish && yarn next:publish --skip-npm && yarn publish:check",
"next:publish": "lerna publish --exact --canary=next --npm-tag=next --yes",
"publish:check": "node scripts/check-publish.js",
"test": "yarn test:theia && yarn test:electron && yarn test:browser",
"test:theia": "run test \"@theia/!(example-)*\" --stream --concurrency=1",
"test:browser": "run test \"browser-app\"",
"test:electron": "run test \"electron-app\"",
"start:browser": "theia rebuild:browser && run start \"browser-app\"",
"start:electron": "theia rebuild:electron && run start \"electron-app\"",
"download:plugins": "theia download:plugins"
},
"workspaces": [
"packages/*",
"browser-app",
"electron-app",
"dev-packages/*"
],
"theiaPluginsDir": "plugins",
"theiaPlugins": {
"vscode-builtin-cpp": "https://open-vsx.org/api/vscode/cpp/1.45.1/file/vscode.cpp-1.45.1.vsix",
"vscode-builtin-json": "https://open-vsx.org/api/vscode/json/1.46.1/file/vscode.json-1.46.1.vsix",
"vscode-builtin-markdown": "https://open-vsx.org/api/vscode/markdown/1.45.1/file/vscode.markdown-1.45.1.vsix",
"vscode-builtin-npm": "https://open-vsx.org/api/vscode/npm/1.45.1/file/vscode.npm-1.45.1.vsix",
"vscode-builtin-typescript": "https://open-vsx.org/api/vscode/typescript/1.45.1/file/vscode.typescript-1.45.1.vsix",
"vscode-builtin-typescript-language-features": "https://open-vsx.org/api/vscode/typescript-language-features/1.45.1/file/vscode.typescript-language-features-1.45.1.vsix",
"vscode-clangd": "https://open-vsx.org/api/llvm-vs-code-extensions/vscode-clangd/0.1.7/file/llvm-vs-code-extensions.vscode-clangd-0.1.7.vsix"
}
}