forked from fabric8-ui/fabric8-planner
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
232 lines (232 loc) · 7.79 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
{
"name": "fabric8-planner",
"version": "0.0.0-development",
"description": "A planner front-end for Fabric8.",
"main": "bundles/fabric8-planner.umd.js",
"module": "index.js",
"typings": "index.d.ts",
"scripts": {
"build": "npm-run-all --serial remove-dist bundle build:library",
"build:library": "gulp build-library",
"build:prod": "webpack --config config/webpack.prod.js -p",
"bundle": "webpack --config config/webpack.prod.js --progress --profile --bail",
"check-coverage": "istanbul check-coverage --statements 23 --branches 5 --functions 9 --lines 24",
"clean-dist": "rimraf dist",
"clean": "npm cache clean && npm run rimraf -- node_modules doc coverage dist bundles",
"cleanup": "rimraf dist/package.json dist/bundles dist/src dist/index.d.ts dist/index.metadata.json dist/index.js dist/index.js.map dist/LICENSE dist/README.md",
"copy-files": "gulp copyfiles",
"docker:run": "webpack-dev-server --inline --progress --port 8080",
"functests": "npm-run-all -p webdriver-start testserver-start protractor",
"lint": "find src -name '*.ts' | xargs tslint -c tslint.json --force",
"minify": "uglifyjs dist/bundles/ngx-widgets.js --screw-ie8 --compress --mangle --comments --output dist/bundles/ngx-widgets.min.js",
"protractor": "sleep 15 && ./node_modules/protractor/bin/protractor protractor.config.js",
"reinstall": "npm run clean && npm install",
"remove-dist": "rimraf dist dist-watch",
"rimraf": "rimraf",
"setup": "npm install && npm run validate",
"sass-lint": "sass-lint -c .sass-lint.yml 'src/**/*.scss' -v -q",
"semantic-release": "semantic-release pre && npm run build && cp -r .git dist && npm publish dist/ && semantic-release post",
"start": "webpack-dev-server --inline --progress --host 0.0.0.0 --port 8088",
"start-dev": "webpack-dashboard -t almighty -- webpack-dev-server --inline --progress --host 0.0.0.0 --port 8088",
"stats": "webpack --profile --json > stats.json",
"test": "npm-run-all --serial test:unit check-coverage test:func",
"test:browsers": "karma start --browsers Chrome,Firefox,Safari",
"test:debug": "karma start --no-single-run --browsers Chrome",
"test:func": "./run_functional_tests.sh",
"test:unit": "karma start",
"testserver-start": "webpack-dev-server --inline --progress --host 0.0.0.0 --port 8088",
"validate": "npm-run-all --parallel validate-webpack:* test:unit --serial check-coverage",
"validate-webpack:dev": "webpack-validator webpack.config.js --env.dev",
"validate-webpack:prod": "webpack-validator webpack.config.js --env.prod",
"webdriver-start": "./node_modules/protractor/bin/webdriver-manager update && ./node_modules/protractor/bin/webdriver-manager start",
"watch:test": "npm run test:unit -- --auto-watch --no-single-run",
"watch:library": "gulp watch"
},
"license": "Apache-2.0",
"contributors": [
{
"name": "Joshua Wilson",
"email": "[email protected]"
},
{
"name": "Nimisha",
"email": "[email protected]"
},
{
"name": "Sudipta Sen",
"email": "[email protected]"
},
{
"name": "Vikram Raj",
"email": "[email protected]"
},
{
"name": "Michael Kleinhenz",
"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",
"Planner",
"alm",
"fabric8"
],
"homepage": "https://github.com/fabric8io/fabric8-planner",
"repository": {
"type": "git",
"url": "https://github.com/fabric8io/fabric8-planner.git"
},
"bugs": {
"url": "https://github.com/fabric8-ui/fabric8-planner/issues"
},
"engines": {
"node": ">= 6.9.1",
"npm": ">= 3"
},
"dependencies": {
"@angular/animations": "4.0.1",
"@angular/common": "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",
"angular2-tree-component": "2.7.0",
"core-js": "2.4.1",
"lodash": "4.17.4",
"moment": "2.18.1",
"mydatepicker": "1.7.16",
"ng2-bootstrap": "1.3.3",
"ng2-completer": "1.3.0",
"ng2-dragula": "1.3.0",
"ng2-truncate": "1.3.5",
"ngx-base": "1.2.9",
"ngx-dropdown": "0.0.22",
"ngx-fabric8-wit": "6.18.8",
"ngx-login-client": "0.6.29",
"ngx-modal": "0.0.29",
"ngx-widgets": "0.14.0",
"reflect-metadata": "0.1.10",
"rxjs": "5.2.0",
"zone.js": "0.8.5"
},
"peerDependencies": {},
"devDependencies": {
"@angular/compiler": "4.0.1",
"@angular/compiler-cli": "4.0.1",
"@krux/condition-jenkins": "1.0.1",
"@types/jasmine": "2.5.47",
"@types/lodash": "4.14.61",
"@types/node": "7.0.12",
"@types/selenium-webdriver": "3.0.1",
"@types/zone.js": "0.0.27",
"angular-in-memory-web-api": "0.3.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",
"child_process": "1.0.2",
"clean-webpack-plugin": "0.1.16",
"codelyzer": "3.0.0-beta.3",
"copy-webpack-plugin": "4.0.1",
"copyfiles": "1.2.0",
"css-loader": "0.28.0",
"css-to-string-loader": "0.1.2",
"cz-conventional-changelog": "2.0.0",
"del": "2.2.2",
"extract-text-webpack-plugin": "2.1.0",
"file-loader": "0.11.1",
"gh-pages": "0.12.0",
"gulp": "3.9.1",
"gulp-changed": "2.0.0",
"gulp-ngc": "0.2.0",
"gulp-sass": "3.1.0",
"gulp-sourcemaps": "2.5.0",
"gulp-string-replace": "0.4.0",
"gulp-util": "3.0.8",
"html-loader": "0.4.5",
"html-webpack-plugin": "2.28.0",
"husky": "0.13.3",
"istanbul-instrumenter-loader": "2.0.0",
"jasmine-core": "2.5.2",
"json-loader": "0.5.4",
"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",
"mocha": "3.2.0",
"ng-router-loader": "2.1.0",
"ngc-webpack": "1.2.0",
"npm-run-all": "4.0.2",
"optimize-js-plugin": "0.0.4",
"patternfly-sass-with-css": "3.21.2",
"phantomjs-prebuilt": "2.1.14",
"precss": "1.4.0",
"protractor": "5.1.1",
"raw-loader": "0.5.1",
"rimraf": "2.6.1",
"run-sequence": "1.2.2",
"sass-lint": "1.10.2",
"sass-loader": "6.0.3",
"sasslint-webpack-plugin": "1.0.4",
"script-ext-html-webpack-plugin": "1.7.1",
"semantic-release": "6.3.2",
"style-loader": "0.16.1",
"to-string-loader": "1.1.5",
"ts-helpers": "1.1.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.2",
"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-md5-hash": "0.0.5",
"webpack-merge": "4.1.0",
"yargs": "7.0.1"
},
"release": {
"branch": "master",
"debug": false,
"verifyConditions": {
"path": "./node_modules/@krux/condition-jenkins"
}
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}