-
Notifications
You must be signed in to change notification settings - Fork 16
Expand file tree
/
Copy pathpackage.json
More file actions
81 lines (81 loc) · 2.25 KB
/
package.json
File metadata and controls
81 lines (81 loc) · 2.25 KB
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
71
72
73
74
75
76
77
78
79
80
81
{
"name": "@zowe/cics_monorepo",
"private": true,
"version": "6.20.0",
"publishConfig": {
"registry": "https://zowe.jfrog.io/zowe/api/npm/npm-local-release/"
},
"repository": "https://github.com/zowe/cics-for-zowe-client",
"workspaces": [
"packages/*"
],
"scripts": {
"build": "turbo build",
"watch": "turbo watch",
"package": "turbo package",
"test": "npm run test --workspaces",
"test:system": "npm run test:system --workspaces",
"test:unit": "npm run test:unit --workspaces",
"test:e2e": "npm run test:e2e --workspaces",
"lint": "npx eslint --ignore-pattern packages --ignore-pattern scripts && npm run lint --workspaces",
"lintErrors": "npm run lintErrors --workspaces",
"prepare": "husky install",
"license": "node scripts/updateLicenses.js",
"pretty": "turbo pretty --no-cache"
},
"devDependencies": {
"@eslint/css": "^0.14.1",
"@eslint/js": "^10.0.1",
"@types/glob": "^8.1.0",
"@types/jest": "^29.5.0",
"@types/node": "^18.18.2",
"@types/uuid": "^9.0.1",
"@types/xml2js": "^0.4.4",
"@types/yargs": "^17.0.24",
"@zowe/cli-test-utils": "^8.0.0",
"@zowe/imperative": "^8.30.1",
"@zowe/zowe-explorer-api": "^3.4.1",
"chalk": "^4.1.2",
"diff": "^8.0.3",
"eslint": "^10.0.1",
"glob": "^13.0.6",
"globals": "^17.3.0",
"husky": "^8.0.3",
"jest": "^30.2.0",
"jest-environment-node": "^29.5.0",
"jest-environment-node-debug": "^2.0.0",
"jest-junit": "^16.0.0",
"jest-mock-vscode": "^4.0.4",
"madge": "^6.0.0",
"minimatch": "^10.2.2",
"prettier": "^3.5.2",
"prettier-plugin-organize-imports": "^4.1.0",
"rimraf": "^6.1.3",
"supports-color": "^7.2.0",
"terser": "^5.16.8",
"ts-jest": "^29.1.0",
"ts-node": "^10.9.1",
"tsup": "^8.4.0",
"turbo": "^1.12.4",
"typedoc": "^0.28.17",
"typescript": "^5.3.3",
"typescript-eslint": "^8.56.0",
"uuid": "^9.0.0"
},
"overrides": {
"diff": "^8.0.3",
"glob": "^13.0.6",
"minimatch": "^10.2.2",
"mocha": {
"minimatch": "^10.2.2"
},
"test-exclude": "^8.0.0",
"typedoc": {
"minimatch": "^10.2.2"
},
"@vscode/vsce": {
"minimatch": "^3.1.2"
},
"serialize-javascript": "^7.0.3"
}
}