forked from zowe/zowe-explorer-vscode
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
70 lines (70 loc) · 1.96 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
68
69
70
{
"name": "zowe-explorer",
"description": "Monorepo for the Zowe Explorer project.",
"publisher": "Zowe",
"author": "Zowe",
"license": "EPL-2.0",
"repository": {
"url": "https://github.com/zowe/zowe-explorer-vscode"
},
"private": true,
"workspaces": [
"packages/*",
"packages/zowe-explorer/src/webviews"
],
"engines": {
"vscode": "^1.53.2"
},
"dependencies": {
"@zowe/cli": "7.24.3",
"vscode-nls": "4.1.2"
},
"devDependencies": {
"@types/jest": "^29.2.3",
"@types/mocha": "^10.0.1",
"@types/node": "^14.18.12",
"@types/vscode": "^1.53.2",
"@typescript-eslint/eslint-plugin": "^5.53.0",
"@typescript-eslint/parser": "^5.53.0",
"eslint": "^8.34.0",
"eslint-config-prettier": "^8.6.0",
"eslint-plugin-prettier": "^4.2.1",
"husky": "^6.0.0",
"jest": "^29.3.1",
"jest-html-reporter": "^3.7.0",
"jest-junit": "^15.0.0",
"jest-stare": "^2.4.1",
"mocha": "^10.2.0",
"mocha-junit-reporter": "^2.2.0",
"mocha-multi-reporters": "^1.5.1",
"prettier": "2.6.0",
"rimraf": "^3.0.2",
"ts-jest": "^29.0.3",
"ts-loader": "^7.0.1",
"ts-node": "^8.10.1",
"typescript": "^4.5.3",
"vsce": "2.15.0",
"vscode-nls-dev": "^4.0.0",
"vscode-test": "^1.4.0",
"webpack": "^4.42.1",
"webpack-cli": "^3.3.11",
"yarn": "1.22.19"
},
"resolutions": {
"glob-parent": "^5.1.2",
"xml2js": "^0.5.0"
},
"scripts": {
"clean": "yarn workspaces run clean",
"fresh-clone": "yarn workspaces run fresh-clone && rimraf node_modules",
"prepare": "husky install && yarn build",
"lint": "yarn workspaces run lint",
"lint:html": "yarn workspaces run lint:html",
"pretty": "prettier --write .",
"build": "yarn workspaces run build",
"test": "yarn workspaces run test",
"package": "yarn workspaces run package",
"pretest:integration": "ts-node ./scripts/create-env.ts",
"posttest:integration": "ts-node ./scripts/clean-env.ts"
}
}