-
Notifications
You must be signed in to change notification settings - Fork 15
/
stats.json
4100 lines (4100 loc) · 324 KB
/
stats.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
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
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
{
"errors": [],
"warnings": [
"configuration\nThe 'mode' option has not been set, webpack will fallback to 'production' for this value. Set 'mode' option to 'development' or 'production' to enable defaults for each environment.\nYou can also set it to 'none' to disable any default behavior. Learn more: https://webpack.js.org/concepts/mode/"
],
"version": "4.8.3",
"hash": "78a83e8136ca6e6ca438",
"time": 950,
"builtAt": 1551268316533,
"publicPath": "",
"outputPath": "/Users/adamk/Desktop/my/keen-analysis.js/dist",
"assetsByChunkName": {
"main": [
"keen-analysis.js",
"keen-analysis.js.map"
]
},
"assets": [
{
"name": "keen-analysis.js",
"size": 96635,
"chunks": [
0
],
"chunkNames": [
"main"
],
"emitted": true
},
{
"name": "keen-analysis.js.map",
"size": 134070,
"chunks": [
0
],
"chunkNames": [
"main"
],
"emitted": true
}
],
"filteredAssets": 0,
"entrypoints": {
"main": {
"chunks": [
0
],
"assets": [
"keen-analysis.js",
"keen-analysis.js.map"
],
"children": {},
"childAssets": {}
}
},
"namedChunkGroups": {
"main": {
"chunks": [
0
],
"assets": [
"keen-analysis.js",
"keen-analysis.js.map"
],
"children": {},
"childAssets": {}
}
},
"chunks": [
{
"id": 0,
"rendered": true,
"initial": true,
"entry": true,
"size": 91570,
"names": [
"main"
],
"files": [
"keen-analysis.js",
"keen-analysis.js.map"
],
"hash": "518c96d9d982db192b13",
"siblings": [],
"parents": [],
"children": [],
"childrenByOrder": {},
"modules": [
{
"id": 0,
"identifier": "/Users/adamk/Desktop/my/keen-analysis.js/node_modules/keen-core/lib/utils/each.js",
"name": "./node_modules/keen-core/lib/utils/each.js",
"index": 12,
"index2": 8,
"size": 472,
"cacheable": true,
"built": true,
"optional": false,
"prefetched": false,
"chunks": [
0
],
"issuer": "/Users/adamk/Desktop/my/keen-analysis.js/node_modules/babel-loader/lib/index.js!/Users/adamk/Desktop/my/keen-analysis.js/lib/request.js",
"issuerId": 13,
"issuerName": "./lib/request.js",
"issuerPath": [
{
"id": 22,
"identifier": "multi ./lib/browser.js",
"name": "multi ./lib/browser.js",
"profile": {
"factory": 1,
"building": 2
}
},
{
"id": 21,
"identifier": "/Users/adamk/Desktop/my/keen-analysis.js/node_modules/babel-loader/lib/index.js!/Users/adamk/Desktop/my/keen-analysis.js/lib/browser.js",
"name": "./lib/browser.js",
"profile": {
"factory": 34,
"building": 324
}
},
{
"id": 13,
"identifier": "/Users/adamk/Desktop/my/keen-analysis.js/node_modules/babel-loader/lib/index.js!/Users/adamk/Desktop/my/keen-analysis.js/lib/request.js",
"name": "./lib/request.js",
"profile": {
"factory": 297,
"building": 4,
"dependencies": 186
}
}
],
"profile": {
"factory": 193,
"building": 58,
"dependencies": 51
},
"failed": false,
"errors": 0,
"warnings": 0,
"assets": [],
"reasons": [
{
"moduleId": 7,
"moduleIdentifier": "/Users/adamk/Desktop/my/keen-analysis.js/node_modules/keen-core/lib/utils/serialize.js",
"module": "./node_modules/keen-core/lib/utils/serialize.js",
"moduleName": "./node_modules/keen-core/lib/utils/serialize.js",
"type": "cjs require",
"userRequest": "./each",
"loc": "1:11-28"
},
{
"moduleId": 11,
"moduleIdentifier": "/Users/adamk/Desktop/my/keen-analysis.js/node_modules/babel-loader/lib/index.js!/Users/adamk/Desktop/my/keen-analysis.js/lib/utils/http-browser.js",
"module": "./lib/utils/http-browser.js",
"moduleName": "./lib/utils/http-browser.js",
"type": "cjs require",
"userRequest": "keen-core/lib/utils/each",
"loc": "14:12-47"
},
{
"moduleId": 13,
"moduleIdentifier": "/Users/adamk/Desktop/my/keen-analysis.js/node_modules/babel-loader/lib/index.js!/Users/adamk/Desktop/my/keen-analysis.js/lib/request.js",
"module": "./lib/request.js",
"moduleName": "./lib/request.js",
"type": "cjs require",
"userRequest": "keen-core/lib/utils/each",
"loc": "13:12-47"
},
{
"moduleId": 16,
"moduleIdentifier": "/Users/adamk/Desktop/my/keen-analysis.js/node_modules/keen-core/lib/index.js",
"module": "./node_modules/keen-core/lib/index.js",
"moduleName": "./node_modules/keen-core/lib/index.js",
"type": "cjs require",
"userRequest": "./utils/each",
"loc": "3:13-36"
},
{
"moduleId": 20,
"moduleIdentifier": "/Users/adamk/Desktop/my/keen-analysis.js/node_modules/babel-loader/lib/index.js!/Users/adamk/Desktop/my/keen-analysis.js/lib/index.js",
"module": "./lib/index.js",
"moduleName": "./lib/index.js",
"type": "cjs require",
"userRequest": "keen-core/lib/utils/each",
"loc": "18:12-47"
}
],
"usedExports": true,
"providedExports": null,
"optimizationBailout": [
"ModuleConcatenation bailout: Module is not an ECMAScript module"
],
"depth": 3,
"source": "module.exports = each;\n\nfunction each(o, cb, s){\n var n;\n if (!o){\n return 0;\n }\n s = !s ? o : s;\n if (o instanceof Array){\n // Indexed arrays, needed for Safari\n for (n=0; n<o.length; n++) {\n if (cb.call(s, o[n], n, o) === false){\n return 0;\n }\n }\n } else {\n // Hashtables\n for (n in o){\n if (o.hasOwnProperty(n)) {\n if (cb.call(s, o[n], n, o) === false){\n return 0;\n }\n }\n }\n }\n return 1;\n}\n"
},
{
"id": 1,
"identifier": "/Users/adamk/Desktop/my/keen-analysis.js/node_modules/webpack/buildin/global.js",
"name": "(webpack)/buildin/global.js",
"index": 5,
"index2": 1,
"size": 509,
"cacheable": true,
"built": true,
"optional": false,
"prefetched": false,
"chunks": [
0
],
"issuer": "/Users/adamk/Desktop/my/keen-analysis.js/node_modules/abortcontroller-polyfill/dist/polyfill-patch-fetch.js",
"issuerId": 12,
"issuerName": "./node_modules/abortcontroller-polyfill/dist/polyfill-patch-fetch.js",
"issuerPath": [
{
"id": 22,
"identifier": "multi ./lib/browser.js",
"name": "multi ./lib/browser.js",
"profile": {
"factory": 1,
"building": 2
}
},
{
"id": 21,
"identifier": "/Users/adamk/Desktop/my/keen-analysis.js/node_modules/babel-loader/lib/index.js!/Users/adamk/Desktop/my/keen-analysis.js/lib/browser.js",
"name": "./lib/browser.js",
"profile": {
"factory": 34,
"building": 324
}
},
{
"id": 13,
"identifier": "/Users/adamk/Desktop/my/keen-analysis.js/node_modules/babel-loader/lib/index.js!/Users/adamk/Desktop/my/keen-analysis.js/lib/request.js",
"name": "./lib/request.js",
"profile": {
"factory": 297,
"building": 4,
"dependencies": 186
}
},
{
"id": 12,
"identifier": "/Users/adamk/Desktop/my/keen-analysis.js/node_modules/abortcontroller-polyfill/dist/polyfill-patch-fetch.js",
"name": "./node_modules/abortcontroller-polyfill/dist/polyfill-patch-fetch.js",
"profile": {
"factory": 193,
"building": 58,
"dependencies": 51
}
}
],
"profile": {
"factory": 53,
"building": 15
},
"failed": false,
"errors": 0,
"warnings": 0,
"assets": [],
"reasons": [
{
"moduleId": 3,
"moduleIdentifier": "/Users/adamk/Desktop/my/keen-analysis.js/node_modules/promise-polyfill/src/polyfill.js",
"module": "./node_modules/promise-polyfill/src/polyfill.js",
"moduleName": "./node_modules/promise-polyfill/src/polyfill.js",
"type": "cjs require",
"userRequest": "global",
"loc": "1:0-44"
},
{
"moduleId": 12,
"moduleIdentifier": "/Users/adamk/Desktop/my/keen-analysis.js/node_modules/abortcontroller-polyfill/dist/polyfill-patch-fetch.js",
"module": "./node_modules/abortcontroller-polyfill/dist/polyfill-patch-fetch.js",
"moduleName": "./node_modules/abortcontroller-polyfill/dist/polyfill-patch-fetch.js",
"type": "cjs require",
"userRequest": "global",
"loc": "1:0-44"
},
{
"moduleId": 16,
"moduleIdentifier": "/Users/adamk/Desktop/my/keen-analysis.js/node_modules/keen-core/lib/index.js",
"module": "./node_modules/keen-core/lib/index.js",
"moduleName": "./node_modules/keen-core/lib/index.js",
"type": "cjs require",
"userRequest": "global",
"loc": "1:0-44"
},
{
"moduleId": 18,
"moduleIdentifier": "/Users/adamk/Desktop/my/keen-analysis.js/node_modules/setimmediate/setImmediate.js",
"module": "./node_modules/setimmediate/setImmediate.js",
"moduleName": "./node_modules/setimmediate/setImmediate.js",
"type": "cjs require",
"userRequest": "global",
"loc": "1:0-41"
},
{
"moduleId": 19,
"moduleIdentifier": "/Users/adamk/Desktop/my/keen-analysis.js/node_modules/timers-browserify/main.js",
"module": "./node_modules/timers-browserify/main.js",
"moduleName": "./node_modules/timers-browserify/main.js",
"type": "cjs require",
"userRequest": "global",
"loc": "1:0-41"
}
],
"usedExports": true,
"providedExports": null,
"optimizationBailout": [
"ModuleConcatenation bailout: Module is not an ECMAScript module"
],
"depth": 4,
"source": "var g;\r\n\r\n// This works in non-strict mode\r\ng = (function() {\r\n\treturn this;\r\n})();\r\n\r\ntry {\r\n\t// This works if eval is allowed (see CSP)\r\n\tg = g || Function(\"return this\")() || (1, eval)(\"this\");\r\n} catch (e) {\r\n\t// This works if the window reference is available\r\n\tif (typeof window === \"object\") g = window;\r\n}\r\n\r\n// g can still be undefined, but nothing to do about it...\r\n// We return undefined, instead of nothing here, so it's\r\n// easier to handle this case. if(!global) { ...}\r\n\r\nmodule.exports = g;\r\n"
},
{
"id": 2,
"identifier": "/Users/adamk/Desktop/my/keen-analysis.js/node_modules/keen-core/lib/utils/extend.js",
"name": "./node_modules/keen-core/lib/utils/extend.js",
"index": 2,
"index2": 0,
"size": 205,
"cacheable": true,
"built": true,
"optional": false,
"prefetched": false,
"chunks": [
0
],
"issuer": "/Users/adamk/Desktop/my/keen-analysis.js/node_modules/babel-loader/lib/index.js!/Users/adamk/Desktop/my/keen-analysis.js/lib/browser.js",
"issuerId": 21,
"issuerName": "./lib/browser.js",
"issuerPath": [
{
"id": 22,
"identifier": "multi ./lib/browser.js",
"name": "multi ./lib/browser.js",
"profile": {
"factory": 1,
"building": 2
}
},
{
"id": 21,
"identifier": "/Users/adamk/Desktop/my/keen-analysis.js/node_modules/babel-loader/lib/index.js!/Users/adamk/Desktop/my/keen-analysis.js/lib/browser.js",
"name": "./lib/browser.js",
"profile": {
"factory": 34,
"building": 324
}
}
],
"profile": {
"factory": 297,
"building": 4,
"dependencies": 186
},
"failed": false,
"errors": 0,
"warnings": 0,
"assets": [],
"reasons": [
{
"moduleId": 7,
"moduleIdentifier": "/Users/adamk/Desktop/my/keen-analysis.js/node_modules/keen-core/lib/utils/serialize.js",
"module": "./node_modules/keen-core/lib/utils/serialize.js",
"moduleName": "./node_modules/keen-core/lib/utils/serialize.js",
"type": "cjs require",
"userRequest": "./extend",
"loc": "2:13-32"
},
{
"moduleId": 13,
"moduleIdentifier": "/Users/adamk/Desktop/my/keen-analysis.js/node_modules/babel-loader/lib/index.js!/Users/adamk/Desktop/my/keen-analysis.js/lib/request.js",
"module": "./lib/request.js",
"moduleName": "./lib/request.js",
"type": "cjs require",
"userRequest": "keen-core/lib/utils/extend",
"loc": "17:14-51"
},
{
"moduleId": 16,
"moduleIdentifier": "/Users/adamk/Desktop/my/keen-analysis.js/node_modules/keen-core/lib/index.js",
"module": "./node_modules/keen-core/lib/index.js",
"moduleName": "./node_modules/keen-core/lib/index.js",
"type": "cjs require",
"userRequest": "./utils/extend",
"loc": "4:15-40"
},
{
"moduleId": 20,
"moduleIdentifier": "/Users/adamk/Desktop/my/keen-analysis.js/node_modules/babel-loader/lib/index.js!/Users/adamk/Desktop/my/keen-analysis.js/lib/index.js",
"module": "./lib/index.js",
"moduleName": "./lib/index.js",
"type": "cjs require",
"userRequest": "keen-core/lib/utils/extend",
"loc": "22:14-51"
},
{
"moduleId": 21,
"moduleIdentifier": "/Users/adamk/Desktop/my/keen-analysis.js/node_modules/babel-loader/lib/index.js!/Users/adamk/Desktop/my/keen-analysis.js/lib/browser.js",
"module": "./lib/browser.js",
"moduleName": "./lib/browser.js",
"type": "cjs require",
"userRequest": "keen-core/lib/utils/extend",
"loc": "8:14-51"
}
],
"usedExports": true,
"providedExports": null,
"optimizationBailout": [
"ModuleConcatenation bailout: Module is not an ECMAScript module"
],
"depth": 2,
"source": "module.exports = extend;\n\nfunction extend(target){\n for (var i = 1; i < arguments.length; i++) {\n for (var prop in arguments[i]){\n target[prop] = arguments[i][prop];\n }\n }\n return target;\n};\n"
},
{
"id": 3,
"identifier": "/Users/adamk/Desktop/my/keen-analysis.js/node_modules/promise-polyfill/src/polyfill.js",
"name": "./node_modules/promise-polyfill/src/polyfill.js",
"index": 4,
"index2": 7,
"size": 658,
"cacheable": true,
"built": true,
"optional": false,
"prefetched": false,
"chunks": [
0
],
"issuer": "/Users/adamk/Desktop/my/keen-analysis.js/node_modules/babel-loader/lib/index.js!/Users/adamk/Desktop/my/keen-analysis.js/lib/request.js",
"issuerId": 13,
"issuerName": "./lib/request.js",
"issuerPath": [
{
"id": 22,
"identifier": "multi ./lib/browser.js",
"name": "multi ./lib/browser.js",
"profile": {
"factory": 1,
"building": 2
}
},
{
"id": 21,
"identifier": "/Users/adamk/Desktop/my/keen-analysis.js/node_modules/babel-loader/lib/index.js!/Users/adamk/Desktop/my/keen-analysis.js/lib/browser.js",
"name": "./lib/browser.js",
"profile": {
"factory": 34,
"building": 324
}
},
{
"id": 13,
"identifier": "/Users/adamk/Desktop/my/keen-analysis.js/node_modules/babel-loader/lib/index.js!/Users/adamk/Desktop/my/keen-analysis.js/lib/request.js",
"name": "./lib/request.js",
"profile": {
"factory": 297,
"building": 4,
"dependencies": 186
}
}
],
"profile": {
"factory": 193,
"building": 58,
"dependencies": 51
},
"failed": false,
"errors": 0,
"warnings": 0,
"assets": [],
"reasons": [
{
"moduleId": 10,
"moduleIdentifier": "/Users/adamk/Desktop/my/keen-analysis.js/node_modules/babel-loader/lib/index.js!/Users/adamk/Desktop/my/keen-analysis.js/lib/utils/cache-browser.js",
"module": "./lib/utils/cache-browser.js",
"moduleName": "./lib/utils/cache-browser.js",
"type": "cjs require",
"userRequest": "promise-polyfill/src/polyfill",
"loc": "10:0-40"
},
{
"moduleId": 11,
"moduleIdentifier": "/Users/adamk/Desktop/my/keen-analysis.js/node_modules/babel-loader/lib/index.js!/Users/adamk/Desktop/my/keen-analysis.js/lib/utils/http-browser.js",
"module": "./lib/utils/http-browser.js",
"moduleName": "./lib/utils/http-browser.js",
"type": "cjs require",
"userRequest": "promise-polyfill/src/polyfill",
"loc": "10:0-40"
},
{
"moduleId": 13,
"moduleIdentifier": "/Users/adamk/Desktop/my/keen-analysis.js/node_modules/babel-loader/lib/index.js!/Users/adamk/Desktop/my/keen-analysis.js/lib/request.js",
"module": "./lib/request.js",
"moduleName": "./lib/request.js",
"type": "cjs require",
"userRequest": "promise-polyfill/src/polyfill",
"loc": "23:0-40"
},
{
"moduleId": 20,
"moduleIdentifier": "/Users/adamk/Desktop/my/keen-analysis.js/node_modules/babel-loader/lib/index.js!/Users/adamk/Desktop/my/keen-analysis.js/lib/index.js",
"module": "./lib/index.js",
"moduleName": "./lib/index.js",
"type": "cjs require",
"userRequest": "promise-polyfill/src/polyfill",
"loc": "12:0-40"
}
],
"usedExports": true,
"providedExports": [],
"optimizationBailout": [
"ModuleConcatenation bailout: Module uses injected variables (global)"
],
"depth": 3,
"source": "import Promise from './index';\nimport promiseFinally from './finally';\n\nvar globalNS = (function() {\n // the only reliable means to get the global object is\n // `Function('return this')()`\n // However, this causes CSP violations in Chrome apps.\n if (typeof self !== 'undefined') {\n return self;\n }\n if (typeof window !== 'undefined') {\n return window;\n }\n if (typeof global !== 'undefined') {\n return global;\n }\n throw new Error('unable to locate global object');\n})();\n\nif (!globalNS.Promise) {\n globalNS.Promise = Promise;\n} else if (!globalNS.Promise.prototype['finally']) {\n globalNS.Promise.prototype['finally'] = promiseFinally;\n}\n"
},
{
"id": 4,
"identifier": "/Users/adamk/Desktop/my/keen-analysis.js/node_modules/promise-polyfill/src/finally.js",
"name": "./node_modules/promise-polyfill/src/finally.js",
"index": 10,
"index2": 5,
"size": 370,
"cacheable": true,
"built": true,
"optional": false,
"prefetched": false,
"chunks": [
0
],
"issuer": "/Users/adamk/Desktop/my/keen-analysis.js/node_modules/promise-polyfill/src/polyfill.js",
"issuerId": 3,
"issuerName": "./node_modules/promise-polyfill/src/polyfill.js",
"issuerPath": [
{
"id": 22,
"identifier": "multi ./lib/browser.js",
"name": "multi ./lib/browser.js",
"profile": {
"factory": 1,
"building": 2
}
},
{
"id": 21,
"identifier": "/Users/adamk/Desktop/my/keen-analysis.js/node_modules/babel-loader/lib/index.js!/Users/adamk/Desktop/my/keen-analysis.js/lib/browser.js",
"name": "./lib/browser.js",
"profile": {
"factory": 34,
"building": 324
}
},
{
"id": 13,
"identifier": "/Users/adamk/Desktop/my/keen-analysis.js/node_modules/babel-loader/lib/index.js!/Users/adamk/Desktop/my/keen-analysis.js/lib/request.js",
"name": "./lib/request.js",
"profile": {
"factory": 297,
"building": 4,
"dependencies": 186
}
},
{
"id": 3,
"identifier": "/Users/adamk/Desktop/my/keen-analysis.js/node_modules/promise-polyfill/src/polyfill.js",
"name": "./node_modules/promise-polyfill/src/polyfill.js",
"profile": {
"factory": 193,
"building": 58,
"dependencies": 51
}
}
],
"profile": {
"factory": 51,
"building": 15,
"dependencies": 1
},
"failed": false,
"errors": 0,
"warnings": 0,
"assets": [],
"reasons": [
{
"moduleId": 3,
"moduleIdentifier": "/Users/adamk/Desktop/my/keen-analysis.js/node_modules/promise-polyfill/src/polyfill.js",
"module": "./node_modules/promise-polyfill/src/polyfill.js",
"moduleName": "./node_modules/promise-polyfill/src/polyfill.js",
"type": "harmony side effect evaluation",
"userRequest": "./finally",
"loc": "2:0-39"
},
{
"moduleId": 3,
"moduleIdentifier": "/Users/adamk/Desktop/my/keen-analysis.js/node_modules/promise-polyfill/src/polyfill.js",
"module": "./node_modules/promise-polyfill/src/polyfill.js",
"moduleName": "./node_modules/promise-polyfill/src/polyfill.js",
"type": "harmony import specifier",
"userRequest": "./finally",
"loc": "23:42-56"
},
{
"moduleId": 8,
"moduleIdentifier": "/Users/adamk/Desktop/my/keen-analysis.js/node_modules/promise-polyfill/src/index.js",
"module": "./node_modules/promise-polyfill/src/index.js",
"moduleName": "./node_modules/promise-polyfill/src/index.js",
"type": "harmony side effect evaluation",
"userRequest": "./finally",
"loc": "1:0-39"
},
{
"moduleId": 8,
"moduleIdentifier": "/Users/adamk/Desktop/my/keen-analysis.js/node_modules/promise-polyfill/src/index.js",
"module": "./node_modules/promise-polyfill/src/index.js",
"moduleName": "./node_modules/promise-polyfill/src/index.js",
"type": "harmony import specifier",
"userRequest": "./finally",
"loc": "148:31-45"
}
],
"usedExports": [
"default"
],
"providedExports": [
"default"
],
"optimizationBailout": [],
"depth": 4,
"source": "export default function(callback) {\n var constructor = this.constructor;\n return this.then(\n function(value) {\n return constructor.resolve(callback()).then(function() {\n return value;\n });\n },\n function(reason) {\n return constructor.resolve(callback()).then(function() {\n return constructor.reject(reason);\n });\n }\n );\n}\n"
},
{
"id": 5,
"identifier": "/Users/adamk/Desktop/my/keen-analysis.js/node_modules/whatwg-fetch/fetch.js",
"name": "./node_modules/whatwg-fetch/fetch.js",
"index": 20,
"index2": 17,
"size": 13012,
"cacheable": true,
"built": true,
"optional": false,
"prefetched": false,
"chunks": [
0
],
"issuer": "/Users/adamk/Desktop/my/keen-analysis.js/node_modules/babel-loader/lib/index.js!/Users/adamk/Desktop/my/keen-analysis.js/lib/utils/http-browser.js",
"issuerId": 11,
"issuerName": "./lib/utils/http-browser.js",
"issuerPath": [
{
"id": 22,
"identifier": "multi ./lib/browser.js",
"name": "multi ./lib/browser.js",
"profile": {
"factory": 1,
"building": 2
}
},
{
"id": 21,
"identifier": "/Users/adamk/Desktop/my/keen-analysis.js/node_modules/babel-loader/lib/index.js!/Users/adamk/Desktop/my/keen-analysis.js/lib/browser.js",
"name": "./lib/browser.js",
"profile": {
"factory": 34,
"building": 324
}
},
{
"id": 11,
"identifier": "/Users/adamk/Desktop/my/keen-analysis.js/node_modules/babel-loader/lib/index.js!/Users/adamk/Desktop/my/keen-analysis.js/lib/utils/http-browser.js",
"name": "./lib/utils/http-browser.js",
"profile": {
"factory": 297,
"building": 4,
"dependencies": 186
}
}
],
"profile": {
"factory": 120,
"building": 14,
"dependencies": 65
},
"failed": false,
"errors": 0,
"warnings": 0,
"assets": [],
"reasons": [
{
"moduleId": 10,
"moduleIdentifier": "/Users/adamk/Desktop/my/keen-analysis.js/node_modules/babel-loader/lib/index.js!/Users/adamk/Desktop/my/keen-analysis.js/lib/utils/cache-browser.js",
"module": "./lib/utils/cache-browser.js",
"moduleName": "./lib/utils/cache-browser.js",
"type": "cjs require",
"userRequest": "whatwg-fetch",
"loc": "12:0-23"
},
{
"moduleId": 11,
"moduleIdentifier": "/Users/adamk/Desktop/my/keen-analysis.js/node_modules/babel-loader/lib/index.js!/Users/adamk/Desktop/my/keen-analysis.js/lib/utils/http-browser.js",
"module": "./lib/utils/http-browser.js",
"moduleName": "./lib/utils/http-browser.js",
"type": "cjs require",
"userRequest": "whatwg-fetch",
"loc": "12:0-23"
}
],
"usedExports": true,
"providedExports": null,
"optimizationBailout": [
"ModuleConcatenation bailout: Module is not an ECMAScript module"
],
"depth": 3,
"source": "(function(self) {\n 'use strict';\n\n if (self.fetch) {\n return\n }\n\n var support = {\n searchParams: 'URLSearchParams' in self,\n iterable: 'Symbol' in self && 'iterator' in Symbol,\n blob: 'FileReader' in self && 'Blob' in self && (function() {\n try {\n new Blob()\n return true\n } catch(e) {\n return false\n }\n })(),\n formData: 'FormData' in self,\n arrayBuffer: 'ArrayBuffer' in self\n }\n\n if (support.arrayBuffer) {\n var viewClasses = [\n '[object Int8Array]',\n '[object Uint8Array]',\n '[object Uint8ClampedArray]',\n '[object Int16Array]',\n '[object Uint16Array]',\n '[object Int32Array]',\n '[object Uint32Array]',\n '[object Float32Array]',\n '[object Float64Array]'\n ]\n\n var isDataView = function(obj) {\n return obj && DataView.prototype.isPrototypeOf(obj)\n }\n\n var isArrayBufferView = ArrayBuffer.isView || function(obj) {\n return obj && viewClasses.indexOf(Object.prototype.toString.call(obj)) > -1\n }\n }\n\n function normalizeName(name) {\n if (typeof name !== 'string') {\n name = String(name)\n }\n if (/[^a-z0-9\\-#$%&'*+.\\^_`|~]/i.test(name)) {\n throw new TypeError('Invalid character in header field name')\n }\n return name.toLowerCase()\n }\n\n function normalizeValue(value) {\n if (typeof value !== 'string') {\n value = String(value)\n }\n return value\n }\n\n // Build a destructive iterator for the value list\n function iteratorFor(items) {\n var iterator = {\n next: function() {\n var value = items.shift()\n return {done: value === undefined, value: value}\n }\n }\n\n if (support.iterable) {\n iterator[Symbol.iterator] = function() {\n return iterator\n }\n }\n\n return iterator\n }\n\n function Headers(headers) {\n this.map = {}\n\n if (headers instanceof Headers) {\n headers.forEach(function(value, name) {\n this.append(name, value)\n }, this)\n } else if (Array.isArray(headers)) {\n headers.forEach(function(header) {\n this.append(header[0], header[1])\n }, this)\n } else if (headers) {\n Object.getOwnPropertyNames(headers).forEach(function(name) {\n this.append(name, headers[name])\n }, this)\n }\n }\n\n Headers.prototype.append = function(name, value) {\n name = normalizeName(name)\n value = normalizeValue(value)\n var oldValue = this.map[name]\n this.map[name] = oldValue ? oldValue+','+value : value\n }\n\n Headers.prototype['delete'] = function(name) {\n delete this.map[normalizeName(name)]\n }\n\n Headers.prototype.get = function(name) {\n name = normalizeName(name)\n return this.has(name) ? this.map[name] : null\n }\n\n Headers.prototype.has = function(name) {\n return this.map.hasOwnProperty(normalizeName(name))\n }\n\n Headers.prototype.set = function(name, value) {\n this.map[normalizeName(name)] = normalizeValue(value)\n }\n\n Headers.prototype.forEach = function(callback, thisArg) {\n for (var name in this.map) {\n if (this.map.hasOwnProperty(name)) {\n callback.call(thisArg, this.map[name], name, this)\n }\n }\n }\n\n Headers.prototype.keys = function() {\n var items = []\n this.forEach(function(value, name) { items.push(name) })\n return iteratorFor(items)\n }\n\n Headers.prototype.values = function() {\n var items = []\n this.forEach(function(value) { items.push(value) })\n return iteratorFor(items)\n }\n\n Headers.prototype.entries = function() {\n var items = []\n this.forEach(function(value, name) { items.push([name, value]) })\n return iteratorFor(items)\n }\n\n if (support.iterable) {\n Headers.prototype[Symbol.iterator] = Headers.prototype.entries\n }\n\n function consumed(body) {\n if (body.bodyUsed) {\n return Promise.reject(new TypeError('Already read'))\n }\n body.bodyUsed = true\n }\n\n function fileReaderReady(reader) {\n return new Promise(function(resolve, reject) {\n reader.onload = function() {\n resolve(reader.result)\n }\n reader.onerror = function() {\n reject(reader.error)\n }\n })\n }\n\n function readBlobAsArrayBuffer(blob) {\n var reader = new FileReader()\n var promise = fileReaderReady(reader)\n reader.readAsArrayBuffer(blob)\n return promise\n }\n\n function readBlobAsText(blob) {\n var reader = new FileReader()\n var promise = fileReaderReady(reader)\n reader.readAsText(blob)\n return promise\n }\n\n function readArrayBufferAsText(buf) {\n var view = new Uint8Array(buf)\n var chars = new Array(view.length)\n\n for (var i = 0; i < view.length; i++) {\n chars[i] = String.fromCharCode(view[i])\n }\n return chars.join('')\n }\n\n function bufferClone(buf) {\n if (buf.slice) {\n return buf.slice(0)\n } else {\n var view = new Uint8Array(buf.byteLength)\n view.set(new Uint8Array(buf))\n return view.buffer\n }\n }\n\n function Body() {\n this.bodyUsed = false\n\n this._initBody = function(body) {\n this._bodyInit = body\n if (!body) {\n this._bodyText = ''\n } else if (typeof body === 'string') {\n this._bodyText = body\n } else if (support.blob && Blob.prototype.isPrototypeOf(body)) {\n this._bodyBlob = body\n } else if (support.formData && FormData.prototype.isPrototypeOf(body)) {\n this._bodyFormData = body\n } else if (support.searchParams && URLSearchParams.prototype.isPrototypeOf(body)) {\n this._bodyText = body.toString()\n } else if (support.arrayBuffer && support.blob && isDataView(body)) {\n this._bodyArrayBuffer = bufferClone(body.buffer)\n // IE 10-11 can't handle a DataView body.\n this._bodyInit = new Blob([this._bodyArrayBuffer])\n } else if (support.arrayBuffer && (ArrayBuffer.prototype.isPrototypeOf(body) || isArrayBufferView(body))) {\n this._bodyArrayBuffer = bufferClone(body)\n } else {\n throw new Error('unsupported BodyInit type')\n }\n\n if (!this.headers.get('content-type')) {\n if (typeof body === 'string') {\n this.headers.set('content-type', 'text/plain;charset=UTF-8')\n } else if (this._bodyBlob && this._bodyBlob.type) {\n this.headers.set('content-type', this._bodyBlob.type)\n } else if (support.searchParams && URLSearchParams.prototype.isPrototypeOf(body)) {\n this.headers.set('content-type', 'application/x-www-form-urlencoded;charset=UTF-8')\n }\n }\n }\n\n if (support.blob) {\n this.blob = function() {\n var rejected = consumed(this)\n if (rejected) {\n return rejected\n }\n\n if (this._bodyBlob) {\n return Promise.resolve(this._bodyBlob)\n } else if (this._bodyArrayBuffer) {\n return Promise.resolve(new Blob([this._bodyArrayBuffer]))\n } else if (this._bodyFormData) {\n throw new Error('could not read FormData body as blob')\n } else {\n return Promise.resolve(new Blob([this._bodyText]))\n }\n }\n\n this.arrayBuffer = function() {\n if (this._bodyArrayBuffer) {\n return consumed(this) || Promise.resolve(this._bodyArrayBuffer)\n } else {\n return this.blob().then(readBlobAsArrayBuffer)\n }\n }\n }\n\n this.text = function() {\n var rejected = consumed(this)\n if (rejected) {\n return rejected\n }\n\n if (this._bodyBlob) {\n return readBlobAsText(this._bodyBlob)\n } else if (this._bodyArrayBuffer) {\n return Promise.resolve(readArrayBufferAsText(this._bodyArrayBuffer))\n } else if (this._bodyFormData) {\n throw new Error('could not read FormData body as text')\n } else {\n return Promise.resolve(this._bodyText)\n }\n }\n\n if (support.formData) {\n this.formData = function() {\n return this.text().then(decode)\n }\n }\n\n this.json = function() {\n return this.text().then(JSON.parse)\n }\n\n return this\n }\n\n // HTTP methods whose capitalization should be normalized\n var methods = ['DELETE', 'GET', 'HEAD', 'OPTIONS', 'POST', 'PUT']\n\n function normalizeMethod(method) {\n var upcased = method.toUpperCase()\n return (methods.indexOf(upcased) > -1) ? upcased : method\n }\n\n function Request(input, options) {\n options = options || {}\n var body = options.body\n\n if (input instanceof Request) {\n if (input.bodyUsed) {\n throw new TypeError('Already read')\n }\n this.url = input.url\n this.credentials = input.credentials\n if (!options.headers) {\n this.headers = new Headers(input.headers)\n }\n this.method = input.method\n this.mode = input.mode\n if (!body && input._bodyInit != null) {\n body = input._bodyInit\n input.bodyUsed = true\n }\n } else {\n this.url = String(input)\n }\n\n this.credentials = options.credentials || this.credentials || 'omit'\n if (options.headers || !this.headers) {\n this.headers = new Headers(options.headers)\n }\n this.method = normalizeMethod(options.method || this.method || 'GET')\n this.mode = options.mode || this.mode || null\n this.referrer = null\n\n if ((this.method === 'GET' || this.method === 'HEAD') && body) {\n throw new TypeError('Body not allowed for GET or HEAD requests')\n }\n this._initBody(body)\n }\n\n Request.prototype.clone = function() {\n return new Request(this, { body: this._bodyInit })\n }\n\n function decode(body) {\n var form = new FormData()\n body.trim().split('&').forEach(function(bytes) {\n if (bytes) {\n var split = bytes.split('=')\n var name = split.shift().replace(/\\+/g, ' ')\n var value = split.join('=').replace(/\\+/g, ' ')\n form.append(decodeURIComponent(name), decodeURIComponent(value))\n }\n })\n return form\n }\n\n function parseHeaders(rawHeaders) {\n var headers = new Headers()\n // Replace instances of \\r\\n and \\n followed by at least one space or horizontal tab with a space\n // https://tools.ietf.org/html/rfc7230#section-3.2\n var preProcessedHeaders = rawHeaders.replace(/\\r?\\n[\\t ]+/g, ' ')\n preProcessedHeaders.split(/\\r?\\n/).forEach(function(line) {\n var parts = line.split(':')\n var key = parts.shift().trim()\n if (key) {\n var value = parts.join(':').trim()\n headers.append(key, value)\n }\n })\n return headers\n }\n\n Body.call(Request.prototype)\n\n function Response(bodyInit, options) {\n if (!options) {\n options = {}\n }\n\n this.type = 'default'\n this.status = options.status === undefined ? 200 : options.status\n this.ok = this.status >= 200 && this.status < 300\n this.statusText = 'statusText' in options ? options.statusText : 'OK'\n this.headers = new Headers(options.headers)\n this.url = options.url || ''\n this._initBody(bodyInit)\n }\n\n Body.call(Response.prototype)\n\n Response.prototype.clone = function() {\n return new Response(this._bodyInit, {\n status: this.status,\n statusText: this.statusText,\n headers: new Headers(this.headers),\n url: this.url\n })\n }\n\n Response.error = function() {\n var response = new Response(null, {status: 0, statusText: ''})\n response.type = 'error'\n return response\n }\n\n var redirectStatuses = [301, 302, 303, 307, 308]\n\n Response.redirect = function(url, status) {\n if (redirectStatuses.indexOf(status) === -1) {\n throw new RangeError('Invalid status code')\n }\n\n return new Response(null, {status: status, headers: {location: url}})\n }\n\n self.Headers = Headers\n self.Request = Request\n self.Response = Response\n\n self.fetch = function(input, init) {\n return new Promise(function(resolve, reject) {\n var request = new Request(input, init)\n var xhr = new XMLHttpRequest()\n\n xhr.onload = function() {\n var options = {\n status: xhr.status,\n statusText: xhr.statusText,\n headers: parseHeaders(xhr.getAllResponseHeaders() || '')\n }\n options.url = 'responseURL' in xhr ? xhr.responseURL : options.headers.get('X-Request-URL')\n var body = 'response' in xhr ? xhr.response : xhr.responseText\n resolve(new Response(body, options))\n }\n\n xhr.onerror = function() {\n reject(new TypeError('Network request failed'))\n }\n\n xhr.ontimeout = function() {\n reject(new TypeError('Network request failed'))\n }\n\n xhr.open(request.method, request.url, true)\n\n if (request.credentials === 'include') {\n xhr.withCredentials = true\n } else if (request.credentials === 'omit') {\n xhr.withCredentials = false\n }\n\n if ('responseType' in xhr && support.blob) {\n xhr.responseType = 'blob'\n }\n\n request.headers.forEach(function(value, name) {\n xhr.setRequestHeader(name, value)\n })\n\n xhr.send(typeof request._bodyInit === 'undefined' ? null : request._bodyInit)\n })\n }\n self.fetch.polyfill = true\n})(typeof self !== 'undefined' ? self : this);\n"
},
{
"id": 6,
"identifier": "/Users/adamk/Desktop/my/keen-analysis.js/package.json",
"name": "./package.json",
"index": 16,
"index2": 13,
"size": 3123,
"cacheable": true,
"built": true,
"optional": false,
"prefetched": false,
"chunks": [
0
],
"issuer": "/Users/adamk/Desktop/my/keen-analysis.js/node_modules/babel-loader/lib/index.js!/Users/adamk/Desktop/my/keen-analysis.js/lib/request.js",
"issuerId": 13,
"issuerName": "./lib/request.js",
"issuerPath": [
{
"id": 22,
"identifier": "multi ./lib/browser.js",
"name": "multi ./lib/browser.js",
"profile": {
"factory": 1,
"building": 2
}
},
{
"id": 21,
"identifier": "/Users/adamk/Desktop/my/keen-analysis.js/node_modules/babel-loader/lib/index.js!/Users/adamk/Desktop/my/keen-analysis.js/lib/browser.js",
"name": "./lib/browser.js",
"profile": {
"factory": 34,
"building": 324
}
},
{
"id": 13,
"identifier": "/Users/adamk/Desktop/my/keen-analysis.js/node_modules/babel-loader/lib/index.js!/Users/adamk/Desktop/my/keen-analysis.js/lib/request.js",
"name": "./lib/request.js",
"profile": {
"factory": 297,
"building": 4,
"dependencies": 186
}
}
],
"profile": {
"factory": 193,
"building": 58,
"dependencies": 51
},
"failed": false,
"errors": 0,
"warnings": 0,
"assets": [],
"reasons": [
{
"moduleId": 13,
"moduleIdentifier": "/Users/adamk/Desktop/my/keen-analysis.js/node_modules/babel-loader/lib/index.js!/Users/adamk/Desktop/my/keen-analysis.js/lib/request.js",
"module": "./lib/request.js",
"moduleName": "./lib/request.js",
"type": "cjs require",
"userRequest": "../package.json",
"loc": "25:15-41"
},
{
"moduleId": 20,
"moduleIdentifier": "/Users/adamk/Desktop/my/keen-analysis.js/node_modules/babel-loader/lib/index.js!/Users/adamk/Desktop/my/keen-analysis.js/lib/index.js",
"module": "./lib/index.js",
"moduleName": "./lib/index.js",
"type": "cjs require",
"userRequest": "../package.json",
"loc": "26:15-41"
}
],
"usedExports": true,
"providedExports": [
"name",
"version",
"description",
"main",
"browser",
"scripts",
"repository",
"author",
"homepage",
"contributors",
"keywords",
"license",
"bugs",
"dependencies",
"devDependencies",
"default"
],
"optimizationBailout": [
"ModuleConcatenation bailout: Module is not an ECMAScript module"
],
"depth": 3,
"source": "{\n \"name\": \"keen-analysis\",\n \"version\": \"3.3.3\",\n \"description\": \"A JavaScript client for Keen.IO\",\n \"main\": \"dist/node/keen-analysis.js\",\n \"browser\": \"dist/keen-analysis.js\",\n \"scripts\": {\n \"start\": \"NODE_ENV=development webpack-dev-server\",\n \"test\": \"NODE_ENV=test jest && npm run test:node\",\n \"test:node\": \"NODE_ENV=test TEST_ENV=node jest\",\n \"test:watch\": \"NODE_ENV=test jest --watch\",\n \"test:node:watch\": \"NODE_ENV=test TEST_ENV=node jest --watch\",\n \"build\": \"NODE_ENV=production webpack -p && NODE_ENV=production OPTIMIZE_MINIMIZE=1 webpack -p && npm run build:node && npm run build:modules && npm run build:modules:node\",\n \"build:node\": \"TARGET=node NODE_ENV=production webpack -p\",\n \"build:modules\": \"NODE_ENV=production webpack -p --config webpack.modules.config.js\",\n \"build:modules:node\": \"NODE_ENV=production TARGET=node webpack -p --config webpack.modules.config.js\",\n \"profile\": \"webpack --profile --json > stats.json\",\n \"analyze\": \"webpack-bundle-analyzer stats.json /dist\",\n \"preversion\": \"npm run build:node && npm run test\",\n \"version\": \"npm run build && git add .\",\n \"postversion\": \"git push && git push --tags\",\n \"demo\": \"node ./test/demo/index.node.js\"\n },\n \"repository\": {\n \"type\": \"git\",\n \"url\": \"git+https://github.com/keen/keen-analysis.js.git\"\n },\n \"author\": \"Keen IO <team@keen.io>\",\n \"homepage\": \"https://keen.io\",\n \"contributors\": [\n \"Dustin Larimer <dustin@keen.io> (https://github.com/dustinlarimer)\",\n \"Adam Kasprowicz <adam.kasprowicz@keen.io> (https://github.com/adamkasprowicz)\",\n \"Dariusz Łacheta <dariusz.lacheta@keen.io> (https://github.com/dariuszlacheta)\"\n ],\n \"keywords\": [\n \"Analytics\",\n \"Analysis\",\n \"Conversion\",\n \"Query\",\n \"Stats\",\n \"Client\",\n \"Min\",\n \"Max\",\n \"Count\",\n \"Percentile\",\n \"Average\",\n \"Median\",\n \"Keen\",\n \"Keen Query\"\n ],\n \"license\": \"MIT\",\n \"bugs\": {\n \"url\": \"https://github.com/keen/keen-analysis.js/issues\"\n },\n \"dependencies\": {\n \"crossfilter2\": \"^1.4.6\",\n \"csvtojson\": \"^2.0.8\",\n \"keen-core\": \"^0.2.0\",\n \"moment\": \"^2.22.2\",\n \"promise-polyfill\": \"^8.0.0\",\n \"whatwg-fetch\": \"^2.0.4\"\n },\n \"devDependencies\": {\n \"abortcontroller-polyfill\": \"^1.1.9\",\n \"babel-loader\": \"^7.1.4\",\n \"babel-plugin-transform-es2015-modules-commonjs\": \"^6.26.2\",\n \"babel-plugin-transform-object-rest-spread\": \"^6.26.0\",\n \"babel-preset-env\": \"^1.7.0\",\n \"del\": \"^2.1.0\",\n \"eslint\": \"^4.19.1\",\n \"eslint-config-airbnb\": \"^16.1.0\",\n \"eslint-loader\": \"^2.0.0\",\n \"eslint-plugin-import\": \"^2.11.0\",\n \"eslint-plugin-jsx-a11y\": \"^6.0.3\",\n \"fake-indexeddb\": \"^2.0.4\",\n \"html-loader\": \"^0.5.5\",\n \"html-webpack-plugin\": \"^3.2.0\",\n \"jest\": \"^22.4.3\",\n \"jest-fetch-mock\": \"^1.6.5\",\n \"merge\": \"^1.2.1\",\n \"nock\": \"^9.2.6\",\n \"regenerator-runtime\": \"^0.11.1\",\n \"requirejs\": \"^2.1.22\",\n \"through2\": \"^2.0.0\",\n \"url-parse\": \"^1.4.3\",\n \"webpack\": \"^4.5.0\",\n \"webpack-bundle-analyzer\": \"^2.11.1\",\n \"webpack-cli\": \"^2.0.13\",\n \"webpack-dev-server\": \"^3.1.14\",\n \"xhr-mock\": \"^2.3.2\"\n }\n}\n"
},
{
"id": 7,
"identifier": "/Users/adamk/Desktop/my/keen-analysis.js/node_modules/keen-core/lib/utils/serialize.js",
"name": "./node_modules/keen-core/lib/utils/serialize.js",
"index": 14,
"index2": 10,
"size": 342,
"cacheable": true,
"built": true,
"optional": false,
"prefetched": false,
"chunks": [
0
],
"issuer": "/Users/adamk/Desktop/my/keen-analysis.js/node_modules/babel-loader/lib/index.js!/Users/adamk/Desktop/my/keen-analysis.js/lib/utils/http-browser.js",
"issuerId": 11,
"issuerName": "./lib/utils/http-browser.js",
"issuerPath": [
{
"id": 22,
"identifier": "multi ./lib/browser.js",
"name": "multi ./lib/browser.js",
"profile": {
"factory": 1,
"building": 2
}
},
{
"id": 21,
"identifier": "/Users/adamk/Desktop/my/keen-analysis.js/node_modules/babel-loader/lib/index.js!/Users/adamk/Desktop/my/keen-analysis.js/lib/browser.js",
"name": "./lib/browser.js",
"profile": {
"factory": 34,
"building": 324
}
},
{
"id": 11,
"identifier": "/Users/adamk/Desktop/my/keen-analysis.js/node_modules/babel-loader/lib/index.js!/Users/adamk/Desktop/my/keen-analysis.js/lib/utils/http-browser.js",
"name": "./lib/utils/http-browser.js",
"profile": {
"factory": 297,
"building": 4,
"dependencies": 186
}
}
],
"profile": {
"factory": 120,
"building": 14,
"dependencies": 65
},
"failed": false,
"errors": 0,
"warnings": 0,
"assets": [],
"reasons": [
{
"moduleId": 11,
"moduleIdentifier": "/Users/adamk/Desktop/my/keen-analysis.js/node_modules/babel-loader/lib/index.js!/Users/adamk/Desktop/my/keen-analysis.js/lib/utils/http-browser.js",
"module": "./lib/utils/http-browser.js",
"moduleName": "./lib/utils/http-browser.js",
"type": "cjs require",
"userRequest": "keen-core/lib/utils/serialize",
"loc": "18:17-57"
},
{
"moduleId": 16,
"moduleIdentifier": "/Users/adamk/Desktop/my/keen-analysis.js/node_modules/keen-core/lib/index.js",
"module": "./node_modules/keen-core/lib/index.js",
"moduleName": "./node_modules/keen-core/lib/index.js",
"type": "cjs require",
"userRequest": "./utils/serialize",
"loc": "6:18-46"
}
],
"usedExports": true,
"providedExports": null,
"optimizationBailout": [
"ModuleConcatenation bailout: Module is not an ECMAScript module"
],
"depth": 3,
"source": "var each = require('./each'),\n extend = require('./extend');\n\nmodule.exports = serialize;\n\nfunction serialize(data){\n var query = [];\n each(data, function(value, key){\n if ('string' !== typeof value) {\n value = JSON.stringify(value);\n }\n query.push(key + '=' + encodeURIComponent(value));\n });\n return query.join('&');\n}\n"
},
{
"id": 8,
"identifier": "/Users/adamk/Desktop/my/keen-analysis.js/node_modules/promise-polyfill/src/index.js",
"name": "./node_modules/promise-polyfill/src/index.js",
"index": 6,
"index2": 6,
"size": 5530,
"cacheable": true,
"built": true,
"optional": false,
"prefetched": false,
"chunks": [
0
],
"issuer": "/Users/adamk/Desktop/my/keen-analysis.js/node_modules/promise-polyfill/src/polyfill.js",
"issuerId": 3,
"issuerName": "./node_modules/promise-polyfill/src/polyfill.js",
"issuerPath": [
{
"id": 22,
"identifier": "multi ./lib/browser.js",
"name": "multi ./lib/browser.js",
"profile": {
"factory": 1,
"building": 2
}
},
{
"id": 21,
"identifier": "/Users/adamk/Desktop/my/keen-analysis.js/node_modules/babel-loader/lib/index.js!/Users/adamk/Desktop/my/keen-analysis.js/lib/browser.js",
"name": "./lib/browser.js",
"profile": {
"factory": 34,
"building": 324
}
},
{
"id": 13,
"identifier": "/Users/adamk/Desktop/my/keen-analysis.js/node_modules/babel-loader/lib/index.js!/Users/adamk/Desktop/my/keen-analysis.js/lib/request.js",
"name": "./lib/request.js",
"profile": {
"factory": 297,
"building": 4,
"dependencies": 186
}
},
{
"id": 3,
"identifier": "/Users/adamk/Desktop/my/keen-analysis.js/node_modules/promise-polyfill/src/polyfill.js",
"name": "./node_modules/promise-polyfill/src/polyfill.js",
"profile": {
"factory": 193,
"building": 58,
"dependencies": 51
}
}
],
"profile": {
"factory": 51,
"building": 15,
"dependencies": 1
},
"failed": false,
"errors": 0,
"warnings": 0,
"assets": [],
"reasons": [
{
"moduleId": 3,
"moduleIdentifier": "/Users/adamk/Desktop/my/keen-analysis.js/node_modules/promise-polyfill/src/polyfill.js",
"module": "./node_modules/promise-polyfill/src/polyfill.js",
"moduleName": "./node_modules/promise-polyfill/src/polyfill.js",
"type": "harmony side effect evaluation",
"userRequest": "./index",
"loc": "1:0-30"
},
{
"moduleId": 3,
"moduleIdentifier": "/Users/adamk/Desktop/my/keen-analysis.js/node_modules/promise-polyfill/src/polyfill.js",
"module": "./node_modules/promise-polyfill/src/polyfill.js",
"moduleName": "./node_modules/promise-polyfill/src/polyfill.js",
"type": "harmony import specifier",
"userRequest": "./index",
"loc": "21:21-28"
}
],
"usedExports": [
"default"
],
"providedExports": [
"default"
],
"optimizationBailout": [
"ModuleConcatenation bailout: Module uses injected variables (setImmediate)"
],