This repository has been archived by the owner on Nov 25, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
146 lines (146 loc) · 5.13 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
{
"name": "@zowe/secure-credential-store-for-zowe-cli",
"version": "4.1.12",
"description": "Secure credential storage plugin for Zowe CLI",
"author": "Broadcom",
"license": "EPL-2.0",
"repository": "https://github.com/zowe/zowe-cli-scs-plugin/",
"keywords": [
"credential manager",
"secure store",
"password"
],
"publishConfig": {
"registry": "https://zowe.jfrog.io/zowe/api/npm/npm-local-release/"
},
"files": [
"lib",
"npm-shrinkwrap.json"
],
"main": "lib/index.js",
"typings": "lib/index.d.ts",
"imperative": {
"configurationModule": "lib/imperative/configuration.js"
},
"scripts": {
"clean": "rimraf lib",
"checkTestsCompile": "echo \"Checking that test source compiles...\" && tsc --project __tests__/test-tsconfig.json --noEmit ",
"circularDependencyCheck": "madge -c lib",
"lint": "eslint \"src/**/*.ts\" \"**/__tests__/**/*.ts\"",
"lint:src": "eslint \"src/**/*.ts\" --ignore-pattern \"**/__tests__/**/*.ts\"",
"lint:tests": "eslint \"**/__tests__/**/*.ts\"",
"prebuild": "npm run clean && npm run lint && echo Using TypeScript && tsc --version",
"build": "node scripts/updateLicense.js && tsc --pretty && npm run checkTestsCompile && npm run circularDependencyCheck",
"prepublishOnly": "npm run build",
"test": "npm run test:unit",
"test:unit": "env-cmd __tests__/__resources__/env/unit.env jest --coverage --testPathIgnorePatterns \".*/__system__/.*\" ",
"test:system": "env-cmd __tests__/__resources__/env/system.env jest .*/__system__/.* --coverage false --runInBand",
"coverage": "jest --coverage",
"watch": "tsc --pretty --watch",
"watch:test": "jest --watch",
"installPlugin": "npm install && npm run clean && npm run build && zowe plugins install .",
"postinstall": "zowe config set CredentialManager @zowe/secure-credential-store-for-zowe-cli && echo \"The Secure Credential Store has been successfully installed. The CLI will now use the Secrets SDK to encrypt your local credentials. CLI Profiles that you have created will need to be updated because their credentials are stored in plain text and not accessible from the credential manager. Refer to the available options in the help text to update profiles 'zowe scs update -h'.\" 1>&2",
"preuninstall": "zowe config reset CredentialManager",
"postuninstall": "echo \"CLI Profiles that you have created will need to be recreated because their credentials are stored in the credential manager that has been uninstalled. Refer to the available options in the help text to create a new profile 'zowe profiles create zosmf-profile -h'.\" 1>&2",
"typedoc": "typedoc --out ./docs/typedoc/ ./src/ --disableOutputCheck",
"prepare": "husky install"
},
"dependencies": {
"@zowe/secrets-for-zowe-sdk": "7.18.4"
},
"peerDependencies": {
"@zowe/cli": "^6.0.0",
"@zowe/imperative": "^4.0.0"
},
"devDependencies": {
"@types/fs-extra": "^5.0.4",
"@types/jest": "^24.0.5",
"@types/js-yaml": "^3.11.2",
"@types/jsonfile": "^4.0.1",
"@types/node": "^8.10.59",
"@types/uuid": "^3.4.6",
"@types/yargs": "^8.0.2",
"@typescript-eslint/eslint-plugin": "^4.29.3",
"@typescript-eslint/parser": "^4.29.3",
"@zowe/cli": "6.40.0",
"@zowe/imperative": "^4.18.18",
"coveralls": "^3.0.7",
"env-cmd": "^8.0.2",
"eslint": "^7.32.0",
"eslint-plugin-jest": "^24.4.0",
"eslint-plugin-unused-imports": "^1.1.4",
"fs-extra": "^5.0.0",
"glob": "^7.1.1",
"husky": "^7.0.1",
"jest": "^24.9.0",
"jest-cli": "^24.9.0",
"jest-environment-node": "^24.9.0",
"jest-environment-node-debug": "^2.0.0",
"jest-html-reporter": "^3.3.0",
"jest-junit": "^6.3.0",
"jest-stare": "^2.2.0",
"js-yaml": "^3.13.1",
"jsonfile": "^5.0.0",
"madge": "^5.0.1",
"shebang-regex": "^2.0.0",
"ts-jest": "^24.1.0",
"ts-node": "^3.2.0",
"typedoc": "^0.20.36",
"typescript": "^3.8.0",
"uuid": "^3.3.3"
},
"engines": {
"node": ">=8.0.0"
},
"jest": {
"setupFilesAfterEnv": [
"./__tests__/setUpJest.ts"
],
"modulePathIgnorePatterns": [
"__tests__/__snapshots__/"
],
"testPathIgnorePatterns": [
"<rootDir>/__tests__/__results__"
],
"transform": {
".(ts)": "ts-jest"
},
"testRegex": "(/__tests__/.*\\.(test|spec))\\.(ts|js)$",
"moduleFileExtensions": [
"ts",
"js"
],
"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"
},
"jest-junit": {
"output": "__tests__/__results__/junit.xml"
},
"jest-html-reporter": {
"pageTitle": "SCS Plugin for Zowe CLI Test Results",
"outputPath": "__tests__/__results__/results.html",
"includeFailureMsg": true
}
}