-
Notifications
You must be signed in to change notification settings - Fork 71
/
package.json
47 lines (47 loc) · 1.51 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
{
"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": "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.10.1",
"@types/chai": "^4.3.20",
"@types/clone-deep": "^4.0.4",
"@types/fs-extra": "^11.0.4",
"@types/js-yaml": "^4.0.9",
"@types/mocha": "^10.0.9",
"@types/node": "^22.9.0",
"@types/selenium-webdriver": "^4.1.27",
"@types/targz": "^1.0.4",
"@types/vscode": "^1.94.0",
"@typescript-eslint/eslint-plugin": "^8.14.0",
"@typescript-eslint/parser": "^8.14.0",
"eslint": "^9.14.0",
"eslint-config-prettier": "^9.1.0",
"eslint-define-config": "^2.1.0",
"eslint-plugin-prettier": "^5.2.1",
"lerna": "^8.1.9",
"prettier": "3.3.3",
"rimraf": "^6.0.1",
"typescript": "^5.6.3"
}
}