forked from zowe/zowe-cli-cics-plugin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
136 lines (136 loc) · 4.02 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
{
"name": "@zowe/cics-for-zowe-cli",
"version": "4.0.2",
"description": "IBM CICS Plug-in for Zowe CLI",
"homepage": "https://github.com/zowe/zowe-cli-cics-plugin#readme",
"bugs": {
"url": "https://github.com/zowe/zowe-cli-cics-plugin/issues"
},
"keywords": [
"zowe",
"cli",
"cics",
"plugin"
],
"repository": {
"type": "git",
"url": "https://github.com/zowe/zowe-cli-cics-plugin.git"
},
"main": "lib/index.js",
"files": [
"lib"
],
"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:unit": "env-cmd __tests__/__resources__/env/unit.env jest --coverage --testPathIgnorePatterns \".*/__system__/.*\" ",
"installPlugin": "npm install && npm run clean && npm run build && zowe plugins install .",
"typedoc": "typedoc --out ./docs/typedoc/ ./src/ --disableOutputCheck"
},
"imperative": {
"configurationModule": "lib/imperative.js"
},
"dependencies": {
"xml2js": "0.4.19"
},
"peerDependencies": {
"@zowe/cli": "^6.0.0",
"@zowe/imperative": "^4.0.0"
},
"devDependencies": {
"@types/fs-extra": "^5.0.5",
"@types/jest": "^20.0.5",
"@types/node": "^8.10.45",
"@types/xml2js": "^0.4.4",
"@types/yargs": "8.0.2",
"@typescript-eslint/eslint-plugin": "^4.29.0",
"@typescript-eslint/parser": "^4.29.0",
"@zowe/imperative": "4.15.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": "^25.5.4",
"jest-environment-node-debug": "^2.0.0",
"jest-html-reporter": "^3.3.0",
"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": "^25.5.1",
"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__/"
],
"transform": {
".(ts)": "ts-jest"
},
"testRegex": "(test|spec)\\.ts$",
"moduleFileExtensions": [
"ts",
"js"
],
"testPathIgnorePatterns": [
"<rootDir>/__tests__/__results__"
],
"testEnvironment": "node",
"collectCoverageFrom": [
"src/**/*.ts",
"!**/__tests__/**",
"!**/index.ts",
"!**/main.ts"
],
"collectCoverage": false,
"reporters": [
"default",
"jest-junit",
"jest-stare",
"jest-html-reporter"
],
"coverageReporters": [
"json",
"lcov",
"text",
"cobertura"
],
"coverageDirectory": "<rootDir>/__tests__/__results__/unit/coverage"
},
"jest-stare": {
"resultDir": "__tests__/__results__/jest-stare",
"coverageLink": "../coverage/lcov-report/index.html"
},
"jest-junit": {
"output": "__tests__/__results__/junit.xml"
},
"jest-html-reporter": {
"pageTitle": "Zowe CICS Plugin Test Results",
"outputPath": "__tests__/__results__/results.html",
"includeFailureMsg": true
},
"author": "Darkside",
"license": "EPL-2.0"
}