forked from zowe/zowe-explorer-vscode
-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
60 lines (60 loc) · 1.57 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
{
"name": "zowe-explorer",
"version": "1.20.0-SNAPSHOT",
"description": "Monorepo for the Zowe Explorer project.",
"publisher": "Zowe",
"author": "Zowe",
"license": "EPL-2.0",
"repository": {
"url": "https://github.com/zowe/vscode-extension-for-zowe"
},
"private": true,
"workspaces": {
"packages": [
"packages/*"
]
},
"engines": {
"vscode": "^1.43.0"
},
"dependencies": {
"@zowe/cli": "6.33.3",
"vscode-nls": "4.1.2"
},
"devDependencies": {
"@types/mocha": "^2.2.42",
"@types/node": "^10.17.24",
"@types/vscode": "^1.43.0",
"@typescript-eslint/eslint-plugin": "^4.9.0",
"@typescript-eslint/parser": "^4.9.0",
"eslint": "^7.14.0",
"eslint-config-prettier": "^6.15.0",
"eslint-plugin-prettier": "^3.1.4",
"mocha": "^4.0.0",
"prettier": "2.0.5",
"rimraf": "^3.0.2",
"typescript": "^3.8.3",
"vsce": "^1.81.1",
"vscode-nls-dev": "^3.3.2",
"vscode-test": "^1.4.0",
"yarn": "1.22.10"
},
"resolutions": {
"**/lodash": "^4.17.21",
"**/postcss": "^8.2.10",
"**/tar": "^6.1.9",
"**/@npmcli/git": "^2.0.8",
"**/ansi-regex": "^5.0.1"
},
"scripts": {
"prepare": "yarn build",
"lint": "yarn workspaces run lint",
"lintErrors": "yarn workspaces run lintErrors",
"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"
}
}