This repository has been archived by the owner on May 7, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 18
/
package.json
236 lines (236 loc) · 7.48 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
{
"name": "ngx-widgets",
"version": "0.0.0-development",
"description": "A collection of Angular components and other useful things to be shared.",
"main": "src/app/index.js",
"module": "src/app/index.js",
"typings": "src/app/index.d.ts",
"scripts": {
"build": "npm-run-all --serial lint:less lint:ts build:aot build:bundle",
"build:aot": "npm run rimraf -- build build-aot && gulp build-aot",
"build:bundle": "npm-run-all --serial build:library",
"build:demo": "npm-run-all --serial 'rimraf -- dist-demo' demo:copy-examples demo:webpack",
"build:library": "npm run rimraf -- build dist dist-watch src/**/*.css && gulp build",
"clean": "npm cache clear --force && npm run rimraf -- package-lock.json node_modules doc coverage dist distwatch dist-demo dist-watch bundles",
"demo:copy-examples": "gulp copy-examples",
"demo:start": "npm-run-all --serial demo:copy-examples demo:webserver",
"demo:webpack": "webpack --config config/webpack.demo.js --progress --profile --bail",
"demo:webserver": "npm run webpack-dev-server -- --config config/webpack.demo.js --host 0.0.0.0 --port 8001 --progress --profile --hot --content-base dist-demo",
"lint:less": "stylelint 'src/**/*.less' --config .stylelintrc",
"lint:less:fix": "npm run lint:less -- --fix",
"lint:ts": "tslint -c tslint.json 'src/**/*.ts'",
"lint:ts:fix": "npm run lint:ts -- --fix",
"minify": "uglifyjs dist/bundles/ngx-widgets.js --screw-ie8 --compress --mangle --comments --output dist/bundles/ngx-widgets.min.js",
"perf": "webpack --config config/webpack.perf.js --progress --profile",
"reinstall": "npm run clean && npm install",
"remove-dist": "rimraf dist dist-watch",
"rimraf": "rimraf",
"semantic-release": "semantic-release",
"start": "npm run demo:start",
"test": "npm run test:unit",
"test:unit": "karma start",
"test:debug": "karma start --no-single-run --browsers Chrome",
"test:browsers": "karma start --browsers Chrome,Firefox,Safari",
"watch:library": "gulp watch",
"webpack-dev-server": "node --max_old_space_size=4096 node_modules/webpack-dev-server/bin/webpack-dev-server.js"
},
"license": "Apache-2.0",
"contributors": [
{
"name": "Joshua Wilson",
"email": "[email protected]"
},
{
"name": "Nimisha",
"email": "[email protected]"
},
{
"name": "Sudipta Sen",
"email": "[email protected]"
},
{
"name": "Pete Muir",
"email": "[email protected]"
},
{
"name": "Adam J. Jolicoeur",
"email": "[email protected]"
}
],
"keywords": [
"angular",
"angular2",
"angular 2",
"angular4",
"angular 4",
"ng",
"ng2",
"ng4",
"login",
"ng-login",
"auth"
],
"homepage": "https://github.com/fabric8-ui/ngx-widgets",
"repository": {
"type": "git",
"url": "https://github.com/fabric8-ui/ngx-widgets.git"
},
"bugs": {
"url": "https://github.com/fabric8-ui/ngx-widgets/issues"
},
"engines": {
"node": "8.3.0",
"npm": "5.3.0"
},
"dependencies": {
"moment": "^2.18.1",
"patternfly-ng": "^4.5.1"
},
"peerDependencies": {
"@angular/animations": "^7.0.3",
"@angular/common": "^7.0.3",
"@angular/core": "^7.0.3",
"@angular/forms": "^7.0.3",
"@angular/router": "^7.0.3",
"rxjs": "^6.3.3"
},
"devDependencies": {
"@angular/animations": "7.0.3",
"@angular/common": "7.0.3",
"@angular/compiler": "7.0.3",
"@angular/compiler-cli": "7.0.3",
"@angular/core": "7.0.3",
"@angular/forms": "7.0.3",
"@angular/http": "7.0.3",
"@angular/platform-browser": "7.0.3",
"@angular/platform-browser-dynamic": "7.0.3",
"@angular/platform-server": "7.0.3",
"@angular/router": "7.0.3",
"@krux/condition-jenkins": "1.0.1",
"@ngtools/webpack": "7.0.5",
"@types/core-js": "2.5.0",
"@types/jasmine": "2.8.11",
"@types/lodash": "4.14.118",
"angular2-load-children-loader": "0.2.1",
"angular2-router-loader": "0.3.5",
"angular2-template-loader": "0.6.2",
"assets-webpack-plugin": "3.9.7",
"autoprefixer": "9.3.1",
"child_process": "1.0.2",
"clean-css": "4.2.1",
"clean-webpack-plugin": "1.0.0",
"codelyzer": "4.5.0",
"copy-webpack-plugin": "4.6.0",
"copyfiles": "2.1.0",
"core-js": "2.5.7",
"cpy-cli": "2.0.0",
"css-loader": "1.0.1",
"css-to-string-loader": "0.1.3",
"cz-conventional-changelog": "2.1.0",
"del": "3.0.0",
"exports-loader": "0.7.0",
"expose-loader": "0.7.5",
"extract-text-webpack-plugin": "4.0.0-beta.0",
"file-loader": "2.0.0",
"gh-pages": "2.0.1",
"gulp": "4.0.0",
"gulp-changed": "3.2.0",
"gulp-cssmin": "0.2.0",
"gulp-less": "4.0.1",
"gulp-rename": "1.4.0",
"gulp-replace": "1.0.0",
"gulp-sourcemaps": "2.6.4",
"gulp-string-replace": "1.1.2",
"gulp-stylelint": "8.0.0",
"html-loader": "0.5.5",
"html-minifier": "3.5.21",
"html-webpack-plugin": "3.2.0",
"htmlhint-loader": "1.3.1",
"husky": "1.1.4",
"imports-loader": "0.8.0",
"istanbul-instrumenter-loader": "3.0.1",
"jasmine": "3.2.0",
"jasmine-core": "3.2.1",
"json-loader": "0.5.7",
"json-stringify": "1.0.0",
"karma": "3.1.1",
"karma-chrome-launcher": "2.2.0",
"karma-cli": "1.0.1",
"karma-coverage": "1.1.2",
"karma-firefox-launcher": "1.1.0",
"karma-htmlfile-reporter": "0.3.7",
"karma-jasmine": "1.1.2",
"karma-jasmine-html-reporter": "1.4.0",
"karma-mocha": "1.3.0",
"karma-mocha-reporter": "2.2.5",
"karma-phantomjs-launcher": "1.0.4",
"karma-remap-coverage": "0.1.5",
"karma-remap-istanbul": "0.6.0",
"karma-safari-launcher": "1.0.0",
"karma-sourcemap-loader": "0.3.7",
"karma-typescript": "3.0.13",
"karma-webpack": "4.0.0-beta.0",
"less": "3.8.1",
"less-loader": "4.1.0",
"less-plugin-autoprefix": "2.0.0",
"markdown-it": "8.4.2",
"mini-css-extract-plugin": "0.4.4",
"mocha": "5.2.0",
"ng-router-loader": "2.1.0",
"npm-run-all": "4.1.3",
"null-loader": "0.1.1",
"opt-cli": "1.6.0",
"optimize-js-plugin": "0.0.4",
"parse5": "5.1.0",
"path": "0.12.7",
"patternfly": "3.57.2",
"phantomjs-prebuilt": "2.1.16",
"postcss-loader": "3.0.0",
"precss": "3.1.2",
"protractor": "5.4.1",
"raw-loader": "0.5.1",
"reflect-metadata": "0.1.12",
"resolve-url-loader": "3.0.0",
"rimraf": "2.6.2",
"run-sequence": "2.2.1",
"rxjs": "^6.3.0",
"rxjs-compat": "^6.3.0",
"rxjs-tslint": "0.1.5",
"script-ext-html-webpack-plugin": "2.1.3",
"semantic-release": "15.12.0",
"source-map-loader": "0.2.4",
"style-loader": "0.23.1",
"stylelint": "9.8.0",
"stylelint-webpack-plugin": "0.10.5",
"stylus": "0.54.5",
"to-string-loader": "1.1.5",
"ts-helpers": "1.1.2",
"ts-loader": "5.3.0",
"ts-node": "7.0.1",
"tslint": "5.11.0",
"tslint-loader": "3.6.0",
"typedoc": "0.13.0",
"typedoc-webpack-plugin": "1.1.4",
"typescript": "3.1.6",
"url-loader": "1.1.2",
"webpack": "4.25.1",
"webpack-bundle-analyzer": "3.0.3",
"webpack-cli": "3.1.2",
"webpack-dev-middleware": "3.4.0",
"webpack-dev-server": "3.1.10",
"webpack-dll-bundles-plugin": "1.0.0-beta.5",
"webpack-md5-hash": "0.0.6",
"webpack-merge": "4.1.4",
"zone.js": "0.8.26"
},
"release": {
"branch": "master",
"debug": "true",
"pkgRoot": "dist"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}