-
Notifications
You must be signed in to change notification settings - Fork 93
/
package.json
123 lines (123 loc) · 3.37 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
{
"name": "zowe-explorer-ftp-extension",
"displayName": "IBM z/OS FTP for Zowe Explorer",
"publisher": "Zowe",
"author": "Zowe",
"license": "EPL-2.0",
"description": "Adds zFTP support to Zowe Explorer demonstrating how to extend the Zowe Explorer using its extensibility API.",
"version": "3.1.0-SNAPSHOT",
"icon": "resources/zowe-ftp-color.png",
"repository": {
"url": "https://github.com/zowe/zowe-explorer-vscode"
},
"categories": [
"Other"
],
"keywords": [
"mainframe",
"Zowe",
"z/OS",
"USS",
"FTP",
"zFTP"
],
"activationEvents": [
"onStartupFinished"
],
"main": "./out/src/main.extension",
"contributes": {},
"extensionDependencies": [
"Zowe.vscode-extension-for-zowe"
],
"scripts": {
"build": "pnpm clean && pnpm license && webpack --mode production && pnpm madge",
"test:unit": "jest \".*__tests__.*\\.unit\\.test\\.ts\" --coverage",
"test": "pnpm test:unit",
"lint": "concurrently -n \"_eslint_,prettier\" \"pnpm lint:all\" \"pnpm run \"/pretty.*/\"\"",
"lint:all": "pnpm run \"/^lint:[sth].*/\"",
"lint:html": "((mkdir -p \"results\") || true) && eslint . --format html > results/eslint.html",
"lint:src": "eslint . --format stylish src/**/*.ts",
"lint:test": "eslint . --format stylish __tests__/**/*.ts",
"madge": "madge -c --no-color --no-spinner --exclude __mocks__ --extensions js,ts src/",
"pretty": "prettier --write .",
"pretty:check": "prettier --check .",
"watch": "webpack --mode development --watch",
"clean": "rimraf out",
"fresh-clone": "pnpm clean && (rimraf node_modules || true)",
"vscode:prepublish": "webpack --mode production",
"license": "node ../../scripts/updateLicenses.js",
"package": "vsce package --no-dependencies && node ../../scripts/mv-pack.js zowe-explorer-ftp-extension vsix"
},
"engines": {
"vscode": "^1.79.0"
},
"dependencies": {
"@zowe/zos-files-for-zowe-sdk": "^8.8.4",
"@zowe/zos-ftp-for-zowe-cli": "^3.0.0",
"@zowe/zos-jobs-for-zowe-sdk": "^8.8.4",
"@zowe/zowe-explorer-api": "3.1.0-SNAPSHOT",
"tmp": "0.2.3"
},
"devDependencies": {
"@types/tmp": "0.2.6"
},
"jest": {
"moduleFileExtensions": [
"js",
"ts",
"tsx"
],
"testPathIgnorePatterns": [
"<rootDir>/src/decorators"
],
"watchPathIgnorePatterns": [
"<rootDir>/results/unit"
],
"transform": {
"^.+\\.(ts|tsx)$": [
"ts-jest",
{
"tsconfig": "tsconfig.json",
"diagnostics": false
}
]
},
"testRegex": "__tests__.*\\.(spec|test)\\.ts$",
"modulePathIgnorePatterns": [
"out/"
],
"reporters": [
"default",
"jest-junit",
"jest-stare",
"jest-html-reporter"
],
"coverageReporters": [
"json",
"lcov",
"text",
"cobertura"
],
"coverageDirectory": "<rootDir>/results/unit/coverage",
"preset": "ts-jest"
},
"jest-html-reporter": {
"pageTitle": "Zowe FTP Extension Tests",
"outputPath": "results/unit/results.html"
},
"jest-stare": {
"resultDir": "results/unit/jest-stare",
"coverageLink": "../coverage/lcov-report/index.html"
},
"jest-junit": {
"outputDirectory": "<rootDir>/results/unit",
"outputName": "junit.xml"
},
"madge": {
"detectiveOptions": {
"ts": {
"skipTypeImports": true
}
}
}
}