This repository has been archived by the owner on Feb 8, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
140 lines (140 loc) · 4.27 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
136
137
138
139
140
{
"name": "@zowe/ims-for-zowe-cli",
"version": "3.0.1",
"description": "IBM IMS Plug-in for zowe CLI",
"homepage": "https://github.com/zowe/zowe-cli-ims-plugin#readme",
"bugs": {
"url": "https://github.com/zowe/zowe-cli-ims-plugin/issues"
},
"keywords": [
"zowe",
"cli",
"ims",
"plugin"
],
"repository": {
"type": "git",
"url": "https://github.com/zowe/zowe-cli-ims-plugin.git"
},
"main": "lib/index.js",
"files": [
"lib",
"npm-shrinkwrap.json"
],
"publishConfig": {
"registry": "https://zowe.jfrog.io/zowe/api/npm/npm-local-release/"
},
"scripts": {
"build": "node scripts/updateLicense.js && tsc --pretty && npm run checkTestsCompile && npm run circularDependencyCheck",
"checkTestsCompile": "echo \"Checking that test source compiles...\" && tsc --project __tests__/test-tsconfig.json --noEmit ",
"circularDependencyCheck": "madge -c lib",
"prebuild": "npm run clean && npm run lint && echo Using TypeScript && tsc --version",
"clean": "rimraf lib",
"watch": "tsc --pretty --watch",
"prepublishOnly": "npm run build",
"lint": "eslint \"src/**/*.ts\" \"**/__tests__/**/*.ts\"",
"lint:src": "eslint \"src/**/*.ts\" --ignore-pattern \"**/__tests__/**/*.ts\"",
"lint:tests": "eslint \"**/__tests__/**/*.ts\"",
"test": "npm run test:unit && npm run test:system",
"test:system": "env-cmd __tests__/__resources__/env/system.env jest .*/__system__/.* --coverage false --runInBand",
"test:integration": "env-cmd __tests__/__resources__/env/integration.env jest .*/__integration__/.* --coverage false",
"test:unit": "env-cmd __tests__/__resources__/env/unit.env jest --coverage --testPathIgnorePatterns \".*/__system__/.*\" \"__integration__\"",
"installPlugin": "npm install && npm run clean && npm run build && zowe plugins install .",
"typedoc": "typedoc --out ./docs/typedoc/ ./src/ --disableOutputCheck"
},
"imperative": {
"configurationModule": "lib/imperative.js"
},
"peerDependencies": {
"@zowe/imperative": "^5.10.0"
},
"devDependencies": {
"@types/fs-extra": "^5.0.0",
"@types/jest": "^20.0.5",
"@types/node": "^8.10.45",
"@types/yargs": "8.0.2",
"@typescript-eslint/eslint-plugin": "^4.29.0",
"@typescript-eslint/parser": "^4.29.0",
"@zowe/cli": "^7.23.0",
"@zowe/cli-test-utils": "^7.23.0",
"@zowe/imperative": "^5.20.1",
"env-cmd": "^8.0.2",
"eslint": "^7.32.0",
"eslint-plugin-jest": "^24.4.0",
"eslint-plugin-unused-imports": "^1.1.2",
"fs-extra": "^5.0.0",
"glob": "^7.1.3",
"jest": "^26.6.3",
"jest-environment-node-debug": "^2.0.0",
"jest-html-reporter": "^3.4.1",
"jest-junit": "^6.3.0",
"jest-stare": "^2.2.0",
"madge": "^5.0.1",
"rimraf": "^2.6.3",
"shebang-regex": "^2.0.0",
"ts-jest": "^26.4.4",
"ts-node": "^3.2.0",
"typedoc": "^0.20.36",
"typescript": "^3.7.4",
"uuid": "^3.2.1"
},
"jest": {
"setupFilesAfterEnv": [
"./__tests__/setUpJest.js"
],
"modulePathIgnorePatterns": [
"__tests__/__snapshots__/"
],
"testResultsProcessor": "jest-stare",
"transform": {
".(ts)": "ts-jest"
},
"testRegex": "(test|spec)\\.ts$",
"moduleFileExtensions": [
"ts",
"js"
],
"testPathIgnorePatterns": [
"<rootDir>/__tests__/__results__",
"./__tests__/setUpJest.js"
],
"testEnvironment": "node",
"collectCoverageFrom": [
"src/**/*.ts",
"!**/__tests__/**",
"!**/index.ts",
"!**/main.ts"
],
"collectCoverage": false,
"coverageReporters": [
"json",
"lcov",
"text",
"cobertura"
],
"coverageDirectory": "<rootDir>/__tests__/__results__/unit/coverage",
"globals": {
"ts-jest": {
"diagnostics": false
}
}
},
"jest-stare": {
"resultDir": "__tests__/__results__/jest-stare",
"additionalResultsProcessors": [
"jest-junit",
"jest-html-reporter"
],
"coverageLink": "../coverage/lcov-report/index.html"
},
"jest-junit": {
"output": "__tests__/__results__/junit.xml"
},
"jest-html-reporter": {
"pageTitle": "Zowe IMS Plugin Test Results",
"outputPath": "__tests__/__results__/results.html",
"includeFailureMsg": true
},
"author": "Zowe",
"license": "EPL-2.0"
}