forked from zowe/zowe-cli
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
135 lines (135 loc) · 4.37 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
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
{
"name": "@zowe/cli",
"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": "Broadcom",
"license": "EPL-2.0",
"workspaces": [
"packages/*"
],
"scripts": {
"build": "gulp updateLicense && lerna run build && npm run lint && npm run checkTestsCompile && npm run circularDependencyCheck",
"clean": "lerna run --parallel clean",
"installWithBuild": "npm install && npm run build",
"checkTestsCompile": "echo \"Checking that test source compiles...\" && tsc --project __tests__/test-tsconfig.json --noEmit",
"circularDependencyCheck": "lerna run --parallel circularDependencyCheck -- -- --warning --no-spinner",
"lint": "npm run lint:packages && npm run lint:tests",
"lint:packages": "lerna run --parallel lint",
"lint:tests": "tslint --format stylish -c ./tslint-tests.json \"/__tests__/**/*.ts\"",
"test": "npm run test:unit && npm run test:integration && npm run test:system",
"test:cleanResults": "rimraf __tests__/__results__",
"test:cleanUpProfiles": "sh __tests__/__scripts__/clean_profiles.sh",
"test:integration": "cross-env FORCE_COLOR=1 jest \".*__tests__.*\\**\\.integration\\.(spec|test)\\.ts\\$\" --coverage false",
"test:system": "cross-env FORCE_COLOR=1 jest \".*__tests__.*\\**\\.system\\.(spec|test)\\.ts\\$\" --coverage false",
"test:unit": "cross-env FORCE_COLOR=1 jest \".*__tests__.*\\**\\.unit\\.(spec|test)\\.ts\\$\" --coverage",
"watch": "lerna run --parallel watch",
"watch:test": "jest --watch",
"doc:clean": "rimraf docs/CLIReadme.md",
"doc:generate": "npm run doc:clean && gulp doc",
"generateCleanTypedoc": "npm run typedoc && gulp cleanTypedoc",
"typedoc": "typedoc",
"typedoc:packages": "lerna run --parallel typedoc",
"audit:public": "npm audit --registry https://registry.npmjs.org/",
"prepare": "husky install"
},
"dependencies": {
"@zowe/imperative": "4.13.1",
"@zowe/perf-timing": "1.0.7"
},
"devDependencies": {
"@types/fs-extra": "^8.0.1",
"@types/jest": "^22.2.3",
"@types/node": "^12.12.24",
"ansi-colors": "^4.1.1",
"chalk": "^4.1.0",
"clear-require": "^2.0.0",
"codepage": "^1.10.1",
"cross-env": "^5.1.4",
"fancy-log": "^1.3.3",
"fs-extra": "^8.1.0",
"glob": "^7.1.6",
"gulp": "^4.0.2",
"gulp-cli": "^2.0.1",
"gulp-debug": "^4.0.0",
"gulp-plumber": "^1.2.1",
"gulp-replace": "^0.6.1",
"husky": "^6.0.0",
"jest": "^24.9.0",
"jest-cli": "^24.9.0",
"jest-environment-node": "^24.1.0",
"jest-environment-node-debug": "^2.0.0",
"jest-junit": "^6.3.0",
"jest-sonar-reporter": "^2.0.0",
"jest-stare": "^2.2.0",
"js-yaml": "^3.13.1",
"jsonfile": "^4.0.0",
"lerna": "^3.22.1",
"madge": "^4.0.1",
"rimraf": "^2.6.3",
"shebang-regex": "^2.0.0",
"syncpack": "^5.6.10",
"ts-jest": "^24.2.0",
"ts-node": "^7.0.1",
"tslint": "^6.1.3",
"typedoc": "^0.16.0",
"typedoc-plugin-external-module-map": "^1.2.1",
"typescript": "^3.8.0",
"uuid": "^3.3.2"
},
"jest": {
"globals": {
"ts-jest": {
"disableSourceMapSupport": true
}
},
"watchPathIgnorePatterns": [
".*jest-stare.*\\.js"
],
"modulePathIgnorePatterns": [
"__tests__/__snapshots__/",
".*/node_modules/.*",
".*/lib/.*"
],
"setupFilesAfterEnv": [
"./__tests__/beforeTests.js"
],
"testResultsProcessor": "jest-stare",
"transform": {
"\\.ts$": "ts-jest"
},
"testRegex": "__tests__.*\\.(spec|test)\\.ts$",
"moduleFileExtensions": [
"ts",
"js"
],
"testEnvironment": "node",
"collectCoverageFrom": [
"packages/**/*.ts",
"!**/__tests__/**",
"!packages/**/doc/I*.ts",
"!**/main.ts"
],
"collectCoverage": false,
"coverageReporters": [
"json",
"lcov",
"text",
"cobertura"
],
"coverageDirectory": "<rootDir>/__tests__/__results__/unit/coverage"
},
"jestSonar": {
"reportPath": "__tests__/__results__/jest-sonar"
},
"jest-stare": {
"resultDir": "__tests__/__results__/jest-stare",
"coverageLink": "../unit/coverage/lcov-report/index.html",
"additionalResultsProcessors": [
"jest-junit",
"jest-sonar-reporter"
]
},
"jest-junit": {
"output": "__tests__/__results__/junit.xml"
}
}