-
Notifications
You must be signed in to change notification settings - Fork 88
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 2.84 KB
/
Copy pathpackage.json
File metadata and controls
72 lines (72 loc) · 2.84 KB
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
{
"type": "module",
"name": "@redhat-developer/root",
"description": "Lerna root of an ExTester monorepo.",
"license": "Apache-2.0",
"private": true,
"repository": {
"type": "git",
"url": "https://github.com/redhat-developer/vscode-extension-tester.git"
},
"scripts": {
"version": "npm_config_allow_scripts= lerna version --no-private --no-push --signoff-git-commit",
"publish": "lerna publish from-package --no-private",
"prepublishOnly": "npm run build",
"build": "lerna run build",
"build:changed": "lerna run build --since main",
"test": "npm run ui-test --workspace=extester-test",
"test:coverage": "npm run ui-test:coverage --workspace=extester-test",
"test:build": "npm run build:changed && npm install --workspace=extester-test && npm test",
"test:runner:unit": "npm test --workspace=extester-runner",
"test:runner:ui": "npm run ui-test --workspace=extester-runner",
"test:unit": "npm run test:unit --workspace=vscode-extension-tester",
"test:01_general": "npm run test:01_general --workspace=extester-test",
"test:activityBar": "npm run test:activityBar --workspace=extester-test",
"test:bottomBar": "npm run test:bottomBar --workspace=extester-test",
"test:cli": "npm run test:cli --workspace=extester-test",
"test:debug": "npm run test:debug --workspace=extester-test",
"test:dialog": "npm run test:dialog --workspace=extester-test",
"test:editor": "npm run test:editor --workspace=extester-test",
"test:menu": "npm run test:menu --workspace=extester-test",
"test:statusBar": "npm run test:statusBar --workspace=extester-test",
"test:system": "npm run test:system --workspace=extester-test",
"test:webview": "npm run test:webview --workspace=extester-test",
"test:workbench": "npm run test:workbench --workspace=extester-test",
"test:xsideBar": "npm run test:xsideBar --workspace=extester-test"
},
"workspaces": [
"packages/*",
"tests/*"
],
"devDependencies": {
"@stylistic/eslint-plugin": "^5.10.0",
"@types/chai": "^4.3.20",
"@types/clone-deep": "^4.0.4",
"@types/fs-extra": "^11.0.4",
"@types/mocha": "^10.0.10",
"@types/node": "^26.4.1",
"@types/selenium-webdriver": "^4.35.6",
"@types/vscode": "^1.136.0",
"@typescript-eslint/eslint-plugin": "^8.69.0",
"@typescript-eslint/parser": "^8.65.0",
"eslint": "^10.9.1",
"eslint-config-prettier": "^10.1.8",
"@vscode/vsce": "^3.9.2",
"eslint-define-config": "^2.1.0",
"eslint-plugin-prettier": "^5.5.6",
"lerna": "^10.0.1",
"prettier": "3.9.6",
"rimraf": "^6.1.3",
"typescript": "~6.0.3"
},
"overrides": {
"axios": "^1.18.1",
"brace-expansion": "^5.0.8",
"diff": "9.0.0",
"js-yaml@^4": "^4.3.2",
"pacote": "^21.5.1",
"serialize-javascript": "7.0.7",
"tar": "^7.5.22"
},
"packageManager": "npm@10.9.2"
}