forked from zowe/zowe-explorer-vscode
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
112 lines (112 loc) · 2.92 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
{
"name": "zowe-explorer-ftp-extension",
"displayName": "Zowe Explorer Extension for FTP",
"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": "2.10.0-SNAPSHOT",
"icon": "resources/zowe-ftp-color.png",
"repository": {
"url": "https://github.com/zowe/vscode-extension-for-zowe"
},
"categories": [
"Other"
],
"keywords": [
"mainframe",
"Zowe",
"z/OS",
"USS",
"FTP",
"zFTP"
],
"activationEvents": [
"*"
],
"main": "./out/src/extension.js",
"contributes": {},
"extensionDependencies": [
"Zowe.vscode-extension-for-zowe"
],
"scripts": {
"build": "yarn clean && yarn license && webpack --mode development",
"test:unit": "jest \".*__tests__.*\\.unit\\.test\\.ts\" --coverage",
"test": "yarn test:unit",
"lint": "concurrently -n \"_eslint_,prettier\" \"eslint .\" \"prettier --check .\"",
"lint:html": "eslint . --format html > results/eslint.html",
"pretty": "prettier --write .",
"watch": "webpack --mode development --watch --info-verbosity verbose",
"clean": "rimraf out",
"fresh-clone": "yarn clean && rimraf node_modules",
"vscode:prepublish": "webpack --mode production",
"license": "node ../../scripts/updateLicenses.js",
"package": "vsce package --allow-star-activation --yarn && node ../../scripts/mv-pack.js zowe-explorer-ftp-extension vsix"
},
"engines": {
"vscode": "^1.53.2"
},
"dependencies": {
"@zowe/zos-ftp-for-zowe-cli": "2.1.2",
"@zowe/zowe-explorer-api": "2.10.0-SNAPSHOT",
"tmp": "0.2.1"
},
"devDependencies": {
"@types/tmp": "0.2.0",
"concurrently": "^5.2.0",
"webpack": "^4.42.1",
"webpack-cli": "^3.3.11"
},
"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"
}
}