forked from redhat-developer/vscode-extension-tester
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 1.38 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
{
"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": "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"
},
"workspaces": [
"packages/*",
"tests/*"
],
"devDependencies": {
"@stylistic/eslint-plugin": "^2.4.0",
"@types/clone-deep": "^4.0.4",
"@types/fs-extra": "^11.0.4",
"@types/js-yaml": "^4.0.9",
"@types/mocha": "^10.0.7",
"@types/node": "^22.0.2",
"@types/selenium-webdriver": "^4.1.24",
"@types/targz": "^1.0.4",
"@typescript-eslint/eslint-plugin": "^7.18.0",
"@typescript-eslint/parser": "^7.18.0",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"lerna": "^8.1.7",
"prettier": "3.3.3",
"rimraf": "^6.0.1",
"type-fest": "^4.23.0",
"typescript": "^5.5.4"
}
}