forked from redhat-developer/vscode-extension-tester
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 1.08 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
{
"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": {
"prepublishOnly": "npm run build",
"build": "npx lerna run build",
"build:changed": "npx lerna run build --since main",
"test": "npm run ui-test --workspace=extester-test",
"test:build": "npm run build:changed && npm install --workspace=extester-test && npm test"
},
"workspaces": [
"packages/*",
"tests/*"
],
"devDependencies": {
"@types/clone-deep": "^4.0.4",
"@types/fs-extra": "^11.0.4",
"@types/js-yaml": "^4.0.9",
"@types/mocha": "^10.0.6",
"@types/node": "^20.12.2",
"@types/selenium-webdriver": "^4.1.22",
"@types/targz": "^1.0.4",
"@typescript-eslint/eslint-plugin": "^7.6.0",
"@typescript-eslint/parser": "^7.6.0",
"eslint": "^8.57.0",
"lerna": "^8.1.2",
"rimraf": "^5.0.5",
"type-fest": "^4.14.0",
"typescript": "^5.4.5"
}
}