forked from zowe/explorer-mvs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
121 lines (121 loc) · 3.88 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
{
"name": "explorer-mvs",
"version": "1.0.1",
"directories": {
"test": "tests"
},
"dependencies": {
"@material-ui/core": "^1.5.1",
"@material-ui/icons": "^1.1.0",
"babel-polyfill": "^6.16.0",
"file-loader": "^0.11.2",
"immutable": "^3.8.1",
"orion-editor-component": "0.0.11",
"prop-types": "^15.5.10",
"query-string": "^6.8.2",
"react": "^16.4.2",
"react-contextmenu": "^2.6.1",
"react-dom": "^16.4.2",
"react-redux": "^5.1.1",
"react-router": "^5.0.1",
"react-router-dom": "^5.0.1",
"react-tap-event-plugin": "^2.0.0",
"redux": "^4.0.4",
"redux-immutable": "^4.0.0",
"redux-logger": "^3.0.6",
"redux-thunk": "^2.3.0",
"url-loader": "^0.6.2",
"whatwg-fetch": "^2.0.3"
},
"peerDependencies": {
"explorer-ui-server": "0.2.11"
},
"devDependencies": {
"@types/chai": "^4.1.3",
"@types/mocha": "^7.0.1",
"@types/node": "^13.7.1",
"@types/selenium-webdriver": "^4.0.8",
"babel-eslint": "^7.2.3",
"babel-loader": "^7.0.0",
"babel-plugin-react-html-attrs": "^2.0.0",
"babel-plugin-transform-class-properties": "^6.3.13",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"babel-register": "^6.14.0",
"cross-env": "^5.0.0",
"css-loader": "^1.0.1",
"es6-promise": "^4.1.0",
"eslint": "^4.9.0",
"eslint-config-airbnb": "^15.1.0",
"eslint-plugin-import": "^2.18.0",
"eslint-plugin-jsx-a11y": "^5.1.1",
"eslint-plugin-mocha": "^4.11.0",
"eslint-plugin-node": "^5.1.1",
"eslint-plugin-react": "^7.3.0",
"expect": "^1.20.2",
"explorer-fvt-utilities": "1.0.3",
"geckodriver": "^1.19.1",
"isomorphic-fetch": "^2.2.1",
"mocha": "^6.1.4",
"mocha-jenkins-reporter": "^0.4.1",
"nock": "^9.6.1",
"node-fetch": "^2.6.0",
"npm-run-all": "^4.1.2",
"nyc": "^14.1.1",
"react-addons-test-utils": "^15.1.0",
"redux-mock-store": "^1.1.4",
"rewire": "^2.5.2 ",
"selenium-webdriver": "^4.0.0-alpha.1",
"sinon": "^4.1.2",
"style-loader": "^0.18.2",
"ts-node": "^8.6.2",
"typescript": "^3.7.5",
"uglifyjs-webpack-plugin": "1.1.6",
"webpack": "^3.12.0",
"webpack-dev-server": "^2.11.5"
},
"scripts": {
"dev": "webpack-dev-server --content-base WebContent --inline --hot",
"lint": "eslint ./WebContent/js/ ./tests/",
"testWatch": "mocha --watch --require babel-core/register tests/UnitTests --recursive",
"test": "cross-env JUNIT_REPORT_PATH=target/report.xml nyc mocha --require babel-core/register tests/UnitTests --recursive --colors --reporter mocha-jenkins-reporter",
"test:fvt": "cross-env JUNIT_REPORT_PATH=target/report-fvt.xml mocha --timeout 999999 --require ts-node/register tests/FVTTests/**/*.ts --recursive --colors --reporter mocha-jenkins-reporter",
"prod": "cross-env NODE_ENV='production' webpack && cp -r ./WebContent/css ./dist/ && cp -r ./WebContent/img ./dist/ && cp ./WebContent/index.html ./dist/ && cp ./WebContent/favicon.ico ./dist/",
"preCommit": "npm-run-all --aggregate-output --parallel --print-label lint test prod"
},
"nyc": {
"reporter": [
"lcov",
"cobertura",
"text"
],
"report-dir": "./coverage",
"require": [
"babel-core/register"
],
"all": true,
"include": [
"WebContent/js/actions/**",
"WebContent/js/reducers/**"
],
"exclude": [
"tests",
"WebContent/js/themes",
"WebContent/js/resources/languages"
]
},
"repository": "zowe/explorer-mvs",
"publishConfig": {
"registry": "https://zowe.jfrog.io/zowe/api/npm/npm-local-release/"
},
"description": "MVS Explorer",
"author": "IBM",
"license": "EPL-2.0",
"config": {
"pluginId": "org.zowe.explorer-mvs",
"pluginName": "MVS Explorer",
"baseuri": "/ui/v1/explorer-mvs"
}
}