-
Notifications
You must be signed in to change notification settings - Fork 12
/
package.json
133 lines (133 loc) · 3.65 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
{
"name": "zowe-cli-cics-deploy-plugin",
"version": "1.1.1",
"description": "IBM CICS Bundle generation and deployment for Zowe CLI",
"repository": {
"type": "git",
"url": "https://github.com/IBM/zowe-cli-cics-deploy-plugin"
},
"keywords": [
"cics",
"cli",
"mainframe",
"nodejs",
"zos",
"z/os",
"zowe"
],
"main": "lib/index.js",
"files": [
"lib",
"NOTICES.md",
"README.md",
"package.json",
"LICENSE",
"CHANGELOG.md"
],
"bin": {
"zowe-cli-cics-deploy": "./lib/main.js"
},
"scripts": {
"build": "tsc --pretty && npm run checkTestsCompile && gulp doc",
"checkTestsCompile": "echo \"Checking that test source compiles...\" && tsc --project __tests__/test-tsconfig.json --noEmit ",
"prebuild": "npm run clean && npm run lint && echo Using TypeScript && tsc --version",
"clean": "rimraf lib",
"watch": "tsc --pretty --watch",
"prepublishOnly": "npm run build",
"lint": "tslint \"src/**/*.ts\" && tslint \"__tests__/**/*.ts\"",
"test": "npm run test:unit && npm run test:system",
"test:system": "env-cmd __tests__/__resources__/env/system.env jest .*/__system__/.* --coverage false",
"test:unit": "env-cmd __tests__/__resources__/env/unit.env jest --runInBand --detectOpenHandles --coverage --testPathIgnorePatterns \".*/__system__/.*\"",
"installPlugin": "npm install && npm run clean && npm run build && zowe plugins install .",
"doc": "gulp doc"
},
"imperative": {
"configurationModule": "lib/imperative.js"
},
"dependencies": {
"@zowe/cics-for-zowe-cli": "^4.0.8",
"fast-xml-parser": "^4.2.4"
},
"devDependencies": {
"@zowe/cli": "^6.0.0",
"@zowe/imperative": "^4.7.3",
"@types/fs-extra": "^8.0.1",
"@types/jest": "^22.2.3",
"@types/node": "^12.12.24",
"@types/yargs": "^13.0.4",
"clear-require": "^2.0.0",
"env-cmd": "^8.0.2",
"fast-xml-parser": "^4.2.4",
"fs-extra": "^8.1.0",
"gulp": "^4.0.2",
"gulp-cli": "^2.2.1",
"gulp-debug": "^4.0.0",
"gulp-plumber": "^1.2.1",
"gulp-replace": "^1.0.0",
"gulp-util": "^3.0.8",
"jest": "^26.0.1",
"jest-cli": "^26.0.1",
"jest-environment-node": "^26.0.1",
"jest-environment-node-debug": "^2.0.0",
"jest-html-reporter": "^3.1.3",
"jest-junit": "^10.0.0",
"js-yaml": "^3.14.0",
"mustache": "^4.0.1",
"rimraf": "^3.0.2",
"ts-jest": "^26.1.0",
"ts-node": "^8.10.2",
"tslint": "^6.1.2",
"typedoc": "^0.17.7",
"typescript": "^3.9.5",
"uuid": "^3.3.2"
},
"peerDependencies": {
"@zowe/cli": "^6.0.0",
"@zowe/imperative": "^4.7.3"
},
"jest": {
"modulePathIgnorePatterns": [
"__tests__/__snapshots__/"
],
"reporters": [ "default", "jest-junit" ],
"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,
"coverageReporters": [
"json",
"lcov",
"text",
"cobertura"
],
"coverageDirectory": "<rootDir>/__tests__/__results__/unit/coverage"
},
"jest-junit": {
"output": "__tests__/__results__/junit.xml"
},
"jest-html-reporter": {
"pageTitle": "Zowe cics-deploy Plugin Test Results",
"outputPath": "__tests__/__results__/results.html",
"includeFailureMsg": true
},
"author": "IBM Corp",
"contributors": [
"Contributors to the Zowe Project"
],
"license": "EPL-2.0"
}