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
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
| | SystemJS.config({
| | nodeConfig: {
| | "paths": {
| | "github:": "jspm_packages/github/",
| | "npm:": "jspm_packages/npm/"
| | }
| | },
| | devConfig: {
| | "map": {
| | "plugin-typescript": "github:frankwallis/plugin-typescript@7.0.6",
| | "typescript": "npm:typescript@2.3.4",
| | "child_process": "npm:jspm-nodelibs-child_process@0.2.1",
| | "module": "npm:jspm-nodelibs-module@0.2.1",
| | "net": "npm:jspm-nodelibs-net@0.2.1"
| | },
| | "packages": {
| | "npm:source-map-support@0.4.14": {
| | "map": {
| | "source-map": "npm:source-map@0.5.6"
| | }
| | },
| | "npm:typescript@2.3.4": {
| | "map": {
| | "source-map-support": "npm:source-map-support@0.4.14"
| | }
| | }
| | }
| | },
| | transpiler: false,
| | packages: {
| | "environments": {
| | "defaultExtension": "js"
| | },
| | "src": {
| | "defaultExtension": "js"
| | }
| | },
| | map: {
| | "@angular/animations/browser": "npm:@angular/animations@4.2.0/bundles/animations-browser.umd.min.js",
| | "@angular/platform-browser/animations": "npm:@angular/platform-browser@4.2.0/bundles/platform-browser-animations.umd.min.js",
| | "app": "src/app"
| | }
| | });
| |
| | SystemJS.config({
| | packageConfigPaths: [
| | "github:*/*.json",
| | "npm:@angular/*.json",
| | "npm:@covalent/*.json",
| | "npm:@*/*.json",
| | "npm:*.json"
| | ],
| | map: {
| | "@angular/animations": "npm:@angular/animations@4.2.0",
| | "@angular/common": "npm:@angular/common@4.2.0",
| | "@angular/compiler": "npm:@angular/compiler@4.2.0",
| | "@angular/core": "npm:@angular/core@4.2.0",
| | "@angular/forms": "npm:@angular/forms@4.2.0",
| | "@angular/http": "npm:@angular/http@4.2.0",
| | "@angular/material": "npm:@angular/material@2.0.0-beta.6",
| | "@angular/platform-browser": "npm:@angular/platform-browser@4.2.0",
| | "@angular/platform-browser-dynamic": "npm:@angular/platform-browser-dynamic@4.2.0",
| | "@angular/router": "npm:@angular/router@4.2.0",
| | "@covalent/core": "npm:@covalent/core@1.0.0-beta.5",
| | "@covalent/dynamic-forms": "npm:@covalent/dynamic-forms@1.0.0-beta.5",
| | "@covalent/http": "npm:@covalent/http@1.0.0-beta.5",
| | "angular-in-memory-web-api": "npm:angular-in-memory-web-api@0.3.1",
| | "angular-safeguard": "npm:angular-safeguard@1.0.1",
| | "assert": "npm:jspm-nodelibs-assert@0.2.1",
| | "buffer": "npm:jspm-nodelibs-buffer@0.2.2",
| | "constants": "npm:jspm-nodelibs-constants@0.2.1",
| | "core-js": "npm:core-js@2.4.1",
| | "crypto": "npm:jspm-nodelibs-crypto@0.2.1",
| | "events": "npm:jspm-nodelibs-events@0.2.2",
| | "file-saver": "npm:file-saver@1.3.3",
| | "fs": "npm:jspm-nodelibs-fs@0.2.1",
| | "hammerjs": "npm:hammerjs@2.0.8",
| | "ng2-toastr": "npm:ng2-toastr@4.0.1",
| | "os": "npm:jspm-nodelibs-os@0.2.1",
| | "path": "npm:jspm-nodelibs-path@0.2.3",
| | "process": "npm:jspm-nodelibs-process@0.2.1",
| | "rxjs": "npm:rxjs@5.3.0",
| | "stream": "npm:jspm-nodelibs-stream@0.2.1",
| | "string_decoder": "npm:jspm-nodelibs-string_decoder@0.2.1",
| | "timers": "npm:jspm-nodelibs-timers@0.2.1",
| | "util": "npm:jspm-nodelibs-util@0.2.2",
| | "vm": "npm:jspm-nodelibs-vm@0.2.1",
| | "web-animations-js": "npm:web-animations-js@2.2.2",
| | "zone.js": "npm:zone.js@0.8.5"
| | },
| | packages: {
| | "npm:jspm-nodelibs-buffer@0.2.2": {
| | "map": {
| | "buffer": "npm:buffer@4.9.1"
| | }
| | },
| | "npm:buffer@4.9.1": {
| | "map": {
| | "isarray": "npm:isarray@1.0.0",
| | "ieee754": "npm:ieee754@1.1.8",
| | "base64-js": "npm:base64-js@1.2.0"
| | }
| | },
| | "npm:jspm-nodelibs-os@0.2.1": {
| | "map": {
| | "os-browserify": "npm:os-browserify@0.2.1"
| | }
| | },
| | "npm:jspm-nodelibs-crypto@0.2.1": {
| | "map": {
| | "crypto-browserify": "npm:crypto-browserify@3.11.0"
| | }
| | },
| | "npm:crypto-browserify@3.11.0": {
| | "map": {
| | "browserify-cipher": "npm:browserify-cipher@1.0.0",
| | "create-hash": "npm:create-hash@1.1.2",
| | "create-ecdh": "npm:create-ecdh@4.0.0",
| | "diffie-hellman": "npm:diffie-hellman@5.0.2",
| | "browserify-sign": "npm:browserify-sign@4.0.4",
| | "randombytes": "npm:randombytes@2.0.3",
| | "inherits": "npm:inherits@2.0.3",
| | "create-hmac": "npm:create-hmac@1.1.4",
| | "pbkdf2": "npm:pbkdf2@3.0.9",
| | "public-encrypt": "npm:public-encrypt@4.0.0"
| | }
| | },
| | "npm:browserify-sign@4.0.4": {
| | "map": {
| | "create-hash": "npm:create-hash@1.1.2",
| | "inherits": "npm:inherits@2.0.3",
| | "create-hmac": "npm:create-hmac@1.1.4",
| | "bn.js": "npm:bn.js@4.11.6",
| | "elliptic": "npm:elliptic@6.4.0",
| | "parse-asn1": "npm:parse-asn1@5.1.0",
| | "browserify-rsa": "npm:browserify-rsa@4.0.1"
| | }
| | },
| | "npm:create-hash@1.1.2": {
| | "map": {
| | "inherits": "npm:inherits@2.0.3",
| | "sha.js": "npm:sha.js@2.4.8",
| | "cipher-base": "npm:cipher-base@1.0.3",
| | "ripemd160": "npm:ripemd160@1.0.1"
| | }
| | },
| | "npm:diffie-hellman@5.0.2": {
| | "map": {
| | "randombytes": "npm:randombytes@2.0.3",
| | "bn.js": "npm:bn.js@4.11.6",
| | "miller-rabin": "npm:miller-rabin@4.0.0"
| | }
| | },
| | "npm:browserify-cipher@1.0.0": {
| | "map": {
| | "browserify-des": "npm:browserify-des@1.0.0",
| | "browserify-aes": "npm:browserify-aes@1.0.6",
| | "evp_bytestokey": "npm:evp_bytestokey@1.0.0"
| | }
| | },
| | "npm:browserify-des@1.0.0": {
| | "map": {
| | "inherits": "npm:inherits@2.0.3",
| | "des.js": "npm:des.js@1.0.0",
| | "cipher-base": "npm:cipher-base@1.0.3"
| | }
| | },
| | "npm:create-hmac@1.1.4": {
| | "map": {
| | "create-hash": "npm:create-hash@1.1.2",
| | "inherits": "npm:inherits@2.0.3"
| | }
| | },
| | "npm:browserify-aes@1.0.6": {
| | "map": {
| | "create-hash": "npm:create-hash@1.1.2",
| | "inherits": "npm:inherits@2.0.3",
| | "evp_bytestokey": "npm:evp_bytestokey@1.0.0",
| | "cipher-base": "npm:cipher-base@1.0.3",
| | "buffer-xor": "npm:buffer-xor@1.0.3"
| | }
| | },
| | "npm:pbkdf2@3.0.9": {
| | "map": {
| | "create-hmac": "npm:create-hmac@1.1.4"
| | }
| | },
| | "npm:evp_bytestokey@1.0.0": {
| | "map": {
| | "create-hash": "npm:create-hash@1.1.2"
| | }
| | },
| | "npm:create-ecdh@4.0.0": {
| | "map": {
| | "bn.js": "npm:bn.js@4.11.6",
| | "elliptic": "npm:elliptic@6.4.0"
| | }
| | },
| | "npm:des.js@1.0.0": {
| | "map": {
| | "inherits": "npm:inherits@2.0.3",
| | "minimalistic-assert": "npm:minimalistic-assert@1.0.0"
| | }
| | },
| | "npm:sha.js@2.4.8": {
| | "map": {
| | "inherits": "npm:inherits@2.0.3"
| | }
| | },
| | "npm:cipher-base@1.0.3": {
| | "map": {
| | "inherits": "npm:inherits@2.0.3"
| | }
| | },
| | "npm:parse-asn1@5.1.0": {
| | "map": {
| | "browserify-aes": "npm:browserify-aes@1.0.6",
| | "create-hash": "npm:create-hash@1.1.2",
| | "evp_bytestokey": "npm:evp_bytestokey@1.0.0",
| | "pbkdf2": "npm:pbkdf2@3.0.9",
| | "asn1.js": "npm:asn1.js@4.9.1"
| | }
| | },
| | "npm:elliptic@6.4.0": {
| | "map": {
| | "bn.js": "npm:bn.js@4.11.6",
| | "inherits": "npm:inherits@2.0.3",
| | "minimalistic-assert": "npm:minimalistic-assert@1.0.0",
| | "minimalistic-crypto-utils": "npm:minimalistic-crypto-utils@1.0.1",
| | "brorand": "npm:brorand@1.1.0",
| | "hash.js": "npm:hash.js@1.0.3",
| | "hmac-drbg": "npm:hmac-drbg@1.0.1"
| | }
| | },
| | "npm:jspm-nodelibs-stream@0.2.1": {
| | "map": {
| | "stream-browserify": "npm:stream-browserify@2.0.1"
| | }
| | },
| | "npm:asn1.js@4.9.1": {
| | "map": {
| | "bn.js": "npm:bn.js@4.11.6",
| | "inherits": "npm:inherits@2.0.3",
| | "minimalistic-assert": "npm:minimalistic-assert@1.0.0"
| | }
| | },
| | "npm:browserify-rsa@4.0.1": {
| | "map": {
| | "bn.js": "npm:bn.js@4.11.6",
| | "randombytes": "npm:randombytes@2.0.3"
| | }
| | },
| | "npm:stream-browserify@2.0.1": {
| | "map": {
| | "inherits": "npm:inherits@2.0.3",
| | "readable-stream": "npm:readable-stream@2.2.9"
| | }
| | },
| | "npm:hash.js@1.0.3": {
| | "map": {
| | "inherits": "npm:inherits@2.0.3"
| | }
| | },
| | "npm:jspm-nodelibs-string_decoder@0.2.1": {
| | "map": {
| | "string_decoder": "npm:string_decoder@0.10.31"
| | }
| | },
| | "npm:readable-stream@2.2.9": {
| | "map": {
| | "string_decoder": "npm:string_decoder@1.0.0",
| | "isarray": "npm:isarray@1.0.0",
| | "inherits": "npm:inherits@2.0.3",
| | "buffer-shims": "npm:buffer-shims@1.0.0",
| | "process-nextick-args": "npm:process-nextick-args@1.0.7",
| | "util-deprecate": "npm:util-deprecate@1.0.2",
| | "core-util-is": "npm:core-util-is@1.0.2"
| | }
| | },
| | "npm:hmac-drbg@1.0.1": {
| | "map": {
| | "hash.js": "npm:hash.js@1.0.3",
| | "minimalistic-assert": "npm:minimalistic-assert@1.0.0",
| | "minimalistic-crypto-utils": "npm:minimalistic-crypto-utils@1.0.1"
| | }
| | },
| | "npm:string_decoder@1.0.0": {
| | "map": {
| | "buffer-shims": "npm:buffer-shims@1.0.0"
| | }
| | },
| | "npm:miller-rabin@4.0.0": {
| | "map": {
| | "bn.js": "npm:bn.js@4.11.6",
| | "brorand": "npm:brorand@1.1.0"
| | }
| | },
| | "npm:public-encrypt@4.0.0": {
| | "map": {
| | "bn.js": "npm:bn.js@4.11.6",
| | "browserify-rsa": "npm:browserify-rsa@4.0.1",
| | "create-hash": "npm:create-hash@1.1.2",
| | "parse-asn1": "npm:parse-asn1@5.1.0",
| | "randombytes": "npm:randombytes@2.0.3"
| | }
| | },
| | "npm:rxjs@5.3.0": {
| | "map": {
| | "symbol-observable": "npm:symbol-observable@1.0.4"
| | }
| | },
| | "npm:jspm-nodelibs-timers@0.2.1": {
| | "map": {
| | "timers-browserify": "npm:timers-browserify@1.4.2"
| | }
| | },
| | "npm:timers-browserify@1.4.2": {
| | "map": {
| | "process": "npm:process@0.11.9"
| | }
| | },
| | "npm:@covalent/dynamic-forms@1.0.0-beta.5": {
| | "map": {
| | "@covalent/core": "npm:@covalent/core@1.0.0-beta.5"
| | }
| | },
| | "npm:@angular/material@2.0.0-beta.6": {
| | "map": {
| | "tslib": "npm:tslib@1.7.1"
| | }
| | },
| | "npm:@angular/platform-browser-dynamic@4.2.0": {
| | "map": {
| | "tslib": "npm:tslib@1.7.1"
| | }
| | },
| | "npm:@angular/animations@4.2.0": {
| | "map": {
| | "tslib": "npm:tslib@1.7.1"
| | }
| | },
| | "npm:@angular/forms@4.2.0": {
| | "map": {
| | "tslib": "npm:tslib@1.7.1"
| | }
| | },
| | "npm:@angular/common@4.2.0": {
| | "map": {
| | "tslib": "npm:tslib@1.7.1"
| | }
| | },
| | "npm:@angular/compiler@4.2.0": {
| | "map": {
| | "tslib": "npm:tslib@1.7.1"
| | }
| | },
| | "npm:@angular/core@4.2.0": {
| | "map": {
| | "tslib": "npm:tslib@1.7.1"
| | }
| | },
| | "npm:@angular/http@4.2.0": {
| | "map": {
| | "tslib": "npm:tslib@1.7.1"
| | }
| | },
| | "npm:@angular/platform-browser@4.2.0": {
| | "map": {
| | "tslib": "npm:tslib@1.7.1"
| | }
| | },
| | "npm:@angular/router@4.2.0": {
| | "map": {
| | "tslib": "npm:tslib@1.7.1"
| | }
| | }
| | }
| | });
|
|