forked from zowe/zowe-cli
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
150 lines (150 loc) · 5.07 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
141
142
143
144
145
146
147
148
149
150
{
"name": "@brightside/core",
"version": "3.7.0-alpha.201903141644",
"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",
"repository": {
"type": "git",
"url": "https://github.com/zowe/zowe-cli.git"
},
"bin": {
"bright": "./lib/main.js",
"zowe": "./lib/main.js"
},
"keywords": [
"zosmf",
"mainframe",
"CLI",
"zos",
"z/OSMF",
"mvs",
"os390",
"z/OS",
"zowe"
],
"files": [
"lib",
"docs",
"scripts"
],
"publishConfig": {"registry": "https://gizaartifactory.jfrog.io/gizaartifactory/api/npm/npm-local-release/"},
"imperative": {"configurationModule": "lib/imperative.js"},
"main": "lib/index.js",
"typings": "lib/index.d.ts",
"scripts": {
"generateCleanTypedoc": "npm run typedoc && gulp cleanTypedoc",
"build": "gulp updateLicense && tsc --pretty && npm run lint && npm run checkTestsCompile && madge -c lib",
"installWithBuild": "npm install && npm run build",
"postinstall": "node ./scripts/validatePlugins",
"checkTestsCompile": "echo \"Checking that test source compiles...\" && tsc --project __tests__/test-tsconfig.json --noEmit ",
"lint": "npm run lint:packages && npm run lint:tests",
"lint:packages": "tslint --format stylish -c ./tslint-packages.json \"packages/**/*.ts\"",
"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": "tsc --pretty --watch",
"watch:test": "jest --watch",
"typedoc": "typedoc --options ./typedoc.json ./packages/",
"doc:generate": "npm run doc:clean && gulp doc",
"doc:clean": "rimraf docs/CLIReadme.md",
"typedocSpecifySrc": "typedoc --options ./typedoc.json",
"audit:public": "npm audit --registry https://registry.npmjs.org/"
},
"dependencies": {
"@brightside/imperative": "^3.1.0-alpha.201902272042",
"@zowe/perf-timing": "^1.0.3-alpha.201902201448",
"js-yaml": "3.9.0",
"string-width": "2.1.1"
},
"devDependencies": {
"@types/chai": "^4.0.1",
"@types/chai-string": "^1.1.30",
"@types/fs-extra": "^5.0.5",
"@types/jest": "^22.2.3",
"@types/js-yaml": "^3.11.1",
"@types/node": "8.0.28",
"@types/sinon": "2.3.3",
"@types/yargs": "8.0.2",
"chai": "^4.1.2",
"chai-string": "^1.4.0",
"chalk": "2.3.0",
"clear-require": "^2.0.0",
"codepage": "^1.10.1",
"cross-env": "^5.1.4",
"dataobject-parser": "^1.1.3",
"fs-extra": "^7.0.1",
"glob": "^7.1.2",
"gulp": "^4.0.0",
"gulp-cli": "^2.0.1",
"gulp-debug": "^3.1.0",
"gulp-plumber": "^1.1.0",
"gulp-replace": "^0.6.1",
"gulp-util": "^3.0.8",
"jest": "^24.1.0",
"jest-cli": "^24.1.0",
"jest-environment-node": "^24.0.0",
"jest-environment-node-debug": "^2.0.0",
"jest-junit": "6.3.0",
"jest-sonar-reporter": "2.0.0",
"jest-stare": "1.11.1",
"jsonfile": "^4.0.0",
"madge": "3.2.0",
"prompt": "1.0.0",
"rimraf": "2.6.2",
"shebang-regex": "^2.0.0",
"sinon": "3.2.1",
"sinon-chai": "2.13.0",
"strip-ansi": "^4.0.0",
"through2": "^2.0.3",
"ts-jest": "^23.10.5",
"ts-node": "^3.3.0",
"tslint": "5.10.0",
"typescript": "3.2.2",
"uuid": "^3.3.2"
},
"resolutions": {"cpx/chokidar": "^2.1.1"},
"engines": {"node": ">=6.0.0"},
"jest": {
"globals": {"ts-jest": {"disableSourceMapSupport": true}},
"watchPathIgnorePatterns": [".*jest-stare.*\\.js"],
"modulePathIgnorePatterns": ["__tests__/__snapshots__/"],
"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"}
}