forked from fabric8-ui/fabric8-ui
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
259 lines (259 loc) · 9.29 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
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
{
"name": "fabric8-ui",
"version": "0.0.0-development",
"description": "the angular 2 console for fabric8 online",
"keywords": [
"angular2",
"webpack",
"typescript"
],
"contributors": [
{
"name": "Joshua Wilson",
"email": "[email protected]"
},
{
"name": "Nimisha",
"email": "[email protected]"
},
{
"name": "Sudipta Sen",
"email": "[email protected]"
}
],
"homepage": "https://github.com/fabric8-ui/fabric8-ui",
"license": "Apache-2.0",
"scripts": {
"ngc": "ngc -p tsconfig-aot.json",
"perf:profile": "webpack --profile --json > stats.json",
"perf": "webpack-dashboard -t fabric8 -- webpack --config config/webpack.perf.js --progress --profile",
"build:aot": "webpack --config config/webpack.aot.js --progress --profile --bail",
"build:aot-min": "webpack --config config/webpack.min.aot.js --progress --profile --bail",
"build:dev": "webpack --config config/webpack.dev.js --progress --profile",
"build:docker": "npm run build:prod && docker build -t angular2-webpack-start:latest .",
"build:prod": "BUILD_VERSION=$(./version_number.js) webpack --config config/webpack.prod.js --profile --bail",
"build:prod-aot": "webpack --config config/webpack.prod.js --progress --profile --bail --env.aot",
"build": "npm run build:dev",
"check-coverage": "istanbul check-coverage --statements 23 --branches 5 --functions 9 --lines 24",
"ci": "npm run lint && npm test && npm run e2e",
"clean:dist": "npm run rimraf -- dist",
"clean:install": "npm set progress=false && npm install",
"clean:start": "npm start",
"clean": "npm cache clean && npm run rimraf -- node_modules doc coverage dist",
"create-component": "gulp create",
"postbuild:prod": "copyfiles package.json README.md LICENSE dist",
"docker": "docker",
"docker:run": "webpack-dev-server --inline --progress --port 8080",
"docs": "npm run typedoc -- --options typedoc.json --exclude '**/*.spec.ts' ./src/",
"e2e:live": "npm run e2e -- --elementExplorer",
"e2e": "npm run protractor",
"github-deploy:dev": "webpack --config config/webpack.github-deploy.js --progress --profile --github-dev",
"github-deploy:prod": "webpack --config config/webpack.github-deploy.js --progress --profile --github-prod",
"github-deploy": "npm run github-deploy:dev",
"functests": "npm-run-all -p webdriver-start testserver-start protractor",
"lint": "find src -name '*.ts' | xargs tslint -c tslint.json --force",
"postversion": "git push && git push --tags",
"prebuild:dev": "npm run clean:dist",
"prebuild:prod": "npm run clean:dist",
"preclean:install": "npm run clean",
"preclean:start": "npm run clean",
"pree2e": "npm run webdriver:update -- --standalone",
"preversion": "npm test",
"protractor": "protractor",
"reinstall": "npm run clean && npm install",
"rimraf": "rimraf",
"semantic-release": "semantic-release pre && npm run build:prod && cp -r .git dist && npm publish dist/ && semantic-release post",
"server:dev:hmr": "npm run server:dev -- --inline --hot",
"server:dev": "webpack-dev-server --config config/webpack.dev.js --progress --profile --watch --content-base src/",
"server:prod": "http-server dist --cors",
"server": "npm run server:dev",
"start:hmr": "npm run server:dev:hmr",
"start": "npm run server:dev",
"test": "npm-run-all --serial test:unit check-coverage test:func",
"test:func": "./run_functional_tests.sh",
"test:unit": "karma start",
"test:debug": "karma start --no-single-run --browsers Chrome",
"test:browsers": "karma start --browsers Chrome,Firefox,Safari",
"testserver-start": "webpack-dev-server --inline --progress --host 0.0.0.0 --port 8088",
"tslint": "tslint",
"typedoc": "typedoc",
"version": "npm run build",
"watch:dev:hmr": "npm run watch:dev -- --hot",
"watch:dev": "npm run build:dev -- --watch",
"watch:prod": "npm run build:prod -- --watch",
"watch:test": "npm run test:unit -- --auto-watch --no-single-run",
"watch": "npm run watch:dev",
"webdriver-manager": "webdriver-manager",
"webdriver:start": "npm run webdriver-manager start",
"webdriver:update": "npm run webdriver-manager update",
"webpack-dev-server": "webpack-dev-server",
"webpack": "webpack"
},
"dependencies": {
"@angular/common": "4.0.1",
"@angular/compiler": "4.0.1",
"@angular/compiler-cli": "4.0.1",
"@angular/core": "4.0.1",
"@angular/forms": "4.0.1",
"@angular/http": "4.0.1",
"@angular/platform-browser": "4.0.1",
"@angular/platform-browser-dynamic": "4.0.1",
"@angular/platform-server": "4.0.1",
"@angular/router": "4.0.1",
"@angular/upgrade": "4.0.1",
"@angularclass/hmr": "1.2.2",
"@angularclass/hmr-loader": "3.0.2",
"angular-2-dropdown-multiselect": "1.1.0",
"angular-in-memory-web-api": "0.3.1",
"angular-pipes": "6.5.1",
"angular2-moment": "1.3.3",
"angular2-oauth2": "1.3.10",
"angular2-websocket": "0.9.1",
"angular2-tree-component": "2.7.0",
"chunk-manifest-webpack2-plugin": "1.0.1",
"core-js": "2.4.1",
"fabric8-planner": "0.31.1",
"fabric8-stack-analysis-ui": "0.5.1",
"http-server": "0.9.0",
"ie-shim": "0.1.0",
"js-yaml": "3.8.2",
"jw-bootstrap-switch-ng2": "0.0.8",
"jwt-decode": "2.2.0",
"lodash": "4.17.4",
"mydatepicker": "1.8.0",
"ng2-bootstrap": "1.3.3",
"ng2-restangular": "0.1.30",
"ngx-base": "1.2.9",
"ngx-bootstrap": "1.7.1",
"ngx-fabric8-wit": "6.18.11",
"ngx-login-client": "0.6.32",
"ngx-modal": "0.0.29",
"ngx-widgets": "1.1.2",
"offline-plugin": "4.6.2",
"patternfly-ng": "0.0.13",
"pluralize": "4.0.0",
"rxjs": "5.2.0",
"uuid": "3.0.1",
"zone.js": "0.8.5"
},
"devDependencies": {
"@krux/condition-jenkins": "1.0.1",
"@ngtools/webpack": "1.3.0",
"@types/jasmine": "2.5.47",
"@types/js-yaml": "3.5.29",
"@types/lodash": "4.14.61",
"@types/node": "7.0.12",
"@types/segment-analytics": "0.0.27",
"@types/selenium-webdriver": "3.0.1",
"@types/source-map": "0.5.0",
"@types/webpack": "2.2.14",
"@types/zone.js": "0.0.27",
"angular-2-local-storage": "1.0.1",
"angular2-router-loader": "0.3.5",
"angular2-template-loader": "0.6.2",
"assets-webpack-plugin": "3.5.1",
"autoprefixer": "6.7.7",
"awesome-typescript-loader": "3.1.2",
"change-case": "3.0.1",
"child_process": "1.0.2",
"codelyzer": "3.0.0-beta.3",
"copy-webpack-plugin": "4.0.1",
"copyfiles": "1.2.0",
"css-loader": "0.28.0",
"cz-conventional-changelog": "2.0.0",
"del": "2.2.2",
"extract-text-webpack-plugin": "2.1.0",
"favicons-webpack-plugin": "0.0.7",
"file-loader": "0.11.1",
"gh-pages": "0.12.0",
"gulp": "3.9.1",
"gulp-less": "3.3.0",
"gulp-rename": "1.2.2",
"gulp-sourcemaps": "2.6.0",
"gulp-string-replace": "0.4.0",
"html-loader": "0.4.5",
"html-webpack-plugin": "2.28.0",
"husky": "0.13.3",
"intl": "1.2.5",
"istanbul-instrumenter-loader": "2.0.0",
"jasmine-core": "2.5.2",
"json-loader": "0.5.4",
"json-stringify": "1.0.0",
"karma": "1.5.0",
"karma-chrome-launcher": "2.0.0",
"karma-cli": "1.0.1",
"karma-coverage": "1.1.1",
"karma-firefox-launcher": "1.0.1",
"karma-htmlfile-reporter": "0.3.5",
"karma-jasmine": "1.1.0",
"karma-jasmine-html-reporter": "0.2.2",
"karma-mocha-reporter": "2.2.3",
"karma-phantomjs-launcher": "1.0.4",
"karma-remap-coverage": "0.1.4",
"karma-safari-launcher": "1.0.0",
"karma-sourcemap-loader": "0.3.7",
"karma-webpack": "2.0.3",
"less": "2.7.2",
"less-loader": "4.0.3",
"less-plugin-autoprefix": "1.5.1",
"lesshint": "4.0.0",
"marked": "0.3.6",
"mocha": "3.2.0",
"ngc-webpack": "1.2.0",
"npm-run-all": "4.0.2",
"patternfly": "3.26.1",
"phantomjs-prebuilt": "2.1.14",
"postcss": "6.0.6",
"protractor": "5.1.1",
"protractor-browser-logs": "1.0.350",
"protractor-jasmine2-screenshot-reporter": "0.3.5",
"raw-loader": "0.5.1",
"reflect-metadata": "0.1.10",
"retyped-js-yaml-tsd-ambient": "3.0.2-0",
"rimraf": "2.6.1",
"script-ext-html-webpack-plugin": "1.7.1",
"semantic-release": "6.3.2",
"source-map-loader": "0.2.1",
"style-loader": "0.16.1",
"to-string-loader": "1.1.5",
"ts-helpers": "1.1.2",
"ts-node": "3.0.2",
"tslint": "5.0.0",
"tslint-loader": "3.4.3",
"typedoc": "0.5.9",
"typescript": "2.2.2",
"url-loader": "0.5.8",
"webpack": "2.3.3",
"webpack-bundle-analyzer": "2.3.1",
"webpack-dashboard": "0.3.0",
"webpack-dev-middleware": "1.10.1",
"webpack-dev-server": "2.4.2",
"webpack-dll-bundles-plugin": "1.0.0-beta.5",
"webpack-manifest-plugin": "1.1.0",
"webpack-md5-hash": "0.0.5",
"webpack-merge": "4.1.0",
"yargs": "7.0.2"
},
"repository": {
"type": "git",
"url": "https://github.com/fabric8-ui/fabric8-ui.git"
},
"bugs": {
"url": "https://github.com/fabric8-ui/fabric8-ui/issues"
},
"engines": {
"node": ">= 4.2.1",
"npm": ">= 3"
},
"release": {
"branch": "master",
"verifyConditions": {
"path": "./node_modules/@krux/condition-jenkins"
}
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}