-
Notifications
You must be signed in to change notification settings - Fork 9
/
package-lock.json
1622 lines (1622 loc) · 76.4 KB
/
package-lock.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
{
"name": "should-sinon",
"version": "0.0.6",
"lockfileVersion": 1,
"requires": true,
"dependencies": {
"align-text": {
"version": "http://nexus.ingo-internal.net/content/groups/npm_group/align-text/-/align-text-0.1.4.tgz",
"integrity": "sha1-DNkKVhCT810KmSVsIrcGlDP60Rc=",
"dev": true,
"requires": {
"kind-of": "https://registry.npmjs.org/kind-of/-/kind-of-3.0.4.tgz",
"longest": "http://nexus.ingo-internal.net/content/groups/npm_group/longest/-/longest-1.0.1.tgz",
"repeat-string": "http://nexus.ingo-internal.net/content/groups/npm_group/repeat-string/-/repeat-string-1.5.4.tgz"
}
},
"amdefine": {
"version": "http://nexus.ingo-internal.net/content/groups/npm_group/amdefine/-/amdefine-1.0.0.tgz",
"integrity": "sha1-/RdHRwDLXMnCtwnwvp0jzjwZjDM=",
"dev": true
},
"ansi-escapes": {
"version": "http://nexus.ingo-internal.net/content/groups/npm_group/ansi-escapes/-/ansi-escapes-1.4.0.tgz",
"integrity": "sha1-06ioOzGapneTZisT52HHkRQiMG4=",
"dev": true
},
"ansi-regex": {
"version": "http://nexus.ingo-internal.net/content/groups/npm_group/ansi-regex/-/ansi-regex-2.0.0.tgz",
"integrity": "sha1-xQYbbg74qBd15Q9dZhUb9r83EQc=",
"dev": true
},
"ansi-styles": {
"version": "http://nexus.ingo-internal.net/content/groups/npm_group/ansi-styles/-/ansi-styles-2.2.1.tgz",
"integrity": "sha1-tDLdM1i2NM914eRmQ2gkBTPB3b4=",
"dev": true
},
"argparse": {
"version": "http://nexus.ingo-internal.net/content/groups/npm_group/argparse/-/argparse-1.0.7.tgz",
"integrity": "sha1-wolQZIBVeBDxSovGLXoG9j7X+VE=",
"dev": true,
"requires": {
"sprintf-js": "http://nexus.ingo-internal.net/content/groups/npm_group/sprintf-js/-/sprintf-js-1.0.3.tgz"
}
},
"array-union": {
"version": "http://nexus.ingo-internal.net/content/groups/npm_group/array-union/-/array-union-1.0.2.tgz",
"integrity": "sha1-mjRBDk9OPaI96jdb5b5w8kd47Dk=",
"dev": true,
"requires": {
"array-uniq": "http://nexus.ingo-internal.net/content/groups/npm_group/array-uniq/-/array-uniq-1.0.3.tgz"
}
},
"array-uniq": {
"version": "http://nexus.ingo-internal.net/content/groups/npm_group/array-uniq/-/array-uniq-1.0.3.tgz",
"integrity": "sha1-r2rId6Jcx/dOBYiUdThY39sk/bY=",
"dev": true
},
"arrify": {
"version": "http://nexus.ingo-internal.net/content/groups/npm_group/arrify/-/arrify-1.0.1.tgz",
"integrity": "sha1-iYUI2iIm84DfkEcoRWhJwVAaSw0=",
"dev": true
},
"async": {
"version": "http://nexus.ingo-internal.net/content/groups/npm_group/async/-/async-1.5.2.tgz",
"integrity": "sha1-7GphrlZIDAw8skHJVhjiCJL5Zyo=",
"dev": true
},
"balanced-match": {
"version": "https://registry.npmjs.org/balanced-match/-/balanced-match-0.4.2.tgz",
"integrity": "sha1-yz8+PHMtwPAe5wtAPzAuYddwmDg=",
"dev": true
},
"brace-expansion": {
"version": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.6.tgz",
"integrity": "sha1-cZfX6qm4fmSDkOph/GbIRCdCDfk=",
"dev": true,
"requires": {
"balanced-match": "https://registry.npmjs.org/balanced-match/-/balanced-match-0.4.2.tgz",
"concat-map": "http://nexus.ingo-internal.net/content/groups/npm_group/concat-map/-/concat-map-0.0.1.tgz"
}
},
"browser-stdout": {
"version": "1.3.0",
"resolved": "https://registry.npmjs.org/browser-stdout/-/browser-stdout-1.3.0.tgz",
"integrity": "sha1-81HTKWnTL6XXpVZxVCY9korjvR8=",
"dev": true
},
"camelcase": {
"version": "http://nexus.ingo-internal.net/content/groups/npm_group/camelcase/-/camelcase-1.2.1.tgz",
"integrity": "sha1-m7UwTS4LVmmLLHWLCKPqqdqlijk=",
"dev": true,
"optional": true
},
"center-align": {
"version": "http://nexus.ingo-internal.net/content/groups/npm_group/center-align/-/center-align-0.1.3.tgz",
"integrity": "sha1-qg0yYptu6XIgBBHL1EYckHvCt60=",
"dev": true,
"optional": true,
"requires": {
"align-text": "http://nexus.ingo-internal.net/content/groups/npm_group/align-text/-/align-text-0.1.4.tgz",
"lazy-cache": "http://nexus.ingo-internal.net/content/groups/npm_group/lazy-cache/-/lazy-cache-1.0.4.tgz"
}
},
"chalk": {
"version": "http://nexus.ingo-internal.net/content/groups/npm_group/chalk/-/chalk-1.1.3.tgz",
"integrity": "sha1-qBFcVeSnAv5NFQq9OHKCKn4J/Jg=",
"dev": true,
"requires": {
"ansi-styles": "http://nexus.ingo-internal.net/content/groups/npm_group/ansi-styles/-/ansi-styles-2.2.1.tgz",
"escape-string-regexp": "http://nexus.ingo-internal.net/content/groups/npm_group/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz",
"has-ansi": "http://nexus.ingo-internal.net/content/groups/npm_group/has-ansi/-/has-ansi-2.0.0.tgz",
"strip-ansi": "http://nexus.ingo-internal.net/content/groups/npm_group/strip-ansi/-/strip-ansi-3.0.1.tgz",
"supports-color": "http://nexus.ingo-internal.net/content/groups/npm_group/supports-color/-/supports-color-2.0.0.tgz"
}
},
"circular-json": {
"version": "https://registry.npmjs.org/circular-json/-/circular-json-0.3.1.tgz",
"integrity": "sha1-vos2rvzN6LPKeqLWr8B6NyQsDS0=",
"dev": true
},
"cli-cursor": {
"version": "http://nexus.ingo-internal.net/content/groups/npm_group/cli-cursor/-/cli-cursor-1.0.2.tgz",
"integrity": "sha1-ZNo/fValRBLll5S9Ytw1KV6PKYc=",
"dev": true,
"requires": {
"restore-cursor": "http://nexus.ingo-internal.net/content/groups/npm_group/restore-cursor/-/restore-cursor-1.0.1.tgz"
}
},
"cli-width": {
"version": "https://registry.npmjs.org/cli-width/-/cli-width-1.1.1.tgz",
"integrity": "sha1-pNKT72frt7iNSk1CwMzwDE0eNm0=",
"dev": true
},
"cliui": {
"version": "http://nexus.ingo-internal.net/content/groups/npm_group/cliui/-/cliui-2.1.0.tgz",
"integrity": "sha1-S0dXYP+AJkx2LDoXGQMukcf+oNE=",
"dev": true,
"optional": true,
"requires": {
"center-align": "http://nexus.ingo-internal.net/content/groups/npm_group/center-align/-/center-align-0.1.3.tgz",
"right-align": "http://nexus.ingo-internal.net/content/groups/npm_group/right-align/-/right-align-0.1.3.tgz",
"wordwrap": "http://nexus.ingo-internal.net/content/groups/npm_group/wordwrap/-/wordwrap-0.0.2.tgz"
},
"dependencies": {
"wordwrap": {
"version": "http://nexus.ingo-internal.net/content/groups/npm_group/wordwrap/-/wordwrap-0.0.2.tgz",
"integrity": "sha1-t5Zpu0LstAn4PVg8rVLKF+qhZD8=",
"dev": true,
"optional": true
}
}
},
"code-point-at": {
"version": "http://nexus.ingo-internal.net/content/groups/npm_group/code-point-at/-/code-point-at-1.0.0.tgz",
"integrity": "sha1-9psZLT99keOC5Lcb3bd4eGGasMY=",
"dev": true,
"requires": {
"number-is-nan": "http://nexus.ingo-internal.net/content/groups/npm_group/number-is-nan/-/number-is-nan-1.0.0.tgz"
}
},
"commander": {
"version": "2.9.0",
"resolved": "https://registry.npmjs.org/commander/-/commander-2.9.0.tgz",
"integrity": "sha1-nJkJQXbhIkDLItbFFGCYQA/g99Q=",
"dev": true,
"requires": {
"graceful-readlink": "1.0.1"
}
},
"concat-map": {
"version": "http://nexus.ingo-internal.net/content/groups/npm_group/concat-map/-/concat-map-0.0.1.tgz",
"integrity": "sha1-2Klr13/Wjfd5OnMDajug1UBdR3s=",
"dev": true
},
"concat-stream": {
"version": "http://nexus.ingo-internal.net/content/groups/npm_group/concat-stream/-/concat-stream-1.5.1.tgz",
"integrity": "sha1-87gKz54fSOOHXAaItBtsMWAu6hw=",
"dev": true,
"requires": {
"inherits": "http://nexus.ingo-internal.net/content/groups/npm_group/inherits/-/inherits-2.0.1.tgz",
"readable-stream": "http://nexus.ingo-internal.net/content/groups/npm_group/readable-stream/-/readable-stream-2.0.6.tgz",
"typedarray": "http://nexus.ingo-internal.net/content/groups/npm_group/typedarray/-/typedarray-0.0.6.tgz"
}
},
"core-util-is": {
"version": "http://nexus.ingo-internal.net/content/groups/npm_group/core-util-is/-/core-util-is-1.0.2.tgz",
"integrity": "sha1-tf1UIgqivFq1eqtxQMlAdUUDwac=",
"dev": true
},
"d": {
"version": "http://nexus.ingo-internal.net/content/groups/npm_group/d/-/d-0.1.1.tgz",
"integrity": "sha1-2hhMU10Y2O57oqoim5FACfrhEwk=",
"dev": true,
"requires": {
"es5-ext": "https://registry.npmjs.org/es5-ext/-/es5-ext-0.10.12.tgz"
}
},
"data-uri-to-buffer": {
"version": "0.0.4",
"resolved": "https://registry.npmjs.org/data-uri-to-buffer/-/data-uri-to-buffer-0.0.4.tgz",
"integrity": "sha1-RuE6udqOMJdFyNAc5UchPr2y/j8=",
"dev": true
},
"debug": {
"version": "http://nexus.ingo-internal.net/content/groups/npm_group/debug/-/debug-2.2.0.tgz",
"integrity": "sha1-+HBX6ZWxofauaklgZkE3vFbwOdo=",
"dev": true,
"requires": {
"ms": "http://nexus.ingo-internal.net/content/groups/npm_group/ms/-/ms-0.7.1.tgz"
}
},
"decamelize": {
"version": "http://nexus.ingo-internal.net/content/groups/npm_group/decamelize/-/decamelize-1.2.0.tgz",
"integrity": "sha1-9lNNFRSCabIDUue+4m9QH5oZEpA=",
"dev": true,
"optional": true
},
"deep-is": {
"version": "http://nexus.ingo-internal.net/content/groups/npm_group/deep-is/-/deep-is-0.1.3.tgz",
"integrity": "sha1-s2nW+128E+7PUk+RsHD+7cNXzzQ=",
"dev": true
},
"del": {
"version": "http://nexus.ingo-internal.net/content/groups/npm_group/del/-/del-2.2.1.tgz",
"integrity": "sha1-9nYwJkciCcTwNJERxawoCGi+xP4=",
"dev": true,
"requires": {
"globby": "http://nexus.ingo-internal.net/content/groups/npm_group/globby/-/globby-5.0.0.tgz",
"is-path-cwd": "http://nexus.ingo-internal.net/content/groups/npm_group/is-path-cwd/-/is-path-cwd-1.0.0.tgz",
"is-path-in-cwd": "http://nexus.ingo-internal.net/content/groups/npm_group/is-path-in-cwd/-/is-path-in-cwd-1.0.0.tgz",
"object-assign": "http://nexus.ingo-internal.net/content/groups/npm_group/object-assign/-/object-assign-4.1.0.tgz",
"pify": "http://nexus.ingo-internal.net/content/groups/npm_group/pify/-/pify-2.3.0.tgz",
"pinkie-promise": "http://nexus.ingo-internal.net/content/groups/npm_group/pinkie-promise/-/pinkie-promise-2.0.1.tgz",
"rimraf": "https://registry.npmjs.org/rimraf/-/rimraf-2.5.4.tgz"
}
},
"diff": {
"version": "3.2.0",
"resolved": "https://registry.npmjs.org/diff/-/diff-3.2.0.tgz",
"integrity": "sha1-yc45Okt8vQsFinJck98pkCeGj/k=",
"dev": true
},
"doctrine": {
"version": "https://registry.npmjs.org/doctrine/-/doctrine-0.7.2.tgz",
"integrity": "sha1-fLhgNZujvpDgQLJrcpzkv6ZUxSM=",
"dev": true,
"requires": {
"esutils": "http://nexus.ingo-internal.net/content/groups/npm_group/esutils/-/esutils-1.1.6.tgz",
"isarray": "http://nexus.ingo-internal.net/content/groups/npm_group/isarray/-/isarray-0.0.1.tgz"
},
"dependencies": {
"esutils": {
"version": "http://nexus.ingo-internal.net/content/groups/npm_group/esutils/-/esutils-1.1.6.tgz",
"integrity": "sha1-wBzKqa5LiXxtDD4hCuUvPHqEQ3U=",
"dev": true
},
"isarray": {
"version": "http://nexus.ingo-internal.net/content/groups/npm_group/isarray/-/isarray-0.0.1.tgz",
"integrity": "sha1-ihis/Kmo9Bd+Cav8YDiTmwXR7t8=",
"dev": true
}
}
},
"es5-ext": {
"version": "https://registry.npmjs.org/es5-ext/-/es5-ext-0.10.12.tgz",
"integrity": "sha1-qoRkHU23a2Krul5F/YBey6sUAEc=",
"dev": true,
"requires": {
"es6-iterator": "http://nexus.ingo-internal.net/content/groups/npm_group/es6-iterator/-/es6-iterator-2.0.0.tgz",
"es6-symbol": "http://nexus.ingo-internal.net/content/groups/npm_group/es6-symbol/-/es6-symbol-3.1.0.tgz"
}
},
"es6-iterator": {
"version": "http://nexus.ingo-internal.net/content/groups/npm_group/es6-iterator/-/es6-iterator-2.0.0.tgz",
"integrity": "sha1-vZaFZ9YWNeM8C4BydhPJy0sJa6w=",
"dev": true,
"requires": {
"d": "http://nexus.ingo-internal.net/content/groups/npm_group/d/-/d-0.1.1.tgz",
"es5-ext": "https://registry.npmjs.org/es5-ext/-/es5-ext-0.10.12.tgz",
"es6-symbol": "http://nexus.ingo-internal.net/content/groups/npm_group/es6-symbol/-/es6-symbol-3.1.0.tgz"
}
},
"es6-map": {
"version": "http://nexus.ingo-internal.net/content/groups/npm_group/es6-map/-/es6-map-0.1.4.tgz",
"integrity": "sha1-o0sUe+IkdzpNfagHJ5TO+jYyuJc=",
"dev": true,
"requires": {
"d": "http://nexus.ingo-internal.net/content/groups/npm_group/d/-/d-0.1.1.tgz",
"es5-ext": "https://registry.npmjs.org/es5-ext/-/es5-ext-0.10.12.tgz",
"es6-iterator": "http://nexus.ingo-internal.net/content/groups/npm_group/es6-iterator/-/es6-iterator-2.0.0.tgz",
"es6-set": "http://nexus.ingo-internal.net/content/groups/npm_group/es6-set/-/es6-set-0.1.4.tgz",
"es6-symbol": "http://nexus.ingo-internal.net/content/groups/npm_group/es6-symbol/-/es6-symbol-3.1.0.tgz",
"event-emitter": "http://nexus.ingo-internal.net/content/groups/npm_group/event-emitter/-/event-emitter-0.3.4.tgz"
}
},
"es6-set": {
"version": "http://nexus.ingo-internal.net/content/groups/npm_group/es6-set/-/es6-set-0.1.4.tgz",
"integrity": "sha1-lRa2dhwpZLkv9HlFYjOiR9xwfOg=",
"dev": true,
"requires": {
"d": "http://nexus.ingo-internal.net/content/groups/npm_group/d/-/d-0.1.1.tgz",
"es5-ext": "https://registry.npmjs.org/es5-ext/-/es5-ext-0.10.12.tgz",
"es6-iterator": "http://nexus.ingo-internal.net/content/groups/npm_group/es6-iterator/-/es6-iterator-2.0.0.tgz",
"es6-symbol": "http://nexus.ingo-internal.net/content/groups/npm_group/es6-symbol/-/es6-symbol-3.1.0.tgz",
"event-emitter": "http://nexus.ingo-internal.net/content/groups/npm_group/event-emitter/-/event-emitter-0.3.4.tgz"
}
},
"es6-symbol": {
"version": "http://nexus.ingo-internal.net/content/groups/npm_group/es6-symbol/-/es6-symbol-3.1.0.tgz",
"integrity": "sha1-lEgcZV56fK2C66gy2X1UM0ltf/o=",
"dev": true,
"requires": {
"d": "http://nexus.ingo-internal.net/content/groups/npm_group/d/-/d-0.1.1.tgz",
"es5-ext": "https://registry.npmjs.org/es5-ext/-/es5-ext-0.10.12.tgz"
}
},
"es6-weak-map": {
"version": "http://nexus.ingo-internal.net/content/groups/npm_group/es6-weak-map/-/es6-weak-map-2.0.1.tgz",
"integrity": "sha1-DSu9iCfrX7S6j5f7/qUNQ9sh6oE=",
"dev": true,
"requires": {
"d": "http://nexus.ingo-internal.net/content/groups/npm_group/d/-/d-0.1.1.tgz",
"es5-ext": "https://registry.npmjs.org/es5-ext/-/es5-ext-0.10.12.tgz",
"es6-iterator": "http://nexus.ingo-internal.net/content/groups/npm_group/es6-iterator/-/es6-iterator-2.0.0.tgz",
"es6-symbol": "http://nexus.ingo-internal.net/content/groups/npm_group/es6-symbol/-/es6-symbol-3.1.0.tgz"
}
},
"escape-string-regexp": {
"version": "http://nexus.ingo-internal.net/content/groups/npm_group/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz",
"integrity": "sha1-G2HAViGQqN/2rjuyzwIAyhMLhtQ=",
"dev": true
},
"escope": {
"version": "http://nexus.ingo-internal.net/content/groups/npm_group/escope/-/escope-3.6.0.tgz",
"integrity": "sha1-4Bl16BJ4GhY6ba392AOY3GTIicM=",
"dev": true,
"requires": {
"es6-map": "http://nexus.ingo-internal.net/content/groups/npm_group/es6-map/-/es6-map-0.1.4.tgz",
"es6-weak-map": "http://nexus.ingo-internal.net/content/groups/npm_group/es6-weak-map/-/es6-weak-map-2.0.1.tgz",
"esrecurse": "http://nexus.ingo-internal.net/content/groups/npm_group/esrecurse/-/esrecurse-4.1.0.tgz",
"estraverse": "http://nexus.ingo-internal.net/content/groups/npm_group/estraverse/-/estraverse-4.2.0.tgz"
}
},
"eslint": {
"version": "https://registry.npmjs.org/eslint/-/eslint-1.10.3.tgz",
"integrity": "sha1-+xmpGxPBWAgrvKKUsX2Xm8g1Ogo=",
"dev": true,
"requires": {
"chalk": "http://nexus.ingo-internal.net/content/groups/npm_group/chalk/-/chalk-1.1.3.tgz",
"concat-stream": "http://nexus.ingo-internal.net/content/groups/npm_group/concat-stream/-/concat-stream-1.5.1.tgz",
"debug": "http://nexus.ingo-internal.net/content/groups/npm_group/debug/-/debug-2.2.0.tgz",
"doctrine": "https://registry.npmjs.org/doctrine/-/doctrine-0.7.2.tgz",
"escape-string-regexp": "http://nexus.ingo-internal.net/content/groups/npm_group/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz",
"escope": "http://nexus.ingo-internal.net/content/groups/npm_group/escope/-/escope-3.6.0.tgz",
"espree": "https://registry.npmjs.org/espree/-/espree-2.2.5.tgz",
"estraverse": "http://nexus.ingo-internal.net/content/groups/npm_group/estraverse/-/estraverse-4.2.0.tgz",
"estraverse-fb": "https://registry.npmjs.org/estraverse-fb/-/estraverse-fb-1.3.1.tgz",
"esutils": "http://nexus.ingo-internal.net/content/groups/npm_group/esutils/-/esutils-2.0.2.tgz",
"file-entry-cache": "https://registry.npmjs.org/file-entry-cache/-/file-entry-cache-1.3.1.tgz",
"glob": "http://nexus.ingo-internal.net/content/groups/npm_group/glob/-/glob-5.0.15.tgz",
"globals": "http://nexus.ingo-internal.net/content/groups/npm_group/globals/-/globals-8.18.0.tgz",
"handlebars": "https://registry.npmjs.org/handlebars/-/handlebars-4.0.5.tgz",
"inquirer": "https://registry.npmjs.org/inquirer/-/inquirer-0.11.4.tgz",
"is-my-json-valid": "http://nexus.ingo-internal.net/content/groups/npm_group/is-my-json-valid/-/is-my-json-valid-2.13.1.tgz",
"is-resolvable": "http://nexus.ingo-internal.net/content/groups/npm_group/is-resolvable/-/is-resolvable-1.0.0.tgz",
"js-yaml": "https://registry.npmjs.org/js-yaml/-/js-yaml-3.4.5.tgz",
"json-stable-stringify": "http://nexus.ingo-internal.net/content/groups/npm_group/json-stable-stringify/-/json-stable-stringify-1.0.1.tgz",
"lodash.clonedeep": "https://registry.npmjs.org/lodash.clonedeep/-/lodash.clonedeep-3.0.2.tgz",
"lodash.merge": "https://registry.npmjs.org/lodash.merge/-/lodash.merge-3.3.2.tgz",
"lodash.omit": "https://registry.npmjs.org/lodash.omit/-/lodash.omit-3.1.0.tgz",
"minimatch": "https://registry.npmjs.org/minimatch/-/minimatch-3.0.3.tgz",
"mkdirp": "http://nexus.ingo-internal.net/content/groups/npm_group/mkdirp/-/mkdirp-0.5.1.tgz",
"object-assign": "http://nexus.ingo-internal.net/content/groups/npm_group/object-assign/-/object-assign-4.1.0.tgz",
"optionator": "https://registry.npmjs.org/optionator/-/optionator-0.6.0.tgz",
"path-is-absolute": "http://nexus.ingo-internal.net/content/groups/npm_group/path-is-absolute/-/path-is-absolute-1.0.0.tgz",
"path-is-inside": "http://nexus.ingo-internal.net/content/groups/npm_group/path-is-inside/-/path-is-inside-1.0.1.tgz",
"shelljs": "https://registry.npmjs.org/shelljs/-/shelljs-0.5.3.tgz",
"strip-json-comments": "http://nexus.ingo-internal.net/content/groups/npm_group/strip-json-comments/-/strip-json-comments-1.0.4.tgz",
"text-table": "http://nexus.ingo-internal.net/content/groups/npm_group/text-table/-/text-table-0.2.0.tgz",
"user-home": "http://nexus.ingo-internal.net/content/groups/npm_group/user-home/-/user-home-2.0.0.tgz",
"xml-escape": "https://registry.npmjs.org/xml-escape/-/xml-escape-1.0.0.tgz"
}
},
"eslint-config-shouldjs": {
"version": "https://registry.npmjs.org/eslint-config-shouldjs/-/eslint-config-shouldjs-1.0.2.tgz",
"integrity": "sha1-TxKVPiELVAaZULnHY9DdeKpsJlE=",
"dev": true,
"requires": {
"js-yaml": "http://nexus.ingo-internal.net/content/groups/npm_group/js-yaml/-/js-yaml-3.6.1.tgz"
},
"dependencies": {
"esprima": {
"version": "http://nexus.ingo-internal.net/content/groups/npm_group/esprima/-/esprima-2.7.2.tgz",
"integrity": "sha1-9DvlQ2CZhOrkTJM6xjNSpq818zk=",
"dev": true
},
"js-yaml": {
"version": "http://nexus.ingo-internal.net/content/groups/npm_group/js-yaml/-/js-yaml-3.6.1.tgz",
"integrity": "sha1-bl/mfYsgXOTSL60Ft3geja3MSzA=",
"dev": true,
"requires": {
"argparse": "http://nexus.ingo-internal.net/content/groups/npm_group/argparse/-/argparse-1.0.7.tgz",
"esprima": "http://nexus.ingo-internal.net/content/groups/npm_group/esprima/-/esprima-2.7.2.tgz"
}
}
}
},
"espree": {
"version": "https://registry.npmjs.org/espree/-/espree-2.2.5.tgz",
"integrity": "sha1-32kbkxCIlAKuspzAZnCMVmkLhUs=",
"dev": true
},
"esrecurse": {
"version": "http://nexus.ingo-internal.net/content/groups/npm_group/esrecurse/-/esrecurse-4.1.0.tgz",
"integrity": "sha1-RxO2U2rffyrE8yfVWed1a/9kgiA=",
"dev": true,
"requires": {
"estraverse": "http://nexus.ingo-internal.net/content/groups/npm_group/estraverse/-/estraverse-4.1.1.tgz",
"object-assign": "http://nexus.ingo-internal.net/content/groups/npm_group/object-assign/-/object-assign-4.1.0.tgz"
},
"dependencies": {
"estraverse": {
"version": "http://nexus.ingo-internal.net/content/groups/npm_group/estraverse/-/estraverse-4.1.1.tgz",
"integrity": "sha1-9srKcokzqFDvkGYdDheYK6RxEaI=",
"dev": true
}
}
},
"estraverse": {
"version": "http://nexus.ingo-internal.net/content/groups/npm_group/estraverse/-/estraverse-4.2.0.tgz",
"integrity": "sha1-De4/7TH81GlhjOc0IJn8GvoL2xM=",
"dev": true
},
"estraverse-fb": {
"version": "https://registry.npmjs.org/estraverse-fb/-/estraverse-fb-1.3.1.tgz",
"integrity": "sha1-Fg51qA5gWwjOiUvM4v4+Qpq/kr8=",
"dev": true
},
"esutils": {
"version": "http://nexus.ingo-internal.net/content/groups/npm_group/esutils/-/esutils-2.0.2.tgz",
"integrity": "sha1-Cr9PHKpbyx96nYrMbepPqqBLrJs=",
"dev": true
},
"event-emitter": {
"version": "http://nexus.ingo-internal.net/content/groups/npm_group/event-emitter/-/event-emitter-0.3.4.tgz",
"integrity": "sha1-jWPd+0z+H647MsomXExyAiIIC7U=",
"dev": true,
"requires": {
"d": "http://nexus.ingo-internal.net/content/groups/npm_group/d/-/d-0.1.1.tgz",
"es5-ext": "https://registry.npmjs.org/es5-ext/-/es5-ext-0.10.12.tgz"
}
},
"exit-hook": {
"version": "http://nexus.ingo-internal.net/content/groups/npm_group/exit-hook/-/exit-hook-1.1.1.tgz",
"integrity": "sha1-8FyiM7SMBdVP/wd2XfhQfpXAL/g=",
"dev": true
},
"fast-levenshtein": {
"version": "https://registry.npmjs.org/fast-levenshtein/-/fast-levenshtein-1.0.7.tgz",
"integrity": "sha1-AXjc3uAjuSkFGTrwlZ6KdjnP3Lk=",
"dev": true
},
"figures": {
"version": "http://nexus.ingo-internal.net/content/groups/npm_group/figures/-/figures-1.7.0.tgz",
"integrity": "sha1-y+Hjr/zxzUS4DK3+0o3Hk6lwHS4=",
"dev": true,
"requires": {
"escape-string-regexp": "http://nexus.ingo-internal.net/content/groups/npm_group/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz",
"object-assign": "http://nexus.ingo-internal.net/content/groups/npm_group/object-assign/-/object-assign-4.1.0.tgz"
}
},
"file-entry-cache": {
"version": "https://registry.npmjs.org/file-entry-cache/-/file-entry-cache-1.3.1.tgz",
"integrity": "sha1-RMYepgeuS+nBQC9B9EJwy/4zT/g=",
"dev": true,
"requires": {
"flat-cache": "https://registry.npmjs.org/flat-cache/-/flat-cache-1.2.1.tgz",
"object-assign": "http://nexus.ingo-internal.net/content/groups/npm_group/object-assign/-/object-assign-4.1.0.tgz"
}
},
"flat-cache": {
"version": "https://registry.npmjs.org/flat-cache/-/flat-cache-1.2.1.tgz",
"integrity": "sha1-bIN9YiWn3lZZMjdAs21TYfcWkf8=",
"dev": true,
"requires": {
"circular-json": "https://registry.npmjs.org/circular-json/-/circular-json-0.3.1.tgz",
"del": "http://nexus.ingo-internal.net/content/groups/npm_group/del/-/del-2.2.1.tgz",
"graceful-fs": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.1.5.tgz",
"write": "http://nexus.ingo-internal.net/content/groups/npm_group/write/-/write-0.2.1.tgz"
}
},
"formatio": {
"version": "1.2.0",
"resolved": "https://registry.npmjs.org/formatio/-/formatio-1.2.0.tgz",
"integrity": "sha1-87IWfZBoxGmKjVH092CjmlTYGOs=",
"dev": true,
"requires": {
"samsam": "1.2.1"
}
},
"fs.realpath": {
"version": "http://nexus.ingo-internal.net/content/groups/npm_group/fs.realpath/-/fs.realpath-1.0.0.tgz",
"integrity": "sha1-FQStJSMVjKpA20onh8sBQRmU6k8=",
"dev": true
},
"generate-function": {
"version": "http://nexus.ingo-internal.net/content/groups/npm_group/generate-function/-/generate-function-2.0.0.tgz",
"integrity": "sha1-aFj+fAlpt9TpCTM3ZHrHn2DfvnQ=",
"dev": true
},
"generate-object-property": {
"version": "http://nexus.ingo-internal.net/content/groups/npm_group/generate-object-property/-/generate-object-property-1.2.0.tgz",
"integrity": "sha1-nA4cQDCM6AT0eDYYuTf6iPmdUNA=",
"dev": true,
"requires": {
"is-property": "http://nexus.ingo-internal.net/content/groups/npm_group/is-property/-/is-property-1.0.2.tgz"
}
},
"glob": {
"version": "http://nexus.ingo-internal.net/content/groups/npm_group/glob/-/glob-5.0.15.tgz",
"integrity": "sha1-G8k2ueAvSmA/zCIuz3Yz0wuLk7E=",
"dev": true,
"requires": {
"inflight": "http://nexus.ingo-internal.net/content/groups/npm_group/inflight/-/inflight-1.0.5.tgz",
"inherits": "http://nexus.ingo-internal.net/content/groups/npm_group/inherits/-/inherits-2.0.1.tgz",
"minimatch": "https://registry.npmjs.org/minimatch/-/minimatch-3.0.3.tgz",
"once": "http://nexus.ingo-internal.net/content/groups/npm_group/once/-/once-1.3.3.tgz",
"path-is-absolute": "http://nexus.ingo-internal.net/content/groups/npm_group/path-is-absolute/-/path-is-absolute-1.0.0.tgz"
}
},
"globals": {
"version": "http://nexus.ingo-internal.net/content/groups/npm_group/globals/-/globals-8.18.0.tgz",
"integrity": "sha1-k9SmK9ysOM+vr8R9awNHaMsP/LQ=",
"dev": true
},
"globby": {
"version": "http://nexus.ingo-internal.net/content/groups/npm_group/globby/-/globby-5.0.0.tgz",
"integrity": "sha1-69hGZ8oNuzMLmbz8aOrCvFQ3Dg0=",
"dev": true,
"requires": {
"array-union": "http://nexus.ingo-internal.net/content/groups/npm_group/array-union/-/array-union-1.0.2.tgz",
"arrify": "http://nexus.ingo-internal.net/content/groups/npm_group/arrify/-/arrify-1.0.1.tgz",
"glob": "http://nexus.ingo-internal.net/content/groups/npm_group/glob/-/glob-7.0.5.tgz",
"object-assign": "http://nexus.ingo-internal.net/content/groups/npm_group/object-assign/-/object-assign-4.1.0.tgz",
"pify": "http://nexus.ingo-internal.net/content/groups/npm_group/pify/-/pify-2.3.0.tgz",
"pinkie-promise": "http://nexus.ingo-internal.net/content/groups/npm_group/pinkie-promise/-/pinkie-promise-2.0.1.tgz"
},
"dependencies": {
"glob": {
"version": "http://nexus.ingo-internal.net/content/groups/npm_group/glob/-/glob-7.0.5.tgz",
"integrity": "sha1-tCAqaQmbu00pKnwblbZoK2fr3JU=",
"dev": true,
"requires": {
"fs.realpath": "http://nexus.ingo-internal.net/content/groups/npm_group/fs.realpath/-/fs.realpath-1.0.0.tgz",
"inflight": "http://nexus.ingo-internal.net/content/groups/npm_group/inflight/-/inflight-1.0.5.tgz",
"inherits": "http://nexus.ingo-internal.net/content/groups/npm_group/inherits/-/inherits-2.0.1.tgz",
"minimatch": "https://registry.npmjs.org/minimatch/-/minimatch-3.0.3.tgz",
"once": "http://nexus.ingo-internal.net/content/groups/npm_group/once/-/once-1.3.3.tgz",
"path-is-absolute": "http://nexus.ingo-internal.net/content/groups/npm_group/path-is-absolute/-/path-is-absolute-1.0.0.tgz"
}
}
}
},
"graceful-fs": {
"version": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.1.5.tgz",
"integrity": "sha1-9HRejK7V4N0u8hu14tIpoy6Ak8A=",
"dev": true
},
"graceful-readlink": {
"version": "1.0.1",
"resolved": "https://registry.npmjs.org/graceful-readlink/-/graceful-readlink-1.0.1.tgz",
"integrity": "sha1-TK+tdrxi8C+gObL5Tpo906ORpyU=",
"dev": true
},
"growl": {
"version": "1.9.2",
"resolved": "https://registry.npmjs.org/growl/-/growl-1.9.2.tgz",
"integrity": "sha1-Dqd0NxXbjY3ixe3hd14bRayFwC8=",
"dev": true
},
"handlebars": {
"version": "https://registry.npmjs.org/handlebars/-/handlebars-4.0.5.tgz",
"integrity": "sha1-ksbta7FkEQxQ1NjQ+93HCAbG+Oc=",
"dev": true,
"requires": {
"async": "http://nexus.ingo-internal.net/content/groups/npm_group/async/-/async-1.5.2.tgz",
"optimist": "http://nexus.ingo-internal.net/content/groups/npm_group/optimist/-/optimist-0.6.1.tgz",
"source-map": "http://nexus.ingo-internal.net/content/groups/npm_group/source-map/-/source-map-0.4.4.tgz",
"uglify-js": "https://registry.npmjs.org/uglify-js/-/uglify-js-2.7.0.tgz"
}
},
"has-ansi": {
"version": "http://nexus.ingo-internal.net/content/groups/npm_group/has-ansi/-/has-ansi-2.0.0.tgz",
"integrity": "sha1-NPUEnOHs3ysGSa8+8k5F7TVBbZE=",
"dev": true,
"requires": {
"ansi-regex": "http://nexus.ingo-internal.net/content/groups/npm_group/ansi-regex/-/ansi-regex-2.0.0.tgz"
}
},
"has-flag": {
"version": "1.0.0",
"resolved": "https://registry.npmjs.org/has-flag/-/has-flag-1.0.0.tgz",
"integrity": "sha1-nZ55MWXOAXoA8AQYxD+UKnsdEfo=",
"dev": true
},
"inflight": {
"version": "http://nexus.ingo-internal.net/content/groups/npm_group/inflight/-/inflight-1.0.5.tgz",
"integrity": "sha1-2zIEzVqd4ubNiQuFxuL2a89PYgo=",
"dev": true,
"requires": {
"once": "http://nexus.ingo-internal.net/content/groups/npm_group/once/-/once-1.3.3.tgz",
"wrappy": "http://nexus.ingo-internal.net/content/groups/npm_group/wrappy/-/wrappy-1.0.2.tgz"
}
},
"inherits": {
"version": "http://nexus.ingo-internal.net/content/groups/npm_group/inherits/-/inherits-2.0.1.tgz",
"integrity": "sha1-sX0I0ya0Qj5Wjv9xn5GwscvfafE=",
"dev": true
},
"inquirer": {
"version": "https://registry.npmjs.org/inquirer/-/inquirer-0.11.4.tgz",
"integrity": "sha1-geM3ToNhvq/y2XAWIG01nQsy+k0=",
"dev": true,
"requires": {
"ansi-escapes": "http://nexus.ingo-internal.net/content/groups/npm_group/ansi-escapes/-/ansi-escapes-1.4.0.tgz",
"ansi-regex": "http://nexus.ingo-internal.net/content/groups/npm_group/ansi-regex/-/ansi-regex-2.0.0.tgz",
"chalk": "http://nexus.ingo-internal.net/content/groups/npm_group/chalk/-/chalk-1.1.3.tgz",
"cli-cursor": "http://nexus.ingo-internal.net/content/groups/npm_group/cli-cursor/-/cli-cursor-1.0.2.tgz",
"cli-width": "https://registry.npmjs.org/cli-width/-/cli-width-1.1.1.tgz",
"figures": "http://nexus.ingo-internal.net/content/groups/npm_group/figures/-/figures-1.7.0.tgz",
"lodash": "http://nexus.ingo-internal.net/content/groups/npm_group/lodash/-/lodash-3.10.1.tgz",
"readline2": "http://nexus.ingo-internal.net/content/groups/npm_group/readline2/-/readline2-1.0.1.tgz",
"run-async": "http://nexus.ingo-internal.net/content/groups/npm_group/run-async/-/run-async-0.1.0.tgz",
"rx-lite": "http://nexus.ingo-internal.net/content/groups/npm_group/rx-lite/-/rx-lite-3.1.2.tgz",
"string-width": "http://nexus.ingo-internal.net/content/groups/npm_group/string-width/-/string-width-1.0.1.tgz",
"strip-ansi": "http://nexus.ingo-internal.net/content/groups/npm_group/strip-ansi/-/strip-ansi-3.0.1.tgz",
"through": "http://nexus.ingo-internal.net/content/groups/npm_group/through/-/through-2.3.8.tgz"
}
},
"is-buffer": {
"version": "https://registry.npmjs.org/is-buffer/-/is-buffer-1.1.4.tgz",
"integrity": "sha1-z8hszV3FpS+oBIkRHGkgxFfi2Ys=",
"dev": true
},
"is-fullwidth-code-point": {
"version": "http://nexus.ingo-internal.net/content/groups/npm_group/is-fullwidth-code-point/-/is-fullwidth-code-point-1.0.0.tgz",
"integrity": "sha1-754xOG8DGn8NZDr4L95QxFfvAMs=",
"dev": true,
"requires": {
"number-is-nan": "http://nexus.ingo-internal.net/content/groups/npm_group/number-is-nan/-/number-is-nan-1.0.0.tgz"
}
},
"is-my-json-valid": {
"version": "http://nexus.ingo-internal.net/content/groups/npm_group/is-my-json-valid/-/is-my-json-valid-2.13.1.tgz",
"integrity": "sha1-1Vd4qC/rawlj/0vhEdXRaE6JBwc=",
"dev": true,
"requires": {
"generate-function": "http://nexus.ingo-internal.net/content/groups/npm_group/generate-function/-/generate-function-2.0.0.tgz",
"generate-object-property": "http://nexus.ingo-internal.net/content/groups/npm_group/generate-object-property/-/generate-object-property-1.2.0.tgz",
"jsonpointer": "http://nexus.ingo-internal.net/content/groups/npm_group/jsonpointer/-/jsonpointer-2.0.0.tgz",
"xtend": "http://nexus.ingo-internal.net/content/groups/npm_group/xtend/-/xtend-4.0.1.tgz"
}
},
"is-path-cwd": {
"version": "http://nexus.ingo-internal.net/content/groups/npm_group/is-path-cwd/-/is-path-cwd-1.0.0.tgz",
"integrity": "sha1-0iXsIxMuie3Tj9p2dHLmLmXxEG0=",
"dev": true
},
"is-path-in-cwd": {
"version": "http://nexus.ingo-internal.net/content/groups/npm_group/is-path-in-cwd/-/is-path-in-cwd-1.0.0.tgz",
"integrity": "sha1-ZHdYK4IU1gI0YJRWcAO+ip6sBNw=",
"dev": true,
"requires": {
"is-path-inside": "http://nexus.ingo-internal.net/content/groups/npm_group/is-path-inside/-/is-path-inside-1.0.0.tgz"
}
},
"is-path-inside": {
"version": "http://nexus.ingo-internal.net/content/groups/npm_group/is-path-inside/-/is-path-inside-1.0.0.tgz",
"integrity": "sha1-/AbloWg/vaE95mev9xe7wQpI838=",
"dev": true,
"requires": {
"path-is-inside": "http://nexus.ingo-internal.net/content/groups/npm_group/path-is-inside/-/path-is-inside-1.0.1.tgz"
}
},
"is-property": {
"version": "http://nexus.ingo-internal.net/content/groups/npm_group/is-property/-/is-property-1.0.2.tgz",
"integrity": "sha1-V/4cTkhHTt1lsJkR8msc1Ald2oQ=",
"dev": true
},
"is-resolvable": {
"version": "http://nexus.ingo-internal.net/content/groups/npm_group/is-resolvable/-/is-resolvable-1.0.0.tgz",
"integrity": "sha1-jfV8YeouPFAUCNEA+wE8+NbgzGI=",
"dev": true,
"requires": {
"tryit": "http://nexus.ingo-internal.net/content/groups/npm_group/tryit/-/tryit-1.0.2.tgz"
}
},
"isarray": {
"version": "http://nexus.ingo-internal.net/content/groups/npm_group/isarray/-/isarray-1.0.0.tgz",
"integrity": "sha1-u5NdSFgsuhaMBoNJV6VKPgcSTxE=",
"dev": true
},
"js-yaml": {
"version": "https://registry.npmjs.org/js-yaml/-/js-yaml-3.4.5.tgz",
"integrity": "sha1-w0A3l98SuRhmV08t4jZG/oyvtE0=",
"dev": true,
"requires": {
"argparse": "http://nexus.ingo-internal.net/content/groups/npm_group/argparse/-/argparse-1.0.7.tgz",
"esprima": "http://nexus.ingo-internal.net/content/groups/npm_group/esprima/-/esprima-2.7.2.tgz"
},
"dependencies": {
"esprima": {
"version": "http://nexus.ingo-internal.net/content/groups/npm_group/esprima/-/esprima-2.7.2.tgz",
"integrity": "sha1-9DvlQ2CZhOrkTJM6xjNSpq818zk=",
"dev": true
}
}
},
"json-stable-stringify": {
"version": "http://nexus.ingo-internal.net/content/groups/npm_group/json-stable-stringify/-/json-stable-stringify-1.0.1.tgz",
"integrity": "sha1-mnWdOcXy/1A/1TAGRu1EX4jE+a8=",
"dev": true,
"requires": {
"jsonify": "http://nexus.ingo-internal.net/content/groups/npm_group/jsonify/-/jsonify-0.0.0.tgz"
}
},
"json3": {
"version": "3.3.2",
"resolved": "https://registry.npmjs.org/json3/-/json3-3.3.2.tgz",
"integrity": "sha1-PAQ0dD35Pi9cQq7nsZvLSDV19OE=",
"dev": true
},
"jsonify": {
"version": "http://nexus.ingo-internal.net/content/groups/npm_group/jsonify/-/jsonify-0.0.0.tgz",
"integrity": "sha1-LHS27kHZPKUbe1qu6PUDYx0lKnM=",
"dev": true
},
"jsonpointer": {
"version": "http://nexus.ingo-internal.net/content/groups/npm_group/jsonpointer/-/jsonpointer-2.0.0.tgz",
"integrity": "sha1-OvHdIP6FRjkQ1GmjheMwF9KgMNk=",
"dev": true
},
"just-extend": {
"version": "1.1.22",
"resolved": "https://registry.npmjs.org/just-extend/-/just-extend-1.1.22.tgz",
"integrity": "sha1-MzCvdWyralQnAMZLLk5KoGLVL/8=",
"dev": true
},
"kind-of": {
"version": "https://registry.npmjs.org/kind-of/-/kind-of-3.0.4.tgz",
"integrity": "sha1-e47PGKThf4Jp1ztQHJ8jLJaIenQ=",
"dev": true,
"requires": {
"is-buffer": "https://registry.npmjs.org/is-buffer/-/is-buffer-1.1.4.tgz"
}
},
"lazy-cache": {
"version": "http://nexus.ingo-internal.net/content/groups/npm_group/lazy-cache/-/lazy-cache-1.0.4.tgz",
"integrity": "sha1-odePw6UEdMuAhF07O24dpJpEbo4=",
"dev": true,
"optional": true
},
"levn": {
"version": "https://registry.npmjs.org/levn/-/levn-0.2.5.tgz",
"integrity": "sha1-uo0znQykphDjo/FFucr0iAcVUFQ=",
"dev": true,
"requires": {
"prelude-ls": "http://nexus.ingo-internal.net/content/groups/npm_group/prelude-ls/-/prelude-ls-1.1.2.tgz",
"type-check": "http://nexus.ingo-internal.net/content/groups/npm_group/type-check/-/type-check-0.3.2.tgz"
}
},
"lodash": {
"version": "http://nexus.ingo-internal.net/content/groups/npm_group/lodash/-/lodash-3.10.1.tgz",
"integrity": "sha1-W/Rejkm6QYnhfUgnid/RW9FAt7Y=",
"dev": true
},
"lodash._arraycopy": {
"version": "https://registry.npmjs.org/lodash._arraycopy/-/lodash._arraycopy-3.0.0.tgz",
"integrity": "sha1-due3wfH7klRzdIeKVi7Qaj5Q9uE=",
"dev": true
},
"lodash._arrayeach": {
"version": "https://registry.npmjs.org/lodash._arrayeach/-/lodash._arrayeach-3.0.0.tgz",
"integrity": "sha1-urFWsqkNPxu9XGU0AzSeXlkz754=",
"dev": true
},
"lodash._arraymap": {
"version": "https://registry.npmjs.org/lodash._arraymap/-/lodash._arraymap-3.0.0.tgz",
"integrity": "sha1-Go/Q9MDfS2HeoHbXF83Jfwo8PmY=",
"dev": true
},
"lodash._baseassign": {
"version": "https://registry.npmjs.org/lodash._baseassign/-/lodash._baseassign-3.2.0.tgz",
"integrity": "sha1-jDigmVAPIVrQnlnxci/QxSv+Ck4=",
"dev": true,
"requires": {
"lodash._basecopy": "http://nexus.ingo-internal.net/content/groups/npm_group/lodash._basecopy/-/lodash._basecopy-3.0.1.tgz",
"lodash.keys": "http://nexus.ingo-internal.net/content/groups/npm_group/lodash.keys/-/lodash.keys-3.1.2.tgz"
}
},
"lodash._baseclone": {
"version": "https://registry.npmjs.org/lodash._baseclone/-/lodash._baseclone-3.3.0.tgz",
"integrity": "sha1-MDUZv2OT/n5C802LYw73eU41Qrc=",
"dev": true,
"requires": {
"lodash._arraycopy": "https://registry.npmjs.org/lodash._arraycopy/-/lodash._arraycopy-3.0.0.tgz",
"lodash._arrayeach": "https://registry.npmjs.org/lodash._arrayeach/-/lodash._arrayeach-3.0.0.tgz",
"lodash._baseassign": "https://registry.npmjs.org/lodash._baseassign/-/lodash._baseassign-3.2.0.tgz",
"lodash._basefor": "https://registry.npmjs.org/lodash._basefor/-/lodash._basefor-3.0.3.tgz",
"lodash.isarray": "http://nexus.ingo-internal.net/content/groups/npm_group/lodash.isarray/-/lodash.isarray-3.0.4.tgz",
"lodash.keys": "http://nexus.ingo-internal.net/content/groups/npm_group/lodash.keys/-/lodash.keys-3.1.2.tgz"
}
},
"lodash._basecopy": {
"version": "http://nexus.ingo-internal.net/content/groups/npm_group/lodash._basecopy/-/lodash._basecopy-3.0.1.tgz",
"integrity": "sha1-jaDmqHbPNEwK2KVIghEd08XHyjY=",
"dev": true
},
"lodash._basecreate": {
"version": "3.0.3",
"resolved": "https://registry.npmjs.org/lodash._basecreate/-/lodash._basecreate-3.0.3.tgz",
"integrity": "sha1-G8ZhYU2qf8MRt9A78WgGoCE8+CE=",
"dev": true
},
"lodash._basedifference": {
"version": "https://registry.npmjs.org/lodash._basedifference/-/lodash._basedifference-3.0.3.tgz",
"integrity": "sha1-8sIEKWwqeOArOJCBtu3KyTPPYpw=",
"dev": true,
"requires": {
"lodash._baseindexof": "https://registry.npmjs.org/lodash._baseindexof/-/lodash._baseindexof-3.1.0.tgz",
"lodash._cacheindexof": "https://registry.npmjs.org/lodash._cacheindexof/-/lodash._cacheindexof-3.0.2.tgz",
"lodash._createcache": "https://registry.npmjs.org/lodash._createcache/-/lodash._createcache-3.1.2.tgz"
}
},
"lodash._baseflatten": {
"version": "https://registry.npmjs.org/lodash._baseflatten/-/lodash._baseflatten-3.1.4.tgz",
"integrity": "sha1-B3D/gBMa9uNPO1EXlqe6UhTmX/c=",
"dev": true,
"requires": {
"lodash.isarguments": "https://registry.npmjs.org/lodash.isarguments/-/lodash.isarguments-3.0.9.tgz",
"lodash.isarray": "http://nexus.ingo-internal.net/content/groups/npm_group/lodash.isarray/-/lodash.isarray-3.0.4.tgz"
}
},
"lodash._basefor": {
"version": "https://registry.npmjs.org/lodash._basefor/-/lodash._basefor-3.0.3.tgz",
"integrity": "sha1-dVC06SGO8J+tJDQ7YSAhx5tMIMI=",
"dev": true
},
"lodash._baseindexof": {
"version": "https://registry.npmjs.org/lodash._baseindexof/-/lodash._baseindexof-3.1.0.tgz",
"integrity": "sha1-/lK1OhxnYeQmGNZU5KJXie1hgiw=",
"dev": true
},
"lodash._bindcallback": {
"version": "https://registry.npmjs.org/lodash._bindcallback/-/lodash._bindcallback-3.0.1.tgz",
"integrity": "sha1-5THCdkTPi1epnhftlbNcdIeJOS4=",
"dev": true
},
"lodash._cacheindexof": {
"version": "https://registry.npmjs.org/lodash._cacheindexof/-/lodash._cacheindexof-3.0.2.tgz",
"integrity": "sha1-PcaayCSY0u5ePOVgkbr9Ktx73pI=",
"dev": true
},
"lodash._createassigner": {
"version": "https://registry.npmjs.org/lodash._createassigner/-/lodash._createassigner-3.1.1.tgz",
"integrity": "sha1-g4pbri/aymOsIt7o4Z+k5taXCxE=",
"dev": true,
"requires": {
"lodash._bindcallback": "https://registry.npmjs.org/lodash._bindcallback/-/lodash._bindcallback-3.0.1.tgz",
"lodash._isiterateecall": "http://nexus.ingo-internal.net/content/groups/npm_group/lodash._isiterateecall/-/lodash._isiterateecall-3.0.9.tgz",
"lodash.restparam": "http://nexus.ingo-internal.net/content/groups/npm_group/lodash.restparam/-/lodash.restparam-3.6.1.tgz"
}
},
"lodash._createcache": {
"version": "https://registry.npmjs.org/lodash._createcache/-/lodash._createcache-3.1.2.tgz",
"integrity": "sha1-VtagZAF2JeeevKa4AY4XRAvc8JM=",
"dev": true,
"requires": {
"lodash._getnative": "http://nexus.ingo-internal.net/content/groups/npm_group/lodash._getnative/-/lodash._getnative-3.9.1.tgz"
}
},
"lodash._getnative": {
"version": "http://nexus.ingo-internal.net/content/groups/npm_group/lodash._getnative/-/lodash._getnative-3.9.1.tgz",
"integrity": "sha1-VwvH3t5G1hzc3mh9ZdPuy6o6r/U=",
"dev": true
},
"lodash._isiterateecall": {
"version": "http://nexus.ingo-internal.net/content/groups/npm_group/lodash._isiterateecall/-/lodash._isiterateecall-3.0.9.tgz",
"integrity": "sha1-UgOte6Ql+uhCRg5pbbnPPmqsBXw=",
"dev": true
},
"lodash._pickbyarray": {
"version": "https://registry.npmjs.org/lodash._pickbyarray/-/lodash._pickbyarray-3.0.2.tgz",
"integrity": "sha1-H4mNlgfrVgsOFnOEt3x8bRCKpMU=",
"dev": true
},
"lodash._pickbycallback": {
"version": "https://registry.npmjs.org/lodash._pickbycallback/-/lodash._pickbycallback-3.0.0.tgz",
"integrity": "sha1-/2G5oBens699MObFPeKK+hm4dQo=",
"dev": true,
"requires": {
"lodash._basefor": "https://registry.npmjs.org/lodash._basefor/-/lodash._basefor-3.0.3.tgz",
"lodash.keysin": "https://registry.npmjs.org/lodash.keysin/-/lodash.keysin-3.0.8.tgz"
}
},
"lodash.clonedeep": {
"version": "https://registry.npmjs.org/lodash.clonedeep/-/lodash.clonedeep-3.0.2.tgz",
"integrity": "sha1-oKHkDYKl6on/WxR7hETtY9koJ9s=",
"dev": true,
"requires": {
"lodash._baseclone": "https://registry.npmjs.org/lodash._baseclone/-/lodash._baseclone-3.3.0.tgz",
"lodash._bindcallback": "https://registry.npmjs.org/lodash._bindcallback/-/lodash._bindcallback-3.0.1.tgz"
}
},
"lodash.create": {
"version": "3.1.1",
"resolved": "https://registry.npmjs.org/lodash.create/-/lodash.create-3.1.1.tgz",
"integrity": "sha1-1/KEnw29p+BGgruM1yqwIkYd6+c=",
"dev": true,
"requires": {
"lodash._baseassign": "https://registry.npmjs.org/lodash._baseassign/-/lodash._baseassign-3.2.0.tgz",
"lodash._basecreate": "3.0.3",
"lodash._isiterateecall": "http://nexus.ingo-internal.net/content/groups/npm_group/lodash._isiterateecall/-/lodash._isiterateecall-3.0.9.tgz"
}
},
"lodash.isarguments": {
"version": "https://registry.npmjs.org/lodash.isarguments/-/lodash.isarguments-3.0.9.tgz",
"integrity": "sha1-PEmUpCEPNA1JzPr6YhdiliB9hnU=",
"dev": true
},
"lodash.isarray": {
"version": "http://nexus.ingo-internal.net/content/groups/npm_group/lodash.isarray/-/lodash.isarray-3.0.4.tgz",
"integrity": "sha1-eeTriMNqgSKvhvhEqpvNhRtfu1U=",
"dev": true
},
"lodash.isplainobject": {
"version": "https://registry.npmjs.org/lodash.isplainobject/-/lodash.isplainobject-3.2.0.tgz",
"integrity": "sha1-moI4rhayAEMpYM1zRlEtASP79MU=",
"dev": true,
"requires": {
"lodash._basefor": "https://registry.npmjs.org/lodash._basefor/-/lodash._basefor-3.0.3.tgz",
"lodash.isarguments": "https://registry.npmjs.org/lodash.isarguments/-/lodash.isarguments-3.0.9.tgz",
"lodash.keysin": "https://registry.npmjs.org/lodash.keysin/-/lodash.keysin-3.0.8.tgz"
}
},
"lodash.istypedarray": {
"version": "https://registry.npmjs.org/lodash.istypedarray/-/lodash.istypedarray-3.0.6.tgz",
"integrity": "sha1-yaR3SYYHUB2OhJTSg7h8OSgc72I=",
"dev": true
},
"lodash.keys": {
"version": "http://nexus.ingo-internal.net/content/groups/npm_group/lodash.keys/-/lodash.keys-3.1.2.tgz",
"integrity": "sha1-TbwEcrFWvlCgsoaFXRvQsMZWCYo=",
"dev": true,
"requires": {
"lodash._getnative": "http://nexus.ingo-internal.net/content/groups/npm_group/lodash._getnative/-/lodash._getnative-3.9.1.tgz",
"lodash.isarguments": "https://registry.npmjs.org/lodash.isarguments/-/lodash.isarguments-3.0.9.tgz",
"lodash.isarray": "http://nexus.ingo-internal.net/content/groups/npm_group/lodash.isarray/-/lodash.isarray-3.0.4.tgz"
}
},
"lodash.keysin": {
"version": "https://registry.npmjs.org/lodash.keysin/-/lodash.keysin-3.0.8.tgz",
"integrity": "sha1-IsRJPrvtsUJ5YqVLRFssinZ/tH8=",
"dev": true,
"requires": {
"lodash.isarguments": "https://registry.npmjs.org/lodash.isarguments/-/lodash.isarguments-3.0.9.tgz",
"lodash.isarray": "http://nexus.ingo-internal.net/content/groups/npm_group/lodash.isarray/-/lodash.isarray-3.0.4.tgz"
}
},
"lodash.merge": {
"version": "https://registry.npmjs.org/lodash.merge/-/lodash.merge-3.3.2.tgz",
"integrity": "sha1-DZDZPtY3sYeEN7s+IWASYNev6ZQ=",
"dev": true,
"requires": {
"lodash._arraycopy": "https://registry.npmjs.org/lodash._arraycopy/-/lodash._arraycopy-3.0.0.tgz",
"lodash._arrayeach": "https://registry.npmjs.org/lodash._arrayeach/-/lodash._arrayeach-3.0.0.tgz",
"lodash._createassigner": "https://registry.npmjs.org/lodash._createassigner/-/lodash._createassigner-3.1.1.tgz",
"lodash._getnative": "http://nexus.ingo-internal.net/content/groups/npm_group/lodash._getnative/-/lodash._getnative-3.9.1.tgz",
"lodash.isarguments": "https://registry.npmjs.org/lodash.isarguments/-/lodash.isarguments-3.0.9.tgz",
"lodash.isarray": "http://nexus.ingo-internal.net/content/groups/npm_group/lodash.isarray/-/lodash.isarray-3.0.4.tgz",
"lodash.isplainobject": "https://registry.npmjs.org/lodash.isplainobject/-/lodash.isplainobject-3.2.0.tgz",
"lodash.istypedarray": "https://registry.npmjs.org/lodash.istypedarray/-/lodash.istypedarray-3.0.6.tgz",
"lodash.keys": "http://nexus.ingo-internal.net/content/groups/npm_group/lodash.keys/-/lodash.keys-3.1.2.tgz",
"lodash.keysin": "https://registry.npmjs.org/lodash.keysin/-/lodash.keysin-3.0.8.tgz",
"lodash.toplainobject": "https://registry.npmjs.org/lodash.toplainobject/-/lodash.toplainobject-3.0.0.tgz"
}
},
"lodash.omit": {
"version": "https://registry.npmjs.org/lodash.omit/-/lodash.omit-3.1.0.tgz",
"integrity": "sha1-iX/jguZBPZrJfGH3jtHgV6AK+fM=",
"dev": true,
"requires": {
"lodash._arraymap": "https://registry.npmjs.org/lodash._arraymap/-/lodash._arraymap-3.0.0.tgz",
"lodash._basedifference": "https://registry.npmjs.org/lodash._basedifference/-/lodash._basedifference-3.0.3.tgz",
"lodash._baseflatten": "https://registry.npmjs.org/lodash._baseflatten/-/lodash._baseflatten-3.1.4.tgz",
"lodash._bindcallback": "https://registry.npmjs.org/lodash._bindcallback/-/lodash._bindcallback-3.0.1.tgz",
"lodash._pickbyarray": "https://registry.npmjs.org/lodash._pickbyarray/-/lodash._pickbyarray-3.0.2.tgz",
"lodash._pickbycallback": "https://registry.npmjs.org/lodash._pickbycallback/-/lodash._pickbycallback-3.0.0.tgz",
"lodash.keysin": "https://registry.npmjs.org/lodash.keysin/-/lodash.keysin-3.0.8.tgz",
"lodash.restparam": "http://nexus.ingo-internal.net/content/groups/npm_group/lodash.restparam/-/lodash.restparam-3.6.1.tgz"