-
Notifications
You must be signed in to change notification settings - Fork 86
/
package.json
94 lines (94 loc) · 4.07 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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
{
"name": "@zowe/cli_monorepo",
"private": true,
"description": "Zowe CLI is a command line interface (CLI) that provides a simple and streamlined way to interact with IBM z/OS.",
"author": "Zowe",
"license": "EPL-2.0",
"workspaces": [
"packages/*",
"__tests__/__packages__/*"
],
"scripts": {
"build": "lerna run build && node scripts/updateLicenses.js && npm run lint && npm run checkTestsCompile && npm run circularDependencyCheck",
"postbuild": "node scripts/sampleCliTool.js build",
"build:exe": "cd zowex && cargo build && cargo clippy && cargo test",
"clean": "lerna run --parallel clean",
"clean:exe": "cd zowex && cargo clean",
"installWithBuild": "npm install && npm run build",
"checkTestsCompile": "echo \"Checking that test source compiles...\" && tsc --project __tests__/tsconfig.json --noEmit",
"circularDependencyCheck": "lerna run --parallel circularDependencyCheck -- --warning --no-spinner",
"lint": "lerna run lint --parallel --no-bail",
"lint:packages": "lerna run lint:packages --parallel --no-bail",
"lint:series": "lerna run lint --no-bail",
"lint:tests": "lerna run lint:tests --parallel --no-bail",
"test": "npm run test:unit && npm run test:integration && npm run test:system",
"test:act": "node scripts/testCliWorkflow.js",
"test:cleanResults": "rimraf __tests__/__results__",
"test:cleanUpProfiles": "sh __tests__/__scripts__/clean_profiles.sh",
"pretest:integration": "node scripts/sampleCliTool.js install",
"test:integration": "env-cmd -f __tests__/__resources__/env/integration.env --no-override jest \".*__tests__.*\\**\\.integration\\.(spec|test)\\.ts$\" --coverage false",
"posttest:integration": "node scripts/sampleCliTool.js uninstall",
"test:system": "env-cmd -f __tests__/__resources__/env/system.env --no-override jest \".*__tests__.*\\**\\.system\\.(spec|test)\\.ts$\" --coverage false",
"test:unit": "env-cmd -f __tests__/__resources__/env/unit.env --no-override jest \".*__tests__.*\\**\\.unit\\.(spec|test)\\.ts$\" --coverage",
"watch": "lerna run --parallel watch",
"watch:exe": "cd zowex && cargo install cargo-watch && cargo watch -x build -x clippy -x test",
"watch:test": "jest --watch",
"generateCleanTypedoc": "npm run typedoc",
"typedoc": "typedoc",
"typedoc:packages": "lerna run --parallel typedoc",
"audit:public": "npm audit --registry https://registry.npmjs.org/",
"bundle:webHelp": "cd packages/imperative/web-help && node build.js",
"prepare": "husky && npm run bundle:webHelp",
"package": "lerna run prepublishOnly && node scripts/bundleCliTgz.js"
},
"devDependencies": {
"@lerna-lite/changed": "^3.6.0",
"@lerna-lite/cli": "^3.6.0",
"@lerna-lite/list": "^3.6.0",
"@lerna-lite/run": "^3.6.0",
"@lerna-lite/version": "^3.6.0",
"@types/jest": "^29.5.12",
"@types/node": "^18.19.17",
"@types/which": "^3.0.4",
"@typescript-eslint/eslint-plugin": "^7.15.0",
"@typescript-eslint/parser": "^7.15.0",
"ansi-colors": "^4.1.2",
"chalk": "^4.1.0",
"env-cmd": "^10.1.0",
"eslint": "^8.22.0",
"eslint-plugin-deprecation": "^3.0.0",
"eslint-plugin-jest": "^27.0.0",
"eslint-plugin-unused-imports": "^3.0.0",
"fancy-log": "^2.0.0",
"husky": "^9.0.0",
"jest": "^29.0.0",
"jest-environment-node": "^29.0.0",
"jest-environment-node-debug": "^2.0.0",
"jest-html-reporter": "^3.6.0",
"jest-junit": "^16.0.0",
"jest-sonar-reporter": "^2.0.0",
"jest-stare": "^2.5.1",
"js-yaml": "^4.1.0",
"jsonfile": "^6.0.0",
"madge": "^7.0.0",
"mustache": "^4.2.0",
"npm-lockfile": "^3.0.7",
"rimraf": "^5.0.0",
"symlink-dir": "^6.0.0",
"ts-jest": "^29.1.5",
"ts-node": "^7.0.1",
"typedoc": "^0.26.3",
"typescript": "^5.5.3"
},
"jestSonar": {
"reportPath": "__tests__/__results__/jest-sonar"
},
"jest-stare": {
"additionalResultsProcessors": [
"jest-junit",
"jest-sonar-reporter"
],
"coverageLink": "../unit/coverage/lcov-report/index.html",
"resultDir": "__tests__/__results__/jest-stare"
}
}