forked from zowe/explorer-uss
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
127 lines (127 loc) · 4.03 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
{
"name": "explorer-uss",
"version": "1.0.5",
"directories": {
"test": "tests"
},
"dependencies": {
"babel-polyfill": "^6.16.0",
"immutable": "^3.8.1",
"interweave": "^8.0.1",
"lowlight": "^1.8.0",
"material-ui": "^0.18.2",
"npm-install-peers": "^1.2.1",
"orion-editor-component": "0.0.11",
"prop-types": "^15.5.10",
"react": "^15.4.0",
"react-contextmenu": "^2.6.1",
"react-dom": "^15.4.0",
"react-redux": "^5.1.1",
"react-router": "^3.0.5",
"react-syntax-highlighter": "^5.6.2",
"react-tap-event-plugin": "^2.0.0",
"react-tooltip": "^3.3.0",
"redux": "^3.5.2",
"redux-immutable": "^4.0.0",
"redux-logger": "^3.0.6",
"redux-router": "^2.0.0",
"redux-thunk": "^2.1.0",
"url-loader": "^0.5.7",
"whatwg-fetch": "^2.0.3"
},
"peerDependencies": {
"explorer-ui-server": "0.2.13"
},
"devDependencies": {
"babel-eslint": "^7.2.3",
"babel-loader": "^7.0.0",
"babel-plugin-add-module-exports": "^0.2.1",
"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.3.13",
"babel-preset-react": "^6.3.13",
"babel-preset-stage-0": "^6.3.13",
"babel-register": "^6.14.0",
"clean-webpack-plugin": "^3.0.0",
"compression-webpack-plugin": "^4.0.0",
"copy-webpack-plugin": "^6.0.2",
"cross-env": "^5.0.0",
"css-loader": "^0.28.4",
"enzyme": "^2.8.2",
"es6-promise": "^4.1.0",
"eslint": "^4.9.0",
"eslint-config-airbnb": "^15.1.0",
"eslint-plugin-import": "^2.7.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",
"file-loader": "^6.0.0",
"highlight.js": "^9.12.0",
"isomorphic-fetch": "^2.2.1",
"mocha": "^3.4.2",
"mocha-jenkins-reporter": "^0.4.1",
"mock-socket": "^6.1.0",
"nock": "^9.0.13",
"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 ",
"rimraf": "^3.0.2",
"sinon": "^4.1.2",
"style-loader": "^0.18.2",
"terser-webpack-plugin": "^3.0.6",
"webpack": "^4.43.0",
"webpack-bundle-analyzer": "^3.8.0",
"webpack-cli": "^3.3.12",
"webpack-dev-server": "^3.11.0"
},
"scripts": {
"dev": "webpack-dev-server --content-base WebContent --inline --hot",
"start": "npm run build && cross-env NODE_ENV='development' OUTPUT_FOLDER='web' webpack --progress --colors --watch ",
"lint": "eslint ./WebContent/js/ ./tests/",
"test": "cross-env JUNIT_REPORT_PATH=target/report.xml nyc --report cobertura --require babel-core/register --all mocha --compilers js:babel-register tests --recursive --colors --reporter mocha-jenkins-reporter",
"testWatch": "cross-env JUNIT_REPORT_PATH=target/report.xml mocha --watch --compilers js:babel-register tests --recursive",
"prod": "cross-env NODE_ENV='production' webpack -p ",
"build": "cross-env NODE_ENV='development' OUTPUT_FOLDER='web' webpack --progress --colors ",
"prod:analyze": "cross-env ANALYZE=true npm run prod",
"preCommit": "npm-run-all --aggregate-output --parallel --print-label lint test prod"
},
"nyc": {
"reporter": [
"lcov",
"cobertura",
"text"
],
"report-dir": "./coverage",
"require": [
"babel-core/register"
],
"sourceMap": true,
"all": true,
"include": [
"WebContent/js/actions/**",
"WebContent/js/reducers/**"
],
"exclude": [
"tests",
"WebContent/js/themes",
"WebContent/js/resources/languages"
]
},
"repository": "zowe/explorer-uss",
"publishConfig": {
"registry": "https://zowe.jfrog.io/zowe/api/npm/npm-local-release/"
},
"description": "USS Explorer",
"author": "IBM",
"license": "EPL-2.0",
"config": {
"pluginId": "org.zowe.explorer-uss",
"pluginName": "USS Explorer",
"baseuri": "/ui/v1/explorer-uss"
}
}