forked from zowe/zowe-cli-version-controller
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
87 lines (87 loc) · 2.33 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
{
"name": "mock_project",
"version": "1.0.0",
"description": "A mock project to use when testing the shared Node JS pipeline ",
"main": "index.js",
"scripts": {
"build": "npm run license && tsc --pretty -p mock_project/tsconfig.json",
"lint": "tslint --format stylish -c mock_project/tslint-packages.json \"mock_project/packages/**/*.ts\"",
"test:unit": "jest \".*__tests__.*\\.unit\\.(spec|test)\\.ts\" --coverage",
"license": "node scripts/updateLicense.js"
},
"author": "Broadcom",
"license": "EPL-2.0",
"devDependencies": {
"@types/jest": "^23.3.13",
"@types/node": "^10.12.18",
"cross-env": "^5.2.0",
"glob": "^7.1.3",
"jest": "^23.6.0",
"jest-environment-node": "^23.4.0",
"jest-environment-node-debug": "^2.0.0",
"jest-html-reporter": "^2.4.3",
"jest-junit": "^6.0.1",
"jest-sonar-reporter": "^2.0.0",
"jest-stare": "^1.11.1",
"shebang-regex": "^2.0.0",
"ts-jest": "^23.10.5",
"tslint": "^5.12.1",
"typescript": "^3.2.4"
},
"jest-html-reporter": {
"pageTitle": "Zowe CLI Tests",
"outputPath": "__tests__/__results__/results.html"
},
"jest": {
"globals": {
"ts-jest": {
"disableSourceMapSupport": true
}
},
"watchPathIgnorePatterns": [
".*jest-stare.*\\.js"
],
"modulePathIgnorePatterns": [
"__tests__/__snapshots__/"
],
"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",
"additionalResultsProcessors": [
"jest-junit",
"jest-html-reporter",
"jest-sonar-reporter"
],
"coverageLink": "../unit/coverage/lcov-report/index.html"
},
"jest-junit": {
"output": "__tests__/__results__/unit/junit.xml"
}
}