THIRD-PARTY.npm.txt 382 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249625062516252625362546255625662576258625962606261626262636264626562666267626862696270627162726273627462756276627762786279628062816282628362846285628662876288628962906291629262936294629562966297629862996300630163026303630463056306630763086309631063116312631363146315631663176318631963206321632263236324632563266327632863296330633163326333633463356336633763386339634063416342634363446345634663476348634963506351635263536354635563566357635863596360636163626363636463656366636763686369637063716372637363746375637663776378637963806381638263836384638563866387638863896390639163926393639463956396639763986399640064016402640364046405640664076408640964106411641264136414641564166417641864196420642164226423642464256426642764286429643064316432643364346435643664376438643964406441644264436444644564466447644864496450645164526453645464556456645764586459646064616462646364646465646664676468646964706471647264736474647564766477647864796480648164826483648464856486648764886489649064916492649364946495649664976498649965006501650265036504650565066507650865096510651165126513651465156516651765186519652065216522652365246525652665276528652965306531653265336534653565366537653865396540654165426543654465456546654765486549655065516552655365546555655665576558655965606561656265636564656565666567656865696570657165726573657465756576657765786579658065816582658365846585658665876588658965906591659265936594659565966597659865996600660166026603660466056606660766086609661066116612661366146615661666176618661966206621662266236624662566266627662866296630663166326633663466356636663766386639664066416642664366446645664666476648
  1. bbrev@1.0.9
  2. โ”‚ โ”œ licenses: ISC
  3. โ”‚ โ”œ repository: https://github.com/isaacs/abbrev-js
  4. โ”‚ โ”œ publisher: Isaac Z. Schlueter
  5. โ”‚ โ”œ email: i@izs.me
  6. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/istanbul/node_modules/abbrev
  7. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/istanbul/node_modules/abbrev/LICENSE
  8. โ”œ abbrev@1.1.1
  9. โ”‚ โ”œ licenses: ISC
  10. โ”‚ โ”œ repository: https://github.com/isaacs/abbrev-js
  11. โ”‚ โ”œ publisher: Isaac Z. Schlueter
  12. โ”‚ โ”œ email: i@izs.me
  13. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/abbrev
  14. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/abbrev/LICENSE
  15. โ”œ accepts@1.2.13
  16. โ”‚ โ”œ licenses: MIT
  17. โ”‚ โ”œ repository: https://github.com/jshttp/accepts
  18. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/accepts
  19. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/accepts/LICENSE
  20. โ”œ accepts@1.3.4
  21. โ”‚ โ”œ licenses: MIT
  22. โ”‚ โ”œ repository: https://github.com/jshttp/accepts
  23. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/errorhandler/node_modules/accepts
  24. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/errorhandler/node_modules/accepts/LICENSE
  25. โ”œ acorn-globals@3.1.0
  26. โ”‚ โ”œ licenses: MIT
  27. โ”‚ โ”œ repository: https://github.com/ForbesLindesay/acorn-globals
  28. โ”‚ โ”œ publisher: ForbesLindesay
  29. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/acorn-globals
  30. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/acorn-globals/LICENSE
  31. โ”œ acorn@2.6.4
  32. โ”‚ โ”œ licenses: MIT
  33. โ”‚ โ”œ repository: https://github.com/ternjs/acorn
  34. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/ng-annotate/node_modules/acorn
  35. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/ng-annotate/node_modules/acorn/LICENSE
  36. โ”œ acorn@3.3.0
  37. โ”‚ โ”œ licenses: MIT
  38. โ”‚ โ”œ repository: https://github.com/ternjs/acorn
  39. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/acorn
  40. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/acorn/LICENSE
  41. โ”œ acorn@4.0.13
  42. โ”‚ โ”œ licenses: MIT
  43. โ”‚ โ”œ repository: https://github.com/ternjs/acorn
  44. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/acorn-globals/node_modules/acorn
  45. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/acorn-globals/node_modules/acorn/LICENSE
  46. โ”œ adm-zip@0.4.4
  47. โ”‚ โ”œ licenses: MIT
  48. โ”‚ โ”œ repository: https://github.com/cthackers/adm-zip
  49. โ”‚ โ”œ publisher: Nasca Iacob
  50. โ”‚ โ”œ email: sy@another-d-mention.ro
  51. โ”‚ โ”œ url: https://github.com/cthackers
  52. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/adm-zip
  53. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/adm-zip/README.md
  54. โ”œ after@0.8.1
  55. โ”‚ โ”œ licenses: MIT*
  56. โ”‚ โ”œ repository: https://github.com/Raynos/after
  57. โ”‚ โ”œ publisher: Raynos
  58. โ”‚ โ”œ email: raynos2@gmail.com
  59. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/after
  60. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/after/LICENCE
  61. โ”œ align-text@0.1.4
  62. โ”‚ โ”œ licenses: MIT
  63. โ”‚ โ”œ repository: https://github.com/jonschlinkert/align-text
  64. โ”‚ โ”œ publisher: Jon Schlinkert
  65. โ”‚ โ”œ url: https://github.com/jonschlinkert
  66. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/align-text
  67. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/align-text/LICENSE
  68. โ”œ alter@0.2.0
  69. โ”‚ โ”œ licenses: MIT
  70. โ”‚ โ”œ repository: https://github.com/olov/alter
  71. โ”‚ โ”œ publisher: Olov Lassus
  72. โ”‚ โ”œ email: olov.lassus@gmail.com
  73. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/alter
  74. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/alter/LICENSE
  75. โ”œ amdefine@1.0.1
  76. โ”‚ โ”œ licenses: BSD-3-Clause OR MIT
  77. โ”‚ โ”œ repository: https://github.com/jrburke/amdefine
  78. โ”‚ โ”œ publisher: James Burke
  79. โ”‚ โ”œ email: jrburke@gmail.com
  80. โ”‚ โ”œ url: http://github.com/jrburke
  81. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/amdefine
  82. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/amdefine/LICENSE
  83. โ”œ angular-gettext-tools@2.3.6
  84. โ”‚ โ”œ licenses: MIT
  85. โ”‚ โ”œ repository: https://github.com/rubenv/angular-gettext-tools
  86. โ”‚ โ”œ publisher: Ruben Vermeersch
  87. โ”‚ โ”œ email: ruben@rocketeer.be
  88. โ”‚ โ”œ url: http://rocketeer.be
  89. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/angular-gettext-tools
  90. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/angular-gettext-tools/LICENSE
  91. โ”œ ansi-regex@0.2.1
  92. โ”‚ โ”œ licenses: MIT
  93. โ”‚ โ”œ repository: https://github.com/sindresorhus/ansi-regex
  94. โ”‚ โ”œ publisher: Sindre Sorhus
  95. โ”‚ โ”œ email: sindresorhus@gmail.com
  96. โ”‚ โ”œ url: http://sindresorhus.com
  97. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/ansi-regex
  98. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/ansi-regex/readme.md
  99. โ”œ ansi-regex@2.1.1
  100. โ”‚ โ”œ licenses: MIT
  101. โ”‚ โ”œ repository: https://github.com/chalk/ansi-regex
  102. โ”‚ โ”œ publisher: Sindre Sorhus
  103. โ”‚ โ”œ email: sindresorhus@gmail.com
  104. โ”‚ โ”œ url: sindresorhus.com
  105. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/node-sass/node_modules/ansi-regex
  106. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/node-sass/node_modules/ansi-regex/license
  107. โ”œ ansi-styles@1.0.0
  108. โ”‚ โ”œ licenses: MIT
  109. โ”‚ โ”œ repository: https://github.com/sindresorhus/ansi-styles
  110. โ”‚ โ”œ publisher: Sindre Sorhus
  111. โ”‚ โ”œ email: sindresorhus@gmail.com
  112. โ”‚ โ”œ url: http://sindresorhus.com
  113. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/update-notifier/node_modules/ansi-styles
  114. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/update-notifier/node_modules/ansi-styles/readme.md
  115. โ”œ ansi-styles@1.1.0
  116. โ”‚ โ”œ licenses: MIT
  117. โ”‚ โ”œ repository: https://github.com/sindresorhus/ansi-styles
  118. โ”‚ โ”œ publisher: Sindre Sorhus
  119. โ”‚ โ”œ email: sindresorhus@gmail.com
  120. โ”‚ โ”œ url: http://sindresorhus.com
  121. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/ansi-styles
  122. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/ansi-styles/readme.md
  123. โ”œ ansi-styles@2.2.1
  124. โ”‚ โ”œ licenses: MIT
  125. โ”‚ โ”œ repository: https://github.com/chalk/ansi-styles
  126. โ”‚ โ”œ publisher: Sindre Sorhus
  127. โ”‚ โ”œ email: sindresorhus@gmail.com
  128. โ”‚ โ”œ url: sindresorhus.com
  129. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/node-sass/node_modules/ansi-styles
  130. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/node-sass/node_modules/ansi-styles/license
  131. โ”œ ansi-styles@3.2.1
  132. โ”‚ โ”œ licenses: MIT
  133. โ”‚ โ”œ repository: https://github.com/chalk/ansi-styles
  134. โ”‚ โ”œ publisher: Sindre Sorhus
  135. โ”‚ โ”œ email: sindresorhus@gmail.com
  136. โ”‚ โ”œ url: sindresorhus.com
  137. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/license-checker/node_modules/ansi-styles
  138. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/license-checker/node_modules/ansi-styles/license
  139. โ”œ anymatch@1.3.2
  140. โ”‚ โ”œ licenses: ISC
  141. โ”‚ โ”œ repository: https://github.com/es128/anymatch
  142. โ”‚ โ”œ publisher: Elan Shanker
  143. โ”‚ โ”œ url: http://github.com/es128
  144. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/anymatch
  145. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/anymatch/LICENSE
  146. โ”œ aproba@1.2.0
  147. โ”‚ โ”œ licenses: ISC
  148. โ”‚ โ”œ repository: https://github.com/iarna/aproba
  149. โ”‚ โ”œ publisher: Rebecca Turner
  150. โ”‚ โ”œ email: me@re-becca.org
  151. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/aproba
  152. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/aproba/LICENSE
  153. โ”œ archiver@0.13.1
  154. โ”‚ โ”œ licenses: MIT
  155. โ”‚ โ”œ repository: https://github.com/ctalkington/node-archiver
  156. โ”‚ โ”œ publisher: Chris Talkington
  157. โ”‚ โ”œ url: http://christalkington.com/
  158. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/archiver
  159. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/archiver/LICENSE-MIT
  160. โ”œ are-we-there-yet@1.1.4
  161. โ”‚ โ”œ licenses: ISC
  162. โ”‚ โ”œ repository: https://github.com/iarna/are-we-there-yet
  163. โ”‚ โ”œ publisher: Rebecca Turner
  164. โ”‚ โ”œ url: http://re-becca.org
  165. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/are-we-there-yet
  166. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/are-we-there-yet/LICENSE
  167. โ”œ argparse@0.1.16
  168. โ”‚ โ”œ licenses: MIT
  169. โ”‚ โ”œ repository: https://github.com/nodeca/argparse
  170. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/argparse
  171. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/argparse/LICENSE
  172. โ”œ argparse@1.0.9
  173. โ”‚ โ”œ licenses: MIT
  174. โ”‚ โ”œ repository: https://github.com/nodeca/argparse
  175. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/configstore/node_modules/argparse
  176. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/configstore/node_modules/argparse/LICENSE
  177. โ”œ arr-diff@2.0.0
  178. โ”‚ โ”œ licenses: MIT
  179. โ”‚ โ”œ repository: https://github.com/jonschlinkert/arr-diff
  180. โ”‚ โ”œ publisher: Jon Schlinkert
  181. โ”‚ โ”œ url: https://github.com/jonschlinkert
  182. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/arr-diff
  183. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/arr-diff/LICENSE
  184. โ”œ arr-diff@4.0.0
  185. โ”‚ โ”œ licenses: MIT
  186. โ”‚ โ”œ repository: https://github.com/jonschlinkert/arr-diff
  187. โ”‚ โ”œ publisher: Jon Schlinkert
  188. โ”‚ โ”œ url: https://github.com/jonschlinkert
  189. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/nanomatch/node_modules/arr-diff
  190. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/nanomatch/node_modules/arr-diff/LICENSE
  191. โ”œ arr-flatten@1.1.0
  192. โ”‚ โ”œ licenses: MIT
  193. โ”‚ โ”œ repository: https://github.com/jonschlinkert/arr-flatten
  194. โ”‚ โ”œ publisher: Jon Schlinkert
  195. โ”‚ โ”œ url: https://github.com/jonschlinkert
  196. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/arr-flatten
  197. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/arr-flatten/LICENSE
  198. โ”œ arr-union@3.1.0
  199. โ”‚ โ”œ licenses: MIT
  200. โ”‚ โ”œ repository: https://github.com/jonschlinkert/arr-union
  201. โ”‚ โ”œ publisher: Jon Schlinkert
  202. โ”‚ โ”œ url: https://github.com/jonschlinkert
  203. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/arr-union
  204. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/arr-union/LICENSE
  205. โ”œ array-find-index@1.0.2
  206. โ”‚ โ”œ licenses: MIT
  207. โ”‚ โ”œ repository: https://github.com/sindresorhus/array-find-index
  208. โ”‚ โ”œ publisher: Sindre Sorhus
  209. โ”‚ โ”œ email: sindresorhus@gmail.com
  210. โ”‚ โ”œ url: sindresorhus.com
  211. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/array-find-index
  212. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/array-find-index/license
  213. โ”œ array-slice@0.2.3
  214. โ”‚ โ”œ licenses: MIT
  215. โ”‚ โ”œ repository: https://github.com/jonschlinkert/array-slice
  216. โ”‚ โ”œ publisher: Jon Schlinkert
  217. โ”‚ โ”œ url: https://github.com/jonschlinkert
  218. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/array-slice
  219. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/array-slice/LICENSE
  220. โ”œ array-unique@0.2.1
  221. โ”‚ โ”œ licenses: MIT
  222. โ”‚ โ”œ repository: https://github.com/jonschlinkert/array-unique
  223. โ”‚ โ”œ publisher: Jon Schlinkert
  224. โ”‚ โ”œ url: https://github.com/jonschlinkert
  225. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/array-unique
  226. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/array-unique/LICENSE
  227. โ”œ array-unique@0.3.2
  228. โ”‚ โ”œ licenses: MIT
  229. โ”‚ โ”œ repository: https://github.com/jonschlinkert/array-unique
  230. โ”‚ โ”œ publisher: Jon Schlinkert
  231. โ”‚ โ”œ url: https://github.com/jonschlinkert
  232. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/nanomatch/node_modules/array-unique
  233. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/nanomatch/node_modules/array-unique/LICENSE
  234. โ”œ arraybuffer.slice@0.0.6
  235. โ”‚ โ”œ licenses: MIT*
  236. โ”‚ โ”œ repository: https://github.com/rase-/arraybuffer.slice
  237. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/arraybuffer.slice
  238. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/arraybuffer.slice/README.md
  239. โ”œ asap@2.0.6
  240. โ”‚ โ”œ licenses: MIT
  241. โ”‚ โ”œ repository: https://github.com/kriskowal/asap
  242. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/asap
  243. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/asap/LICENSE.md
  244. โ”œ asn1@0.1.11
  245. โ”‚ โ”œ licenses: MIT*
  246. โ”‚ โ”œ repository: https://github.com/mcavage/node-asn1
  247. โ”‚ โ”œ publisher: Mark Cavage
  248. โ”‚ โ”œ email: mcavage@gmail.com
  249. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/asn1
  250. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/asn1/LICENSE
  251. โ”œ asn1@0.2.3
  252. โ”‚ โ”œ licenses: MIT
  253. โ”‚ โ”œ repository: https://github.com/mcavage/node-asn1
  254. โ”‚ โ”œ publisher: Mark Cavage
  255. โ”‚ โ”œ email: mcavage@gmail.com
  256. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/sshpk/node_modules/asn1
  257. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/sshpk/node_modules/asn1/LICENSE
  258. โ”œ assert-plus@0.1.5
  259. โ”‚ โ”œ licenses: MIT*
  260. โ”‚ โ”œ repository: https://github.com/mcavage/node-assert-plus
  261. โ”‚ โ”œ publisher: Mark Cavage
  262. โ”‚ โ”œ email: mcavage@gmail.com
  263. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/assert-plus
  264. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/assert-plus/README.md
  265. โ”œ assert-plus@0.2.0
  266. โ”‚ โ”œ licenses: MIT
  267. โ”‚ โ”œ repository: https://github.com/mcavage/node-assert-plus
  268. โ”‚ โ”œ publisher: Mark Cavage
  269. โ”‚ โ”œ email: mcavage@gmail.com
  270. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/node-sass/node_modules/assert-plus
  271. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/node-sass/node_modules/assert-plus/README.md
  272. โ”œ assert-plus@1.0.0
  273. โ”‚ โ”œ licenses: MIT
  274. โ”‚ โ”œ repository: https://github.com/mcavage/node-assert-plus
  275. โ”‚ โ”œ publisher: Mark Cavage
  276. โ”‚ โ”œ email: mcavage@gmail.com
  277. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/jsprim/node_modules/assert-plus
  278. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/jsprim/node_modules/assert-plus/README.md
  279. โ”œ async-each@1.0.1
  280. โ”‚ โ”œ licenses: MIT
  281. โ”‚ โ”œ repository: https://github.com/paulmillr/async-each
  282. โ”‚ โ”œ publisher: Paul Miller
  283. โ”‚ โ”œ url: http://paulmillr.com/
  284. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/async-each
  285. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/async-each/README.md
  286. โ”œ async-foreach@0.1.3
  287. โ”‚ โ”œ licenses: MIT*
  288. โ”‚ โ”œ repository: https://github.com/cowboy/javascript-sync-async-foreach
  289. โ”‚ โ”œ publisher: "Cowboy" Ben Alman
  290. โ”‚ โ”œ url: http://benalman.com/
  291. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/async-foreach
  292. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/async-foreach/LICENSE-MIT
  293. โ”œ async@0.1.22
  294. โ”‚ โ”œ licenses: MIT
  295. โ”‚ โ”œ repository: https://github.com/caolan/async
  296. โ”‚ โ”œ publisher: Caolan McMahon
  297. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/async
  298. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/async/LICENSE
  299. โ”œ async@0.2.10
  300. โ”‚ โ”œ licenses: MIT
  301. โ”‚ โ”œ repository: https://github.com/caolan/async
  302. โ”‚ โ”œ publisher: Caolan McMahon
  303. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/html-minifier/node_modules/async
  304. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/html-minifier/node_modules/async/LICENSE
  305. โ”œ async@0.9.2
  306. โ”‚ โ”œ licenses: MIT
  307. โ”‚ โ”œ repository: https://github.com/caolan/async
  308. โ”‚ โ”œ publisher: Caolan McMahon
  309. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/archiver/node_modules/async
  310. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/archiver/node_modules/async/LICENSE
  311. โ”œ async@1.5.2
  312. โ”‚ โ”œ licenses: MIT
  313. โ”‚ โ”œ repository: https://github.com/caolan/async
  314. โ”‚ โ”œ publisher: Caolan McMahon
  315. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/handlebars/node_modules/async
  316. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/handlebars/node_modules/async/LICENSE
  317. โ”œ asynckit@0.4.0
  318. โ”‚ โ”œ licenses: MIT
  319. โ”‚ โ”œ repository: https://github.com/alexindigo/asynckit
  320. โ”‚ โ”œ publisher: Alex Indigo
  321. โ”‚ โ”œ email: iam@alexindigo.com
  322. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/asynckit
  323. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/asynckit/LICENSE
  324. โ”œ atob@2.0.3
  325. โ”‚ โ”œ licenses: (MIT OR Apache-2.0)
  326. โ”‚ โ”œ repository: https://github.com/coolaj86/node-browser-compat/atob
  327. โ”‚ โ”œ publisher: AJ ONeal
  328. โ”‚ โ”œ email: coolaj86@gmail.com
  329. โ”‚ โ”œ url: https://coolaj86.com
  330. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/atob
  331. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/atob/LICENSE
  332. โ”œ aws-sign2@0.5.0
  333. โ”‚ โ”œ licenses: Apache*
  334. โ”‚ โ”œ repository: https://github.com/mikeal/aws-sign
  335. โ”‚ โ”œ publisher: Mikeal Rogers
  336. โ”‚ โ”œ email: mikeal.rogers@gmail.com
  337. โ”‚ โ”œ url: http://www.futurealoof.com
  338. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/aws-sign2
  339. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/aws-sign2/LICENSE
  340. โ”œ aws-sign2@0.6.0
  341. โ”‚ โ”œ licenses: Apache-2.0
  342. โ”‚ โ”œ repository: https://github.com/mikeal/aws-sign
  343. โ”‚ โ”œ publisher: Mikeal Rogers
  344. โ”‚ โ”œ email: mikeal.rogers@gmail.com
  345. โ”‚ โ”œ url: http://www.futurealoof.com
  346. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/node-sass/node_modules/aws-sign2
  347. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/node-sass/node_modules/aws-sign2/LICENSE
  348. โ”œ aws4@1.6.0
  349. โ”‚ โ”œ licenses: MIT
  350. โ”‚ โ”œ repository: https://github.com/mhart/aws4
  351. โ”‚ โ”œ publisher: Michael Hart
  352. โ”‚ โ”œ email: michael.hart.au@gmail.com
  353. โ”‚ โ”œ url: http://github.com/mhart
  354. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/aws4
  355. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/aws4/LICENSE
  356. โ”œ babylon@6.18.0
  357. โ”‚ โ”œ licenses: MIT
  358. โ”‚ โ”œ repository: https://github.com/babel/babylon
  359. โ”‚ โ”œ publisher: Sebastian McKenzie
  360. โ”‚ โ”œ email: sebmck@gmail.com
  361. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/babylon
  362. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/babylon/LICENSE
  363. โ”œ backo2@1.0.2
  364. โ”‚ โ”œ licenses: MIT
  365. โ”‚ โ”œ repository: https://github.com/mokesmokes/backo
  366. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/backo2
  367. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/backo2/Readme.md
  368. โ”œ balanced-match@1.0.0
  369. โ”‚ โ”œ licenses: MIT
  370. โ”‚ โ”œ repository: https://github.com/juliangruber/balanced-match
  371. โ”‚ โ”œ publisher: Julian Gruber
  372. โ”‚ โ”œ email: mail@juliangruber.com
  373. โ”‚ โ”œ url: http://juliangruber.com
  374. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/balanced-match
  375. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/balanced-match/LICENSE.md
  376. โ”œ base64-arraybuffer@0.1.2
  377. โ”‚ โ”œ licenses: MIT
  378. โ”‚ โ”œ repository: https://github.com/niklasvh/base64-arraybuffer
  379. โ”‚ โ”œ publisher: Niklas von Hertzen
  380. โ”‚ โ”œ email: niklasvh@gmail.com
  381. โ”‚ โ”œ url: http://hertzen.com
  382. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/base64-arraybuffer
  383. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/base64-arraybuffer/LICENSE-MIT
  384. โ”œ base64-js@0.0.8
  385. โ”‚ โ”œ licenses: MIT
  386. โ”‚ โ”œ repository: https://github.com/beatgammit/base64-js
  387. โ”‚ โ”œ publisher: T. Jameson Little
  388. โ”‚ โ”œ email: t.jameson.little@gmail.com
  389. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/base64-js
  390. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/base64-js/LICENSE.MIT
  391. โ”œ base64-url@1.2.1
  392. โ”‚ โ”œ licenses: ISC
  393. โ”‚ โ”œ repository: https://github.com/joaquimserafim/base64-url
  394. โ”‚ โ”œ publisher: @joaquimserafim
  395. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/base64-url
  396. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/base64-url/LICENSE
  397. โ”œ base64id@0.1.0
  398. โ”‚ โ”œ licenses: UNKNOWN
  399. โ”‚ โ”œ repository: https://github.com/faeldt/base64id
  400. โ”‚ โ”œ publisher: Kristian Faeldt
  401. โ”‚ โ”œ email: faeldt_kristian@cyberagent.co.jp
  402. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/base64id
  403. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/base64id/README.md
  404. โ”œ base@0.11.2
  405. โ”‚ โ”œ licenses: MIT
  406. โ”‚ โ”œ repository: https://github.com/node-base/base
  407. โ”‚ โ”œ publisher: Jon Schlinkert
  408. โ”‚ โ”œ url: https://github.com/jonschlinkert
  409. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/base
  410. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/base/LICENSE
  411. โ”œ basic-auth-connect@1.0.0
  412. โ”‚ โ”œ licenses: MIT
  413. โ”‚ โ”œ repository: https://github.com/expressjs/basic-auth-connect
  414. โ”‚ โ”œ publisher: Jonathan Ong
  415. โ”‚ โ”œ email: me@jongleberry.com
  416. โ”‚ โ”œ url: http://jongleberry.com
  417. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/basic-auth-connect
  418. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/basic-auth-connect/README.md
  419. โ”œ basic-auth@1.0.4
  420. โ”‚ โ”œ licenses: MIT
  421. โ”‚ โ”œ repository: https://github.com/jshttp/basic-auth
  422. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/basic-auth
  423. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/basic-auth/LICENSE
  424. โ”œ batch@0.5.3
  425. โ”‚ โ”œ licenses: MIT
  426. โ”‚ โ”œ repository: https://github.com/visionmedia/batch
  427. โ”‚ โ”œ publisher: TJ Holowaychuk
  428. โ”‚ โ”œ email: tj@vision-media.ca
  429. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/batch
  430. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/batch/Readme.md
  431. โ”œ bcrypt-pbkdf@1.0.1
  432. โ”‚ โ”œ licenses: BSD-3-Clause
  433. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/bcrypt-pbkdf
  434. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/bcrypt-pbkdf/README.md
  435. โ”œ benchmark@1.0.0
  436. โ”‚ โ”œ licenses: MIT
  437. โ”‚ โ”œ repository: https://github.com/bestiejs/benchmark.js
  438. โ”‚ โ”œ publisher: Mathias Bynens
  439. โ”‚ โ”œ email: mathias@benchmarkjs.com
  440. โ”‚ โ”œ url: http://mathiasbynens.be/
  441. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/benchmark
  442. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/benchmark/LICENSE.txt
  443. โ”œ better-assert@1.0.2
  444. โ”‚ โ”œ licenses: MIT*
  445. โ”‚ โ”œ repository: https://github.com/visionmedia/better-assert
  446. โ”‚ โ”œ publisher: TJ Holowaychuk
  447. โ”‚ โ”œ email: tj@vision-media.ca
  448. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/better-assert
  449. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/better-assert/Readme.md
  450. โ”œ binary-extensions@1.11.0
  451. โ”‚ โ”œ licenses: MIT
  452. โ”‚ โ”œ repository: https://github.com/sindresorhus/binary-extensions
  453. โ”‚ โ”œ publisher: Sindre Sorhus
  454. โ”‚ โ”œ email: sindresorhus@gmail.com
  455. โ”‚ โ”œ url: sindresorhus.com
  456. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/binary-extensions
  457. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/binary-extensions/license
  458. โ”œ binary-search@1.3.2
  459. โ”‚ โ”œ licenses: CC0-1.0
  460. โ”‚ โ”œ repository: https://github.com/darkskyapp/binary-search
  461. โ”‚ โ”œ publisher: The Dark Sky Company, LLC
  462. โ”‚ โ”œ email: support@darkskyapp.com
  463. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/binary-search
  464. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/binary-search/README.md
  465. โ”œ binary@0.3.0
  466. โ”‚ โ”œ licenses: MIT
  467. โ”‚ โ”œ repository: https://github.com/substack/node-binary
  468. โ”‚ โ”œ publisher: James Halliday
  469. โ”‚ โ”œ email: mail@substack.net
  470. โ”‚ โ”œ url: http://substack.net
  471. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/binary
  472. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/binary/README.markdown
  473. โ”œ bindings@1.2.1
  474. โ”‚ โ”œ licenses: MIT
  475. โ”‚ โ”œ repository: https://github.com/TooTallNate/node-bindings
  476. โ”‚ โ”œ publisher: Nathan Rajlich
  477. โ”‚ โ”œ email: nathan@tootallnate.net
  478. โ”‚ โ”œ url: http://tootallnate.net
  479. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/bindings
  480. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/bindings/README.md
  481. โ”œ bl@0.9.5
  482. โ”‚ โ”œ licenses: MIT
  483. โ”‚ โ”œ repository: https://github.com/rvagg/bl
  484. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/bl
  485. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/bl/LICENSE.md
  486. โ”œ blob@0.0.4
  487. โ”‚ โ”œ licenses: MIT*
  488. โ”‚ โ”œ repository: https://github.com/rase-/blob
  489. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/blob
  490. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/blob/README.md
  491. โ”œ block-stream@0.0.9
  492. โ”‚ โ”œ licenses: ISC
  493. โ”‚ โ”œ repository: https://github.com/isaacs/block-stream
  494. โ”‚ โ”œ publisher: Isaac Z. Schlueter
  495. โ”‚ โ”œ email: i@izs.me
  496. โ”‚ โ”œ url: http://blog.izs.me/
  497. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/block-stream
  498. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/block-stream/LICENSE
  499. โ”œ bluebird@1.2.4
  500. โ”‚ โ”œ licenses: MIT
  501. โ”‚ โ”œ repository: https://github.com/petkaantonov/bluebird
  502. โ”‚ โ”œ publisher: Petka Antonov
  503. โ”‚ โ”œ email: petka_antonov@hotmail.com
  504. โ”‚ โ”œ url: http://github.com/petkaantonov/
  505. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/bluebird
  506. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/bluebird/LICENSE
  507. โ”œ bluebird@2.11.0
  508. โ”‚ โ”œ licenses: MIT
  509. โ”‚ โ”œ repository: https://github.com/petkaantonov/bluebird
  510. โ”‚ โ”œ publisher: Petka Antonov
  511. โ”‚ โ”œ email: petka_antonov@hotmail.com
  512. โ”‚ โ”œ url: http://github.com/petkaantonov/
  513. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/karma/node_modules/bluebird
  514. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/karma/node_modules/bluebird/LICENSE
  515. โ”œ body-parser@1.13.0
  516. โ”‚ โ”œ licenses: MIT
  517. โ”‚ โ”œ repository: https://github.com/expressjs/body-parser
  518. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/body-parser
  519. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/body-parser/LICENSE
  520. โ”œ body-parser@1.13.3
  521. โ”‚ โ”œ licenses: MIT
  522. โ”‚ โ”œ repository: https://github.com/expressjs/body-parser
  523. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/connect/node_modules/body-parser
  524. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/connect/node_modules/body-parser/LICENSE
  525. โ”œ body-parser@1.14.2
  526. โ”‚ โ”œ licenses: MIT
  527. โ”‚ โ”œ repository: https://github.com/expressjs/body-parser
  528. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/tiny-lr/node_modules/body-parser
  529. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/tiny-lr/node_modules/body-parser/LICENSE
  530. โ”œ boolbase@1.0.0
  531. โ”‚ โ”œ licenses: ISC
  532. โ”‚ โ”œ repository: https://github.com/fb55/boolbase
  533. โ”‚ โ”œ publisher: Felix Boehm
  534. โ”‚ โ”œ email: me@feedic.com
  535. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/boolbase
  536. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/boolbase/README.md
  537. โ”œ boom@0.4.2
  538. โ”‚ โ”œ licenses: BSD
  539. โ”‚ โ”œ repository: https://github.com/spumko/boom
  540. โ”‚ โ”œ publisher: Eran Hammer
  541. โ”‚ โ”œ email: eran@hueniverse.com
  542. โ”‚ โ”œ url: http://hueniverse.com
  543. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/boom
  544. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/boom/LICENSE
  545. โ”œ boom@2.10.1
  546. โ”‚ โ”œ licenses: BSD-3-Clause
  547. โ”‚ โ”œ repository: https://github.com/hapijs/boom
  548. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/node-sass/node_modules/boom
  549. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/node-sass/node_modules/boom/LICENSE
  550. โ”œ bower-json@0.4.0
  551. โ”‚ โ”œ licenses: MIT
  552. โ”‚ โ”œ repository: https://github.com/bower/json
  553. โ”‚ โ”œ publisher: Twitter
  554. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/bower-json
  555. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/bower-json/LICENSE
  556. โ”œ bower-license@0.4.4
  557. โ”‚ โ”œ licenses: Apache-2.0
  558. โ”‚ โ”œ repository: https://github.com/AceMetrix/bower-license
  559. โ”‚ โ”œ publisher: Duncan Wong
  560. โ”‚ โ”œ email: baduncaduncan@gmail.com
  561. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/bower-license
  562. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/bower-license/LICENSE
  563. โ”œ bower@1.8.2
  564. โ”‚ โ”œ licenses: MIT
  565. โ”‚ โ”œ repository: https://github.com/bower/bower
  566. โ”‚ โ”œ publisher: Twitter
  567. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/bower
  568. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/bower/LICENSE
  569. โ”œ brace-expansion@1.1.11
  570. โ”‚ โ”œ licenses: MIT
  571. โ”‚ โ”œ repository: https://github.com/juliangruber/brace-expansion
  572. โ”‚ โ”œ publisher: Julian Gruber
  573. โ”‚ โ”œ email: mail@juliangruber.com
  574. โ”‚ โ”œ url: http://juliangruber.com
  575. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/lib-parent-grunt/node_modules/brace-expansion
  576. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/lib-parent-grunt/node_modules/brace-expansion/LICENSE
  577. โ”œ brace-expansion@1.1.8
  578. โ”‚ โ”œ licenses: MIT
  579. โ”‚ โ”œ repository: https://github.com/juliangruber/brace-expansion
  580. โ”‚ โ”œ publisher: Julian Gruber
  581. โ”‚ โ”œ email: mail@juliangruber.com
  582. โ”‚ โ”œ url: http://juliangruber.com
  583. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/brace-expansion
  584. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/brace-expansion/README.md
  585. โ”œ braces@0.1.5
  586. โ”‚ โ”œ licenses: MIT
  587. โ”‚ โ”œ repository: https://github.com/jonschlinkert/braces
  588. โ”‚ โ”œ publisher: Jon Schlinkert
  589. โ”‚ โ”œ url: https://github.com/jonschlinkert
  590. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/expand-braces/node_modules/braces
  591. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/expand-braces/node_modules/braces/LICENSE-MIT
  592. โ”œ braces@1.8.5
  593. โ”‚ โ”œ licenses: MIT
  594. โ”‚ โ”œ repository: https://github.com/jonschlinkert/braces
  595. โ”‚ โ”œ publisher: Jon Schlinkert
  596. โ”‚ โ”œ url: https://github.com/jonschlinkert
  597. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/braces
  598. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/braces/LICENSE
  599. โ”œ braces@2.3.0
  600. โ”‚ โ”œ licenses: MIT
  601. โ”‚ โ”œ repository: https://github.com/micromatch/braces
  602. โ”‚ โ”œ publisher: Jon Schlinkert
  603. โ”‚ โ”œ url: https://github.com/jonschlinkert
  604. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/matchdep/node_modules/braces
  605. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/matchdep/node_modules/braces/LICENSE
  606. โ”œ browserify-zlib@0.1.4
  607. โ”‚ โ”œ licenses: MIT
  608. โ”‚ โ”œ repository: https://github.com/devongovett/browserify-zlib
  609. โ”‚ โ”œ publisher: Devon Govett
  610. โ”‚ โ”œ email: devongovett@gmail.com
  611. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/browserify-zlib
  612. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/browserify-zlib/README.md
  613. โ”œ buffer-crc32@0.2.13
  614. โ”‚ โ”œ licenses: MIT
  615. โ”‚ โ”œ repository: https://github.com/brianloveswords/buffer-crc32
  616. โ”‚ โ”œ publisher: Brian J. Brennan
  617. โ”‚ โ”œ email: brianloveswords@gmail.com
  618. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/buffer-crc32
  619. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/buffer-crc32/LICENSE
  620. โ”œ buffers@0.1.1
  621. โ”‚ โ”œ licenses: Custom: http://github.com/substack/node-bufferlist
  622. โ”‚ โ”œ repository: https://github.com/substack/node-buffers
  623. โ”‚ โ”œ publisher: James Halliday
  624. โ”‚ โ”œ email: mail@substack.net
  625. โ”‚ โ”œ url: http://substack.net
  626. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/buffers
  627. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/buffers/README.markdown
  628. โ”œ bufferutil@1.2.1
  629. โ”‚ โ”œ licenses: MIT
  630. โ”‚ โ”œ repository: https://github.com/websockets/bufferutil
  631. โ”‚ โ”œ publisher: Einar Otto Stangvik
  632. โ”‚ โ”œ email: einaros@gmail.com
  633. โ”‚ โ”œ url: http://2x.io
  634. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/bufferutil
  635. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/bufferutil/README.md
  636. โ”œ builtin-modules@1.1.1
  637. โ”‚ โ”œ licenses: MIT
  638. โ”‚ โ”œ repository: https://github.com/sindresorhus/builtin-modules
  639. โ”‚ โ”œ publisher: Sindre Sorhus
  640. โ”‚ โ”œ email: sindresorhus@gmail.com
  641. โ”‚ โ”œ url: sindresorhus.com
  642. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/builtin-modules
  643. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/builtin-modules/license
  644. โ”œ bytes@2.1.0
  645. โ”‚ โ”œ licenses: MIT
  646. โ”‚ โ”œ repository: https://github.com/visionmedia/bytes.js
  647. โ”‚ โ”œ publisher: TJ Holowaychuk
  648. โ”‚ โ”œ email: tj@vision-media.ca
  649. โ”‚ โ”œ url: http://tjholowaychuk.com
  650. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/bytes
  651. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/bytes/Readme.md
  652. โ”œ bytes@2.2.0
  653. โ”‚ โ”œ licenses: MIT
  654. โ”‚ โ”œ repository: https://github.com/visionmedia/bytes.js
  655. โ”‚ โ”œ publisher: TJ Holowaychuk
  656. โ”‚ โ”œ email: tj@vision-media.ca
  657. โ”‚ โ”œ url: http://tjholowaychuk.com
  658. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/tiny-lr/node_modules/bytes
  659. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/tiny-lr/node_modules/bytes/LICENSE
  660. โ”œ bytes@2.4.0
  661. โ”‚ โ”œ licenses: MIT
  662. โ”‚ โ”œ repository: https://github.com/visionmedia/bytes.js
  663. โ”‚ โ”œ publisher: TJ Holowaychuk
  664. โ”‚ โ”œ email: tj@vision-media.ca
  665. โ”‚ โ”œ url: http://tjholowaychuk.com
  666. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/raw-body/node_modules/bytes
  667. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/raw-body/node_modules/bytes/LICENSE
  668. โ”œ cache-base@1.0.1
  669. โ”‚ โ”œ licenses: MIT
  670. โ”‚ โ”œ repository: https://github.com/jonschlinkert/cache-base
  671. โ”‚ โ”œ publisher: Jon Schlinkert
  672. โ”‚ โ”œ url: https://github.com/jonschlinkert
  673. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/cache-base
  674. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/cache-base/LICENSE
  675. โ”œ callsite@1.0.0
  676. โ”‚ โ”œ licenses: MIT*
  677. โ”‚ โ”œ publisher: TJ Holowaychuk
  678. โ”‚ โ”œ email: tj@vision-media.ca
  679. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/callsite
  680. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/callsite/Readme.md
  681. โ”œ camel-case@3.0.0
  682. โ”‚ โ”œ licenses: MIT
  683. โ”‚ โ”œ repository: https://github.com/blakeembrey/camel-case
  684. โ”‚ โ”œ publisher: Blake Embrey
  685. โ”‚ โ”œ email: hello@blakeembrey.com
  686. โ”‚ โ”œ url: http://blakeembrey.me
  687. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/camel-case
  688. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/camel-case/LICENSE
  689. โ”œ camelcase-keys@2.1.0
  690. โ”‚ โ”œ licenses: MIT
  691. โ”‚ โ”œ repository: https://github.com/sindresorhus/camelcase-keys
  692. โ”‚ โ”œ publisher: Sindre Sorhus
  693. โ”‚ โ”œ email: sindresorhus@gmail.com
  694. โ”‚ โ”œ url: http://sindresorhus.com
  695. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/camelcase-keys
  696. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/camelcase-keys/license
  697. โ”œ camelcase@1.2.1
  698. โ”‚ โ”œ licenses: MIT
  699. โ”‚ โ”œ repository: https://github.com/sindresorhus/camelcase
  700. โ”‚ โ”œ publisher: Sindre Sorhus
  701. โ”‚ โ”œ email: sindresorhus@gmail.com
  702. โ”‚ โ”œ url: http://sindresorhus.com
  703. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/yargs/node_modules/camelcase
  704. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/yargs/node_modules/camelcase/license
  705. โ”œ camelcase@2.1.1
  706. โ”‚ โ”œ licenses: MIT
  707. โ”‚ โ”œ repository: https://github.com/sindresorhus/camelcase
  708. โ”‚ โ”œ publisher: Sindre Sorhus
  709. โ”‚ โ”œ email: sindresorhus@gmail.com
  710. โ”‚ โ”œ url: http://sindresorhus.com
  711. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/camelcase
  712. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/camelcase/license
  713. โ”œ camelcase@3.0.0
  714. โ”‚ โ”œ licenses: MIT
  715. โ”‚ โ”œ repository: https://github.com/sindresorhus/camelcase
  716. โ”‚ โ”œ publisher: Sindre Sorhus
  717. โ”‚ โ”œ email: sindresorhus@gmail.com
  718. โ”‚ โ”œ url: http://sindresorhus.com
  719. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/sass-graph/node_modules/camelcase
  720. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/sass-graph/node_modules/camelcase/license
  721. โ”œ caseless@0.11.0
  722. โ”‚ โ”œ licenses: Apache-2.0
  723. โ”‚ โ”œ repository: https://github.com/mikeal/caseless
  724. โ”‚ โ”œ publisher: Mikeal Rogers
  725. โ”‚ โ”œ email: mikeal.rogers@gmail.com
  726. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/caseless
  727. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/caseless/LICENSE
  728. โ”œ caseless@0.6.0
  729. โ”‚ โ”œ licenses: BSD*
  730. โ”‚ โ”œ repository: https://github.com/mikeal/caseless
  731. โ”‚ โ”œ publisher: Mikeal Rogers
  732. โ”‚ โ”œ email: mikeal.rogers@gmail.com
  733. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/phantomjs/node_modules/caseless
  734. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/phantomjs/node_modules/caseless/README.md
  735. โ”œ center-align@0.1.3
  736. โ”‚ โ”œ licenses: MIT
  737. โ”‚ โ”œ repository: https://github.com/jonschlinkert/center-align
  738. โ”‚ โ”œ publisher: Jon Schlinkert
  739. โ”‚ โ”œ url: https://github.com/jonschlinkert
  740. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/center-align
  741. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/center-align/LICENSE
  742. โ”œ chainsaw@0.1.0
  743. โ”‚ โ”œ licenses: MIT*
  744. โ”‚ โ”œ repository: https://github.com/substack/node-chainsaw
  745. โ”‚ โ”œ publisher: James Halliday
  746. โ”‚ โ”œ email: mail@substack.net
  747. โ”‚ โ”œ url: http://substack.net
  748. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/chainsaw
  749. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/chainsaw/README.markdown
  750. โ”œ chalk@0.4.0
  751. โ”‚ โ”œ licenses: MIT
  752. โ”‚ โ”œ repository: https://github.com/sindresorhus/chalk
  753. โ”‚ โ”œ publisher: Sindre Sorhus
  754. โ”‚ โ”œ email: sindresorhus@gmail.com
  755. โ”‚ โ”œ url: http://sindresorhus.com
  756. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/update-notifier/node_modules/chalk
  757. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/update-notifier/node_modules/chalk/readme.md
  758. โ”œ chalk@0.5.1
  759. โ”‚ โ”œ licenses: MIT
  760. โ”‚ โ”œ repository: https://github.com/sindresorhus/chalk
  761. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/chalk
  762. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/chalk/readme.md
  763. โ”œ chalk@1.1.3
  764. โ”‚ โ”œ licenses: MIT
  765. โ”‚ โ”œ repository: https://github.com/chalk/chalk
  766. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/node-sass/node_modules/chalk
  767. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/node-sass/node_modules/chalk/license
  768. โ”œ chalk@2.4.2
  769. โ”‚ โ”œ licenses: MIT
  770. โ”‚ โ”œ repository: https://github.com/chalk/chalk
  771. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/license-checker/node_modules/chalk
  772. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/license-checker/node_modules/chalk/license
  773. โ”œ change-case@3.0.1
  774. โ”‚ โ”œ licenses: MIT
  775. โ”‚ โ”œ repository: https://github.com/blakeembrey/change-case
  776. โ”‚ โ”œ publisher: Blake Embrey
  777. โ”‚ โ”œ email: hello@blakeembrey.com
  778. โ”‚ โ”œ url: http://blakeembrey.me
  779. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/change-case
  780. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/change-case/LICENSE
  781. โ”œ character-parser@2.2.0
  782. โ”‚ โ”œ licenses: MIT
  783. โ”‚ โ”œ repository: https://github.com/ForbesLindesay/character-parser
  784. โ”‚ โ”œ publisher: ForbesLindesay
  785. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/character-parser
  786. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/character-parser/LICENSE
  787. โ”œ cheerio@0.19.0
  788. โ”‚ โ”œ licenses: MIT
  789. โ”‚ โ”œ repository: https://github.com/cheeriojs/cheerio
  790. โ”‚ โ”œ publisher: Matt Mueller
  791. โ”‚ โ”œ email: mattmuelle@gmail.com
  792. โ”‚ โ”œ url: mat.io
  793. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/cheerio
  794. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/cheerio/Readme.md
  795. โ”œ chokidar@1.7.0
  796. โ”‚ โ”œ licenses: MIT
  797. โ”‚ โ”œ repository: https://github.com/paulmillr/chokidar
  798. โ”‚ โ”œ publisher: Paul Miller
  799. โ”‚ โ”œ url: http://paulmillr.com
  800. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/chokidar
  801. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/chokidar/README.md
  802. โ”œ chownr@1.0.1
  803. โ”‚ โ”œ licenses: ISC
  804. โ”‚ โ”œ repository: https://github.com/isaacs/chownr
  805. โ”‚ โ”œ publisher: Isaac Z. Schlueter
  806. โ”‚ โ”œ email: i@izs.me
  807. โ”‚ โ”œ url: http://blog.izs.me/
  808. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/fsevents/node_modules/chownr
  809. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/fsevents/node_modules/chownr/LICENSE
  810. โ”œ class-utils@0.3.5
  811. โ”‚ โ”œ licenses: MIT
  812. โ”‚ โ”œ repository: https://github.com/jonschlinkert/class-utils
  813. โ”‚ โ”œ publisher: Jon Schlinkert
  814. โ”‚ โ”œ url: https://github.com/jonschlinkert
  815. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/class-utils
  816. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/class-utils/LICENSE
  817. โ”œ clean-css@3.4.28
  818. โ”‚ โ”œ licenses: MIT
  819. โ”‚ โ”œ repository: https://github.com/jakubpawlowicz/clean-css
  820. โ”‚ โ”œ publisher: Jakub Pawlowicz
  821. โ”‚ โ”œ email: contact@jakubpawlowicz.com
  822. โ”‚ โ”œ url: http://twitter.com/jakubpawlowicz
  823. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/html-minifier/node_modules/clean-css
  824. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/html-minifier/node_modules/clean-css/LICENSE
  825. โ”œ clean-css@4.1.9
  826. โ”‚ โ”œ licenses: MIT
  827. โ”‚ โ”œ repository: https://github.com/jakubpawlowicz/clean-css
  828. โ”‚ โ”œ publisher: Jakub Pawlowicz
  829. โ”‚ โ”œ email: contact@jakubpawlowicz.com
  830. โ”‚ โ”œ url: http://twitter.com/jakubpawlowicz
  831. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/clean-css
  832. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/clean-css/LICENSE
  833. โ”œ cli@1.0.1
  834. โ”‚ โ”œ licenses: MIT
  835. โ”‚ โ”œ repository: https://github.com/node-js-libs/cli
  836. โ”‚ โ”œ publisher: Chris O'Hara
  837. โ”‚ โ”œ email: cohara87@gmail.com
  838. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/lib-parent-grunt/node_modules/cli
  839. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/lib-parent-grunt/node_modules/cli/README.md
  840. โ”œ cliui@2.1.0
  841. โ”‚ โ”œ licenses: ISC
  842. โ”‚ โ”œ repository: https://github.com/bcoe/cliui
  843. โ”‚ โ”œ publisher: Ben Coe
  844. โ”‚ โ”œ email: ben@npmjs.com
  845. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/cliui
  846. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/cliui/LICENSE.txt
  847. โ”œ cliui@3.2.0
  848. โ”‚ โ”œ licenses: ISC
  849. โ”‚ โ”œ repository: https://github.com/yargs/cliui
  850. โ”‚ โ”œ publisher: Ben Coe
  851. โ”‚ โ”œ email: ben@npmjs.com
  852. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/sass-graph/node_modules/cliui
  853. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/sass-graph/node_modules/cliui/LICENSE.txt
  854. โ”œ code-point-at@1.1.0
  855. โ”‚ โ”œ licenses: MIT
  856. โ”‚ โ”œ repository: https://github.com/sindresorhus/code-point-at
  857. โ”‚ โ”œ publisher: Sindre Sorhus
  858. โ”‚ โ”œ email: sindresorhus@gmail.com
  859. โ”‚ โ”œ url: sindresorhus.com
  860. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/code-point-at
  861. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/code-point-at/license
  862. โ”œ coffee-script@1.3.3
  863. โ”‚ โ”œ licenses: MIT
  864. โ”‚ โ”œ repository: https://github.com/jashkenas/coffee-script
  865. โ”‚ โ”œ publisher: Jeremy Ashkenas
  866. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/coffee-script
  867. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/coffee-script/LICENSE
  868. โ”œ collection-visit@1.0.0
  869. โ”‚ โ”œ licenses: MIT
  870. โ”‚ โ”œ repository: https://github.com/jonschlinkert/collection-visit
  871. โ”‚ โ”œ publisher: Jon Schlinkert
  872. โ”‚ โ”œ url: https://github.com/jonschlinkert
  873. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/collection-visit
  874. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/collection-visit/LICENSE
  875. โ”œ color-convert@1.9.3
  876. โ”‚ โ”œ licenses: MIT
  877. โ”‚ โ”œ repository: https://github.com/Qix-/color-convert
  878. โ”‚ โ”œ publisher: Heather Arthur
  879. โ”‚ โ”œ email: fayearthur@gmail.com
  880. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/color-convert
  881. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/color-convert/LICENSE
  882. โ”œ color-name@1.1.3
  883. โ”‚ โ”œ licenses: MIT
  884. โ”‚ โ”œ repository: https://github.com/dfcreative/color-name
  885. โ”‚ โ”œ publisher: DY
  886. โ”‚ โ”œ email: dfcreative@gmail.com
  887. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/color-name
  888. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/color-name/LICENSE
  889. โ”œ colors@0.6.2
  890. โ”‚ โ”œ licenses: Custom: http://i.imgur.com/goJdO.png
  891. โ”‚ โ”œ repository: https://github.com/Marak/colors.js
  892. โ”‚ โ”œ publisher: Marak Squires
  893. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/colors
  894. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/colors/ReadMe.md
  895. โ”œ colors@1.1.2
  896. โ”‚ โ”œ licenses: MIT
  897. โ”‚ โ”œ repository: https://github.com/Marak/colors.js
  898. โ”‚ โ”œ publisher: Marak Squires
  899. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/karma/node_modules/colors
  900. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/karma/node_modules/colors/LICENSE
  901. โ”œ combined-stream@0.0.7
  902. โ”‚ โ”œ licenses: MIT*
  903. โ”‚ โ”œ repository: https://github.com/felixge/node-combined-stream
  904. โ”‚ โ”œ publisher: Felix Geisendรถrfer
  905. โ”‚ โ”œ email: felix@debuggable.com
  906. โ”‚ โ”œ url: http://debuggable.com/
  907. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/combined-stream
  908. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/combined-stream/License
  909. โ”œ combined-stream@1.0.5
  910. โ”‚ โ”œ licenses: MIT
  911. โ”‚ โ”œ repository: https://github.com/felixge/node-combined-stream
  912. โ”‚ โ”œ publisher: Felix Geisendรถrfer
  913. โ”‚ โ”œ email: felix@debuggable.com
  914. โ”‚ โ”œ url: http://debuggable.com/
  915. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/node-sass/node_modules/combined-stream
  916. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/node-sass/node_modules/combined-stream/License
  917. โ”œ commander@2.12.2
  918. โ”‚ โ”œ licenses: MIT
  919. โ”‚ โ”œ repository: https://github.com/tj/commander.js
  920. โ”‚ โ”œ publisher: TJ Holowaychuk
  921. โ”‚ โ”œ email: tj@vision-media.ca
  922. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/commander
  923. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/commander/LICENSE
  924. โ”œ commander@2.8.1
  925. โ”‚ โ”œ licenses: MIT
  926. โ”‚ โ”œ repository: https://github.com/tj/commander.js
  927. โ”‚ โ”œ publisher: TJ Holowaychuk
  928. โ”‚ โ”œ email: tj@vision-media.ca
  929. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/html-minifier/node_modules/clean-css/node_modules/commander
  930. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/html-minifier/node_modules/clean-css/node_modules/commander/LICENSE
  931. โ”œ commander@2.9.0
  932. โ”‚ โ”œ licenses: MIT
  933. โ”‚ โ”œ repository: https://github.com/tj/commander.js
  934. โ”‚ โ”œ publisher: TJ Holowaychuk
  935. โ”‚ โ”œ email: tj@vision-media.ca
  936. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/html-minifier/node_modules/commander
  937. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/html-minifier/node_modules/commander/LICENSE
  938. โ”œ component-bind@1.0.0
  939. โ”‚ โ”œ licenses: MIT*
  940. โ”‚ โ”œ repository: https://github.com/component/bind
  941. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/component-bind
  942. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/component-bind/Readme.md
  943. โ”œ component-emitter@1.1.2
  944. โ”‚ โ”œ licenses: MIT*
  945. โ”‚ โ”œ repository: https://github.com/component/emitter
  946. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/component-emitter
  947. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/component-emitter/Readme.md
  948. โ”œ component-emitter@1.2.1
  949. โ”‚ โ”œ licenses: MIT
  950. โ”‚ โ”œ repository: https://github.com/component/emitter
  951. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/cache-base/node_modules/component-emitter
  952. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/cache-base/node_modules/component-emitter/LICENSE
  953. โ”œ component-inherit@0.0.3
  954. โ”‚ โ”œ licenses: MIT*
  955. โ”‚ โ”œ repository: https://github.com/component/inherit
  956. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/component-inherit
  957. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/component-inherit/Readme.md
  958. โ”œ compress-commons@0.2.9
  959. โ”‚ โ”œ licenses: MIT
  960. โ”‚ โ”œ repository: https://github.com/archiverjs/node-compress-commons
  961. โ”‚ โ”œ publisher: Chris Talkington
  962. โ”‚ โ”œ url: http://christalkington.com/
  963. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/compress-commons
  964. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/compress-commons/LICENSE
  965. โ”œ compressible@2.0.12
  966. โ”‚ โ”œ licenses: MIT
  967. โ”‚ โ”œ repository: https://github.com/jshttp/compressible
  968. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/compressible
  969. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/compressible/LICENSE
  970. โ”œ compression@1.5.2
  971. โ”‚ โ”œ licenses: MIT
  972. โ”‚ โ”œ repository: https://github.com/expressjs/compression
  973. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/compression
  974. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/compression/LICENSE
  975. โ”œ concat-map@0.0.1
  976. โ”‚ โ”œ licenses: MIT
  977. โ”‚ โ”œ repository: https://github.com/substack/node-concat-map
  978. โ”‚ โ”œ publisher: James Halliday
  979. โ”‚ โ”œ email: mail@substack.net
  980. โ”‚ โ”œ url: http://substack.net
  981. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/concat-map
  982. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/concat-map/LICENSE
  983. โ”œ concat-stream@1.6.0
  984. โ”‚ โ”œ licenses: MIT
  985. โ”‚ โ”œ repository: https://github.com/maxogden/concat-stream
  986. โ”‚ โ”œ publisher: Max Ogden
  987. โ”‚ โ”œ email: max@maxogden.com
  988. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/concat-stream
  989. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/concat-stream/LICENSE
  990. โ”œ config-chain@1.1.11
  991. โ”‚ โ”œ licenses: MIT
  992. โ”‚ โ”œ repository: https://github.com/dominictarr/config-chain
  993. โ”‚ โ”œ publisher: Dominic Tarr
  994. โ”‚ โ”œ email: dominic.tarr@gmail.com
  995. โ”‚ โ”œ url: http://dominictarr.com
  996. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/config-chain
  997. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/config-chain/LICENCE
  998. โ”œ configstore@0.3.2
  999. โ”‚ โ”œ licenses: BSD*
  1000. โ”‚ โ”œ repository: https://github.com/yeoman/configstore
  1001. โ”‚ โ”œ publisher: Sindre Sorhus
  1002. โ”‚ โ”œ email: sindresorhus@gmail.com
  1003. โ”‚ โ”œ url: http://sindresorhus.com
  1004. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/configstore
  1005. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/configstore/readme.md
  1006. โ”œ connect-livereload@0.4.1
  1007. โ”‚ โ”œ licenses: MIT*
  1008. โ”‚ โ”œ repository: https://github.com/intesso/connect-livereload
  1009. โ”‚ โ”œ publisher: Andi Neck
  1010. โ”‚ โ”œ email: andi.neck@intesso.com
  1011. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/connect-livereload
  1012. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/connect-livereload/LICENSE
  1013. โ”œ connect-timeout@1.6.2
  1014. โ”‚ โ”œ licenses: MIT
  1015. โ”‚ โ”œ repository: https://github.com/expressjs/timeout
  1016. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/connect-timeout
  1017. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/connect-timeout/LICENSE
  1018. โ”œ connect@2.30.2
  1019. โ”‚ โ”œ licenses: MIT
  1020. โ”‚ โ”œ repository: https://github.com/senchalabs/connect
  1021. โ”‚ โ”œ publisher: TJ Holowaychuk
  1022. โ”‚ โ”œ email: tj@vision-media.ca
  1023. โ”‚ โ”œ url: http://tjholowaychuk.com
  1024. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/connect
  1025. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/connect/LICENSE
  1026. โ”œ connect@3.6.5
  1027. โ”‚ โ”œ licenses: MIT
  1028. โ”‚ โ”œ repository: https://github.com/senchalabs/connect
  1029. โ”‚ โ”œ publisher: TJ Holowaychuk
  1030. โ”‚ โ”œ email: tj@vision-media.ca
  1031. โ”‚ โ”œ url: http://tjholowaychuk.com
  1032. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/freddie/node_modules/connect
  1033. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/freddie/node_modules/connect/LICENSE
  1034. โ”œ console-browserify@1.1.0
  1035. โ”‚ โ”œ licenses: MIT
  1036. โ”‚ โ”œ repository: https://github.com/Raynos/console-browserify
  1037. โ”‚ โ”œ publisher: Raynos
  1038. โ”‚ โ”œ email: raynos2@gmail.com
  1039. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/lib-parent-grunt/node_modules/console-browserify
  1040. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/lib-parent-grunt/node_modules/console-browserify/LICENCE
  1041. โ”œ console-control-strings@1.1.0
  1042. โ”‚ โ”œ licenses: ISC
  1043. โ”‚ โ”œ repository: https://github.com/iarna/console-control-strings
  1044. โ”‚ โ”œ publisher: Rebecca Turner
  1045. โ”‚ โ”œ email: me@re-becca.org
  1046. โ”‚ โ”œ url: http://re-becca.org/
  1047. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/console-control-strings
  1048. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/console-control-strings/LICENSE
  1049. โ”œ constant-case@2.0.0
  1050. โ”‚ โ”œ licenses: MIT
  1051. โ”‚ โ”œ repository: https://github.com/blakeembrey/constant-case
  1052. โ”‚ โ”œ publisher: Blake Embrey
  1053. โ”‚ โ”œ email: hello@blakeembrey.com
  1054. โ”‚ โ”œ url: http://blakeembrey.me
  1055. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/constant-case
  1056. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/constant-case/LICENSE
  1057. โ”œ constantinople@3.1.0
  1058. โ”‚ โ”œ licenses: MIT
  1059. โ”‚ โ”œ repository: https://github.com/ForbesLindesay/constantinople
  1060. โ”‚ โ”œ publisher: ForbesLindesay
  1061. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/constantinople
  1062. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/constantinople/LICENSE
  1063. โ”œ content-disposition@0.5.0
  1064. โ”‚ โ”œ licenses: MIT
  1065. โ”‚ โ”œ repository: https://github.com/jshttp/content-disposition
  1066. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/content-disposition
  1067. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/content-disposition/LICENSE
  1068. โ”œ content-type@1.0.4
  1069. โ”‚ โ”œ licenses: MIT
  1070. โ”‚ โ”œ repository: https://github.com/jshttp/content-type
  1071. โ”‚ โ”œ publisher: Douglas Christopher Wilson
  1072. โ”‚ โ”œ email: doug@somethingdoug.com
  1073. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/content-type
  1074. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/content-type/LICENSE
  1075. โ”œ convert-source-map@1.1.3
  1076. โ”‚ โ”œ licenses: MIT
  1077. โ”‚ โ”œ repository: https://github.com/thlorenz/convert-source-map
  1078. โ”‚ โ”œ publisher: Thorsten Lorenz
  1079. โ”‚ โ”œ email: thlorenz@gmx.de
  1080. โ”‚ โ”œ url: http://thlorenz.com
  1081. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/convert-source-map
  1082. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/convert-source-map/LICENSE
  1083. โ”œ cookie-parser@1.3.5
  1084. โ”‚ โ”œ licenses: MIT
  1085. โ”‚ โ”œ repository: https://github.com/expressjs/cookie-parser
  1086. โ”‚ โ”œ publisher: TJ Holowaychuk
  1087. โ”‚ โ”œ email: tj@vision-media.ca
  1088. โ”‚ โ”œ url: http://tjholowaychuk.com
  1089. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/cookie-parser
  1090. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/cookie-parser/LICENSE
  1091. โ”œ cookie-signature@1.0.6
  1092. โ”‚ โ”œ licenses: MIT
  1093. โ”‚ โ”œ repository: https://github.com/visionmedia/node-cookie-signature
  1094. โ”‚ โ”œ publisher: TJ Holowaychuk
  1095. โ”‚ โ”œ email: tj@learnboost.com
  1096. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/cookie-signature
  1097. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/cookie-signature/Readme.md
  1098. โ”œ cookie@0.1.2
  1099. โ”‚ โ”œ licenses: MIT*
  1100. โ”‚ โ”œ repository: https://github.com/shtylman/node-cookie
  1101. โ”‚ โ”œ publisher: Roman Shtylman
  1102. โ”‚ โ”œ email: shtylman@gmail.com
  1103. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/cookie
  1104. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/cookie/LICENSE
  1105. โ”œ cookie@0.1.3
  1106. โ”‚ โ”œ licenses: MIT
  1107. โ”‚ โ”œ repository: https://github.com/jshttp/cookie
  1108. โ”‚ โ”œ publisher: Roman Shtylman
  1109. โ”‚ โ”œ email: shtylman@gmail.com
  1110. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/cookie-parser/node_modules/cookie
  1111. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/cookie-parser/node_modules/cookie/LICENSE
  1112. โ”œ cookie@0.3.1
  1113. โ”‚ โ”œ licenses: MIT
  1114. โ”‚ โ”œ repository: https://github.com/jshttp/cookie
  1115. โ”‚ โ”œ publisher: Roman Shtylman
  1116. โ”‚ โ”œ email: shtylman@gmail.com
  1117. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/freddie/node_modules/cookie
  1118. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/freddie/node_modules/cookie/LICENSE
  1119. โ”œ copy-descriptor@0.1.1
  1120. โ”‚ โ”œ licenses: MIT
  1121. โ”‚ โ”œ repository: https://github.com/jonschlinkert/copy-descriptor
  1122. โ”‚ โ”œ publisher: Jon Schlinkert
  1123. โ”‚ โ”œ url: https://github.com/jonschlinkert
  1124. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/copy-descriptor
  1125. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/copy-descriptor/LICENSE
  1126. โ”œ core-js@0.9.18
  1127. โ”‚ โ”œ licenses: MIT
  1128. โ”‚ โ”œ repository: https://github.com/zloirock/core-js
  1129. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/core-js
  1130. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/core-js/LICENSE
  1131. โ”œ core-util-is@1.0.2
  1132. โ”‚ โ”œ licenses: MIT
  1133. โ”‚ โ”œ repository: https://github.com/isaacs/core-util-is
  1134. โ”‚ โ”œ publisher: Isaac Z. Schlueter
  1135. โ”‚ โ”œ email: i@izs.me
  1136. โ”‚ โ”œ url: http://blog.izs.me/
  1137. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/core-util-is
  1138. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/core-util-is/LICENSE
  1139. โ”œ crc32-stream@0.3.4
  1140. โ”‚ โ”œ licenses: MIT
  1141. โ”‚ โ”œ repository: https://github.com/archiverjs/node-crc32-stream
  1142. โ”‚ โ”œ publisher: Chris Talkington
  1143. โ”‚ โ”œ url: http://christalkington.com/
  1144. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/crc32-stream
  1145. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/crc32-stream/LICENSE
  1146. โ”œ crc@3.2.1
  1147. โ”‚ โ”œ licenses: MIT
  1148. โ”‚ โ”œ repository: https://github.com/alexgorbatchev/node-crc
  1149. โ”‚ โ”œ publisher: Alex Gorbatchev
  1150. โ”‚ โ”œ url: https://github.com/alexgorbatchev
  1151. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/crc
  1152. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/crc/LICENSE
  1153. โ”œ crc@3.3.0
  1154. โ”‚ โ”œ licenses: MIT
  1155. โ”‚ โ”œ repository: https://github.com/alexgorbatchev/node-crc
  1156. โ”‚ โ”œ publisher: Alex Gorbatchev
  1157. โ”‚ โ”œ url: https://github.com/alexgorbatchev
  1158. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/express-session/node_modules/crc
  1159. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/express-session/node_modules/crc/LICENSE
  1160. โ”œ cross-spawn@0.2.9
  1161. โ”‚ โ”œ licenses: MIT
  1162. โ”‚ โ”œ repository: https://github.com/IndigoUnited/node-cross-spawn
  1163. โ”‚ โ”œ publisher: IndigoUnited
  1164. โ”‚ โ”œ email: hello@indigounited.com
  1165. โ”‚ โ”œ url: http://indigounited.com
  1166. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/cross-spawn
  1167. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/cross-spawn/LICENSE
  1168. โ”œ cross-spawn@3.0.1
  1169. โ”‚ โ”œ licenses: MIT
  1170. โ”‚ โ”œ repository: https://github.com/IndigoUnited/node-cross-spawn
  1171. โ”‚ โ”œ publisher: IndigoUnited
  1172. โ”‚ โ”œ email: hello@indigounited.com
  1173. โ”‚ โ”œ url: http://indigounited.com
  1174. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/node-sass/node_modules/cross-spawn
  1175. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/node-sass/node_modules/cross-spawn/LICENSE
  1176. โ”œ cryptiles@0.2.2
  1177. โ”‚ โ”œ licenses: BSD
  1178. โ”‚ โ”œ repository: https://github.com/hueniverse/cryptiles
  1179. โ”‚ โ”œ publisher: Eran Hammer
  1180. โ”‚ โ”œ email: eran@hueniverse.com
  1181. โ”‚ โ”œ url: http://hueniverse.com
  1182. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/cryptiles
  1183. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/cryptiles/LICENSE
  1184. โ”œ cryptiles@2.0.5
  1185. โ”‚ โ”œ licenses: BSD-3-Clause
  1186. โ”‚ โ”œ repository: https://github.com/hapijs/cryptiles
  1187. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/node-sass/node_modules/cryptiles
  1188. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/node-sass/node_modules/cryptiles/LICENSE
  1189. โ”œ csrf@3.0.6
  1190. โ”‚ โ”œ licenses: MIT
  1191. โ”‚ โ”œ repository: https://github.com/pillarjs/csrf
  1192. โ”‚ โ”œ publisher: Jonathan Ong
  1193. โ”‚ โ”œ email: me@jongleberry.com
  1194. โ”‚ โ”œ url: http://jongleberry.com
  1195. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/csrf
  1196. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/csrf/LICENSE
  1197. โ”œ css-select@1.0.0
  1198. โ”‚ โ”œ licenses: BSD*
  1199. โ”‚ โ”œ repository: https://github.com/fb55/css-select
  1200. โ”‚ โ”œ publisher: Felix Boehm
  1201. โ”‚ โ”œ email: me@feedic.com
  1202. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/css-select
  1203. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/css-select/LICENSE
  1204. โ”œ css-what@1.0.0
  1205. โ”‚ โ”œ licenses: BSD*
  1206. โ”‚ โ”œ repository: https://github.com/fb55/css-what
  1207. โ”‚ โ”œ publisher: Felix Bรถhm
  1208. โ”‚ โ”œ email: me@feedic.com
  1209. โ”‚ โ”œ url: http://feedic.com
  1210. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/css-what
  1211. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/css-what/LICENSE
  1212. โ”œ csurf@1.8.3
  1213. โ”‚ โ”œ licenses: MIT
  1214. โ”‚ โ”œ repository: https://github.com/expressjs/csurf
  1215. โ”‚ โ”œ publisher: Jonathan Ong
  1216. โ”‚ โ”œ email: me@jongleberry.com
  1217. โ”‚ โ”œ url: http://jongleberry.com
  1218. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/csurf
  1219. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/csurf/LICENSE
  1220. โ”œ ctype@0.5.3
  1221. โ”‚ โ”œ licenses: MIT*
  1222. โ”‚ โ”œ repository: https://github.com/rmustacc/node-ctype
  1223. โ”‚ โ”œ publisher: Robert Mustacchi
  1224. โ”‚ โ”œ email: rm@fingolfin.org
  1225. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/ctype
  1226. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/ctype/LICENSE
  1227. โ”œ currently-unhandled@0.4.1
  1228. โ”‚ โ”œ licenses: MIT
  1229. โ”‚ โ”œ repository: https://github.com/jamestalmage/currently-unhandled
  1230. โ”‚ โ”œ publisher: James Talmage
  1231. โ”‚ โ”œ email: james@talmage.io
  1232. โ”‚ โ”œ url: github.com/jamestalmage
  1233. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/currently-unhandled
  1234. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/currently-unhandled/license
  1235. โ”œ custom-event@1.0.1
  1236. โ”‚ โ”œ licenses: MIT
  1237. โ”‚ โ”œ repository: https://github.com/webmodules/custom-event
  1238. โ”‚ โ”œ publisher: Nathan Rajlich
  1239. โ”‚ โ”œ email: nathan@tootallnate.net
  1240. โ”‚ โ”œ url: http://n8.io/
  1241. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/custom-event
  1242. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/custom-event/LICENSE
  1243. โ”œ d@0.1.1
  1244. โ”‚ โ”œ licenses: MIT
  1245. โ”‚ โ”œ repository: https://github.com/medikoo/d
  1246. โ”‚ โ”œ publisher: Mariusz Nowak
  1247. โ”‚ โ”œ email: medyk@medikoo.com
  1248. โ”‚ โ”œ url: http://www.medikoo.com/
  1249. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/d
  1250. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/d/LICENCE
  1251. โ”œ d@1.0.0
  1252. โ”‚ โ”œ licenses: MIT
  1253. โ”‚ โ”œ repository: https://github.com/medikoo/d
  1254. โ”‚ โ”œ publisher: Mariusz Nowak
  1255. โ”‚ โ”œ email: medyk@medikoo.com
  1256. โ”‚ โ”œ url: http://www.medikoo.com/
  1257. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/es6-iterator/node_modules/d
  1258. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/es6-iterator/node_modules/d/LICENSE
  1259. โ”œ dargs@4.1.0
  1260. โ”‚ โ”œ licenses: MIT
  1261. โ”‚ โ”œ repository: https://github.com/sindresorhus/dargs
  1262. โ”‚ โ”œ publisher: Sindre Sorhus
  1263. โ”‚ โ”œ email: sindresorhus@gmail.com
  1264. โ”‚ โ”œ url: sindresorhus.com
  1265. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/dargs
  1266. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/dargs/license
  1267. โ”œ dashdash@1.14.1
  1268. โ”‚ โ”œ licenses: MIT
  1269. โ”‚ โ”œ repository: https://github.com/trentm/node-dashdash
  1270. โ”‚ โ”œ publisher: Trent Mick
  1271. โ”‚ โ”œ email: trentm@gmail.com
  1272. โ”‚ โ”œ url: http://trentm.com
  1273. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/dashdash
  1274. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/dashdash/LICENSE.txt
  1275. โ”œ date-now@0.1.4
  1276. โ”‚ โ”œ licenses: MIT
  1277. โ”‚ โ”œ repository: https://github.com/Colingo/date-now
  1278. โ”‚ โ”œ publisher: Raynos
  1279. โ”‚ โ”œ email: raynos2@gmail.com
  1280. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/lib-parent-grunt/node_modules/date-now
  1281. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/lib-parent-grunt/node_modules/date-now/LICENCE
  1282. โ”œ dateformat@1.0.12
  1283. โ”‚ โ”œ licenses: MIT
  1284. โ”‚ โ”œ repository: https://github.com/felixge/node-dateformat
  1285. โ”‚ โ”œ publisher: Steven Levithan
  1286. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/karma-coverage/node_modules/dateformat
  1287. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/karma-coverage/node_modules/dateformat/LICENSE
  1288. โ”œ dateformat@1.0.2-1.2.3
  1289. โ”‚ โ”œ licenses: MIT*
  1290. โ”‚ โ”œ publisher: Steven Levithan
  1291. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/dateformat
  1292. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/dateformat/Readme.md
  1293. โ”œ dateformat@1.0.7-1.2.3
  1294. โ”‚ โ”œ licenses: MIT*
  1295. โ”‚ โ”œ repository: https://github.com/felixge/node-dateformat
  1296. โ”‚ โ”œ publisher: Steven Levithan
  1297. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/lib-parent-grunt/node_modules/grunt-nexus-deployer/node_modules/dateformat
  1298. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/lib-parent-grunt/node_modules/grunt-nexus-deployer/node_modules/dateformat/LICENSE
  1299. โ”œ debug@0.7.4
  1300. โ”‚ โ”œ licenses: MIT*
  1301. โ”‚ โ”œ repository: https://github.com/visionmedia/debug
  1302. โ”‚ โ”œ publisher: TJ Holowaychuk
  1303. โ”‚ โ”œ email: tj@vision-media.ca
  1304. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/socket.io-client/node_modules/debug
  1305. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/socket.io-client/node_modules/debug/Readme.md
  1306. โ”œ debug@1.0.2
  1307. โ”‚ โ”œ licenses: MIT*
  1308. โ”‚ โ”œ repository: https://github.com/visionmedia/debug
  1309. โ”‚ โ”œ publisher: TJ Holowaychuk
  1310. โ”‚ โ”œ email: tj@vision-media.ca
  1311. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/socket.io-adapter/node_modules/debug
  1312. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/socket.io-adapter/node_modules/debug/Readme.md
  1313. โ”œ debug@1.0.3
  1314. โ”‚ โ”œ licenses: MIT*
  1315. โ”‚ โ”œ repository: https://github.com/visionmedia/debug
  1316. โ”‚ โ”œ publisher: TJ Holowaychuk
  1317. โ”‚ โ”œ email: tj@vision-media.ca
  1318. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/engine.io/node_modules/debug
  1319. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/engine.io/node_modules/debug/Readme.md
  1320. โ”œ debug@1.0.4
  1321. โ”‚ โ”œ licenses: MIT*
  1322. โ”‚ โ”œ repository: https://github.com/visionmedia/debug
  1323. โ”‚ โ”œ publisher: TJ Holowaychuk
  1324. โ”‚ โ”œ email: tj@vision-media.ca
  1325. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/engine.io-client/node_modules/debug
  1326. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/engine.io-client/node_modules/debug/Readme.md
  1327. โ”œ debug@2.1.0
  1328. โ”‚ โ”œ licenses: MIT
  1329. โ”‚ โ”œ repository: https://github.com/visionmedia/debug
  1330. โ”‚ โ”œ publisher: TJ Holowaychuk
  1331. โ”‚ โ”œ email: tj@vision-media.ca
  1332. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/socket.io/node_modules/debug
  1333. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/socket.io/node_modules/debug/Readme.md
  1334. โ”œ debug@2.2.0
  1335. โ”‚ โ”œ licenses: MIT
  1336. โ”‚ โ”œ repository: https://github.com/visionmedia/debug
  1337. โ”‚ โ”œ publisher: TJ Holowaychuk
  1338. โ”‚ โ”œ email: tj@vision-media.ca
  1339. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/debug
  1340. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/debug/Readme.md
  1341. โ”œ debug@2.6.9
  1342. โ”‚ โ”œ licenses: MIT
  1343. โ”‚ โ”œ repository: https://github.com/visionmedia/debug
  1344. โ”‚ โ”œ publisher: TJ Holowaychuk
  1345. โ”‚ โ”œ email: tj@vision-media.ca
  1346. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/freddie/node_modules/debug
  1347. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/freddie/node_modules/debug/LICENSE
  1348. โ”œ debug@3.2.6
  1349. โ”‚ โ”œ licenses: MIT
  1350. โ”‚ โ”œ repository: https://github.com/visionmedia/debug
  1351. โ”‚ โ”œ publisher: TJ Holowaychuk
  1352. โ”‚ โ”œ email: tj@vision-media.ca
  1353. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/license-checker/node_modules/debug
  1354. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/license-checker/node_modules/debug/LICENSE
  1355. โ”œ debuglog@1.0.1
  1356. โ”‚ โ”œ licenses: MIT
  1357. โ”‚ โ”œ repository: https://github.com/sam-github/node-debuglog
  1358. โ”‚ โ”œ publisher: Sam Roberts
  1359. โ”‚ โ”œ email: sam@strongloop.com
  1360. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/debuglog
  1361. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/debuglog/LICENSE
  1362. โ”œ decamelize@1.2.0
  1363. โ”‚ โ”œ licenses: MIT
  1364. โ”‚ โ”œ repository: https://github.com/sindresorhus/decamelize
  1365. โ”‚ โ”œ publisher: Sindre Sorhus
  1366. โ”‚ โ”œ email: sindresorhus@gmail.com
  1367. โ”‚ โ”œ url: sindresorhus.com
  1368. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/decamelize
  1369. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/decamelize/license
  1370. โ”œ decode-uri-component@0.2.0
  1371. โ”‚ โ”œ licenses: MIT
  1372. โ”‚ โ”œ repository: https://github.com/SamVerschueren/decode-uri-component
  1373. โ”‚ โ”œ publisher: Sam Verschueren
  1374. โ”‚ โ”œ email: sam.verschueren@gmail.com
  1375. โ”‚ โ”œ url: github.com/SamVerschueren
  1376. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/decode-uri-component
  1377. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/decode-uri-component/license
  1378. โ”œ decompress-zip@0.0.8
  1379. โ”‚ โ”œ licenses: MIT
  1380. โ”‚ โ”œ repository: https://github.com/bower/decompress-zip
  1381. โ”‚ โ”œ publisher: The Bower authors
  1382. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/decompress-zip
  1383. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/decompress-zip/README.md
  1384. โ”œ deep-extend@0.2.11
  1385. โ”‚ โ”œ licenses: MIT
  1386. โ”‚ โ”œ repository: https://github.com/unclechu/node-deep-extend
  1387. โ”‚ โ”œ publisher: Viacheslav Lotsmanov
  1388. โ”‚ โ”œ email: lotsmanov89@gmail.com
  1389. โ”‚ โ”œ url: unclechu
  1390. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/deep-extend
  1391. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/deep-extend/LICENSE
  1392. โ”œ deep-extend@0.5.1
  1393. โ”‚ โ”œ licenses: MIT
  1394. โ”‚ โ”œ repository: https://github.com/unclechu/node-deep-extend
  1395. โ”‚ โ”œ publisher: Viacheslav Lotsmanov
  1396. โ”‚ โ”œ email: lotsmanov89@gmail.com
  1397. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/fsevents/node_modules/deep-extend
  1398. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/fsevents/node_modules/deep-extend/LICENSE
  1399. โ”œ deep-is@0.1.3
  1400. โ”‚ โ”œ licenses: MIT
  1401. โ”‚ โ”œ repository: https://github.com/thlorenz/deep-is
  1402. โ”‚ โ”œ publisher: Thorsten Lorenz
  1403. โ”‚ โ”œ email: thlorenz@gmx.de
  1404. โ”‚ โ”œ url: http://thlorenz.com
  1405. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/deep-is
  1406. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/deep-is/LICENSE
  1407. โ”œ define-property@0.2.5
  1408. โ”‚ โ”œ licenses: MIT
  1409. โ”‚ โ”œ repository: https://github.com/jonschlinkert/define-property
  1410. โ”‚ โ”œ publisher: Jon Schlinkert
  1411. โ”‚ โ”œ url: https://github.com/jonschlinkert
  1412. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/static-extend/node_modules/define-property
  1413. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/static-extend/node_modules/define-property/LICENSE
  1414. โ”œ define-property@1.0.0
  1415. โ”‚ โ”œ licenses: MIT
  1416. โ”‚ โ”œ repository: https://github.com/jonschlinkert/define-property
  1417. โ”‚ โ”œ publisher: Jon Schlinkert
  1418. โ”‚ โ”œ url: https://github.com/jonschlinkert
  1419. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/define-property
  1420. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/define-property/LICENSE
  1421. โ”œ delayed-stream@0.0.5
  1422. โ”‚ โ”œ licenses: MIT*
  1423. โ”‚ โ”œ repository: https://github.com/felixge/node-delayed-stream
  1424. โ”‚ โ”œ publisher: Felix Geisendรถrfer
  1425. โ”‚ โ”œ email: felix@debuggable.com
  1426. โ”‚ โ”œ url: http://debuggable.com/
  1427. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/delayed-stream
  1428. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/delayed-stream/License
  1429. โ”œ delayed-stream@1.0.0
  1430. โ”‚ โ”œ licenses: MIT
  1431. โ”‚ โ”œ repository: https://github.com/felixge/node-delayed-stream
  1432. โ”‚ โ”œ publisher: Felix Geisendรถrfer
  1433. โ”‚ โ”œ email: felix@debuggable.com
  1434. โ”‚ โ”œ url: http://debuggable.com/
  1435. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/node-sass/node_modules/delayed-stream
  1436. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/node-sass/node_modules/delayed-stream/License
  1437. โ”œ delegates@1.0.0
  1438. โ”‚ โ”œ licenses: MIT
  1439. โ”‚ โ”œ repository: https://github.com/visionmedia/node-delegates
  1440. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/delegates
  1441. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/delegates/License
  1442. โ”œ depd@1.0.1
  1443. โ”‚ โ”œ licenses: MIT
  1444. โ”‚ โ”œ repository: https://github.com/dougwilson/nodejs-depd
  1445. โ”‚ โ”œ publisher: Douglas Christopher Wilson
  1446. โ”‚ โ”œ email: doug@somethingdoug.com
  1447. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/depd
  1448. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/depd/LICENSE
  1449. โ”œ depd@1.1.1
  1450. โ”‚ โ”œ licenses: MIT
  1451. โ”‚ โ”œ repository: https://github.com/dougwilson/nodejs-depd
  1452. โ”‚ โ”œ publisher: Douglas Christopher Wilson
  1453. โ”‚ โ”œ email: doug@somethingdoug.com
  1454. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/freddie/node_modules/depd
  1455. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/freddie/node_modules/depd/LICENSE
  1456. โ”œ destroy@1.0.3
  1457. โ”‚ โ”œ licenses: MIT
  1458. โ”‚ โ”œ repository: https://github.com/stream-utils/destroy
  1459. โ”‚ โ”œ publisher: Jonathan Ong
  1460. โ”‚ โ”œ email: me@jongleberry.com
  1461. โ”‚ โ”œ url: http://jongleberry.com
  1462. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/destroy
  1463. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/destroy/README.md
  1464. โ”œ destroy@1.0.4
  1465. โ”‚ โ”œ licenses: MIT
  1466. โ”‚ โ”œ repository: https://github.com/stream-utils/destroy
  1467. โ”‚ โ”œ publisher: Jonathan Ong
  1468. โ”‚ โ”œ email: me@jongleberry.com
  1469. โ”‚ โ”œ url: http://jongleberry.com
  1470. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/freddie/node_modules/destroy
  1471. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/freddie/node_modules/destroy/LICENSE
  1472. โ”œ detect-file@1.0.0
  1473. โ”‚ โ”œ licenses: MIT
  1474. โ”‚ โ”œ repository: https://github.com/doowb/detect-file
  1475. โ”‚ โ”œ publisher: Brian Woodward
  1476. โ”‚ โ”œ url: https://github.com/doowb
  1477. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/detect-file
  1478. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/detect-file/LICENSE
  1479. โ”œ detect-libc@1.0.3
  1480. โ”‚ โ”œ licenses: Apache-2.0
  1481. โ”‚ โ”œ repository: https://github.com/lovell/detect-libc
  1482. โ”‚ โ”œ publisher: Lovell Fuller
  1483. โ”‚ โ”œ email: npm@lovell.info
  1484. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/fsevents/node_modules/detect-libc
  1485. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/fsevents/node_modules/detect-libc/LICENSE
  1486. โ”œ dezalgo@1.0.3
  1487. โ”‚ โ”œ licenses: ISC
  1488. โ”‚ โ”œ repository: https://github.com/npm/dezalgo
  1489. โ”‚ โ”œ publisher: Isaac Z. Schlueter
  1490. โ”‚ โ”œ email: i@izs.me
  1491. โ”‚ โ”œ url: http://blog.izs.me/
  1492. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/dezalgo
  1493. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/dezalgo/LICENSE
  1494. โ”œ di@0.0.1
  1495. โ”‚ โ”œ licenses: MIT
  1496. โ”‚ โ”œ repository: https://github.com/vojtajina/node-di
  1497. โ”‚ โ”œ publisher: Vojta Jina
  1498. โ”‚ โ”œ email: vojta.jina@gmail.com
  1499. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/di
  1500. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/di/LICENSE
  1501. โ”œ doctypes@1.1.0
  1502. โ”‚ โ”œ licenses: MIT
  1503. โ”‚ โ”œ repository: https://github.com/pugjs/doctypes
  1504. โ”‚ โ”œ publisher: ForbesLindesay
  1505. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/doctypes
  1506. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/doctypes/LICENSE
  1507. โ”œ dom-serialize@2.2.1
  1508. โ”‚ โ”œ licenses: MIT
  1509. โ”‚ โ”œ repository: https://github.com/webmodules/dom-serialize
  1510. โ”‚ โ”œ publisher: Nathan Rajlich
  1511. โ”‚ โ”œ email: nathan@tootallnate.net
  1512. โ”‚ โ”œ url: http://n8.io/
  1513. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/dom-serialize
  1514. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/dom-serialize/README.md
  1515. โ”œ dom-serializer@0.1.0
  1516. โ”‚ โ”œ licenses: MIT
  1517. โ”‚ โ”œ repository: https://github.com/cheeriojs/dom-renderer
  1518. โ”‚ โ”œ publisher: Felix Boehm
  1519. โ”‚ โ”œ email: me@feedic.com
  1520. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/dom-serializer
  1521. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/dom-serializer/LICENSE
  1522. โ”œ domelementtype@1.1.3
  1523. โ”‚ โ”œ licenses: BSD*
  1524. โ”‚ โ”œ repository: https://github.com/FB55/domelementtype
  1525. โ”‚ โ”œ publisher: Felix Boehm
  1526. โ”‚ โ”œ email: me@feedic.com
  1527. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/dom-serializer/node_modules/domelementtype
  1528. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/dom-serializer/node_modules/domelementtype/LICENSE
  1529. โ”œ domelementtype@1.3.0
  1530. โ”‚ โ”œ licenses: BSD*
  1531. โ”‚ โ”œ repository: https://github.com/FB55/domelementtype
  1532. โ”‚ โ”œ publisher: Felix Boehm
  1533. โ”‚ โ”œ email: me@feedic.com
  1534. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/domelementtype
  1535. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/domelementtype/LICENSE
  1536. โ”œ domelementtype@1.3.1
  1537. โ”‚ โ”œ licenses: BSD-2-Clause
  1538. โ”‚ โ”œ repository: https://github.com/fb55/domelementtype
  1539. โ”‚ โ”œ publisher: Felix Boehm
  1540. โ”‚ โ”œ email: me@feedic.com
  1541. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/lib-parent-grunt/node_modules/domelementtype
  1542. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/lib-parent-grunt/node_modules/domelementtype/LICENSE
  1543. โ”œ domhandler@2.3.0
  1544. โ”‚ โ”œ licenses: BSD*
  1545. โ”‚ โ”œ repository: https://github.com/fb55/DomHandler
  1546. โ”‚ โ”œ publisher: Felix Boehm
  1547. โ”‚ โ”œ email: me@feedic.com
  1548. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/domhandler
  1549. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/domhandler/LICENSE
  1550. โ”œ domutils@1.4.3
  1551. โ”‚ โ”œ licenses: BSD*
  1552. โ”‚ โ”œ repository: https://github.com/FB55/domutils
  1553. โ”‚ โ”œ publisher: Felix Boehm
  1554. โ”‚ โ”œ email: me@feedic.com
  1555. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/domutils
  1556. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/domutils/LICENSE
  1557. โ”œ domutils@1.5.1
  1558. โ”‚ โ”œ licenses: BSD*
  1559. โ”‚ โ”œ repository: https://github.com/FB55/domutils
  1560. โ”‚ โ”œ publisher: Felix Boehm
  1561. โ”‚ โ”œ email: me@feedic.com
  1562. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/htmlparser2/node_modules/domutils
  1563. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/htmlparser2/node_modules/domutils/LICENSE
  1564. โ”œ dot-case@2.1.1
  1565. โ”‚ โ”œ licenses: MIT
  1566. โ”‚ โ”œ repository: https://github.com/blakeembrey/dot-case
  1567. โ”‚ โ”œ publisher: Blake Embrey
  1568. โ”‚ โ”œ email: hello@blakeembrey.com
  1569. โ”‚ โ”œ url: http://blakeembrey.me
  1570. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/dot-case
  1571. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/dot-case/LICENSE
  1572. โ”œ dummy-json@1.0.1
  1573. โ”‚ โ”œ licenses: MIT
  1574. โ”‚ โ”œ repository: https://github.com/webroo/dummy-json
  1575. โ”‚ โ”œ publisher: Matt Sweetman
  1576. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/dummy-json
  1577. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/dummy-json/LICENSE
  1578. โ”œ duplexer@0.1.1
  1579. โ”‚ โ”œ licenses: MIT
  1580. โ”‚ โ”œ repository: https://github.com/Raynos/duplexer
  1581. โ”‚ โ”œ publisher: Raynos
  1582. โ”‚ โ”œ email: raynos2@gmail.com
  1583. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/duplexer
  1584. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/duplexer/LICENCE
  1585. โ”œ each-async@1.1.1
  1586. โ”‚ โ”œ licenses: MIT
  1587. โ”‚ โ”œ repository: https://github.com/sindresorhus/each-async
  1588. โ”‚ โ”œ publisher: Sindre Sorhus
  1589. โ”‚ โ”œ email: sindresorhus@gmail.com
  1590. โ”‚ โ”œ url: http://sindresorhus.com
  1591. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/each-async
  1592. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/each-async/license
  1593. โ”œ ecc-jsbn@0.1.1
  1594. โ”‚ โ”œ licenses: MIT
  1595. โ”‚ โ”œ repository: https://github.com/quartzjer/ecc-jsbn
  1596. โ”‚ โ”œ publisher: Jeremie Miller
  1597. โ”‚ โ”œ email: jeremie@jabber.org
  1598. โ”‚ โ”œ url: http://jeremie.com/
  1599. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/ecc-jsbn
  1600. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/ecc-jsbn/LICENSE
  1601. โ”œ ee-first@1.1.0
  1602. โ”‚ โ”œ licenses: MIT
  1603. โ”‚ โ”œ repository: https://github.com/jonathanong/ee-first
  1604. โ”‚ โ”œ publisher: Jonathan Ong
  1605. โ”‚ โ”œ email: me@jongleberry.com
  1606. โ”‚ โ”œ url: http://jongleberry.com
  1607. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/send/node_modules/ee-first
  1608. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/send/node_modules/ee-first/LICENSE
  1609. โ”œ ee-first@1.1.1
  1610. โ”‚ โ”œ licenses: MIT
  1611. โ”‚ โ”œ repository: https://github.com/jonathanong/ee-first
  1612. โ”‚ โ”œ publisher: Jonathan Ong
  1613. โ”‚ โ”œ email: me@jongleberry.com
  1614. โ”‚ โ”œ url: http://jongleberry.com
  1615. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/ee-first
  1616. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/ee-first/LICENSE
  1617. โ”œ ejs@0.8.8
  1618. โ”‚ โ”œ licenses: MIT*
  1619. โ”‚ โ”œ repository: https://github.com/visionmedia/ejs
  1620. โ”‚ โ”œ publisher: TJ Holowaychuk
  1621. โ”‚ โ”œ email: tj@vision-media.ca
  1622. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/lib-parent-grunt/node_modules/ejs
  1623. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/lib-parent-grunt/node_modules/ejs/Readme.md
  1624. โ”œ encodeurl@1.0.1
  1625. โ”‚ โ”œ licenses: MIT
  1626. โ”‚ โ”œ repository: https://github.com/pillarjs/encodeurl
  1627. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/encodeurl
  1628. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/encodeurl/LICENSE
  1629. โ”œ end-of-stream@1.0.0
  1630. โ”‚ โ”œ licenses: MIT
  1631. โ”‚ โ”œ repository: https://github.com/mafintosh/end-of-stream
  1632. โ”‚ โ”œ publisher: Mathias Buus
  1633. โ”‚ โ”œ email: mathiasbuus@gmail.com
  1634. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/pump/node_modules/end-of-stream
  1635. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/pump/node_modules/end-of-stream/README.md
  1636. โ”œ end-of-stream@1.4.0
  1637. โ”‚ โ”œ licenses: MIT
  1638. โ”‚ โ”œ repository: https://github.com/mafintosh/end-of-stream
  1639. โ”‚ โ”œ publisher: Mathias Buus
  1640. โ”‚ โ”œ email: mathiasbuus@gmail.com
  1641. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/end-of-stream
  1642. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/end-of-stream/LICENSE
  1643. โ”œ end-of-stream@1.4.1
  1644. โ”‚ โ”œ licenses: MIT
  1645. โ”‚ โ”œ repository: https://github.com/mafintosh/end-of-stream
  1646. โ”‚ โ”œ publisher: Mathias Buus
  1647. โ”‚ โ”œ email: mathiasbuus@gmail.com
  1648. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/lib-parent-grunt/node_modules/end-of-stream
  1649. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/lib-parent-grunt/node_modules/end-of-stream/LICENSE
  1650. โ”œ engine.io-client@1.5.4
  1651. โ”‚ โ”œ licenses: MIT*
  1652. โ”‚ โ”œ repository: https://github.com/Automattic/engine.io-client
  1653. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/engine.io-client
  1654. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/engine.io-client/README.md
  1655. โ”œ engine.io-parser@1.2.2
  1656. โ”‚ โ”œ licenses: MIT*
  1657. โ”‚ โ”œ repository: https://github.com/Automattic/engine.io-parser
  1658. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/engine.io-parser
  1659. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/engine.io-parser/LICENSE
  1660. โ”œ engine.io@1.5.4
  1661. โ”‚ โ”œ licenses: MIT*
  1662. โ”‚ โ”œ repository: https://github.com/Automattic/engine.io
  1663. โ”‚ โ”œ publisher: Guillermo Rauch
  1664. โ”‚ โ”œ email: guillermo@learnboost.com
  1665. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/engine.io
  1666. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/engine.io/README.md
  1667. โ”œ ent@2.2.0
  1668. โ”‚ โ”œ licenses: MIT
  1669. โ”‚ โ”œ repository: https://github.com/substack/node-ent
  1670. โ”‚ โ”œ publisher: James Halliday
  1671. โ”‚ โ”œ email: mail@substack.net
  1672. โ”‚ โ”œ url: http://substack.net
  1673. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/ent
  1674. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/ent/LICENSE
  1675. โ”œ entities@1.0.0
  1676. โ”‚ โ”œ licenses: BSD*
  1677. โ”‚ โ”œ repository: https://github.com/fb55/node-entities
  1678. โ”‚ โ”œ publisher: Felix Boehm
  1679. โ”‚ โ”œ email: me@feedic.com
  1680. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/htmlparser2/node_modules/entities
  1681. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/htmlparser2/node_modules/entities/LICENSE
  1682. โ”œ entities@1.1.1
  1683. โ”‚ โ”œ licenses: BSD*
  1684. โ”‚ โ”œ repository: https://github.com/fb55/node-entities
  1685. โ”‚ โ”œ publisher: Felix Boehm
  1686. โ”‚ โ”œ email: me@feedic.com
  1687. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/entities
  1688. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/entities/LICENSE
  1689. โ”œ error-ex@1.3.1
  1690. โ”‚ โ”œ licenses: MIT
  1691. โ”‚ โ”œ repository: https://github.com/qix-/node-error-ex
  1692. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/error-ex
  1693. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/error-ex/LICENSE
  1694. โ”œ errorhandler@1.4.3
  1695. โ”‚ โ”œ licenses: MIT
  1696. โ”‚ โ”œ repository: https://github.com/expressjs/errorhandler
  1697. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/errorhandler
  1698. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/errorhandler/LICENSE
  1699. โ”œ es5-ext@0.10.37
  1700. โ”‚ โ”œ licenses: MIT
  1701. โ”‚ โ”œ repository: https://github.com/medikoo/es5-ext
  1702. โ”‚ โ”œ publisher: Mariusz Nowak
  1703. โ”‚ โ”œ email: medyk@medikoo.com
  1704. โ”‚ โ”œ url: http://www.medikoo.com/
  1705. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/es5-ext
  1706. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/es5-ext/LICENSE
  1707. โ”œ es6-iterator@0.1.3
  1708. โ”‚ โ”œ licenses: MIT
  1709. โ”‚ โ”œ repository: https://github.com/medikoo/es6-iterator
  1710. โ”‚ โ”œ publisher: Mariusz Nowak
  1711. โ”‚ โ”œ email: medyk@medikoo.com
  1712. โ”‚ โ”œ url: http://www.medikoo.com/
  1713. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/es6-weak-map/node_modules/es6-iterator
  1714. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/es6-weak-map/node_modules/es6-iterator/LICENSE
  1715. โ”œ es6-iterator@2.0.3
  1716. โ”‚ โ”œ licenses: MIT
  1717. โ”‚ โ”œ repository: https://github.com/medikoo/es6-iterator
  1718. โ”‚ โ”œ publisher: Mariusz Nowak
  1719. โ”‚ โ”œ email: medyk@medikoo.com
  1720. โ”‚ โ”œ url: http://www.medikoo.com/
  1721. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/es6-iterator
  1722. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/es6-iterator/LICENSE
  1723. โ”œ es6-symbol@2.0.1
  1724. โ”‚ โ”œ licenses: MIT
  1725. โ”‚ โ”œ repository: https://github.com/medikoo/es6-symbol
  1726. โ”‚ โ”œ publisher: Mariusz Nowak
  1727. โ”‚ โ”œ email: medyk@medikoo.com
  1728. โ”‚ โ”œ url: http://www.medikoo.com/
  1729. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/es6-weak-map/node_modules/es6-symbol
  1730. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/es6-weak-map/node_modules/es6-symbol/LICENSE
  1731. โ”œ es6-symbol@3.1.1
  1732. โ”‚ โ”œ licenses: MIT
  1733. โ”‚ โ”œ repository: https://github.com/medikoo/es6-symbol
  1734. โ”‚ โ”œ publisher: Mariusz Nowak
  1735. โ”‚ โ”œ email: medyk@medikoo.com
  1736. โ”‚ โ”œ url: http://www.medikoo.com/
  1737. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/es6-symbol
  1738. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/es6-symbol/LICENSE
  1739. โ”œ es6-weak-map@0.1.4
  1740. โ”‚ โ”œ licenses: MIT
  1741. โ”‚ โ”œ repository: https://github.com/medikoo/es6-weak-map
  1742. โ”‚ โ”œ publisher: Mariusz Nowak
  1743. โ”‚ โ”œ email: medyk@medikoo.com
  1744. โ”‚ โ”œ url: http://www.medikoo.com/
  1745. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/es6-weak-map
  1746. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/es6-weak-map/LICENCE
  1747. โ”œ escape-html@1.0.1
  1748. โ”‚ โ”œ licenses: MIT*
  1749. โ”‚ โ”œ repository: https://github.com/component/escape-html
  1750. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/escape-html
  1751. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/escape-html/Readme.md
  1752. โ”œ escape-html@1.0.2
  1753. โ”‚ โ”œ licenses: MIT
  1754. โ”‚ โ”œ repository: https://github.com/component/escape-html
  1755. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/connect/node_modules/escape-html
  1756. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/connect/node_modules/escape-html/LICENSE
  1757. โ”œ escape-html@1.0.3
  1758. โ”‚ โ”œ licenses: MIT
  1759. โ”‚ โ”œ repository: https://github.com/component/escape-html
  1760. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/freddie/node_modules/escape-html
  1761. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/freddie/node_modules/escape-html/LICENSE
  1762. โ”œ escape-string-regexp@1.0.5
  1763. โ”‚ โ”œ licenses: MIT
  1764. โ”‚ โ”œ repository: https://github.com/sindresorhus/escape-string-regexp
  1765. โ”‚ โ”œ publisher: Sindre Sorhus
  1766. โ”‚ โ”œ email: sindresorhus@gmail.com
  1767. โ”‚ โ”œ url: sindresorhus.com
  1768. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/escape-string-regexp
  1769. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/escape-string-regexp/license
  1770. โ”œ escodegen@1.7.1
  1771. โ”‚ โ”œ licenses: BSD-2-Clause
  1772. โ”‚ โ”œ repository: https://github.com/estools/escodegen
  1773. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/escodegen
  1774. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/escodegen/LICENSE.BSD
  1775. โ”œ esprima@1.0.4
  1776. โ”‚ โ”œ licenses: BSD
  1777. โ”‚ โ”œ repository: https://github.com/ariya/esprima
  1778. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/esprima
  1779. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/esprima/README.md
  1780. โ”œ esprima@1.2.5
  1781. โ”‚ โ”œ licenses: BSD
  1782. โ”‚ โ”œ repository: https://github.com/ariya/esprima
  1783. โ”‚ โ”œ publisher: Ariya Hidayat
  1784. โ”‚ โ”œ email: ariya.hidayat@gmail.com
  1785. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/escodegen/node_modules/esprima
  1786. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/escodegen/node_modules/esprima/LICENSE.BSD
  1787. โ”œ esprima@2.5.0
  1788. โ”‚ โ”œ licenses: BSD-2-Clause
  1789. โ”‚ โ”œ repository: https://github.com/jquery/esprima
  1790. โ”‚ โ”œ publisher: Ariya Hidayat
  1791. โ”‚ โ”œ email: ariya.hidayat@gmail.com
  1792. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/istanbul/node_modules/esprima
  1793. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/istanbul/node_modules/esprima/LICENSE.BSD
  1794. โ”œ esprima@4.0.0
  1795. โ”‚ โ”œ licenses: BSD-2-Clause
  1796. โ”‚ โ”œ repository: https://github.com/jquery/esprima
  1797. โ”‚ โ”œ publisher: Ariya Hidayat
  1798. โ”‚ โ”œ email: ariya.hidayat@gmail.com
  1799. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/configstore/node_modules/esprima
  1800. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/configstore/node_modules/esprima/LICENSE.BSD
  1801. โ”œ estraverse@1.9.3
  1802. โ”‚ โ”œ licenses: BSD
  1803. โ”‚ โ”œ repository: https://github.com/estools/estraverse
  1804. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/estraverse
  1805. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/estraverse/LICENSE.BSD
  1806. โ”œ esutils@2.0.2
  1807. โ”‚ โ”œ licenses: BSD
  1808. โ”‚ โ”œ repository: https://github.com/estools/esutils
  1809. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/esutils
  1810. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/esutils/LICENSE.BSD
  1811. โ”œ etag@1.6.0
  1812. โ”‚ โ”œ licenses: MIT
  1813. โ”‚ โ”œ repository: https://github.com/jshttp/etag
  1814. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/etag
  1815. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/etag/LICENSE
  1816. โ”œ etag@1.7.0
  1817. โ”‚ โ”œ licenses: MIT
  1818. โ”‚ โ”œ repository: https://github.com/jshttp/etag
  1819. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/serve-favicon/node_modules/etag
  1820. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/serve-favicon/node_modules/etag/LICENSE
  1821. โ”œ etag@1.8.1
  1822. โ”‚ โ”œ licenses: MIT
  1823. โ”‚ โ”œ repository: https://github.com/jshttp/etag
  1824. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/freddie/node_modules/etag
  1825. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/freddie/node_modules/etag/LICENSE
  1826. โ”œ event-emitter@0.3.5
  1827. โ”‚ โ”œ licenses: MIT
  1828. โ”‚ โ”œ repository: https://github.com/medikoo/event-emitter
  1829. โ”‚ โ”œ publisher: Mariusz Nowak
  1830. โ”‚ โ”œ email: medyk@medikoo.com
  1831. โ”‚ โ”œ url: http://www.medikoo.com/
  1832. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/event-emitter
  1833. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/event-emitter/LICENSE
  1834. โ”œ eventemitter2@0.4.14
  1835. โ”‚ โ”œ licenses: MIT
  1836. โ”‚ โ”œ repository: https://github.com/hij1nx/EventEmitter2
  1837. โ”‚ โ”œ publisher: hij1nx
  1838. โ”‚ โ”œ email: paolo@async.ly
  1839. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/eventemitter2
  1840. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/eventemitter2/README.md
  1841. โ”œ eventemitter3@1.2.0
  1842. โ”‚ โ”œ licenses: MIT
  1843. โ”‚ โ”œ repository: https://github.com/primus/eventemitter3
  1844. โ”‚ โ”œ publisher: Arnout Kazemier
  1845. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/eventemitter3
  1846. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/eventemitter3/LICENSE
  1847. โ”œ exit@0.1.2
  1848. โ”‚ โ”œ licenses: MIT
  1849. โ”‚ โ”œ repository: https://github.com/cowboy/node-exit
  1850. โ”‚ โ”œ publisher: "Cowboy" Ben Alman
  1851. โ”‚ โ”œ url: http://benalman.com/
  1852. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/exit
  1853. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/exit/LICENSE-MIT
  1854. โ”œ expand-braces@0.1.2
  1855. โ”‚ โ”œ licenses: MIT
  1856. โ”‚ โ”œ repository: https://github.com/jonschlinkert/expand-braces
  1857. โ”‚ โ”œ publisher: Jon Schlinkert
  1858. โ”‚ โ”œ url: https://github.com/jonschlinkert
  1859. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/expand-braces
  1860. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/expand-braces/LICENSE
  1861. โ”œ expand-brackets@0.1.5
  1862. โ”‚ โ”œ licenses: MIT
  1863. โ”‚ โ”œ repository: https://github.com/jonschlinkert/expand-brackets
  1864. โ”‚ โ”œ publisher: Jon Schlinkert
  1865. โ”‚ โ”œ url: https://github.com/jonschlinkert
  1866. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/expand-brackets
  1867. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/expand-brackets/LICENSE
  1868. โ”œ expand-brackets@2.1.4
  1869. โ”‚ โ”œ licenses: MIT
  1870. โ”‚ โ”œ repository: https://github.com/jonschlinkert/expand-brackets
  1871. โ”‚ โ”œ publisher: Jon Schlinkert
  1872. โ”‚ โ”œ url: https://github.com/jonschlinkert
  1873. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/matchdep/node_modules/expand-brackets
  1874. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/matchdep/node_modules/expand-brackets/LICENSE
  1875. โ”œ expand-range@0.1.1
  1876. โ”‚ โ”œ licenses: MIT
  1877. โ”‚ โ”œ repository: https://github.com/jonschlinkert/expand-range
  1878. โ”‚ โ”œ publisher: Jon Schlinkert
  1879. โ”‚ โ”œ url: https://github.com/jonschlinkert
  1880. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/expand-braces/node_modules/expand-range
  1881. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/expand-braces/node_modules/expand-range/LICENSE-MIT
  1882. โ”œ expand-range@1.8.2
  1883. โ”‚ โ”œ licenses: MIT
  1884. โ”‚ โ”œ repository: https://github.com/jonschlinkert/expand-range
  1885. โ”‚ โ”œ publisher: Jon Schlinkert
  1886. โ”‚ โ”œ url: https://github.com/jonschlinkert
  1887. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/expand-range
  1888. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/expand-range/LICENSE
  1889. โ”œ expand-tilde@2.0.2
  1890. โ”‚ โ”œ licenses: MIT
  1891. โ”‚ โ”œ repository: https://github.com/jonschlinkert/expand-tilde
  1892. โ”‚ โ”œ publisher: Jon Schlinkert
  1893. โ”‚ โ”œ url: https://github.com/jonschlinkert
  1894. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/expand-tilde
  1895. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/expand-tilde/LICENSE
  1896. โ”œ express-session@1.11.3
  1897. โ”‚ โ”œ licenses: MIT
  1898. โ”‚ โ”œ repository: https://github.com/expressjs/session
  1899. โ”‚ โ”œ publisher: TJ Holowaychuk
  1900. โ”‚ โ”œ email: tj@vision-media.ca
  1901. โ”‚ โ”œ url: http://tjholowaychuk.com
  1902. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/express-session
  1903. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/express-session/LICENSE
  1904. โ”œ express@4.12.4
  1905. โ”‚ โ”œ licenses: MIT
  1906. โ”‚ โ”œ repository: https://github.com/strongloop/express
  1907. โ”‚ โ”œ publisher: TJ Holowaychuk
  1908. โ”‚ โ”œ email: tj@vision-media.ca
  1909. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/express
  1910. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/express/LICENSE
  1911. โ”œ extend-shallow@2.0.1
  1912. โ”‚ โ”œ licenses: MIT
  1913. โ”‚ โ”œ repository: https://github.com/jonschlinkert/extend-shallow
  1914. โ”‚ โ”œ publisher: Jon Schlinkert
  1915. โ”‚ โ”œ url: https://github.com/jonschlinkert
  1916. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/extend-shallow
  1917. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/extend-shallow/LICENSE
  1918. โ”œ extend-shallow@3.0.1
  1919. โ”‚ โ”œ licenses: MIT
  1920. โ”‚ โ”œ repository: https://github.com/jonschlinkert/extend-shallow
  1921. โ”‚ โ”œ publisher: Jon Schlinkert
  1922. โ”‚ โ”œ url: https://github.com/jonschlinkert
  1923. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/split-string/node_modules/extend-shallow
  1924. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/split-string/node_modules/extend-shallow/LICENSE
  1925. โ”œ extend@3.0.1
  1926. โ”‚ โ”œ licenses: MIT
  1927. โ”‚ โ”œ repository: https://github.com/justmoon/node-extend
  1928. โ”‚ โ”œ publisher: Stefan Thomas
  1929. โ”‚ โ”œ email: justmoon@members.fsf.org
  1930. โ”‚ โ”œ url: http://www.justmoon.net
  1931. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/extend
  1932. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/extend/LICENSE
  1933. โ”œ extglob@0.3.2
  1934. โ”‚ โ”œ licenses: MIT
  1935. โ”‚ โ”œ repository: https://github.com/jonschlinkert/extglob
  1936. โ”‚ โ”œ publisher: Jon Schlinkert
  1937. โ”‚ โ”œ url: https://github.com/jonschlinkert
  1938. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/extglob
  1939. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/extglob/LICENSE
  1940. โ”œ extglob@2.0.2
  1941. โ”‚ โ”œ licenses: MIT
  1942. โ”‚ โ”œ repository: https://github.com/micromatch/extglob
  1943. โ”‚ โ”œ publisher: Jon Schlinkert
  1944. โ”‚ โ”œ url: https://github.com/jonschlinkert
  1945. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/matchdep/node_modules/extglob
  1946. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/matchdep/node_modules/extglob/LICENSE
  1947. โ”œ extsprintf@1.3.0
  1948. โ”‚ โ”œ licenses: MIT
  1949. โ”‚ โ”œ repository: https://github.com/davepacheco/node-extsprintf
  1950. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/extsprintf
  1951. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/extsprintf/LICENSE
  1952. โ”œ fast-levenshtein@1.0.7
  1953. โ”‚ โ”œ licenses: MIT
  1954. โ”‚ โ”œ repository: https://github.com/hiddentao/fast-levenshtein
  1955. โ”‚ โ”œ publisher: Ramesh Nair
  1956. โ”‚ โ”œ email: ram@hiddentao.com
  1957. โ”‚ โ”œ url: http://www.hiddentao.com/
  1958. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/fast-levenshtein
  1959. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/fast-levenshtein/LICENSE.md
  1960. โ”œ faye-websocket@0.10.0
  1961. โ”‚ โ”œ licenses: MIT
  1962. โ”‚ โ”œ repository: https://github.com/faye/faye-websocket-node
  1963. โ”‚ โ”œ publisher: James Coglan
  1964. โ”‚ โ”œ email: jcoglan@gmail.com
  1965. โ”‚ โ”œ url: http://jcoglan.com/
  1966. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/faye-websocket
  1967. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/faye-websocket/README.md
  1968. โ”œ faye-websocket@0.4.4
  1969. โ”‚ โ”œ licenses: MIT
  1970. โ”‚ โ”œ repository: https://github.com/faye/faye-websocket-node
  1971. โ”‚ โ”œ publisher: James Coglan
  1972. โ”‚ โ”œ email: jcoglan@gmail.com
  1973. โ”‚ โ”œ url: http://jcoglan.com/
  1974. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/tiny-lr-fork/node_modules/faye-websocket
  1975. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/tiny-lr-fork/node_modules/faye-websocket/README.markdown
  1976. โ”œ fecha@1.2.2
  1977. โ”‚ โ”œ licenses: MIT
  1978. โ”‚ โ”œ repository: git+https://taylorhakes@github.com/taylorhakes/fecha
  1979. โ”‚ โ”œ publisher: Taylor Hakes
  1980. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/fecha
  1981. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/fecha/LICENSE
  1982. โ”œ figures@1.7.0
  1983. โ”‚ โ”œ licenses: MIT
  1984. โ”‚ โ”œ repository: https://github.com/sindresorhus/figures
  1985. โ”‚ โ”œ publisher: Sindre Sorhus
  1986. โ”‚ โ”œ email: sindresorhus@gmail.com
  1987. โ”‚ โ”œ url: sindresorhus.com
  1988. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/figures
  1989. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/figures/license
  1990. โ”œ file-sync-cmp@0.1.1
  1991. โ”‚ โ”œ licenses: MIT
  1992. โ”‚ โ”œ repository: https://github.com/mgeisler/file-sync-cmp
  1993. โ”‚ โ”œ publisher: Martin Geisler
  1994. โ”‚ โ”œ email: martin@geisler.net
  1995. โ”‚ โ”œ url: http://geisler.net/
  1996. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/file-sync-cmp
  1997. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/file-sync-cmp/LICENSE
  1998. โ”œ filename-regex@2.0.1
  1999. โ”‚ โ”œ licenses: MIT
  2000. โ”‚ โ”œ repository: https://github.com/regexhq/filename-regex
  2001. โ”‚ โ”œ publisher: Jon Schlinkert
  2002. โ”‚ โ”œ url: https://github.com/jonschlinkert
  2003. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/filename-regex
  2004. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/filename-regex/LICENSE
  2005. โ”œ fileset@0.2.1
  2006. โ”‚ โ”œ licenses: MIT
  2007. โ”‚ โ”œ repository: https://github.com/mklabs/node-fileset
  2008. โ”‚ โ”œ publisher: mklabs
  2009. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/fileset
  2010. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/fileset/LICENSE-MIT
  2011. โ”œ fill-keys@1.0.2
  2012. โ”‚ โ”œ licenses: MIT
  2013. โ”‚ โ”œ repository: https://github.com/bendrucker/fill-keys
  2014. โ”‚ โ”œ publisher: Ben Drucker
  2015. โ”‚ โ”œ email: bvdrucker@gmail.com
  2016. โ”‚ โ”œ url: bendrucker.me
  2017. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/fill-keys
  2018. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/fill-keys/license
  2019. โ”œ fill-range@2.2.3
  2020. โ”‚ โ”œ licenses: MIT
  2021. โ”‚ โ”œ repository: https://github.com/jonschlinkert/fill-range
  2022. โ”‚ โ”œ publisher: Jon Schlinkert
  2023. โ”‚ โ”œ url: https://github.com/jonschlinkert
  2024. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/fill-range
  2025. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/fill-range/LICENSE
  2026. โ”œ fill-range@4.0.0
  2027. โ”‚ โ”œ licenses: MIT
  2028. โ”‚ โ”œ repository: https://github.com/jonschlinkert/fill-range
  2029. โ”‚ โ”œ publisher: Jon Schlinkert
  2030. โ”‚ โ”œ url: https://github.com/jonschlinkert
  2031. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/matchdep/node_modules/fill-range
  2032. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/matchdep/node_modules/fill-range/LICENSE
  2033. โ”œ finalhandler@0.3.6
  2034. โ”‚ โ”œ licenses: MIT
  2035. โ”‚ โ”œ repository: https://github.com/pillarjs/finalhandler
  2036. โ”‚ โ”œ publisher: Douglas Christopher Wilson
  2037. โ”‚ โ”œ email: doug@somethingdoug.com
  2038. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/finalhandler
  2039. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/finalhandler/LICENSE
  2040. โ”œ finalhandler@0.4.0
  2041. โ”‚ โ”œ licenses: MIT
  2042. โ”‚ โ”œ repository: https://github.com/pillarjs/finalhandler
  2043. โ”‚ โ”œ publisher: Douglas Christopher Wilson
  2044. โ”‚ โ”œ email: doug@somethingdoug.com
  2045. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/connect/node_modules/finalhandler
  2046. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/connect/node_modules/finalhandler/LICENSE
  2047. โ”œ finalhandler@1.0.6
  2048. โ”‚ โ”œ licenses: MIT
  2049. โ”‚ โ”œ repository: https://github.com/pillarjs/finalhandler
  2050. โ”‚ โ”œ publisher: Douglas Christopher Wilson
  2051. โ”‚ โ”œ email: doug@somethingdoug.com
  2052. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/freddie/node_modules/finalhandler
  2053. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/freddie/node_modules/finalhandler/LICENSE
  2054. โ”œ find-up@1.1.2
  2055. โ”‚ โ”œ licenses: MIT
  2056. โ”‚ โ”œ repository: https://github.com/sindresorhus/find-up
  2057. โ”‚ โ”œ publisher: Sindre Sorhus
  2058. โ”‚ โ”œ email: sindresorhus@gmail.com
  2059. โ”‚ โ”œ url: sindresorhus.com
  2060. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/find-up
  2061. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/find-up/license
  2062. โ”œ findup-sync@0.1.3
  2063. โ”‚ โ”œ licenses: MIT
  2064. โ”‚ โ”œ repository: https://github.com/cowboy/node-findup-sync
  2065. โ”‚ โ”œ publisher: "Cowboy" Ben Alman
  2066. โ”‚ โ”œ url: http://benalman.com/
  2067. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/findup-sync
  2068. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/findup-sync/LICENSE-MIT
  2069. โ”œ findup-sync@0.3.0
  2070. โ”‚ โ”œ licenses: MIT
  2071. โ”‚ โ”œ repository: https://github.com/cowboy/node-findup-sync
  2072. โ”‚ โ”œ publisher: "Cowboy" Ben Alman
  2073. โ”‚ โ”œ url: http://benalman.com/
  2074. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/grunt-cli/node_modules/findup-sync
  2075. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/grunt-cli/node_modules/findup-sync/LICENSE-MIT
  2076. โ”œ findup-sync@2.0.0
  2077. โ”‚ โ”œ licenses: MIT
  2078. โ”‚ โ”œ repository: https://github.com/js-cli/node-findup-sync
  2079. โ”‚ โ”œ publisher: "Cowboy" Ben Alman
  2080. โ”‚ โ”œ url: http://benalman.com
  2081. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/matchdep/node_modules/findup-sync
  2082. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/matchdep/node_modules/findup-sync/README.md
  2083. โ”œ for-in@1.0.2
  2084. โ”‚ โ”œ licenses: MIT
  2085. โ”‚ โ”œ repository: https://github.com/jonschlinkert/for-in
  2086. โ”‚ โ”œ publisher: Jon Schlinkert
  2087. โ”‚ โ”œ url: https://github.com/jonschlinkert
  2088. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/for-in
  2089. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/for-in/LICENSE
  2090. โ”œ for-own@0.1.5
  2091. โ”‚ โ”œ licenses: MIT
  2092. โ”‚ โ”œ repository: https://github.com/jonschlinkert/for-own
  2093. โ”‚ โ”œ publisher: Jon Schlinkert
  2094. โ”‚ โ”œ url: https://github.com/jonschlinkert
  2095. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/for-own
  2096. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/for-own/LICENSE
  2097. โ”œ forever-agent@0.5.2
  2098. โ”‚ โ”œ licenses: Apache*
  2099. โ”‚ โ”œ repository: https://github.com/mikeal/forever-agent
  2100. โ”‚ โ”œ publisher: Mikeal Rogers
  2101. โ”‚ โ”œ email: mikeal.rogers@gmail.com
  2102. โ”‚ โ”œ url: http://www.futurealoof.com
  2103. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/forever-agent
  2104. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/forever-agent/LICENSE
  2105. โ”œ forever-agent@0.6.1
  2106. โ”‚ โ”œ licenses: Apache-2.0
  2107. โ”‚ โ”œ repository: https://github.com/mikeal/forever-agent
  2108. โ”‚ โ”œ publisher: Mikeal Rogers
  2109. โ”‚ โ”œ email: mikeal.rogers@gmail.com
  2110. โ”‚ โ”œ url: http://www.futurealoof.com
  2111. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/node-sass/node_modules/forever-agent
  2112. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/node-sass/node_modules/forever-agent/LICENSE
  2113. โ”œ form-data@0.1.4
  2114. โ”‚ โ”œ licenses: MIT
  2115. โ”‚ โ”œ repository: https://github.com/felixge/node-form-data
  2116. โ”‚ โ”œ publisher: Felix Geisendรถrfer
  2117. โ”‚ โ”œ email: felix@debuggable.com
  2118. โ”‚ โ”œ url: http://debuggable.com/
  2119. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/form-data
  2120. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/form-data/License
  2121. โ”œ form-data@2.1.4
  2122. โ”‚ โ”œ licenses: MIT
  2123. โ”‚ โ”œ repository: https://github.com/form-data/form-data
  2124. โ”‚ โ”œ publisher: Felix Geisendรถrfer
  2125. โ”‚ โ”œ email: felix@debuggable.com
  2126. โ”‚ โ”œ url: http://debuggable.com/
  2127. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/node-sass/node_modules/form-data
  2128. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/node-sass/node_modules/form-data/License
  2129. โ”œ forwarded@0.1.2
  2130. โ”‚ โ”œ licenses: MIT
  2131. โ”‚ โ”œ repository: https://github.com/jshttp/forwarded
  2132. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/forwarded
  2133. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/forwarded/LICENSE
  2134. โ”œ fragment-cache@0.2.1
  2135. โ”‚ โ”œ licenses: MIT
  2136. โ”‚ โ”œ repository: https://github.com/jonschlinkert/fragment-cache
  2137. โ”‚ โ”œ publisher: Jon Schlinkert
  2138. โ”‚ โ”œ url: https://github.com/jonschlinkert
  2139. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/fragment-cache
  2140. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/fragment-cache/LICENSE
  2141. โ”œ freddie@0.5.1
  2142. โ”‚ โ”œ licenses: MIT
  2143. โ”‚ โ”œ repository: https://github.com/Scytl/freddie
  2144. โ”‚ โ”œ publisher: Pau Fracรฉs
  2145. โ”‚ โ”œ email: pfraces@gmail.com
  2146. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/freddie
  2147. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/freddie/LICENSE
  2148. โ”œ fresh@0.2.4
  2149. โ”‚ โ”œ licenses: MIT
  2150. โ”‚ โ”œ repository: https://github.com/jshttp/fresh
  2151. โ”‚ โ”œ publisher: TJ Holowaychuk
  2152. โ”‚ โ”œ email: tj@vision-media.ca
  2153. โ”‚ โ”œ url: http://tjholowaychuk.com
  2154. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/fresh
  2155. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/fresh/LICENSE
  2156. โ”œ fresh@0.3.0
  2157. โ”‚ โ”œ licenses: MIT
  2158. โ”‚ โ”œ repository: https://github.com/jshttp/fresh
  2159. โ”‚ โ”œ publisher: TJ Holowaychuk
  2160. โ”‚ โ”œ email: tj@vision-media.ca
  2161. โ”‚ โ”œ url: http://tjholowaychuk.com
  2162. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/serve-favicon/node_modules/fresh
  2163. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/serve-favicon/node_modules/fresh/LICENSE
  2164. โ”œ fresh@0.5.2
  2165. โ”‚ โ”œ licenses: MIT
  2166. โ”‚ โ”œ repository: https://github.com/jshttp/fresh
  2167. โ”‚ โ”œ publisher: TJ Holowaychuk
  2168. โ”‚ โ”œ email: tj@vision-media.ca
  2169. โ”‚ โ”œ url: http://tjholowaychuk.com
  2170. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/freddie/node_modules/fresh
  2171. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/freddie/node_modules/fresh/LICENSE
  2172. โ”œ fs-extra@0.23.1
  2173. โ”‚ โ”œ licenses: MIT
  2174. โ”‚ โ”œ repository: https://github.com/jprichardson/node-fs-extra
  2175. โ”‚ โ”œ publisher: JP Richardson
  2176. โ”‚ โ”œ email: jprichardson@gmail.com
  2177. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/phantomjs/node_modules/fs-extra
  2178. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/phantomjs/node_modules/fs-extra/LICENSE
  2179. โ”œ fs-extra@0.30.0
  2180. โ”‚ โ”œ licenses: MIT
  2181. โ”‚ โ”œ repository: https://github.com/jprichardson/node-fs-extra
  2182. โ”‚ โ”œ publisher: JP Richardson
  2183. โ”‚ โ”œ email: jprichardson@gmail.com
  2184. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/fs-extra
  2185. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/fs-extra/LICENSE
  2186. โ”œ fs-minipass@1.2.5
  2187. โ”‚ โ”œ licenses: ISC
  2188. โ”‚ โ”œ repository: https://github.com/npm/fs-minipass
  2189. โ”‚ โ”œ publisher: Isaac Z. Schlueter
  2190. โ”‚ โ”œ email: i@izs.me
  2191. โ”‚ โ”œ url: http://blog.izs.me/
  2192. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/fsevents/node_modules/fs-minipass
  2193. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/fsevents/node_modules/fs-minipass/LICENSE
  2194. โ”œ fs.realpath@1.0.0
  2195. โ”‚ โ”œ licenses: ISC
  2196. โ”‚ โ”œ repository: https://github.com/isaacs/fs.realpath
  2197. โ”‚ โ”œ publisher: Isaac Z. Schlueter
  2198. โ”‚ โ”œ email: i@izs.me
  2199. โ”‚ โ”œ url: http://blog.izs.me/
  2200. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/fs.realpath
  2201. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/fs.realpath/LICENSE
  2202. โ”œ fsevents@1.2.4
  2203. โ”‚ โ”œ licenses: MIT
  2204. โ”‚ โ”œ repository: https://github.com/strongloop/fsevents
  2205. โ”‚ โ”œ publisher: Philipp Dunkel
  2206. โ”‚ โ”œ email: pip@pipobscure.com
  2207. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/fsevents
  2208. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/fsevents/LICENSE
  2209. โ”œ fstream@1.0.11
  2210. โ”‚ โ”œ licenses: ISC
  2211. โ”‚ โ”œ repository: https://github.com/npm/fstream
  2212. โ”‚ โ”œ publisher: Isaac Z. Schlueter
  2213. โ”‚ โ”œ email: i@izs.me
  2214. โ”‚ โ”œ url: http://blog.izs.me/
  2215. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/fstream
  2216. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/fstream/LICENSE
  2217. โ”œ function-bind@1.1.1
  2218. โ”‚ โ”œ licenses: MIT
  2219. โ”‚ โ”œ repository: https://github.com/Raynos/function-bind
  2220. โ”‚ โ”œ publisher: Raynos
  2221. โ”‚ โ”œ email: raynos2@gmail.com
  2222. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/function-bind
  2223. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/function-bind/LICENSE
  2224. โ”œ gauge@2.7.4
  2225. โ”‚ โ”œ licenses: ISC
  2226. โ”‚ โ”œ repository: https://github.com/iarna/gauge
  2227. โ”‚ โ”œ publisher: Rebecca Turner
  2228. โ”‚ โ”œ email: me@re-becca.org
  2229. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/gauge
  2230. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/gauge/LICENSE
  2231. โ”œ gaze@0.5.2
  2232. โ”‚ โ”œ licenses: MIT
  2233. โ”‚ โ”œ repository: https://github.com/shama/gaze
  2234. โ”‚ โ”œ publisher: Kyle Robinson Young
  2235. โ”‚ โ”œ email: kyle@dontkry.com
  2236. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/grunt-express/node_modules/gaze
  2237. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/grunt-express/node_modules/gaze/LICENSE-MIT
  2238. โ”œ gaze@1.1.2
  2239. โ”‚ โ”œ licenses: MIT
  2240. โ”‚ โ”œ repository: https://github.com/shama/gaze
  2241. โ”‚ โ”œ publisher: Kyle Robinson Young
  2242. โ”‚ โ”œ email: kyle@dontkry.com
  2243. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/gaze
  2244. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/gaze/LICENSE-MIT
  2245. โ”œ generate-function@2.0.0
  2246. โ”‚ โ”œ licenses: MIT
  2247. โ”‚ โ”œ repository: https://github.com/mafintosh/generate-function
  2248. โ”‚ โ”œ publisher: Mathias Buus
  2249. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/generate-function
  2250. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/generate-function/README.md
  2251. โ”œ generate-object-property@1.2.0
  2252. โ”‚ โ”œ licenses: MIT
  2253. โ”‚ โ”œ repository: https://github.com/mafintosh/generate-object-property
  2254. โ”‚ โ”œ publisher: Mathias Buus
  2255. โ”‚ โ”œ url: @mafintosh
  2256. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/generate-object-property
  2257. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/generate-object-property/LICENSE
  2258. โ”œ get-caller-file@1.0.2
  2259. โ”‚ โ”œ licenses: ISC
  2260. โ”‚ โ”œ repository: https://github.com/stefanpenner/get-caller-file
  2261. โ”‚ โ”œ publisher: Stefan Penner
  2262. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/get-caller-file
  2263. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/get-caller-file/README.md
  2264. โ”œ get-stdin@4.0.1
  2265. โ”‚ โ”œ licenses: MIT
  2266. โ”‚ โ”œ repository: https://github.com/sindresorhus/get-stdin
  2267. โ”‚ โ”œ publisher: Sindre Sorhus
  2268. โ”‚ โ”œ email: sindresorhus@gmail.com
  2269. โ”‚ โ”œ url: http://sindresorhus.com
  2270. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/get-stdin
  2271. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/get-stdin/readme.md
  2272. โ”œ get-value@2.0.6
  2273. โ”‚ โ”œ licenses: MIT
  2274. โ”‚ โ”œ repository: https://github.com/jonschlinkert/get-value
  2275. โ”‚ โ”œ publisher: Jon Schlinkert
  2276. โ”‚ โ”œ url: https://github.com/jonschlinkert
  2277. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/get-value
  2278. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/get-value/LICENSE
  2279. โ”œ getobject@0.1.0
  2280. โ”‚ โ”œ licenses: MIT
  2281. โ”‚ โ”œ repository: https://github.com/cowboy/node-getobject
  2282. โ”‚ โ”œ publisher: "Cowboy" Ben Alman
  2283. โ”‚ โ”œ url: http://benalman.com/
  2284. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/getobject
  2285. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/getobject/LICENSE-MIT
  2286. โ”œ getpass@0.1.7
  2287. โ”‚ โ”œ licenses: MIT
  2288. โ”‚ โ”œ repository: https://github.com/arekinath/node-getpass
  2289. โ”‚ โ”œ publisher: Alex Wilson
  2290. โ”‚ โ”œ email: alex.wilson@joyent.com
  2291. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/getpass
  2292. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/getpass/LICENSE
  2293. โ”œ glob-base@0.3.0
  2294. โ”‚ โ”œ licenses: MIT
  2295. โ”‚ โ”œ repository: https://github.com/jonschlinkert/glob-base
  2296. โ”‚ โ”œ publisher: Jon Schlinkert
  2297. โ”‚ โ”œ url: https://github.com/jonschlinkert
  2298. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/glob-base
  2299. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/glob-base/LICENSE
  2300. โ”œ glob-parent@2.0.0
  2301. โ”‚ โ”œ licenses: ISC
  2302. โ”‚ โ”œ repository: https://github.com/es128/glob-parent
  2303. โ”‚ โ”œ publisher: Elan Shanker
  2304. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/glob-parent
  2305. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/glob-parent/LICENSE
  2306. โ”œ glob@3.1.21
  2307. โ”‚ โ”œ licenses: BSD*
  2308. โ”‚ โ”œ repository: https://github.com/isaacs/node-glob
  2309. โ”‚ โ”œ publisher: Isaac Z. Schlueter
  2310. โ”‚ โ”œ email: i@izs.me
  2311. โ”‚ โ”œ url: http://blog.izs.me/
  2312. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/glob
  2313. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/glob/LICENSE
  2314. โ”œ glob@3.2.11
  2315. โ”‚ โ”œ licenses: BSD*
  2316. โ”‚ โ”œ repository: https://github.com/isaacs/node-glob
  2317. โ”‚ โ”œ publisher: Isaac Z. Schlueter
  2318. โ”‚ โ”œ email: i@izs.me
  2319. โ”‚ โ”œ url: http://blog.izs.me/
  2320. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/simple-glob/node_modules/glob
  2321. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/simple-glob/node_modules/glob/LICENSE
  2322. โ”œ glob@4.3.5
  2323. โ”‚ โ”œ licenses: ISC
  2324. โ”‚ โ”œ repository: https://github.com/isaacs/node-glob
  2325. โ”‚ โ”œ publisher: Isaac Z. Schlueter
  2326. โ”‚ โ”œ email: i@izs.me
  2327. โ”‚ โ”œ url: http://blog.izs.me/
  2328. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/archiver/node_modules/glob
  2329. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/archiver/node_modules/glob/LICENSE
  2330. โ”œ glob@5.0.15
  2331. โ”‚ โ”œ licenses: ISC
  2332. โ”‚ โ”œ repository: https://github.com/isaacs/node-glob
  2333. โ”‚ โ”œ publisher: Isaac Z. Schlueter
  2334. โ”‚ โ”œ email: i@izs.me
  2335. โ”‚ โ”œ url: http://blog.izs.me/
  2336. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/fileset/node_modules/glob
  2337. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/fileset/node_modules/glob/LICENSE
  2338. โ”œ glob@6.0.4
  2339. โ”‚ โ”œ licenses: ISC
  2340. โ”‚ โ”œ repository: https://github.com/isaacs/node-glob
  2341. โ”‚ โ”œ publisher: Isaac Z. Schlueter
  2342. โ”‚ โ”œ email: i@izs.me
  2343. โ”‚ โ”œ url: http://blog.izs.me/
  2344. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/true-case-path/node_modules/glob
  2345. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/true-case-path/node_modules/glob/LICENSE
  2346. โ”œ glob@7.1.2
  2347. โ”‚ โ”œ licenses: ISC
  2348. โ”‚ โ”œ repository: https://github.com/isaacs/node-glob
  2349. โ”‚ โ”œ publisher: Isaac Z. Schlueter
  2350. โ”‚ โ”œ email: i@izs.me
  2351. โ”‚ โ”œ url: http://blog.izs.me/
  2352. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/globule/node_modules/glob
  2353. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/globule/node_modules/glob/LICENSE
  2354. โ”œ glob@7.1.3
  2355. โ”‚ โ”œ licenses: ISC
  2356. โ”‚ โ”œ repository: https://github.com/isaacs/node-glob
  2357. โ”‚ โ”œ publisher: Isaac Z. Schlueter
  2358. โ”‚ โ”œ email: i@izs.me
  2359. โ”‚ โ”œ url: http://blog.izs.me/
  2360. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/read-package-json/node_modules/glob
  2361. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/read-package-json/node_modules/glob/LICENSE
  2362. โ”œ global-modules@1.0.0
  2363. โ”‚ โ”œ licenses: MIT
  2364. โ”‚ โ”œ repository: https://github.com/jonschlinkert/global-modules
  2365. โ”‚ โ”œ publisher: Jon Schlinkert
  2366. โ”‚ โ”œ url: https://github.com/jonschlinkert
  2367. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/global-modules
  2368. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/global-modules/LICENSE
  2369. โ”œ global-prefix@1.0.2
  2370. โ”‚ โ”œ licenses: MIT
  2371. โ”‚ โ”œ repository: https://github.com/jonschlinkert/global-prefix
  2372. โ”‚ โ”œ publisher: Jon Schlinkert
  2373. โ”‚ โ”œ url: https://github.com/jonschlinkert
  2374. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/global-prefix
  2375. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/global-prefix/LICENSE
  2376. โ”œ global@2.0.1
  2377. โ”‚ โ”œ licenses: MIT
  2378. โ”‚ โ”œ repository: https://github.com/component/global
  2379. โ”‚ โ”œ publisher: Nathan Rajlich
  2380. โ”‚ โ”œ email: nathan@tootallnate.net
  2381. โ”‚ โ”œ url: http://n8.io/
  2382. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/global
  2383. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/global/Readme.md
  2384. โ”œ globule@0.1.0
  2385. โ”‚ โ”œ licenses: MIT
  2386. โ”‚ โ”œ repository: https://github.com/cowboy/node-globule
  2387. โ”‚ โ”œ publisher: "Cowboy" Ben Alman
  2388. โ”‚ โ”œ url: http://benalman.com/
  2389. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/grunt-express/node_modules/globule
  2390. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/grunt-express/node_modules/globule/LICENSE-MIT
  2391. โ”œ globule@1.2.0
  2392. โ”‚ โ”œ licenses: MIT
  2393. โ”‚ โ”œ repository: https://github.com/cowboy/node-globule
  2394. โ”‚ โ”œ publisher: "Cowboy" Ben Alman
  2395. โ”‚ โ”œ url: http://benalman.com/
  2396. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/globule
  2397. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/globule/LICENSE
  2398. โ”œ graceful-fs-extra@1.1.0
  2399. โ”‚ โ”œ licenses: MIT
  2400. โ”‚ โ”œ repository: https://github.com/adam-lynch/graceful-fs-extra
  2401. โ”‚ โ”œ publisher: Adam Lynch
  2402. โ”‚ โ”œ email: contact@adamlynch.com
  2403. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/graceful-fs-extra
  2404. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/graceful-fs-extra/README.md
  2405. โ”œ graceful-fs@1.2.3
  2406. โ”‚ โ”œ licenses: BSD*
  2407. โ”‚ โ”œ repository: https://github.com/isaacs/node-graceful-fs
  2408. โ”‚ โ”œ publisher: Isaac Z. Schlueter
  2409. โ”‚ โ”œ email: i@izs.me
  2410. โ”‚ โ”œ url: http://blog.izs.me
  2411. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/graceful-fs
  2412. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/graceful-fs/LICENSE
  2413. โ”œ graceful-fs@2.0.3
  2414. โ”‚ โ”œ licenses: BSD*
  2415. โ”‚ โ”œ repository: https://github.com/isaacs/node-graceful-fs
  2416. โ”‚ โ”œ publisher: Isaac Z. Schlueter
  2417. โ”‚ โ”œ email: i@izs.me
  2418. โ”‚ โ”œ url: http://blog.izs.me
  2419. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/bower-json/node_modules/graceful-fs
  2420. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/bower-json/node_modules/graceful-fs/LICENSE
  2421. โ”œ graceful-fs@3.0.11
  2422. โ”‚ โ”œ licenses: ISC
  2423. โ”‚ โ”œ repository: https://github.com/isaacs/node-graceful-fs
  2424. โ”‚ โ”œ publisher: Isaac Z. Schlueter
  2425. โ”‚ โ”œ email: i@izs.me
  2426. โ”‚ โ”œ url: http://blog.izs.me
  2427. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/graceful-ncp/node_modules/graceful-fs
  2428. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/graceful-ncp/node_modules/graceful-fs/LICENSE
  2429. โ”œ graceful-fs@4.1.11
  2430. โ”‚ โ”œ licenses: ISC
  2431. โ”‚ โ”œ repository: https://github.com/isaacs/node-graceful-fs
  2432. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/readdirp/node_modules/graceful-fs
  2433. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/readdirp/node_modules/graceful-fs/LICENSE
  2434. โ”œ graceful-fs@4.1.15
  2435. โ”‚ โ”œ licenses: ISC
  2436. โ”‚ โ”œ repository: https://github.com/isaacs/node-graceful-fs
  2437. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/read-installed/node_modules/graceful-fs
  2438. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/read-installed/node_modules/graceful-fs/LICENSE
  2439. โ”œ graceful-ncp@2.0.0
  2440. โ”‚ โ”œ licenses: MIT
  2441. โ”‚ โ”œ repository: https://github.com/adam-lynch/graceful-ncp
  2442. โ”‚ โ”œ publisher: Adam Lynch
  2443. โ”‚ โ”œ email: contact@adamlynch.com
  2444. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/graceful-ncp
  2445. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/graceful-ncp/README.md
  2446. โ”œ graceful-readlink@1.0.1
  2447. โ”‚ โ”œ licenses: MIT
  2448. โ”‚ โ”œ repository: https://github.com/zhiyelee/graceful-readlink
  2449. โ”‚ โ”œ publisher: zhiyelee
  2450. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/graceful-readlink
  2451. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/graceful-readlink/LICENSE
  2452. โ”œ grunt-angular-gettext@2.3.6
  2453. โ”‚ โ”œ licenses: MIT
  2454. โ”‚ โ”œ repository: https://github.com/rubenv/grunt-angular-gettext
  2455. โ”‚ โ”œ publisher: Ruben Vermeersch
  2456. โ”‚ โ”œ email: ruben@rocketeer.be
  2457. โ”‚ โ”œ url: http://rocketeer.be
  2458. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/grunt-angular-gettext
  2459. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/grunt-angular-gettext/LICENSE
  2460. โ”œ grunt-bump@0.0.6
  2461. โ”‚ โ”œ licenses: UNKNOWN
  2462. โ”‚ โ”œ repository: https://github.com/vojtajina/grunt-bump
  2463. โ”‚ โ”œ publisher: Vojta Jรญna
  2464. โ”‚ โ”œ email: vojta.jina@gmail.com
  2465. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/lib-parent-grunt/node_modules/grunt-bump
  2466. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/lib-parent-grunt/node_modules/grunt-bump/README.md
  2467. โ”œ grunt-cli@1.2.0
  2468. โ”‚ โ”œ licenses: MIT
  2469. โ”‚ โ”œ repository: https://github.com/gruntjs/grunt-cli
  2470. โ”‚ โ”œ publisher: Grunt Development Team
  2471. โ”‚ โ”œ url: http://gruntjs.com/development-team
  2472. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/grunt-cli
  2473. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/grunt-cli/README.md
  2474. โ”œ grunt-contrib-clean@1.1.0
  2475. โ”‚ โ”œ licenses: MIT
  2476. โ”‚ โ”œ repository: https://github.com/gruntjs/grunt-contrib-clean
  2477. โ”‚ โ”œ publisher: Grunt Team
  2478. โ”‚ โ”œ url: http://gruntjs.com/
  2479. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/grunt-contrib-clean
  2480. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/grunt-contrib-clean/README.md
  2481. โ”œ grunt-contrib-compress@0.13.0
  2482. โ”‚ โ”œ licenses: MIT
  2483. โ”‚ โ”œ repository: https://github.com/gruntjs/grunt-contrib-compress
  2484. โ”‚ โ”œ publisher: Grunt Team
  2485. โ”‚ โ”œ url: http://gruntjs.com/
  2486. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/grunt-contrib-compress
  2487. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/grunt-contrib-compress/LICENSE-MIT
  2488. โ”œ grunt-contrib-concat@1.0.1
  2489. โ”‚ โ”œ licenses: MIT
  2490. โ”‚ โ”œ repository: https://github.com/gruntjs/grunt-contrib-concat
  2491. โ”‚ โ”œ publisher: Grunt Team
  2492. โ”‚ โ”œ url: http://gruntjs.com/
  2493. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/grunt-contrib-concat
  2494. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/grunt-contrib-concat/README.md
  2495. โ”œ grunt-contrib-copy@1.0.0
  2496. โ”‚ โ”œ licenses: MIT
  2497. โ”‚ โ”œ repository: https://github.com/gruntjs/grunt-contrib-copy
  2498. โ”‚ โ”œ publisher: Grunt Team
  2499. โ”‚ โ”œ url: http://gruntjs.com/
  2500. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/grunt-contrib-copy
  2501. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/grunt-contrib-copy/README.md
  2502. โ”œ grunt-contrib-cssmin@2.2.1
  2503. โ”‚ โ”œ licenses: MIT
  2504. โ”‚ โ”œ repository: https://github.com/gruntjs/grunt-contrib-cssmin
  2505. โ”‚ โ”œ publisher: Grunt Team
  2506. โ”‚ โ”œ url: http://gruntjs.com/
  2507. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/grunt-contrib-cssmin
  2508. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/grunt-contrib-cssmin/README.md
  2509. โ”œ grunt-contrib-jshint@2.0.0
  2510. โ”‚ โ”œ licenses: MIT
  2511. โ”‚ โ”œ repository: https://github.com/gruntjs/grunt-contrib-jshint
  2512. โ”‚ โ”œ publisher: Grunt Team
  2513. โ”‚ โ”œ url: https://gruntjs.com/
  2514. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/lib-parent-grunt/node_modules/grunt-contrib-jshint
  2515. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/lib-parent-grunt/node_modules/grunt-contrib-jshint/README.md
  2516. โ”œ grunt-contrib-sass@1.0.0
  2517. โ”‚ โ”œ licenses: MIT
  2518. โ”‚ โ”œ repository: https://github.com/gruntjs/grunt-contrib-sass
  2519. โ”‚ โ”œ publisher: Grunt Team
  2520. โ”‚ โ”œ url: http://gruntjs.com/
  2521. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/grunt-contrib-sass
  2522. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/grunt-contrib-sass/README.md
  2523. โ”œ grunt-contrib-uglify@3.2.1
  2524. โ”‚ โ”œ licenses: MIT
  2525. โ”‚ โ”œ repository: https://github.com/gruntjs/grunt-contrib-uglify
  2526. โ”‚ โ”œ publisher: Grunt Team
  2527. โ”‚ โ”œ url: http://gruntjs.com/
  2528. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/grunt-contrib-uglify
  2529. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/grunt-contrib-uglify/README.md
  2530. โ”œ grunt-contrib-watch@0.6.1
  2531. โ”‚ โ”œ licenses: MIT
  2532. โ”‚ โ”œ repository: https://github.com/gruntjs/grunt-contrib-watch
  2533. โ”‚ โ”œ publisher: Grunt Team
  2534. โ”‚ โ”œ url: http://gruntjs.com/
  2535. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/grunt-express/node_modules/grunt-contrib-watch
  2536. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/grunt-express/node_modules/grunt-contrib-watch/LICENSE-MIT
  2537. โ”œ grunt-contrib-watch@1.0.0
  2538. โ”‚ โ”œ licenses: MIT
  2539. โ”‚ โ”œ repository: https://github.com/gruntjs/grunt-contrib-watch
  2540. โ”‚ โ”œ publisher: Grunt Team
  2541. โ”‚ โ”œ url: http://gruntjs.com/
  2542. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/grunt-contrib-watch
  2543. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/grunt-contrib-watch/README.md
  2544. โ”œ grunt-express@1.4.1
  2545. โ”‚ โ”œ licenses: MIT
  2546. โ”‚ โ”œ repository: https://github.com/blai/grunt-express
  2547. โ”‚ โ”œ publisher: Brian Lai
  2548. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/grunt-express
  2549. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/grunt-express/LICENSE-MIT
  2550. โ”œ grunt-freddie@0.5.0
  2551. โ”‚ โ”œ licenses: MIT
  2552. โ”‚ โ”œ repository: https://github.com/Scytl/grunt-freddie
  2553. โ”‚ โ”œ publisher: Pau Fracรฉs
  2554. โ”‚ โ”œ email: pfraces@gmail.com
  2555. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/grunt-freddie
  2556. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/grunt-freddie/LICENSE-MIT
  2557. โ”œ grunt-html2js@0.5.1
  2558. โ”‚ โ”œ licenses: MIT*
  2559. โ”‚ โ”œ repository: https://github.com/rquadling/grunt-html2js
  2560. โ”‚ โ”œ publisher: Karl Goldstein
  2561. โ”‚ โ”œ email: karl.goldstein@gmail.com
  2562. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/grunt-html2js
  2563. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/grunt-html2js/LICENSE-MIT
  2564. โ”œ grunt-karma@0.12.0
  2565. โ”‚ โ”œ licenses: MIT
  2566. โ”‚ โ”œ repository: https://github.com/karma-runner/grunt-karma
  2567. โ”‚ โ”œ publisher: Dave Geddes
  2568. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/grunt-karma
  2569. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/grunt-karma/LICENSE
  2570. โ”œ grunt-known-options@1.1.0
  2571. โ”‚ โ”œ licenses: MIT
  2572. โ”‚ โ”œ repository: https://github.com/gruntjs/grunt-known-options
  2573. โ”‚ โ”œ publisher: Grunt Development Team
  2574. โ”‚ โ”œ url: http://gruntjs.com/development-team
  2575. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/grunt-known-options
  2576. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/grunt-known-options/LICENSE
  2577. โ”œ grunt-legacy-log-utils@0.1.1
  2578. โ”‚ โ”œ licenses: MIT
  2579. โ”‚ โ”œ repository: https://github.com/gruntjs/grunt-legacy-log-utils
  2580. โ”‚ โ”œ publisher: "Cowboy" Ben Alman
  2581. โ”‚ โ”œ url: http://benalman.com/
  2582. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/grunt-legacy-log-utils
  2583. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/grunt-legacy-log-utils/LICENSE-MIT
  2584. โ”œ grunt-legacy-log@0.1.3
  2585. โ”‚ โ”œ licenses: MIT
  2586. โ”‚ โ”œ repository: https://github.com/gruntjs/grunt-legacy-log
  2587. โ”‚ โ”œ publisher: "Cowboy" Ben Alman
  2588. โ”‚ โ”œ url: http://benalman.com/
  2589. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/grunt-legacy-log
  2590. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/grunt-legacy-log/LICENSE-MIT
  2591. โ”œ grunt-legacy-util@0.2.0
  2592. โ”‚ โ”œ licenses: MIT
  2593. โ”‚ โ”œ repository: https://github.com/gruntjs/grunt-legacy-util
  2594. โ”‚ โ”œ publisher: "Cowboy" Ben Alman
  2595. โ”‚ โ”œ url: http://benalman.com/
  2596. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/grunt-legacy-util
  2597. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/grunt-legacy-util/LICENSE-MIT
  2598. โ”œ grunt-nexus-deployer@0.0.4
  2599. โ”‚ โ”œ licenses: MIT
  2600. โ”‚ โ”œ repository: https://github.com/skhatri/grunt-nexus-deployer
  2601. โ”‚ โ”œ publisher: Suresh Khatri
  2602. โ”‚ โ”œ email: servlet2@msn.com
  2603. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/lib-parent-grunt/node_modules/grunt-nexus-deployer
  2604. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/lib-parent-grunt/node_modules/grunt-nexus-deployer/LICENSE-MIT
  2605. โ”œ grunt-ng-annotate@3.0.0
  2606. โ”‚ โ”œ licenses: MIT
  2607. โ”‚ โ”œ repository: https://github.com/mgol/grunt-ng-annotate
  2608. โ”‚ โ”œ publisher: Michaล‚ Goล‚ฤ™biowski
  2609. โ”‚ โ”œ email: m.goleb@gmail.com
  2610. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/grunt-ng-annotate
  2611. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/grunt-ng-annotate/LICENSE
  2612. โ”œ grunt-node-webkit-builder@1.0.2
  2613. โ”‚ โ”œ licenses: MIT
  2614. โ”‚ โ”œ repository: https://github.com/mllrsohn/grunt-node-webkit-builder
  2615. โ”‚ โ”œ publisher: Steffen Mรผller
  2616. โ”‚ โ”œ email: steffen@mllrsohn.com
  2617. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/grunt-node-webkit-builder
  2618. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/grunt-node-webkit-builder/LICENSE-MIT
  2619. โ”œ grunt-openport@1.0.0
  2620. โ”‚ โ”œ licenses: MIT
  2621. โ”‚ โ”œ repository: https://github.com/shama/grunt-openport
  2622. โ”‚ โ”œ publisher: Kyle Robinson Young
  2623. โ”‚ โ”œ email: kyle@dontkry.com
  2624. โ”‚ โ”œ url: http://dontkry.com
  2625. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/grunt-openport
  2626. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/grunt-openport/LICENSE-MIT
  2627. โ”œ grunt-parallel@0.3.1
  2628. โ”‚ โ”œ licenses: MIT
  2629. โ”‚ โ”œ repository: https://github.com/iammerrick/grunt-parallel
  2630. โ”‚ โ”œ publisher: Merrick Christensen
  2631. โ”‚ โ”œ email: merrick.christensen@gmail.com
  2632. โ”‚ โ”œ url: http://merrickchristensen.com
  2633. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/grunt-express/node_modules/grunt-parallel
  2634. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/grunt-express/node_modules/grunt-parallel/LICENSE-MIT
  2635. โ”œ grunt-sass@2.0.0
  2636. โ”‚ โ”œ licenses: MIT
  2637. โ”‚ โ”œ repository: https://github.com/sindresorhus/grunt-sass
  2638. โ”‚ โ”œ publisher: Sindre Sorhus
  2639. โ”‚ โ”œ email: sindresorhus@gmail.com
  2640. โ”‚ โ”œ url: sindresorhus.com
  2641. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/grunt-sass
  2642. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/grunt-sass/license
  2643. โ”œ grunt@0.4.5
  2644. โ”‚ โ”œ licenses: MIT
  2645. โ”‚ โ”œ repository: https://github.com/gruntjs/grunt
  2646. โ”‚ โ”œ publisher: "Cowboy" Ben Alman
  2647. โ”‚ โ”œ url: http://benalman.com/
  2648. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/grunt
  2649. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/grunt/LICENSE-MIT
  2650. โ”œ gzip-size@1.0.0
  2651. โ”‚ โ”œ licenses: MIT
  2652. โ”‚ โ”œ repository: https://github.com/sindresorhus/gzip-size
  2653. โ”‚ โ”œ publisher: Sindre Sorhus
  2654. โ”‚ โ”œ email: sindresorhus@gmail.com
  2655. โ”‚ โ”œ url: http://sindresorhus.com
  2656. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/grunt-contrib-uglify/node_modules/gzip-size
  2657. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/grunt-contrib-uglify/node_modules/gzip-size/readme.md
  2658. โ”œ gzip-size@3.0.0
  2659. โ”‚ โ”œ licenses: MIT
  2660. โ”‚ โ”œ repository: https://github.com/sindresorhus/gzip-size
  2661. โ”‚ โ”œ publisher: Sindre Sorhus
  2662. โ”‚ โ”œ email: sindresorhus@gmail.com
  2663. โ”‚ โ”œ url: sindresorhus.com
  2664. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/gzip-size
  2665. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/gzip-size/license
  2666. โ”œ handlebars@4.0.11
  2667. โ”‚ โ”œ licenses: MIT
  2668. โ”‚ โ”œ repository: https://github.com/wycats/handlebars.js
  2669. โ”‚ โ”œ publisher: Yehuda Katz
  2670. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/handlebars
  2671. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/handlebars/LICENSE
  2672. โ”œ har-validator@2.0.6
  2673. โ”‚ โ”œ licenses: ISC
  2674. โ”‚ โ”œ repository: https://github.com/ahmadnassri/har-validator
  2675. โ”‚ โ”œ publisher: Ahmad Nassri
  2676. โ”‚ โ”œ email: ahmad@ahmadnassri.com
  2677. โ”‚ โ”œ url: https://www.ahmadnassri.com/
  2678. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/har-validator
  2679. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/har-validator/LICENSE
  2680. โ”œ has-ansi@0.1.0
  2681. โ”‚ โ”œ licenses: MIT
  2682. โ”‚ โ”œ repository: https://github.com/sindresorhus/has-ansi
  2683. โ”‚ โ”œ publisher: Sindre Sorhus
  2684. โ”‚ โ”œ email: sindresorhus@gmail.com
  2685. โ”‚ โ”œ url: http://sindresorhus.com
  2686. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/has-ansi
  2687. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/has-ansi/readme.md
  2688. โ”œ has-ansi@2.0.0
  2689. โ”‚ โ”œ licenses: MIT
  2690. โ”‚ โ”œ repository: https://github.com/sindresorhus/has-ansi
  2691. โ”‚ โ”œ publisher: Sindre Sorhus
  2692. โ”‚ โ”œ email: sindresorhus@gmail.com
  2693. โ”‚ โ”œ url: sindresorhus.com
  2694. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/node-sass/node_modules/has-ansi
  2695. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/node-sass/node_modules/has-ansi/license
  2696. โ”œ has-binary-data@0.1.3
  2697. โ”‚ โ”œ licenses: ISC
  2698. โ”‚ โ”œ publisher: Kevin Roark
  2699. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/has-binary-data
  2700. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/has-binary-data/LICENSE
  2701. โ”œ has-binary@0.1.6
  2702. โ”‚ โ”œ licenses: MIT
  2703. โ”‚ โ”œ publisher: Kevin Roark
  2704. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/has-binary
  2705. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/has-binary/LICENSE
  2706. โ”œ has-color@0.1.7
  2707. โ”‚ โ”œ licenses: MIT
  2708. โ”‚ โ”œ repository: https://github.com/sindresorhus/has-color
  2709. โ”‚ โ”œ publisher: Sindre Sorhus
  2710. โ”‚ โ”œ email: sindresorhus@gmail.com
  2711. โ”‚ โ”œ url: http://sindresorhus.com
  2712. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/has-color
  2713. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/has-color/readme.md
  2714. โ”œ has-cors@1.0.3
  2715. โ”‚ โ”œ licenses: MIT
  2716. โ”‚ โ”œ repository: https://github.com/component/has-cors
  2717. โ”‚ โ”œ publisher: Nathan Rajlich
  2718. โ”‚ โ”œ email: nathan@tootallnate.net
  2719. โ”‚ โ”œ url: http://n8.io/
  2720. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/has-cors
  2721. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/has-cors/Readme.md
  2722. โ”œ has-flag@1.0.0
  2723. โ”‚ โ”œ licenses: MIT
  2724. โ”‚ โ”œ repository: https://github.com/sindresorhus/has-flag
  2725. โ”‚ โ”œ publisher: Sindre Sorhus
  2726. โ”‚ โ”œ email: sindresorhus@gmail.com
  2727. โ”‚ โ”œ url: sindresorhus.com
  2728. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/has-flag
  2729. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/has-flag/license
  2730. โ”œ has-flag@3.0.0
  2731. โ”‚ โ”œ licenses: MIT
  2732. โ”‚ โ”œ repository: https://github.com/sindresorhus/has-flag
  2733. โ”‚ โ”œ publisher: Sindre Sorhus
  2734. โ”‚ โ”œ email: sindresorhus@gmail.com
  2735. โ”‚ โ”œ url: sindresorhus.com
  2736. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/license-checker/node_modules/has-flag
  2737. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/license-checker/node_modules/has-flag/license
  2738. โ”œ has-unicode@2.0.1
  2739. โ”‚ โ”œ licenses: ISC
  2740. โ”‚ โ”œ repository: https://github.com/iarna/has-unicode
  2741. โ”‚ โ”œ publisher: Rebecca Turner
  2742. โ”‚ โ”œ email: me@re-becca.org
  2743. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/has-unicode
  2744. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/has-unicode/LICENSE
  2745. โ”œ has-value@0.3.1
  2746. โ”‚ โ”œ licenses: MIT
  2747. โ”‚ โ”œ repository: https://github.com/jonschlinkert/has-value
  2748. โ”‚ โ”œ publisher: Jon Schlinkert
  2749. โ”‚ โ”œ url: https://github.com/jonschlinkert
  2750. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/unset-value/node_modules/has-value
  2751. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/unset-value/node_modules/has-value/LICENSE
  2752. โ”œ has-value@1.0.0
  2753. โ”‚ โ”œ licenses: MIT
  2754. โ”‚ โ”œ repository: https://github.com/jonschlinkert/has-value
  2755. โ”‚ โ”œ publisher: Jon Schlinkert
  2756. โ”‚ โ”œ url: https://github.com/jonschlinkert
  2757. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/has-value
  2758. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/has-value/LICENSE
  2759. โ”œ has-values@0.1.4
  2760. โ”‚ โ”œ licenses: MIT
  2761. โ”‚ โ”œ repository: https://github.com/jonschlinkert/has-values
  2762. โ”‚ โ”œ publisher: Jon Schlinkert
  2763. โ”‚ โ”œ url: https://github.com/jonschlinkert
  2764. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/unset-value/node_modules/has-values
  2765. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/unset-value/node_modules/has-values/LICENSE
  2766. โ”œ has-values@1.0.0
  2767. โ”‚ โ”œ licenses: MIT
  2768. โ”‚ โ”œ repository: https://github.com/jonschlinkert/has-values
  2769. โ”‚ โ”œ publisher: Jon Schlinkert
  2770. โ”‚ โ”œ url: https://github.com/jonschlinkert
  2771. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/has-values
  2772. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/has-values/LICENSE
  2773. โ”œ has@1.0.1
  2774. โ”‚ โ”œ licenses: MIT
  2775. โ”‚ โ”œ repository: https://github.com/tarruda/has
  2776. โ”‚ โ”œ publisher: Thiago de Arruda
  2777. โ”‚ โ”œ email: tpadilha84@gmail.com
  2778. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/has
  2779. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/has/LICENSE-MIT
  2780. โ”œ hawk@1.1.1
  2781. โ”‚ โ”œ licenses: BSD
  2782. โ”‚ โ”œ repository: https://github.com/hueniverse/hawk
  2783. โ”‚ โ”œ publisher: Eran Hammer
  2784. โ”‚ โ”œ email: eran@hueniverse.com
  2785. โ”‚ โ”œ url: http://hueniverse.com
  2786. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/hawk
  2787. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/hawk/LICENSE
  2788. โ”œ hawk@3.1.3
  2789. โ”‚ โ”œ licenses: BSD-3-Clause
  2790. โ”‚ โ”œ repository: https://github.com/hueniverse/hawk
  2791. โ”‚ โ”œ publisher: Eran Hammer
  2792. โ”‚ โ”œ email: eran@hammer.io
  2793. โ”‚ โ”œ url: http://hueniverse.com
  2794. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/node-sass/node_modules/hawk
  2795. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/node-sass/node_modules/hawk/LICENSE
  2796. โ”œ he@1.1.1
  2797. โ”‚ โ”œ licenses: MIT
  2798. โ”‚ โ”œ repository: https://github.com/mathiasbynens/he
  2799. โ”‚ โ”œ publisher: Mathias Bynens
  2800. โ”‚ โ”œ url: https://mathiasbynens.be/
  2801. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/he
  2802. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/he/LICENSE-MIT.txt
  2803. โ”œ header-case@1.0.1
  2804. โ”‚ โ”œ licenses: MIT
  2805. โ”‚ โ”œ repository: https://github.com/blakeembrey/header-case
  2806. โ”‚ โ”œ publisher: Blake Embrey
  2807. โ”‚ โ”œ email: hello@blakeembrey.com
  2808. โ”‚ โ”œ url: http://blakeembrey.me
  2809. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/header-case
  2810. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/header-case/LICENSE
  2811. โ”œ hoek@0.9.1
  2812. โ”‚ โ”œ licenses: BSD
  2813. โ”‚ โ”œ repository: https://github.com/spumko/hoek
  2814. โ”‚ โ”œ publisher: Eran Hammer
  2815. โ”‚ โ”œ email: eran@hueniverse.com
  2816. โ”‚ โ”œ url: http://hueniverse.com
  2817. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/hoek
  2818. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/hoek/LICENSE
  2819. โ”œ hoek@2.16.3
  2820. โ”‚ โ”œ licenses: BSD-3-Clause
  2821. โ”‚ โ”œ repository: https://github.com/hapijs/hoek
  2822. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/node-sass/node_modules/hoek
  2823. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/node-sass/node_modules/hoek/LICENSE
  2824. โ”œ homedir-polyfill@1.0.1
  2825. โ”‚ โ”œ licenses: MIT
  2826. โ”‚ โ”œ repository: https://github.com/doowb/homedir-polyfill
  2827. โ”‚ โ”œ publisher: Brian Woodward
  2828. โ”‚ โ”œ url: https://github.com/doowb
  2829. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/homedir-polyfill
  2830. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/homedir-polyfill/LICENSE
  2831. โ”œ hooker@0.2.3
  2832. โ”‚ โ”œ licenses: MIT
  2833. โ”‚ โ”œ repository: https://github.com/cowboy/javascript-hooker
  2834. โ”‚ โ”œ publisher: "Cowboy" Ben Alman
  2835. โ”‚ โ”œ url: http://benalman.com/
  2836. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/hooker
  2837. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/hooker/LICENSE-MIT
  2838. โ”œ hosted-git-info@2.5.0
  2839. โ”‚ โ”œ licenses: ISC
  2840. โ”‚ โ”œ repository: https://github.com/npm/hosted-git-info
  2841. โ”‚ โ”œ publisher: Rebecca Turner
  2842. โ”‚ โ”œ email: me@re-becca.org
  2843. โ”‚ โ”œ url: http://re-becca.org
  2844. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/hosted-git-info
  2845. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/hosted-git-info/LICENSE
  2846. โ”œ html-minifier@3.0.3
  2847. โ”‚ โ”œ licenses: MIT
  2848. โ”‚ โ”œ repository: https://github.com/kangax/html-minifier
  2849. โ”‚ โ”œ publisher: Juriy "kangax" Zaytsev
  2850. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/html-minifier
  2851. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/html-minifier/LICENSE
  2852. โ”œ htmlparser2@3.8.3
  2853. โ”‚ โ”œ licenses: MIT
  2854. โ”‚ โ”œ repository: https://github.com/fb55/htmlparser2
  2855. โ”‚ โ”œ publisher: Felix Boehm
  2856. โ”‚ โ”œ email: me@feedic.com
  2857. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/htmlparser2
  2858. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/htmlparser2/LICENSE
  2859. โ”œ http-errors@1.3.1
  2860. โ”‚ โ”œ licenses: MIT
  2861. โ”‚ โ”œ repository: https://github.com/jshttp/http-errors
  2862. โ”‚ โ”œ publisher: Jonathan Ong
  2863. โ”‚ โ”œ email: me@jongleberry.com
  2864. โ”‚ โ”œ url: http://jongleberry.com
  2865. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/http-errors
  2866. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/http-errors/LICENSE
  2867. โ”œ http-errors@1.6.2
  2868. โ”‚ โ”œ licenses: MIT
  2869. โ”‚ โ”œ repository: https://github.com/jshttp/http-errors
  2870. โ”‚ โ”œ publisher: Jonathan Ong
  2871. โ”‚ โ”œ email: me@jongleberry.com
  2872. โ”‚ โ”œ url: http://jongleberry.com
  2873. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/freddie/node_modules/http-errors
  2874. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/freddie/node_modules/http-errors/LICENSE
  2875. โ”œ http-parser-js@0.4.9
  2876. โ”‚ โ”œ licenses: MIT
  2877. โ”‚ โ”œ repository: https://github.com/creationix/http-parser-js
  2878. โ”‚ โ”œ publisher: Tim Caswell
  2879. โ”‚ โ”œ url: https://github.com/creationix
  2880. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/http-parser-js
  2881. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/http-parser-js/LICENSE.md
  2882. โ”œ http-proxy@1.16.2
  2883. โ”‚ โ”œ licenses: MIT
  2884. โ”‚ โ”œ repository: https://github.com/nodejitsu/node-http-proxy
  2885. โ”‚ โ”œ publisher: Charlie Robbins
  2886. โ”‚ โ”œ email: charlie.robbins@gmail.com
  2887. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/http-proxy
  2888. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/http-proxy/LICENSE
  2889. โ”œ http-signature@0.10.1
  2890. โ”‚ โ”œ licenses: MIT
  2891. โ”‚ โ”œ repository: https://github.com/joyent/node-http-signature
  2892. โ”‚ โ”œ publisher: Joyent, Inc
  2893. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/http-signature
  2894. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/http-signature/LICENSE
  2895. โ”œ http-signature@1.1.1
  2896. โ”‚ โ”œ licenses: MIT
  2897. โ”‚ โ”œ repository: https://github.com/joyent/node-http-signature
  2898. โ”‚ โ”œ publisher: Joyent, Inc
  2899. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/node-sass/node_modules/http-signature
  2900. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/node-sass/node_modules/http-signature/LICENSE
  2901. โ”œ iconv-lite@0.2.11
  2902. โ”‚ โ”œ licenses: MIT
  2903. โ”‚ โ”œ repository: https://github.com/ashtuchkin/iconv-lite
  2904. โ”‚ โ”œ publisher: Alexander Shtuchkin
  2905. โ”‚ โ”œ email: ashtuchkin@gmail.com
  2906. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/grunt/node_modules/iconv-lite
  2907. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/grunt/node_modules/iconv-lite/LICENSE
  2908. โ”œ iconv-lite@0.4.10
  2909. โ”‚ โ”œ licenses: MIT
  2910. โ”‚ โ”œ repository: https://github.com/ashtuchkin/iconv-lite
  2911. โ”‚ โ”œ publisher: Alexander Shtuchkin
  2912. โ”‚ โ”œ email: ashtuchkin@gmail.com
  2913. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/iconv-lite
  2914. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/iconv-lite/LICENSE
  2915. โ”œ iconv-lite@0.4.11
  2916. โ”‚ โ”œ licenses: MIT
  2917. โ”‚ โ”œ repository: https://github.com/ashtuchkin/iconv-lite
  2918. โ”‚ โ”œ publisher: Alexander Shtuchkin
  2919. โ”‚ โ”œ email: ashtuchkin@gmail.com
  2920. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/connect/node_modules/iconv-lite
  2921. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/connect/node_modules/iconv-lite/LICENSE
  2922. โ”œ iconv-lite@0.4.13
  2923. โ”‚ โ”œ licenses: MIT
  2924. โ”‚ โ”œ repository: https://github.com/ashtuchkin/iconv-lite
  2925. โ”‚ โ”œ publisher: Alexander Shtuchkin
  2926. โ”‚ โ”œ email: ashtuchkin@gmail.com
  2927. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/raw-body/node_modules/iconv-lite
  2928. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/raw-body/node_modules/iconv-lite/LICENSE
  2929. โ”œ iconv-lite@0.4.21
  2930. โ”‚ โ”œ licenses: MIT
  2931. โ”‚ โ”œ repository: https://github.com/ashtuchkin/iconv-lite
  2932. โ”‚ โ”œ publisher: Alexander Shtuchkin
  2933. โ”‚ โ”œ email: ashtuchkin@gmail.com
  2934. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/fsevents/node_modules/iconv-lite
  2935. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/fsevents/node_modules/iconv-lite/LICENSE
  2936. โ”œ ignore-walk@3.0.1
  2937. โ”‚ โ”œ licenses: ISC
  2938. โ”‚ โ”œ repository: https://github.com/isaacs/ignore-walk
  2939. โ”‚ โ”œ publisher: Isaac Z. Schlueter
  2940. โ”‚ โ”œ email: i@izs.me
  2941. โ”‚ โ”œ url: http://blog.izs.me/
  2942. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/fsevents/node_modules/ignore-walk
  2943. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/fsevents/node_modules/ignore-walk/LICENSE
  2944. โ”œ in-publish@2.0.0
  2945. โ”‚ โ”œ licenses: ISC
  2946. โ”‚ โ”œ repository: https://github.com/iarna/in-publish
  2947. โ”‚ โ”œ publisher: Rebecca Turner
  2948. โ”‚ โ”œ email: me@re-becca.org
  2949. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/in-publish
  2950. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/in-publish/LICENSE
  2951. โ”œ indent-string@2.1.0
  2952. โ”‚ โ”œ licenses: MIT
  2953. โ”‚ โ”œ repository: https://github.com/sindresorhus/indent-string
  2954. โ”‚ โ”œ publisher: Sindre Sorhus
  2955. โ”‚ โ”œ email: sindresorhus@gmail.com
  2956. โ”‚ โ”œ url: sindresorhus.com
  2957. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/indent-string
  2958. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/indent-string/license
  2959. โ”œ indexof@0.0.1
  2960. โ”‚ โ”œ licenses: MIT*
  2961. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/indexof
  2962. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/indexof/Readme.md
  2963. โ”œ inflight@1.0.6
  2964. โ”‚ โ”œ licenses: ISC
  2965. โ”‚ โ”œ repository: https://github.com/npm/inflight
  2966. โ”‚ โ”œ publisher: Isaac Z. Schlueter
  2967. โ”‚ โ”œ email: i@izs.me
  2968. โ”‚ โ”œ url: http://blog.izs.me/
  2969. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/inflight
  2970. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/inflight/LICENSE
  2971. โ”œ inherits@1.0.2
  2972. โ”‚ โ”œ licenses: ISC*
  2973. โ”‚ โ”œ repository: https://github.com/isaacs/inherits
  2974. โ”‚ โ”œ publisher: Isaac Z. Schlueter
  2975. โ”‚ โ”œ email: i@izs.me
  2976. โ”‚ โ”œ url: http://blog.izs.me/
  2977. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/glob/node_modules/inherits
  2978. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/glob/node_modules/inherits/LICENSE
  2979. โ”œ inherits@2.0.3
  2980. โ”‚ โ”œ licenses: ISC
  2981. โ”‚ โ”œ repository: https://github.com/isaacs/inherits
  2982. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/inherits
  2983. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/inherits/LICENSE
  2984. โ”œ ini@1.3.5
  2985. โ”‚ โ”œ licenses: ISC
  2986. โ”‚ โ”œ repository: https://github.com/isaacs/ini
  2987. โ”‚ โ”œ publisher: Isaac Z. Schlueter
  2988. โ”‚ โ”œ email: i@izs.me
  2989. โ”‚ โ”œ url: http://blog.izs.me/
  2990. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/ini
  2991. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/ini/LICENSE
  2992. โ”œ install@0.10.2
  2993. โ”‚ โ”œ licenses: MIT
  2994. โ”‚ โ”œ repository: https://github.com/benjamn/install
  2995. โ”‚ โ”œ publisher: Ben Newman
  2996. โ”‚ โ”œ email: bn@cs.stanford.edu
  2997. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/install
  2998. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/install/LICENSE
  2999. โ”œ intersect@0.0.3
  3000. โ”‚ โ”œ licenses: MIT
  3001. โ”‚ โ”œ repository: https://github.com/juliangruber/intersect
  3002. โ”‚ โ”œ publisher: Julian Gruber
  3003. โ”‚ โ”œ email: mail@juliangruber.com
  3004. โ”‚ โ”œ url: http://juliangruber.com
  3005. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/intersect
  3006. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/intersect/README.md
  3007. โ”œ invert-kv@1.0.0
  3008. โ”‚ โ”œ licenses: MIT
  3009. โ”‚ โ”œ repository: https://github.com/sindresorhus/invert-kv
  3010. โ”‚ โ”œ publisher: Sindre Sorhus
  3011. โ”‚ โ”œ email: sindresorhus@gmail.com
  3012. โ”‚ โ”œ url: http://sindresorhus.com
  3013. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/invert-kv
  3014. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/invert-kv/readme.md
  3015. โ”œ ipaddr.js@1.0.5
  3016. โ”‚ โ”œ licenses: MIT
  3017. โ”‚ โ”œ repository: https://github.com/whitequark/ipaddr.js
  3018. โ”‚ โ”œ publisher: whitequark
  3019. โ”‚ โ”œ email: whitequark@whitequark.org
  3020. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/ipaddr.js
  3021. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/ipaddr.js/LICENSE
  3022. โ”œ is-accessor-descriptor@0.1.6
  3023. โ”‚ โ”œ licenses: MIT
  3024. โ”‚ โ”œ repository: https://github.com/jonschlinkert/is-accessor-descriptor
  3025. โ”‚ โ”œ publisher: Jon Schlinkert
  3026. โ”‚ โ”œ url: https://github.com/jonschlinkert
  3027. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/is-accessor-descriptor
  3028. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/is-accessor-descriptor/LICENSE
  3029. โ”œ is-arrayish@0.2.1
  3030. โ”‚ โ”œ licenses: MIT
  3031. โ”‚ โ”œ repository: https://github.com/qix-/node-is-arrayish
  3032. โ”‚ โ”œ publisher: Qix
  3033. โ”‚ โ”œ url: http://github.com/qix-
  3034. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/is-arrayish
  3035. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/is-arrayish/LICENSE
  3036. โ”œ is-binary-path@1.0.1
  3037. โ”‚ โ”œ licenses: MIT
  3038. โ”‚ โ”œ repository: https://github.com/sindresorhus/is-binary-path
  3039. โ”‚ โ”œ publisher: Sindre Sorhus
  3040. โ”‚ โ”œ email: sindresorhus@gmail.com
  3041. โ”‚ โ”œ url: sindresorhus.com
  3042. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/is-binary-path
  3043. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/is-binary-path/license
  3044. โ”œ is-buffer@1.1.6
  3045. โ”‚ โ”œ licenses: MIT
  3046. โ”‚ โ”œ repository: https://github.com/feross/is-buffer
  3047. โ”‚ โ”œ publisher: Feross Aboukhadijeh
  3048. โ”‚ โ”œ email: feross@feross.org
  3049. โ”‚ โ”œ url: http://feross.org/
  3050. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/is-buffer
  3051. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/is-buffer/LICENSE
  3052. โ”œ is-builtin-module@1.0.0
  3053. โ”‚ โ”œ licenses: MIT
  3054. โ”‚ โ”œ repository: https://github.com/sindresorhus/is-builtin-module
  3055. โ”‚ โ”œ publisher: Sindre Sorhus
  3056. โ”‚ โ”œ email: sindresorhus@gmail.com
  3057. โ”‚ โ”œ url: sindresorhus.com
  3058. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/is-builtin-module
  3059. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/is-builtin-module/license
  3060. โ”œ is-data-descriptor@0.1.4
  3061. โ”‚ โ”œ licenses: MIT
  3062. โ”‚ โ”œ repository: https://github.com/jonschlinkert/is-data-descriptor
  3063. โ”‚ โ”œ publisher: Jon Schlinkert
  3064. โ”‚ โ”œ url: https://github.com/jonschlinkert
  3065. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/is-data-descriptor
  3066. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/is-data-descriptor/LICENSE
  3067. โ”œ is-descriptor@0.1.6
  3068. โ”‚ โ”œ licenses: MIT
  3069. โ”‚ โ”œ repository: https://github.com/jonschlinkert/is-descriptor
  3070. โ”‚ โ”œ publisher: Jon Schlinkert
  3071. โ”‚ โ”œ url: https://github.com/jonschlinkert
  3072. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/static-extend/node_modules/is-descriptor
  3073. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/static-extend/node_modules/is-descriptor/LICENSE
  3074. โ”œ is-descriptor@1.0.1
  3075. โ”‚ โ”œ licenses: MIT
  3076. โ”‚ โ”œ repository: https://github.com/jonschlinkert/is-descriptor
  3077. โ”‚ โ”œ publisher: Jon Schlinkert
  3078. โ”‚ โ”œ url: https://github.com/jonschlinkert
  3079. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/is-descriptor
  3080. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/is-descriptor/LICENSE
  3081. โ”œ is-dotfile@1.0.3
  3082. โ”‚ โ”œ licenses: MIT
  3083. โ”‚ โ”œ repository: https://github.com/jonschlinkert/is-dotfile
  3084. โ”‚ โ”œ publisher: Jon Schlinkert
  3085. โ”‚ โ”œ url: https://github.com/jonschlinkert
  3086. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/is-dotfile
  3087. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/is-dotfile/LICENSE
  3088. โ”œ is-equal-shallow@0.1.3
  3089. โ”‚ โ”œ licenses: MIT
  3090. โ”‚ โ”œ repository: https://github.com/jonschlinkert/is-equal-shallow
  3091. โ”‚ โ”œ publisher: Jon Schlinkert
  3092. โ”‚ โ”œ url: https://github.com/jonschlinkert
  3093. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/is-equal-shallow
  3094. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/is-equal-shallow/LICENSE
  3095. โ”œ is-expression@2.1.0
  3096. โ”‚ โ”œ licenses: MIT
  3097. โ”‚ โ”œ repository: https://github.com/pugjs/is-expression
  3098. โ”‚ โ”œ publisher: Timothy Gu
  3099. โ”‚ โ”œ email: timothygu99@gmail.com
  3100. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/is-expression
  3101. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/is-expression/LICENSE.md
  3102. โ”œ is-expression@3.0.0
  3103. โ”‚ โ”œ licenses: MIT
  3104. โ”‚ โ”œ repository: https://github.com/pugjs/is-expression
  3105. โ”‚ โ”œ publisher: Timothy Gu
  3106. โ”‚ โ”œ email: timothygu99@gmail.com
  3107. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/pug-lexer/node_modules/is-expression
  3108. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/pug-lexer/node_modules/is-expression/LICENSE.md
  3109. โ”œ is-extendable@0.1.1
  3110. โ”‚ โ”œ licenses: MIT
  3111. โ”‚ โ”œ repository: https://github.com/jonschlinkert/is-extendable
  3112. โ”‚ โ”œ publisher: Jon Schlinkert
  3113. โ”‚ โ”œ url: https://github.com/jonschlinkert
  3114. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/is-extendable
  3115. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/is-extendable/LICENSE
  3116. โ”œ is-extendable@1.0.1
  3117. โ”‚ โ”œ licenses: MIT
  3118. โ”‚ โ”œ repository: https://github.com/jonschlinkert/is-extendable
  3119. โ”‚ โ”œ publisher: Jon Schlinkert
  3120. โ”‚ โ”œ url: https://github.com/jonschlinkert
  3121. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/split-string/node_modules/is-extendable
  3122. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/split-string/node_modules/is-extendable/LICENSE
  3123. โ”œ is-extglob@1.0.0
  3124. โ”‚ โ”œ licenses: MIT
  3125. โ”‚ โ”œ repository: https://github.com/jonschlinkert/is-extglob
  3126. โ”‚ โ”œ publisher: Jon Schlinkert
  3127. โ”‚ โ”œ url: https://github.com/jonschlinkert
  3128. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/is-extglob
  3129. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/is-extglob/LICENSE
  3130. โ”œ is-extglob@2.1.1
  3131. โ”‚ โ”œ licenses: MIT
  3132. โ”‚ โ”œ repository: https://github.com/jonschlinkert/is-extglob
  3133. โ”‚ โ”œ publisher: Jon Schlinkert
  3134. โ”‚ โ”œ url: https://github.com/jonschlinkert
  3135. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/matchdep/node_modules/is-extglob
  3136. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/matchdep/node_modules/is-extglob/LICENSE
  3137. โ”œ is-finite@1.0.2
  3138. โ”‚ โ”œ licenses: MIT
  3139. โ”‚ โ”œ repository: https://github.com/sindresorhus/is-finite
  3140. โ”‚ โ”œ publisher: Sindre Sorhus
  3141. โ”‚ โ”œ email: sindresorhus@gmail.com
  3142. โ”‚ โ”œ url: sindresorhus.com
  3143. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/is-finite
  3144. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/is-finite/license
  3145. โ”œ is-fullwidth-code-point@1.0.0
  3146. โ”‚ โ”œ licenses: MIT
  3147. โ”‚ โ”œ repository: https://github.com/sindresorhus/is-fullwidth-code-point
  3148. โ”‚ โ”œ publisher: Sindre Sorhus
  3149. โ”‚ โ”œ email: sindresorhus@gmail.com
  3150. โ”‚ โ”œ url: sindresorhus.com
  3151. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/is-fullwidth-code-point
  3152. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/is-fullwidth-code-point/license
  3153. โ”œ is-glob@2.0.1
  3154. โ”‚ โ”œ licenses: MIT
  3155. โ”‚ โ”œ repository: https://github.com/jonschlinkert/is-glob
  3156. โ”‚ โ”œ publisher: Jon Schlinkert
  3157. โ”‚ โ”œ url: https://github.com/jonschlinkert
  3158. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/is-glob
  3159. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/is-glob/LICENSE
  3160. โ”œ is-glob@3.1.0
  3161. โ”‚ โ”œ licenses: MIT
  3162. โ”‚ โ”œ repository: https://github.com/jonschlinkert/is-glob
  3163. โ”‚ โ”œ publisher: Jon Schlinkert
  3164. โ”‚ โ”œ url: https://github.com/jonschlinkert
  3165. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/matchdep/node_modules/is-glob
  3166. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/matchdep/node_modules/is-glob/LICENSE
  3167. โ”œ is-lower-case@1.1.3
  3168. โ”‚ โ”œ licenses: MIT
  3169. โ”‚ โ”œ repository: https://github.com/blakeembrey/is-lower-case
  3170. โ”‚ โ”œ publisher: Blake Embrey
  3171. โ”‚ โ”œ email: hello@blakeembrey.com
  3172. โ”‚ โ”œ url: http://blakeembrey.me
  3173. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/is-lower-case
  3174. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/is-lower-case/LICENSE
  3175. โ”œ is-my-json-valid@2.16.1
  3176. โ”‚ โ”œ licenses: MIT
  3177. โ”‚ โ”œ repository: https://github.com/mafintosh/is-my-json-valid
  3178. โ”‚ โ”œ publisher: Mathias Buus
  3179. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/is-my-json-valid
  3180. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/is-my-json-valid/LICENSE
  3181. โ”œ is-number@0.1.1
  3182. โ”‚ โ”œ licenses: MIT
  3183. โ”‚ โ”œ repository: https://github.com/jonschlinkert/is-number
  3184. โ”‚ โ”œ publisher: Jon Schlinkert
  3185. โ”‚ โ”œ url: https://github.com/jonschlinkert
  3186. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/expand-braces/node_modules/is-number
  3187. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/expand-braces/node_modules/is-number/LICENSE-MIT
  3188. โ”œ is-number@2.1.0
  3189. โ”‚ โ”œ licenses: MIT
  3190. โ”‚ โ”œ repository: https://github.com/jonschlinkert/is-number
  3191. โ”‚ โ”œ publisher: Jon Schlinkert
  3192. โ”‚ โ”œ url: https://github.com/jonschlinkert
  3193. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/is-number
  3194. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/is-number/LICENSE
  3195. โ”œ is-number@3.0.0
  3196. โ”‚ โ”œ licenses: MIT
  3197. โ”‚ โ”œ repository: https://github.com/jonschlinkert/is-number
  3198. โ”‚ โ”œ publisher: Jon Schlinkert
  3199. โ”‚ โ”œ url: https://github.com/jonschlinkert
  3200. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/randomatic/node_modules/is-number
  3201. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/randomatic/node_modules/is-number/LICENSE
  3202. โ”œ is-object@1.0.1
  3203. โ”‚ โ”œ licenses: MIT
  3204. โ”‚ โ”œ repository: https://github.com/ljharb/is-object
  3205. โ”‚ โ”œ publisher: Raynos
  3206. โ”‚ โ”œ email: raynos2@gmail.com
  3207. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/is-object
  3208. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/is-object/LICENSE
  3209. โ”œ is-odd@1.0.0
  3210. โ”‚ โ”œ licenses: MIT
  3211. โ”‚ โ”œ repository: https://github.com/jonschlinkert/is-odd
  3212. โ”‚ โ”œ publisher: Jon Schlinkert
  3213. โ”‚ โ”œ url: https://github.com/jonschlinkert
  3214. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/is-odd
  3215. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/is-odd/LICENSE
  3216. โ”œ is-plain-object@2.0.4
  3217. โ”‚ โ”œ licenses: MIT
  3218. โ”‚ โ”œ repository: https://github.com/jonschlinkert/is-plain-object
  3219. โ”‚ โ”œ publisher: Jon Schlinkert
  3220. โ”‚ โ”œ url: https://github.com/jonschlinkert
  3221. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/is-plain-object
  3222. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/is-plain-object/LICENSE
  3223. โ”œ is-posix-bracket@0.1.1
  3224. โ”‚ โ”œ licenses: MIT
  3225. โ”‚ โ”œ repository: https://github.com/jonschlinkert/is-posix-bracket
  3226. โ”‚ โ”œ publisher: Jon Schlinkert
  3227. โ”‚ โ”œ url: https://github.com/jonschlinkert
  3228. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/is-posix-bracket
  3229. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/is-posix-bracket/LICENSE
  3230. โ”œ is-primitive@2.0.0
  3231. โ”‚ โ”œ licenses: MIT
  3232. โ”‚ โ”œ repository: https://github.com/jonschlinkert/is-primitive
  3233. โ”‚ โ”œ publisher: Jon Schlinkert
  3234. โ”‚ โ”œ url: https://github.com/jonschlinkert
  3235. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/is-primitive
  3236. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/is-primitive/LICENSE
  3237. โ”œ is-promise@2.1.0
  3238. โ”‚ โ”œ licenses: MIT
  3239. โ”‚ โ”œ repository: https://github.com/then/is-promise
  3240. โ”‚ โ”œ publisher: ForbesLindesay
  3241. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/is-promise
  3242. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/is-promise/LICENSE
  3243. โ”œ is-property@1.0.2
  3244. โ”‚ โ”œ licenses: MIT
  3245. โ”‚ โ”œ repository: https://github.com/mikolalysenko/is-property
  3246. โ”‚ โ”œ publisher: Mikola Lysenko
  3247. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/is-property
  3248. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/is-property/LICENSE
  3249. โ”œ is-regex@1.0.4
  3250. โ”‚ โ”œ licenses: MIT
  3251. โ”‚ โ”œ repository: https://github.com/ljharb/is-regex
  3252. โ”‚ โ”œ publisher: Jordan Harband
  3253. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/is-regex
  3254. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/is-regex/LICENSE
  3255. โ”œ is-typedarray@1.0.0
  3256. โ”‚ โ”œ licenses: MIT
  3257. โ”‚ โ”œ repository: https://github.com/hughsk/is-typedarray
  3258. โ”‚ โ”œ publisher: Hugh Kennedy
  3259. โ”‚ โ”œ email: hughskennedy@gmail.com
  3260. โ”‚ โ”œ url: http://hughsk.io/
  3261. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/is-typedarray
  3262. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/is-typedarray/LICENSE.md
  3263. โ”œ is-upper-case@1.1.2
  3264. โ”‚ โ”œ licenses: MIT
  3265. โ”‚ โ”œ repository: https://github.com/blakeembrey/is-upper-case
  3266. โ”‚ โ”œ publisher: Blake Embrey
  3267. โ”‚ โ”œ email: hello@blakeembrey.com
  3268. โ”‚ โ”œ url: http://blakeembrey.me
  3269. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/is-upper-case
  3270. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/is-upper-case/LICENSE
  3271. โ”œ is-utf8@0.2.1
  3272. โ”‚ โ”œ licenses: MIT
  3273. โ”‚ โ”œ repository: https://github.com/wayfind/is-utf8
  3274. โ”‚ โ”œ publisher: wayfind
  3275. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/is-utf8
  3276. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/is-utf8/LICENSE
  3277. โ”œ is-windows@1.0.1
  3278. โ”‚ โ”œ licenses: MIT
  3279. โ”‚ โ”œ repository: https://github.com/jonschlinkert/is-windows
  3280. โ”‚ โ”œ publisher: Jon Schlinkert
  3281. โ”‚ โ”œ url: https://github.com/jonschlinkert
  3282. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/is-windows
  3283. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/is-windows/LICENSE
  3284. โ”œ isarray@0.0.1
  3285. โ”‚ โ”œ licenses: MIT
  3286. โ”‚ โ”œ repository: https://github.com/juliangruber/isarray
  3287. โ”‚ โ”œ publisher: Julian Gruber
  3288. โ”‚ โ”œ email: mail@juliangruber.com
  3289. โ”‚ โ”œ url: http://juliangruber.com
  3290. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/isarray
  3291. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/isarray/README.md
  3292. โ”œ isarray@1.0.0
  3293. โ”‚ โ”œ licenses: MIT
  3294. โ”‚ โ”œ repository: https://github.com/juliangruber/isarray
  3295. โ”‚ โ”œ publisher: Julian Gruber
  3296. โ”‚ โ”œ email: mail@juliangruber.com
  3297. โ”‚ โ”œ url: http://juliangruber.com
  3298. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/isobject/node_modules/isarray
  3299. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/isobject/node_modules/isarray/README.md
  3300. โ”œ isexe@2.0.0
  3301. โ”‚ โ”œ licenses: ISC
  3302. โ”‚ โ”œ repository: https://github.com/isaacs/isexe
  3303. โ”‚ โ”œ publisher: Isaac Z. Schlueter
  3304. โ”‚ โ”œ email: i@izs.me
  3305. โ”‚ โ”œ url: http://blog.izs.me/
  3306. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/isexe
  3307. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/isexe/LICENSE
  3308. โ”œ isobject@2.1.0
  3309. โ”‚ โ”œ licenses: MIT
  3310. โ”‚ โ”œ repository: https://github.com/jonschlinkert/isobject
  3311. โ”‚ โ”œ publisher: Jon Schlinkert
  3312. โ”‚ โ”œ url: https://github.com/jonschlinkert
  3313. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/isobject
  3314. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/isobject/LICENSE
  3315. โ”œ isobject@3.0.1
  3316. โ”‚ โ”œ licenses: MIT
  3317. โ”‚ โ”œ repository: https://github.com/jonschlinkert/isobject
  3318. โ”‚ โ”œ publisher: Jon Schlinkert
  3319. โ”‚ โ”œ url: https://github.com/jonschlinkert
  3320. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/object-visit/node_modules/isobject
  3321. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/object-visit/node_modules/isobject/LICENSE
  3322. โ”œ isstream@0.1.2
  3323. โ”‚ โ”œ licenses: MIT
  3324. โ”‚ โ”œ repository: https://github.com/rvagg/isstream
  3325. โ”‚ โ”œ publisher: Rod Vagg
  3326. โ”‚ โ”œ email: rod@vagg.org
  3327. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/isstream
  3328. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/isstream/LICENSE.md
  3329. โ”œ istanbul@0.3.22
  3330. โ”‚ โ”œ licenses: BSD-3-Clause
  3331. โ”‚ โ”œ repository: https://github.com/gotwarlost/istanbul
  3332. โ”‚ โ”œ publisher: Krishnan Anantheswaran
  3333. โ”‚ โ”œ email: kananthmail-github@yahoo.com
  3334. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/istanbul
  3335. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/istanbul/LICENSE
  3336. โ”œ jasmine-core@2.3.4
  3337. โ”‚ โ”œ licenses: MIT
  3338. โ”‚ โ”œ repository: https://github.com/jasmine/jasmine
  3339. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/jasmine-core
  3340. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/jasmine-core/README.md
  3341. โ”œ js-base64@2.3.2
  3342. โ”‚ โ”œ licenses: BSD-3-Clause
  3343. โ”‚ โ”œ repository: https://github.com/dankogai/js-base64
  3344. โ”‚ โ”œ publisher: Dan Kogai
  3345. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/js-base64
  3346. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/js-base64/LICENSE.md
  3347. โ”œ js-stringify@1.0.2
  3348. โ”‚ โ”œ licenses: MIT
  3349. โ”‚ โ”œ repository: https://github.com/jadejs/js-stringify
  3350. โ”‚ โ”œ publisher: ForbesLindesay
  3351. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/js-stringify
  3352. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/js-stringify/LICENSE
  3353. โ”œ js-yaml@2.0.5
  3354. โ”‚ โ”œ licenses: MIT
  3355. โ”‚ โ”œ repository: https://github.com/nodeca/js-yaml
  3356. โ”‚ โ”œ publisher: Dervus Grim
  3357. โ”‚ โ”œ email: dervus@lavabit.com
  3358. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/js-yaml
  3359. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/js-yaml/LICENSE
  3360. โ”œ js-yaml@3.10.0
  3361. โ”‚ โ”œ licenses: MIT
  3362. โ”‚ โ”œ repository: https://github.com/nodeca/js-yaml
  3363. โ”‚ โ”œ publisher: Vladimir Zapparov
  3364. โ”‚ โ”œ email: dervus.grim@gmail.com
  3365. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/configstore/node_modules/js-yaml
  3366. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/configstore/node_modules/js-yaml/LICENSE
  3367. โ”œ jsbn@0.1.1
  3368. โ”‚ โ”œ licenses: MIT
  3369. โ”‚ โ”œ repository: https://github.com/andyperlitch/jsbn
  3370. โ”‚ โ”œ publisher: Tom Wu
  3371. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/jsbn
  3372. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/jsbn/LICENSE
  3373. โ”œ jshint@2.9.7
  3374. โ”‚ โ”œ licenses: (MIT AND JSON)
  3375. โ”‚ โ”œ repository: https://github.com/jshint/jshint
  3376. โ”‚ โ”œ publisher: Anton Kovalyov
  3377. โ”‚ โ”œ email: anton@kovalyov.net
  3378. โ”‚ โ”œ url: http://anton.kovalyov.net/
  3379. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/lib-parent-grunt/node_modules/jshint
  3380. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/lib-parent-grunt/node_modules/jshint/LICENSE
  3381. โ”œ json-parse-better-errors@1.0.2
  3382. โ”‚ โ”œ licenses: MIT
  3383. โ”‚ โ”œ repository: https://github.com/zkat/json-parse-better-errors
  3384. โ”‚ โ”œ publisher: Kat Marchรกn
  3385. โ”‚ โ”œ email: kzm@zkat.tech
  3386. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/json-parse-better-errors
  3387. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/json-parse-better-errors/LICENSE.md
  3388. โ”œ json-schema@0.2.3
  3389. โ”‚ โ”œ licenses
  3390. โ”‚ โ”‚ โ”œ 0: AFLv2.1
  3391. โ”‚ โ”‚ โ”” 1: BSD
  3392. โ”‚ โ”œ repository: https://github.com/kriszyp/json-schema
  3393. โ”‚ โ”œ publisher: Kris Zyp
  3394. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/json-schema
  3395. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/json-schema/README.md
  3396. โ”œ json-stringify-safe@5.0.1
  3397. โ”‚ โ”œ licenses: ISC
  3398. โ”‚ โ”œ repository: https://github.com/isaacs/json-stringify-safe
  3399. โ”‚ โ”œ publisher: Isaac Z. Schlueter
  3400. โ”‚ โ”œ email: i@izs.me
  3401. โ”‚ โ”œ url: http://blog.izs.me
  3402. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/json-stringify-safe
  3403. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/json-stringify-safe/LICENSE
  3404. โ”œ json3@3.2.6
  3405. โ”‚ โ”œ licenses: MIT
  3406. โ”‚ โ”œ repository: https://github.com/bestiejs/json3
  3407. โ”‚ โ”œ publisher: Kit Cambridge
  3408. โ”‚ โ”œ email: github@kitcambridge.be
  3409. โ”‚ โ”œ url: http://kitcambridge.be/
  3410. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/json3
  3411. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/json3/LICENSE
  3412. โ”œ jsonfile@2.4.0
  3413. โ”‚ โ”œ licenses: MIT
  3414. โ”‚ โ”œ repository: https://github.com/jprichardson/node-jsonfile
  3415. โ”‚ โ”œ publisher: JP Richardson
  3416. โ”‚ โ”œ email: jprichardson@gmail.com
  3417. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/jsonfile
  3418. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/jsonfile/LICENSE
  3419. โ”œ jsonpointer@4.0.1
  3420. โ”‚ โ”œ licenses: MIT
  3421. โ”‚ โ”œ repository: https://github.com/janl/node-jsonpointer
  3422. โ”‚ โ”œ publisher: Jan Lehnardt
  3423. โ”‚ โ”œ email: jan@apache.org
  3424. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/jsonpointer
  3425. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/jsonpointer/LICENSE.md
  3426. โ”œ jsprim@1.4.1
  3427. โ”‚ โ”œ licenses: MIT
  3428. โ”‚ โ”œ repository: https://github.com/joyent/node-jsprim
  3429. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/jsprim
  3430. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/jsprim/LICENSE
  3431. โ”œ jstransformer@1.0.0
  3432. โ”‚ โ”œ licenses: MIT
  3433. โ”‚ โ”œ repository: https://github.com/jstransformers/jstransformer
  3434. โ”‚ โ”œ publisher: ForbesLindesay
  3435. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/jstransformer
  3436. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/jstransformer/LICENSE.md
  3437. โ”œ karma-coverage@0.3.0
  3438. โ”‚ โ”œ licenses: MIT
  3439. โ”‚ โ”œ repository: https://github.com/karma-runner/karma-coverage
  3440. โ”‚ โ”œ publisher: SATO taichi
  3441. โ”‚ โ”œ email: ryushi@gmail.com
  3442. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/karma-coverage
  3443. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/karma-coverage/LICENSE
  3444. โ”œ karma-jasmine@0.3.6
  3445. โ”‚ โ”œ licenses: MIT
  3446. โ”‚ โ”œ repository: https://github.com/karma-runner/karma-jasmine
  3447. โ”‚ โ”œ publisher: Vojta Jina
  3448. โ”‚ โ”œ email: vojta.jina@gmail.com
  3449. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/karma-jasmine
  3450. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/karma-jasmine/LICENSE
  3451. โ”œ karma-junit-reporter@0.2.2
  3452. โ”‚ โ”œ licenses: MIT
  3453. โ”‚ โ”œ repository: https://github.com/karma-runner/karma-junit-reporter
  3454. โ”‚ โ”œ publisher: Vojta Jina
  3455. โ”‚ โ”œ email: vojta.jina@gmail.com
  3456. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/karma-junit-reporter
  3457. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/karma-junit-reporter/LICENSE
  3458. โ”œ karma-phantomjs-launcher@0.2.1
  3459. โ”‚ โ”œ licenses: MIT
  3460. โ”‚ โ”œ repository: https://github.com/karma-runner/karma-phantomjs-launcher
  3461. โ”‚ โ”œ publisher: Vojta Jina
  3462. โ”‚ โ”œ email: vojta.jina@gmail.com
  3463. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/karma-phantomjs-launcher
  3464. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/karma-phantomjs-launcher/LICENSE
  3465. โ”œ karma-spec-reporter@0.0.26
  3466. โ”‚ โ”œ licenses: MIT
  3467. โ”‚ โ”œ repository: https://github.com/mlex/karma-spec-reporter
  3468. โ”‚ โ”œ publisher: Michael Lex
  3469. โ”‚ โ”œ email: michael.lex@codecentric.de
  3470. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/karma-spec-reporter
  3471. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/karma-spec-reporter/LICENSE
  3472. โ”œ karma@0.13.3
  3473. โ”‚ โ”œ licenses: MIT
  3474. โ”‚ โ”œ repository: https://github.com/karma-runner/karma
  3475. โ”‚ โ”œ publisher: Vojta Jรญna
  3476. โ”‚ โ”œ email: vojta.jina@gmail.com
  3477. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/karma
  3478. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/karma/LICENSE
  3479. โ”œ kew@0.4.0
  3480. โ”‚ โ”œ licenses: Apache*
  3481. โ”‚ โ”œ repository: https://github.com/Obvious/kew
  3482. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/kew
  3483. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/kew/LICENSE.TXT
  3484. โ”œ kind-of@3.2.2
  3485. โ”‚ โ”œ licenses: MIT
  3486. โ”‚ โ”œ repository: https://github.com/jonschlinkert/kind-of
  3487. โ”‚ โ”œ publisher: Jon Schlinkert
  3488. โ”‚ โ”œ url: https://github.com/jonschlinkert
  3489. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/kind-of
  3490. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/kind-of/LICENSE
  3491. โ”œ kind-of@4.0.0
  3492. โ”‚ โ”œ licenses: MIT
  3493. โ”‚ โ”œ repository: https://github.com/jonschlinkert/kind-of
  3494. โ”‚ โ”œ publisher: Jon Schlinkert
  3495. โ”‚ โ”œ url: https://github.com/jonschlinkert
  3496. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/randomatic/node_modules/kind-of
  3497. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/randomatic/node_modules/kind-of/LICENSE
  3498. โ”œ kind-of@5.1.0
  3499. โ”‚ โ”œ licenses: MIT
  3500. โ”‚ โ”œ repository: https://github.com/jonschlinkert/kind-of
  3501. โ”‚ โ”œ publisher: Jon Schlinkert
  3502. โ”‚ โ”œ url: https://github.com/jonschlinkert
  3503. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/is-descriptor/node_modules/kind-of
  3504. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/is-descriptor/node_modules/kind-of/LICENSE
  3505. โ”œ kind-of@6.0.1
  3506. โ”‚ โ”œ licenses: MIT
  3507. โ”‚ โ”œ repository: https://github.com/jonschlinkert/kind-of
  3508. โ”‚ โ”œ publisher: Jon Schlinkert
  3509. โ”‚ โ”œ url: https://github.com/jonschlinkert
  3510. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/matchdep/node_modules/kind-of
  3511. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/matchdep/node_modules/kind-of/LICENSE
  3512. โ”œ klaw@1.3.1
  3513. โ”‚ โ”œ licenses: MIT
  3514. โ”‚ โ”œ repository: https://github.com/jprichardson/node-klaw
  3515. โ”‚ โ”œ publisher: JP Richardson
  3516. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/klaw
  3517. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/klaw/LICENSE
  3518. โ”œ lazy-cache@1.0.4
  3519. โ”‚ โ”œ licenses: MIT
  3520. โ”‚ โ”œ repository: https://github.com/jonschlinkert/lazy-cache
  3521. โ”‚ โ”œ publisher: Jon Schlinkert
  3522. โ”‚ โ”œ url: https://github.com/jonschlinkert
  3523. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/lazy-cache
  3524. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/lazy-cache/LICENSE
  3525. โ”œ lazy-cache@2.0.2
  3526. โ”‚ โ”œ licenses: MIT
  3527. โ”‚ โ”œ repository: https://github.com/jonschlinkert/lazy-cache
  3528. โ”‚ โ”œ publisher: Jon Schlinkert
  3529. โ”‚ โ”œ url: https://github.com/jonschlinkert
  3530. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/class-utils/node_modules/lazy-cache
  3531. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/class-utils/node_modules/lazy-cache/LICENSE
  3532. โ”œ lazystream@0.1.0
  3533. โ”‚ โ”œ licenses: MIT
  3534. โ”‚ โ”œ repository: https://github.com/jpommerening/node-lazystream
  3535. โ”‚ โ”œ publisher: J. Pommerening
  3536. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/lazystream
  3537. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/lazystream/LICENSE-MIT
  3538. โ”œ lcid@1.0.0
  3539. โ”‚ โ”œ licenses: MIT
  3540. โ”‚ โ”œ repository: https://github.com/sindresorhus/lcid
  3541. โ”‚ โ”œ publisher: Sindre Sorhus
  3542. โ”‚ โ”œ email: sindresorhus@gmail.com
  3543. โ”‚ โ”œ url: sindresorhus.com
  3544. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/lcid
  3545. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/lcid/license
  3546. โ”œ levn@0.2.5
  3547. โ”‚ โ”œ licenses: MIT
  3548. โ”‚ โ”œ repository: https://github.com/gkz/levn
  3549. โ”‚ โ”œ publisher: George Zahariev
  3550. โ”‚ โ”œ email: z@georgezahariev.com
  3551. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/levn
  3552. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/levn/LICENSE
  3553. โ”œ lib-parent-grunt@0.3.14
  3554. โ”‚ โ”œ licenses: UNKNOWN
  3555. โ”‚ โ”œ repository: ssh://git@scm.scytl.net/stash/scm/fron/lib-ballot-delivery
  3556. โ”‚ โ”œ publisher: scytl Frontend Team
  3557. โ”‚ โ”” path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/lib-parent-grunt
  3558. โ”œ license-checker@25.0.1
  3559. โ”‚ โ”œ licenses: BSD-3-Clause
  3560. โ”‚ โ”œ repository: https://github.com/davglass/license-checker
  3561. โ”‚ โ”œ publisher: Dav Glass
  3562. โ”‚ โ”œ email: davglass@gmail.com
  3563. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/license-checker
  3564. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/license-checker/LICENSE
  3565. โ”œ livereload-js@2.2.2
  3566. โ”‚ โ”œ licenses: MIT
  3567. โ”‚ โ”œ repository: https://github.com/zaius/livereload-js
  3568. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/livereload-js
  3569. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/livereload-js/LICENSE
  3570. โ”œ load-json-file@1.1.0
  3571. โ”‚ โ”œ licenses: MIT
  3572. โ”‚ โ”œ repository: https://github.com/sindresorhus/load-json-file
  3573. โ”‚ โ”œ publisher: Sindre Sorhus
  3574. โ”‚ โ”œ email: sindresorhus@gmail.com
  3575. โ”‚ โ”œ url: sindresorhus.com
  3576. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/load-json-file
  3577. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/load-json-file/license
  3578. โ”œ lodash.assign@4.2.0
  3579. โ”‚ โ”œ licenses: MIT
  3580. โ”‚ โ”œ repository: https://github.com/lodash/lodash
  3581. โ”‚ โ”œ publisher: John-David Dalton
  3582. โ”‚ โ”œ email: john.david.dalton@gmail.com
  3583. โ”‚ โ”œ url: http://allyoucanleet.com/
  3584. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/lodash.assign
  3585. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/lodash.assign/LICENSE
  3586. โ”œ lodash.clonedeep@4.5.0
  3587. โ”‚ โ”œ licenses: MIT
  3588. โ”‚ โ”œ repository: https://github.com/lodash/lodash
  3589. โ”‚ โ”œ publisher: John-David Dalton
  3590. โ”‚ โ”œ email: john.david.dalton@gmail.com
  3591. โ”‚ โ”œ url: http://allyoucanleet.com/
  3592. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/lodash.clonedeep
  3593. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/lodash.clonedeep/LICENSE
  3594. โ”œ lodash.mergewith@4.6.0
  3595. โ”‚ โ”œ licenses: MIT
  3596. โ”‚ โ”œ repository: https://github.com/lodash/lodash
  3597. โ”‚ โ”œ publisher: John-David Dalton
  3598. โ”‚ โ”œ email: john.david.dalton@gmail.com
  3599. โ”‚ โ”œ url: http://allyoucanleet.com/
  3600. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/lodash.mergewith
  3601. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/lodash.mergewith/LICENSE
  3602. โ”œ lodash.unescape@4.0.1
  3603. โ”‚ โ”œ licenses: MIT
  3604. โ”‚ โ”œ repository: https://github.com/lodash/lodash
  3605. โ”‚ โ”œ publisher: John-David Dalton
  3606. โ”‚ โ”œ email: john.david.dalton@gmail.com
  3607. โ”‚ โ”œ url: http://allyoucanleet.com/
  3608. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/lodash.unescape
  3609. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/lodash.unescape/LICENSE
  3610. โ”œ lodash@0.9.2
  3611. โ”‚ โ”œ licenses: MIT
  3612. โ”‚ โ”œ repository: https://github.com/lodash/lodash
  3613. โ”‚ โ”œ publisher: John-David Dalton
  3614. โ”‚ โ”œ email: john.david.dalton@gmail.com
  3615. โ”‚ โ”œ url: http://allyoucanleet.com/
  3616. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/grunt-legacy-util/node_modules/lodash
  3617. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/grunt-legacy-util/node_modules/lodash/README.md
  3618. โ”œ lodash@1.0.2
  3619. โ”‚ โ”œ licenses: MIT
  3620. โ”‚ โ”œ repository: https://github.com/lodash/lodash
  3621. โ”‚ โ”œ publisher: John-David Dalton
  3622. โ”‚ โ”œ email: john.david.dalton@gmail.com
  3623. โ”‚ โ”œ url: http://allyoucanleet.com/
  3624. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/grunt-express/node_modules/globule/node_modules/lodash
  3625. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/grunt-express/node_modules/globule/node_modules/lodash/LICENSE.txt
  3626. โ”œ lodash@2.4.2
  3627. โ”‚ โ”œ licenses: MIT
  3628. โ”‚ โ”œ repository: https://github.com/lodash/lodash
  3629. โ”‚ โ”œ publisher: John-David Dalton
  3630. โ”‚ โ”œ email: john.david.dalton@gmail.com
  3631. โ”‚ โ”œ url: http://allyoucanleet.com/
  3632. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/archiver/node_modules/lodash
  3633. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/archiver/node_modules/lodash/LICENSE.txt
  3634. โ”œ lodash@3.10.1
  3635. โ”‚ โ”œ licenses: MIT
  3636. โ”‚ โ”œ repository: https://github.com/lodash/lodash
  3637. โ”‚ โ”œ publisher: John-David Dalton
  3638. โ”‚ โ”œ email: john.david.dalton@gmail.com
  3639. โ”‚ โ”œ url: http://allyoucanleet.com/
  3640. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/cheerio/node_modules/lodash
  3641. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/cheerio/node_modules/lodash/LICENSE
  3642. โ”œ lodash@3.2.0
  3643. โ”‚ โ”œ licenses: MIT
  3644. โ”‚ โ”œ repository: https://github.com/lodash/lodash
  3645. โ”‚ โ”œ publisher: John-David Dalton
  3646. โ”‚ โ”œ email: john.david.dalton@gmail.com
  3647. โ”‚ โ”œ url: http://allyoucanleet.com/
  3648. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/zip-stream/node_modules/lodash
  3649. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/zip-stream/node_modules/lodash/LICENSE.txt
  3650. โ”œ lodash@3.9.3
  3651. โ”‚ โ”œ licenses: MIT
  3652. โ”‚ โ”œ repository: https://github.com/lodash/lodash
  3653. โ”‚ โ”œ publisher: John-David Dalton
  3654. โ”‚ โ”œ email: john.david.dalton@gmail.com
  3655. โ”‚ โ”œ url: http://allyoucanleet.com/
  3656. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/grunt-karma/node_modules/lodash
  3657. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/grunt-karma/node_modules/lodash/LICENSE.txt
  3658. โ”œ lodash@4.17.11
  3659. โ”‚ โ”œ licenses: MIT
  3660. โ”‚ โ”œ repository: https://github.com/lodash/lodash
  3661. โ”‚ โ”œ publisher: John-David Dalton
  3662. โ”‚ โ”œ email: john.david.dalton@gmail.com
  3663. โ”‚ โ”œ url: http://allyoucanleet.com/
  3664. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/lib-parent-grunt/node_modules/jshint/node_modules/lodash
  3665. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/lib-parent-grunt/node_modules/jshint/node_modules/lodash/LICENSE
  3666. โ”œ lodash@4.17.4
  3667. โ”‚ โ”œ licenses: MIT
  3668. โ”‚ โ”œ repository: https://github.com/lodash/lodash
  3669. โ”‚ โ”œ publisher: John-David Dalton
  3670. โ”‚ โ”œ email: john.david.dalton@gmail.com
  3671. โ”‚ โ”œ url: http://allyoucanleet.com/
  3672. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/lodash
  3673. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/lodash/LICENSE
  3674. โ”œ log4js@0.6.38
  3675. โ”‚ โ”œ licenses: Apache-2.0
  3676. โ”‚ โ”œ repository: https://github.com/nomiddlename/log4js-node
  3677. โ”‚ โ”œ publisher: Gareth Jones
  3678. โ”‚ โ”œ email: gareth.nomiddlename@gmail.com
  3679. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/log4js
  3680. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/log4js/LICENSE
  3681. โ”œ longest@1.0.1
  3682. โ”‚ โ”œ licenses: MIT
  3683. โ”‚ โ”œ repository: https://github.com/jonschlinkert/longest
  3684. โ”‚ โ”œ publisher: Jon Schlinkert
  3685. โ”‚ โ”œ url: https://github.com/jonschlinkert
  3686. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/longest
  3687. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/longest/LICENSE
  3688. โ”œ loud-rejection@1.6.0
  3689. โ”‚ โ”œ licenses: MIT
  3690. โ”‚ โ”œ repository: https://github.com/sindresorhus/loud-rejection
  3691. โ”‚ โ”œ publisher: Sindre Sorhus
  3692. โ”‚ โ”œ email: sindresorhus@gmail.com
  3693. โ”‚ โ”œ url: sindresorhus.com
  3694. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/loud-rejection
  3695. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/loud-rejection/license
  3696. โ”œ lower-case-first@1.0.2
  3697. โ”‚ โ”œ licenses: MIT
  3698. โ”‚ โ”œ repository: https://github.com/blakeembrey/lower-case-first
  3699. โ”‚ โ”œ publisher: Blake Embrey
  3700. โ”‚ โ”œ email: hello@blakeembrey.com
  3701. โ”‚ โ”œ url: http://blakeembrey.me
  3702. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/lower-case-first
  3703. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/lower-case-first/LICENSE
  3704. โ”œ lower-case@1.1.4
  3705. โ”‚ โ”œ licenses: MIT
  3706. โ”‚ โ”œ repository: https://github.com/blakeembrey/lower-case
  3707. โ”‚ โ”œ publisher: Blake Embrey
  3708. โ”‚ โ”œ email: hello@blakeembrey.com
  3709. โ”‚ โ”œ url: http://blakeembrey.me
  3710. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/lower-case
  3711. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/lower-case/LICENSE
  3712. โ”œ lpad@0.1.0
  3713. โ”‚ โ”œ licenses: MIT
  3714. โ”‚ โ”œ repository: https://github.com/sindresorhus/lpad
  3715. โ”‚ โ”œ publisher: Sindre Sorhus
  3716. โ”‚ โ”œ email: sindresorhus@gmail.com
  3717. โ”‚ โ”œ url: http://sindresorhus.com
  3718. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/lpad
  3719. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/lpad/readme.md
  3720. โ”œ lru-cache@2.2.4
  3721. โ”‚ โ”œ licenses: MIT
  3722. โ”‚ โ”œ repository: https://github.com/isaacs/node-lru-cache
  3723. โ”‚ โ”œ publisher: Isaac Z. Schlueter
  3724. โ”‚ โ”œ email: i@izs.me
  3725. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/useragent/node_modules/lru-cache
  3726. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/useragent/node_modules/lru-cache/LICENSE
  3727. โ”œ lru-cache@2.7.3
  3728. โ”‚ โ”œ licenses: ISC
  3729. โ”‚ โ”œ repository: https://github.com/isaacs/node-lru-cache
  3730. โ”‚ โ”œ publisher: Isaac Z. Schlueter
  3731. โ”‚ โ”œ email: i@izs.me
  3732. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/lru-cache
  3733. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/lru-cache/LICENSE
  3734. โ”œ lru-cache@4.1.1
  3735. โ”‚ โ”œ licenses: ISC
  3736. โ”‚ โ”œ repository: https://github.com/isaacs/node-lru-cache
  3737. โ”‚ โ”œ publisher: Isaac Z. Schlueter
  3738. โ”‚ โ”œ email: i@izs.me
  3739. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/node-sass/node_modules/lru-cache
  3740. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/node-sass/node_modules/lru-cache/LICENSE
  3741. โ”œ lru-queue@0.1.0
  3742. โ”‚ โ”œ licenses: MIT
  3743. โ”‚ โ”œ repository: https://github.com/medikoo/lru-queue
  3744. โ”‚ โ”œ publisher: Mariusz Nowak
  3745. โ”‚ โ”œ email: medyk@medikoo.com
  3746. โ”‚ โ”œ url: http://www.medikoo.com/
  3747. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/lru-queue
  3748. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/lru-queue/LICENCE
  3749. โ”œ map-cache@0.2.2
  3750. โ”‚ โ”œ licenses: MIT
  3751. โ”‚ โ”œ repository: https://github.com/jonschlinkert/map-cache
  3752. โ”‚ โ”œ publisher: Jon Schlinkert
  3753. โ”‚ โ”œ url: https://github.com/jonschlinkert
  3754. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/map-cache
  3755. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/map-cache/LICENSE
  3756. โ”œ map-obj@1.0.1
  3757. โ”‚ โ”œ licenses: MIT
  3758. โ”‚ โ”œ repository: https://github.com/sindresorhus/map-obj
  3759. โ”‚ โ”œ publisher: Sindre Sorhus
  3760. โ”‚ โ”œ email: sindresorhus@gmail.com
  3761. โ”‚ โ”œ url: sindresorhus.com
  3762. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/map-obj
  3763. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/map-obj/license
  3764. โ”œ map-visit@1.0.0
  3765. โ”‚ โ”œ licenses: MIT
  3766. โ”‚ โ”œ repository: https://github.com/jonschlinkert/map-visit
  3767. โ”‚ โ”œ publisher: Jon Schlinkert
  3768. โ”‚ โ”œ url: https://github.com/jonschlinkert
  3769. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/map-visit
  3770. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/map-visit/LICENSE
  3771. โ”œ matchdep@2.0.0
  3772. โ”‚ โ”œ licenses: MIT
  3773. โ”‚ โ”œ repository: https://github.com/tkellen/js-matchdep
  3774. โ”‚ โ”œ publisher: Tyler Kellen
  3775. โ”‚ โ”œ url: http://goingslowly.com/
  3776. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/matchdep
  3777. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/matchdep/LICENSE-MIT
  3778. โ”œ maxmin@1.1.0
  3779. โ”‚ โ”œ licenses: MIT
  3780. โ”‚ โ”œ repository: https://github.com/sindresorhus/maxmin
  3781. โ”‚ โ”œ publisher: Sindre Sorhus
  3782. โ”‚ โ”œ email: sindresorhus@gmail.com
  3783. โ”‚ โ”œ url: http://sindresorhus.com
  3784. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/grunt-contrib-uglify/node_modules/maxmin
  3785. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/grunt-contrib-uglify/node_modules/maxmin/license
  3786. โ”œ maxmin@2.1.0
  3787. โ”‚ โ”œ licenses: MIT
  3788. โ”‚ โ”œ repository: https://github.com/sindresorhus/maxmin
  3789. โ”‚ โ”œ publisher: Sindre Sorhus
  3790. โ”‚ โ”œ email: sindresorhus@gmail.com
  3791. โ”‚ โ”œ url: sindresorhus.com
  3792. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/maxmin
  3793. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/maxmin/license
  3794. โ”œ media-typer@0.3.0
  3795. โ”‚ โ”œ licenses: MIT
  3796. โ”‚ โ”œ repository: https://github.com/jshttp/media-typer
  3797. โ”‚ โ”œ publisher: Douglas Christopher Wilson
  3798. โ”‚ โ”œ email: doug@somethingdoug.com
  3799. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/media-typer
  3800. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/media-typer/LICENSE
  3801. โ”œ memoizee@0.3.10
  3802. โ”‚ โ”œ licenses: MIT
  3803. โ”‚ โ”œ repository: https://github.com/medikoo/memoizee
  3804. โ”‚ โ”œ publisher: Mariusz Nowak
  3805. โ”‚ โ”œ email: medikoo@medikoo.com
  3806. โ”‚ โ”œ url: http://www.medikoo.com/
  3807. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/memoizee
  3808. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/memoizee/LICENSE
  3809. โ”œ meow@3.7.0
  3810. โ”‚ โ”œ licenses: MIT
  3811. โ”‚ โ”œ repository: https://github.com/sindresorhus/meow
  3812. โ”‚ โ”œ publisher: Sindre Sorhus
  3813. โ”‚ โ”œ email: sindresorhus@gmail.com
  3814. โ”‚ โ”œ url: sindresorhus.com
  3815. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/meow
  3816. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/meow/license
  3817. โ”œ merge-descriptors@1.0.0
  3818. โ”‚ โ”œ licenses: MIT
  3819. โ”‚ โ”œ repository: https://github.com/component/merge-descriptors
  3820. โ”‚ โ”œ publisher: Jonathan Ong
  3821. โ”‚ โ”œ email: me@jongleberry.com
  3822. โ”‚ โ”œ url: http://jongleberry.com
  3823. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/merge-descriptors
  3824. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/merge-descriptors/LICENSE
  3825. โ”œ method-override@2.3.10
  3826. โ”‚ โ”œ licenses: MIT
  3827. โ”‚ โ”œ repository: https://github.com/expressjs/method-override
  3828. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/method-override
  3829. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/method-override/LICENSE
  3830. โ”œ methods@1.1.2
  3831. โ”‚ โ”œ licenses: MIT
  3832. โ”‚ โ”œ repository: https://github.com/jshttp/methods
  3833. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/methods
  3834. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/methods/LICENSE
  3835. โ”œ micromatch@2.3.11
  3836. โ”‚ โ”œ licenses: MIT
  3837. โ”‚ โ”œ repository: https://github.com/jonschlinkert/micromatch
  3838. โ”‚ โ”œ publisher: Jon Schlinkert
  3839. โ”‚ โ”œ url: https://github.com/jonschlinkert
  3840. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/micromatch
  3841. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/micromatch/LICENSE
  3842. โ”œ micromatch@3.1.4
  3843. โ”‚ โ”œ licenses: MIT
  3844. โ”‚ โ”œ repository: https://github.com/micromatch/micromatch
  3845. โ”‚ โ”œ publisher: Jon Schlinkert
  3846. โ”‚ โ”œ url: https://github.com/jonschlinkert
  3847. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/matchdep/node_modules/micromatch
  3848. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/matchdep/node_modules/micromatch/LICENSE
  3849. โ”œ mime-db@1.30.0
  3850. โ”‚ โ”œ licenses: MIT
  3851. โ”‚ โ”œ repository: https://github.com/jshttp/mime-db
  3852. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/mime-db
  3853. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/mime-db/LICENSE
  3854. โ”œ mime-types@1.0.2
  3855. โ”‚ โ”œ licenses: MIT
  3856. โ”‚ โ”œ repository: https://github.com/expressjs/mime-types
  3857. โ”‚ โ”œ publisher: Jonathan Ong
  3858. โ”‚ โ”œ email: me@jongleberry.com
  3859. โ”‚ โ”œ url: http://jongleberry.com
  3860. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/request/node_modules/mime-types
  3861. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/request/node_modules/mime-types/LICENSE
  3862. โ”œ mime-types@2.1.17
  3863. โ”‚ โ”œ licenses: MIT
  3864. โ”‚ โ”œ repository: https://github.com/jshttp/mime-types
  3865. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/mime-types
  3866. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/mime-types/LICENSE
  3867. โ”œ mime@1.2.11
  3868. โ”‚ โ”œ licenses: MIT*
  3869. โ”‚ โ”œ repository: https://github.com/broofa/node-mime
  3870. โ”‚ โ”œ publisher: Robert Kieffer
  3871. โ”‚ โ”œ email: robert@broofa.com
  3872. โ”‚ โ”œ url: http://github.com/broofa
  3873. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/form-data/node_modules/mime
  3874. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/form-data/node_modules/mime/LICENSE
  3875. โ”œ mime@1.3.4
  3876. โ”‚ โ”œ licenses: MIT
  3877. โ”‚ โ”œ repository: https://github.com/broofa/node-mime
  3878. โ”‚ โ”œ publisher: Robert Kieffer
  3879. โ”‚ โ”œ email: robert@broofa.com
  3880. โ”‚ โ”œ url: http://github.com/broofa
  3881. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/mime
  3882. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/mime/LICENSE
  3883. โ”œ mime@1.4.1
  3884. โ”‚ โ”œ licenses: MIT
  3885. โ”‚ โ”œ repository: https://github.com/broofa/node-mime
  3886. โ”‚ โ”œ publisher: Robert Kieffer
  3887. โ”‚ โ”œ email: robert@broofa.com
  3888. โ”‚ โ”œ url: http://github.com/broofa
  3889. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/freddie/node_modules/mime
  3890. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/freddie/node_modules/mime/LICENSE
  3891. โ”œ minimatch@0.2.14
  3892. โ”‚ โ”œ licenses: MIT
  3893. โ”‚ โ”œ repository: https://github.com/isaacs/minimatch
  3894. โ”‚ โ”œ publisher: Isaac Z. Schlueter
  3895. โ”‚ โ”œ email: i@izs.me
  3896. โ”‚ โ”œ url: http://blog.izs.me
  3897. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/minimatch
  3898. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/minimatch/LICENSE
  3899. โ”œ minimatch@0.3.0
  3900. โ”‚ โ”œ licenses: MIT
  3901. โ”‚ โ”œ repository: https://github.com/isaacs/minimatch
  3902. โ”‚ โ”œ publisher: Isaac Z. Schlueter
  3903. โ”‚ โ”œ email: i@izs.me
  3904. โ”‚ โ”œ url: http://blog.izs.me
  3905. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/simple-glob/node_modules/glob/node_modules/minimatch
  3906. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/simple-glob/node_modules/glob/node_modules/minimatch/LICENSE
  3907. โ”œ minimatch@2.0.10
  3908. โ”‚ โ”œ licenses: ISC
  3909. โ”‚ โ”œ repository: https://github.com/isaacs/minimatch
  3910. โ”‚ โ”œ publisher: Isaac Z. Schlueter
  3911. โ”‚ โ”œ email: i@izs.me
  3912. โ”‚ โ”œ url: http://blog.izs.me
  3913. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/archiver/node_modules/minimatch
  3914. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/archiver/node_modules/minimatch/LICENSE
  3915. โ”œ minimatch@3.0.4
  3916. โ”‚ โ”œ licenses: ISC
  3917. โ”‚ โ”œ repository: https://github.com/isaacs/minimatch
  3918. โ”‚ โ”œ publisher: Isaac Z. Schlueter
  3919. โ”‚ โ”œ email: i@izs.me
  3920. โ”‚ โ”œ url: http://blog.izs.me
  3921. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/readdirp/node_modules/minimatch
  3922. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/readdirp/node_modules/minimatch/LICENSE
  3923. โ”œ minimist@0.0.10
  3924. โ”‚ โ”œ licenses: MIT
  3925. โ”‚ โ”œ repository: https://github.com/substack/minimist
  3926. โ”‚ โ”œ publisher: James Halliday
  3927. โ”‚ โ”œ email: mail@substack.net
  3928. โ”‚ โ”œ url: http://substack.net
  3929. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/optimist/node_modules/minimist
  3930. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/optimist/node_modules/minimist/LICENSE
  3931. โ”œ minimist@0.0.8
  3932. โ”‚ โ”œ licenses: MIT
  3933. โ”‚ โ”œ repository: https://github.com/substack/minimist
  3934. โ”‚ โ”œ publisher: James Halliday
  3935. โ”‚ โ”œ email: mail@substack.net
  3936. โ”‚ โ”œ url: http://substack.net
  3937. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/configstore/node_modules/minimist
  3938. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/configstore/node_modules/minimist/LICENSE
  3939. โ”œ minimist@1.2.0
  3940. โ”‚ โ”œ licenses: MIT
  3941. โ”‚ โ”œ repository: https://github.com/substack/minimist
  3942. โ”‚ โ”œ publisher: James Halliday
  3943. โ”‚ โ”œ email: mail@substack.net
  3944. โ”‚ โ”œ url: http://substack.net
  3945. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/minimist
  3946. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/minimist/LICENSE
  3947. โ”œ minipass@2.2.4
  3948. โ”‚ โ”œ licenses: ISC
  3949. โ”‚ โ”œ repository: https://github.com/isaacs/minipass
  3950. โ”‚ โ”œ publisher: Isaac Z. Schlueter
  3951. โ”‚ โ”œ email: i@izs.me
  3952. โ”‚ โ”œ url: http://blog.izs.me/
  3953. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/fsevents/node_modules/minipass
  3954. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/fsevents/node_modules/minipass/README.md
  3955. โ”œ minizlib@1.1.0
  3956. โ”‚ โ”œ licenses: MIT
  3957. โ”‚ โ”œ repository: https://github.com/isaacs/minizlib
  3958. โ”‚ โ”œ publisher: Isaac Z. Schlueter
  3959. โ”‚ โ”œ email: i@izs.me
  3960. โ”‚ โ”œ url: http://blog.izs.me/
  3961. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/fsevents/node_modules/minizlib
  3962. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/fsevents/node_modules/minizlib/LICENSE
  3963. โ”œ mixin-deep@1.2.0
  3964. โ”‚ โ”œ licenses: MIT
  3965. โ”‚ โ”œ repository: https://github.com/jonschlinkert/mixin-deep
  3966. โ”‚ โ”œ publisher: Jon Schlinkert
  3967. โ”‚ โ”œ url: https://github.com/jonschlinkert
  3968. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/mixin-deep
  3969. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/mixin-deep/LICENSE
  3970. โ”œ mkdirp@0.3.5
  3971. โ”‚ โ”œ licenses: MIT
  3972. โ”‚ โ”œ repository: https://github.com/substack/node-mkdirp
  3973. โ”‚ โ”œ publisher: James Halliday
  3974. โ”‚ โ”œ email: mail@substack.net
  3975. โ”‚ โ”œ url: http://substack.net
  3976. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/mkdirp
  3977. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/mkdirp/LICENSE
  3978. โ”œ mkdirp@0.5.1
  3979. โ”‚ โ”œ licenses: MIT
  3980. โ”‚ โ”œ repository: https://github.com/substack/node-mkdirp
  3981. โ”‚ โ”œ publisher: James Halliday
  3982. โ”‚ โ”œ email: mail@substack.net
  3983. โ”‚ โ”œ url: http://substack.net
  3984. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/configstore/node_modules/mkdirp
  3985. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/configstore/node_modules/mkdirp/LICENSE
  3986. โ”œ mkpath@0.1.0
  3987. โ”‚ โ”œ licenses: MIT
  3988. โ”‚ โ”œ repository: https://github.com/jrajav/mkpath
  3989. โ”‚ โ”œ publisher: Jonathan Rajavuori
  3990. โ”‚ โ”œ email: jrajav@gmail.com
  3991. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/mkpath
  3992. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/mkpath/LICENSE
  3993. โ”œ module-not-found-error@1.0.1
  3994. โ”‚ โ”œ licenses: MIT
  3995. โ”‚ โ”œ repository: https://github.com/bendrucker/module-not-found-error
  3996. โ”‚ โ”œ publisher: Ben Drucker
  3997. โ”‚ โ”œ email: bvdrucker@gmail.com
  3998. โ”‚ โ”œ url: bendrucker.me
  3999. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/module-not-found-error
  4000. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/module-not-found-error/license
  4001. โ”œ morgan@1.6.1
  4002. โ”‚ โ”œ licenses: MIT
  4003. โ”‚ โ”œ repository: https://github.com/expressjs/morgan
  4004. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/morgan
  4005. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/morgan/LICENSE
  4006. โ”œ ms@0.6.2
  4007. โ”‚ โ”œ licenses: MIT*
  4008. โ”‚ โ”œ repository: https://github.com/guille/ms.js
  4009. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/engine.io/node_modules/ms
  4010. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/engine.io/node_modules/ms/README.md
  4011. โ”œ ms@0.7.1
  4012. โ”‚ โ”œ licenses: MIT*
  4013. โ”‚ โ”œ repository: https://github.com/guille/ms.js
  4014. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/ms
  4015. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/ms/LICENSE
  4016. โ”œ ms@0.7.2
  4017. โ”‚ โ”œ licenses: MIT
  4018. โ”‚ โ”œ repository: https://github.com/zeit/ms
  4019. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/serve-favicon/node_modules/ms
  4020. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/serve-favicon/node_modules/ms/LICENSE.md
  4021. โ”œ ms@2.0.0
  4022. โ”‚ โ”œ licenses: MIT
  4023. โ”‚ โ”œ repository: https://github.com/zeit/ms
  4024. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/freddie/node_modules/ms
  4025. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/freddie/node_modules/ms/license.md
  4026. โ”œ ms@2.1.1
  4027. โ”‚ โ”œ licenses: MIT
  4028. โ”‚ โ”œ repository: https://github.com/zeit/ms
  4029. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/license-checker/node_modules/ms
  4030. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/license-checker/node_modules/ms/license.md
  4031. โ”œ multiparty@3.3.2
  4032. โ”‚ โ”œ licenses: MIT
  4033. โ”‚ โ”œ repository: https://github.com/andrewrk/node-multiparty
  4034. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/multiparty
  4035. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/multiparty/LICENSE
  4036. โ”œ nan@2.11.0
  4037. โ”‚ โ”œ licenses: MIT
  4038. โ”‚ โ”œ repository: https://github.com/nodejs/nan
  4039. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/fsevents/node_modules/nan
  4040. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/fsevents/node_modules/nan/LICENSE.md
  4041. โ”œ nan@2.4.0
  4042. โ”‚ โ”œ licenses: MIT
  4043. โ”‚ โ”œ repository: https://github.com/nodejs/nan
  4044. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/utf-8-validate/node_modules/nan
  4045. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/utf-8-validate/node_modules/nan/LICENSE.md
  4046. โ”œ nan@2.8.0
  4047. โ”‚ โ”œ licenses: MIT
  4048. โ”‚ โ”œ repository: https://github.com/nodejs/nan
  4049. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/nan
  4050. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/nan/LICENSE.md
  4051. โ”œ nanomatch@1.2.5
  4052. โ”‚ โ”œ licenses: MIT
  4053. โ”‚ โ”œ repository: https://github.com/micromatch/nanomatch
  4054. โ”‚ โ”œ publisher: Jon Schlinkert
  4055. โ”‚ โ”œ url: https://github.com/jonschlinkert
  4056. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/nanomatch
  4057. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/nanomatch/LICENSE
  4058. โ”œ natives@1.1.0
  4059. โ”‚ โ”œ licenses: ISC
  4060. โ”‚ โ”œ repository: https://github.com/isaacs/natives
  4061. โ”‚ โ”œ publisher: Isaac Z. Schlueter
  4062. โ”‚ โ”œ email: i@izs.me
  4063. โ”‚ โ”œ url: http://blog.izs.me/
  4064. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/natives
  4065. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/natives/README.md
  4066. โ”œ ncname@1.0.0
  4067. โ”‚ โ”œ licenses: MIT
  4068. โ”‚ โ”œ repository: https://github.com/sindresorhus/ncname
  4069. โ”‚ โ”œ publisher: Sindre Sorhus
  4070. โ”‚ โ”œ email: sindresorhus@gmail.com
  4071. โ”‚ โ”œ url: http://sindresorhus.com
  4072. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/ncname
  4073. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/ncname/readme.md
  4074. โ”œ ncp@2.0.0
  4075. โ”‚ โ”œ licenses: MIT
  4076. โ”‚ โ”œ repository: https://github.com/AvianFlu/ncp
  4077. โ”‚ โ”œ publisher: AvianFlu
  4078. โ”‚ โ”œ email: charlie@charlieistheman.com
  4079. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/ncp
  4080. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/ncp/LICENSE.md
  4081. โ”œ needle@2.2.0
  4082. โ”‚ โ”œ licenses: MIT
  4083. โ”‚ โ”œ repository: https://github.com/tomas/needle
  4084. โ”‚ โ”œ publisher: Tomรกs Pollak
  4085. โ”‚ โ”œ email: tomas@forkhq.com
  4086. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/fsevents/node_modules/needle
  4087. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/fsevents/node_modules/needle/license.txt
  4088. โ”œ negotiator@0.5.3
  4089. โ”‚ โ”œ licenses: MIT
  4090. โ”‚ โ”œ repository: https://github.com/jshttp/negotiator
  4091. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/negotiator
  4092. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/negotiator/LICENSE
  4093. โ”œ negotiator@0.6.1
  4094. โ”‚ โ”œ licenses: MIT
  4095. โ”‚ โ”œ repository: https://github.com/jshttp/negotiator
  4096. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/errorhandler/node_modules/negotiator
  4097. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/errorhandler/node_modules/negotiator/LICENSE
  4098. โ”œ next-tick@0.2.2
  4099. โ”‚ โ”œ licenses: MIT
  4100. โ”‚ โ”œ repository: https://github.com/medikoo/next-tick
  4101. โ”‚ โ”œ publisher: Mariusz Nowak
  4102. โ”‚ โ”œ email: medykk@medikoo.com
  4103. โ”‚ โ”œ url: http://www.medikoo.com/
  4104. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/next-tick
  4105. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/next-tick/LICENCE
  4106. โ”œ next-tick@1.0.0
  4107. โ”‚ โ”œ licenses: MIT
  4108. โ”‚ โ”œ repository: https://github.com/medikoo/next-tick
  4109. โ”‚ โ”œ publisher: Mariusz Nowak
  4110. โ”‚ โ”œ email: medyk@medikoo.com
  4111. โ”‚ โ”œ url: http://www.medikoo.com/
  4112. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/timers-ext/node_modules/next-tick
  4113. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/timers-ext/node_modules/next-tick/LICENSE
  4114. โ”œ ng-annotate@1.2.2
  4115. โ”‚ โ”œ licenses: MIT
  4116. โ”‚ โ”œ repository: https://github.com/olov/ng-annotate
  4117. โ”‚ โ”œ publisher: Olov Lassus
  4118. โ”‚ โ”œ email: olov.lassus@gmail.com
  4119. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/ng-annotate
  4120. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/ng-annotate/LICENSE
  4121. โ”œ no-case@2.3.2
  4122. โ”‚ โ”œ licenses: MIT
  4123. โ”‚ โ”œ repository: https://github.com/blakeembrey/no-case
  4124. โ”‚ โ”œ publisher: Blake Embrey
  4125. โ”‚ โ”œ email: hello@blakeembrey.com
  4126. โ”‚ โ”œ url: http://blakeembrey.me
  4127. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/no-case
  4128. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/no-case/LICENSE
  4129. โ”œ node-gyp@3.6.2
  4130. โ”‚ โ”œ licenses: MIT
  4131. โ”‚ โ”œ repository: https://github.com/nodejs/node-gyp
  4132. โ”‚ โ”œ publisher: Nathan Rajlich
  4133. โ”‚ โ”œ email: nathan@tootallnate.net
  4134. โ”‚ โ”œ url: http://tootallnate.net
  4135. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/node-gyp
  4136. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/node-gyp/LICENSE
  4137. โ”œ node-int64@0.3.3
  4138. โ”‚ โ”œ licenses: MIT
  4139. โ”‚ โ”œ repository: https://github.com/broofa/node-int64
  4140. โ”‚ โ”œ publisher: Robert Kieffer
  4141. โ”‚ โ”œ email: robert@broofa.com
  4142. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/node-int64
  4143. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/node-int64/LICENSE
  4144. โ”œ node-pre-gyp@0.10.0
  4145. โ”‚ โ”œ licenses: BSD-3-Clause
  4146. โ”‚ โ”œ repository: https://github.com/mapbox/node-pre-gyp
  4147. โ”‚ โ”œ publisher: Dane Springmeyer
  4148. โ”‚ โ”œ email: dane@mapbox.com
  4149. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/fsevents/node_modules/node-pre-gyp
  4150. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/fsevents/node_modules/node-pre-gyp/LICENSE
  4151. โ”œ node-sass@4.7.2
  4152. โ”‚ โ”œ licenses: MIT
  4153. โ”‚ โ”œ repository: https://github.com/sass/node-sass
  4154. โ”‚ โ”œ publisher: Andrew Nesbitt
  4155. โ”‚ โ”œ email: andrewnez@gmail.com
  4156. โ”‚ โ”œ url: http://andrew.github.com
  4157. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/node-sass
  4158. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/node-sass/LICENSE
  4159. โ”œ node-uuid@1.4.8
  4160. โ”‚ โ”œ licenses: MIT
  4161. โ”‚ โ”œ repository: https://github.com/broofa/node-uuid
  4162. โ”‚ โ”œ publisher: Robert Kieffer
  4163. โ”‚ โ”œ email: robert@broofa.com
  4164. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/node-uuid
  4165. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/node-uuid/LICENSE.md
  4166. โ”œ node-webkit-builder@1.0.13
  4167. โ”‚ โ”œ licenses: MIT
  4168. โ”‚ โ”œ repository: https://github.com/mllrsohn/node-webkit-builder
  4169. โ”‚ โ”œ publisher: Steffen Mรผller
  4170. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/node-webkit-builder
  4171. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/node-webkit-builder/LICENSE
  4172. โ”œ nopt-usage@0.1.0
  4173. โ”‚ โ”œ licenses: MIT
  4174. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/nopt-usage
  4175. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/nopt-usage/README.md
  4176. โ”œ nopt@1.0.10
  4177. โ”‚ โ”œ licenses: MIT
  4178. โ”‚ โ”œ repository: https://github.com/isaacs/nopt
  4179. โ”‚ โ”œ publisher: Isaac Z. Schlueter
  4180. โ”‚ โ”œ email: i@izs.me
  4181. โ”‚ โ”œ url: http://blog.izs.me/
  4182. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/decompress-zip/node_modules/touch/node_modules/nopt
  4183. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/decompress-zip/node_modules/touch/node_modules/nopt/LICENSE
  4184. โ”œ nopt@2.0.0
  4185. โ”‚ โ”œ licenses: MIT
  4186. โ”‚ โ”œ repository: https://github.com/isaacs/nopt
  4187. โ”‚ โ”œ publisher: Isaac Z. Schlueter
  4188. โ”‚ โ”œ email: i@izs.me
  4189. โ”‚ โ”œ url: http://blog.izs.me/
  4190. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/noptify/node_modules/nopt
  4191. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/noptify/node_modules/nopt/LICENSE
  4192. โ”œ nopt@2.2.1
  4193. โ”‚ โ”œ licenses: MIT
  4194. โ”‚ โ”œ repository: https://github.com/isaacs/nopt
  4195. โ”‚ โ”œ publisher: Isaac Z. Schlueter
  4196. โ”‚ โ”œ email: i@izs.me
  4197. โ”‚ โ”œ url: http://blog.izs.me/
  4198. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/decompress-zip/node_modules/nopt
  4199. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/decompress-zip/node_modules/nopt/LICENSE
  4200. โ”œ nopt@3.0.6
  4201. โ”‚ โ”œ licenses: ISC
  4202. โ”‚ โ”œ repository: https://github.com/npm/nopt
  4203. โ”‚ โ”œ publisher: Isaac Z. Schlueter
  4204. โ”‚ โ”œ email: i@izs.me
  4205. โ”‚ โ”œ url: http://blog.izs.me/
  4206. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/node-gyp/node_modules/nopt
  4207. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/node-gyp/node_modules/nopt/LICENSE
  4208. โ”œ nopt@4.0.1
  4209. โ”‚ โ”œ licenses: ISC
  4210. โ”‚ โ”œ repository: https://github.com/npm/nopt
  4211. โ”‚ โ”œ publisher: Isaac Z. Schlueter
  4212. โ”‚ โ”œ email: i@izs.me
  4213. โ”‚ โ”œ url: http://blog.izs.me/
  4214. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/license-checker/node_modules/nopt
  4215. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/license-checker/node_modules/nopt/LICENSE
  4216. โ”œ noptify@0.0.3
  4217. โ”‚ โ”œ licenses: UNKNOWN
  4218. โ”‚ โ”œ repository: https://github.com/mklabs/noptify
  4219. โ”‚ โ”œ publisher: mklabs
  4220. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/noptify
  4221. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/noptify/readme.md
  4222. โ”œ normalize-package-data@2.4.0
  4223. โ”‚ โ”œ licenses: BSD-2-Clause
  4224. โ”‚ โ”œ repository: https://github.com/npm/normalize-package-data
  4225. โ”‚ โ”œ publisher: Meryn Stol
  4226. โ”‚ โ”œ email: merynstol@gmail.com
  4227. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/normalize-package-data
  4228. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/normalize-package-data/LICENSE
  4229. โ”œ normalize-path@2.1.1
  4230. โ”‚ โ”œ licenses: MIT
  4231. โ”‚ โ”œ repository: https://github.com/jonschlinkert/normalize-path
  4232. โ”‚ โ”œ publisher: Jon Schlinkert
  4233. โ”‚ โ”œ url: https://github.com/jonschlinkert
  4234. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/normalize-path
  4235. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/normalize-path/LICENSE
  4236. โ”œ npm-bundled@1.0.3
  4237. โ”‚ โ”œ licenses: ISC
  4238. โ”‚ โ”œ repository: https://github.com/npm/npm-bundled
  4239. โ”‚ โ”œ publisher: Isaac Z. Schlueter
  4240. โ”‚ โ”œ email: i@izs.me
  4241. โ”‚ โ”œ url: http://blog.izs.me/
  4242. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/fsevents/node_modules/npm-bundled
  4243. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/fsevents/node_modules/npm-bundled/README.md
  4244. โ”œ npm-license@0.3.3
  4245. โ”‚ โ”œ licenses: BSD
  4246. โ”‚ โ”œ repository: https://github.com/AceMetrix/npm-license
  4247. โ”‚ โ”œ publisher: Duncan Wong
  4248. โ”‚ โ”œ email: baduncaduncan@gmail.com
  4249. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/npm-license
  4250. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/npm-license/LICENSE
  4251. โ”œ npm-packlist@1.1.10
  4252. โ”‚ โ”œ licenses: ISC
  4253. โ”‚ โ”œ repository: https://github.com/npm/npm-packlist
  4254. โ”‚ โ”œ publisher: Isaac Z. Schlueter
  4255. โ”‚ โ”œ email: i@izs.me
  4256. โ”‚ โ”œ url: http://blog.izs.me/
  4257. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/fsevents/node_modules/npm-packlist
  4258. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/fsevents/node_modules/npm-packlist/LICENSE
  4259. โ”œ npmconf@2.1.1
  4260. โ”‚ โ”œ licenses: BSD*
  4261. โ”‚ โ”œ repository: https://github.com/npm/npmconf
  4262. โ”‚ โ”œ publisher: Isaac Z. Schlueter
  4263. โ”‚ โ”œ email: i@izs.me
  4264. โ”‚ โ”œ url: http://blog.izs.me
  4265. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/npmconf
  4266. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/npmconf/LICENSE
  4267. โ”œ npmlog@4.1.2
  4268. โ”‚ โ”œ licenses: ISC
  4269. โ”‚ โ”œ repository: https://github.com/npm/npmlog
  4270. โ”‚ โ”œ publisher: Isaac Z. Schlueter
  4271. โ”‚ โ”œ email: i@izs.me
  4272. โ”‚ โ”œ url: http://blog.izs.me/
  4273. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/npmlog
  4274. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/npmlog/LICENSE
  4275. โ”œ nth-check@1.0.1
  4276. โ”‚ โ”œ licenses: BSD*
  4277. โ”‚ โ”œ repository: https://github.com/fb55/nth-check
  4278. โ”‚ โ”œ publisher: Felix Boehm
  4279. โ”‚ โ”œ email: me@feedic.com
  4280. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/nth-check
  4281. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/nth-check/README.md
  4282. โ”œ number-is-nan@1.0.1
  4283. โ”‚ โ”œ licenses: MIT
  4284. โ”‚ โ”œ repository: https://github.com/sindresorhus/number-is-nan
  4285. โ”‚ โ”œ publisher: Sindre Sorhus
  4286. โ”‚ โ”œ email: sindresorhus@gmail.com
  4287. โ”‚ โ”œ url: sindresorhus.com
  4288. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/number-is-nan
  4289. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/number-is-nan/license
  4290. โ”œ numbro@1.11.1
  4291. โ”‚ โ”œ licenses: MIT
  4292. โ”‚ โ”œ repository: https://github.com/BenjaminVanRyseghem/numbro
  4293. โ”‚ โ”œ publisher: Benjamin Van Ryseghem
  4294. โ”‚ โ”œ email: benjamin@vanryseghem.com
  4295. โ”‚ โ”œ url: https://benjamin.vanryseghem.com
  4296. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/numbro
  4297. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/numbro/LICENSE
  4298. โ”œ oauth-sign@0.3.0
  4299. โ”‚ โ”œ licenses: Apache*
  4300. โ”‚ โ”œ repository: https://github.com/mikeal/oauth-sign
  4301. โ”‚ โ”œ publisher: Mikeal Rogers
  4302. โ”‚ โ”œ email: mikeal.rogers@gmail.com
  4303. โ”‚ โ”œ url: http://www.futurealoof.com
  4304. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/oauth-sign
  4305. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/oauth-sign/LICENSE
  4306. โ”œ oauth-sign@0.4.0
  4307. โ”‚ โ”œ licenses: Apache*
  4308. โ”‚ โ”œ repository: https://github.com/mikeal/oauth-sign
  4309. โ”‚ โ”œ publisher: Mikeal Rogers
  4310. โ”‚ โ”œ email: mikeal.rogers@gmail.com
  4311. โ”‚ โ”œ url: http://www.futurealoof.com
  4312. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/phantomjs/node_modules/oauth-sign
  4313. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/phantomjs/node_modules/oauth-sign/LICENSE
  4314. โ”œ oauth-sign@0.8.2
  4315. โ”‚ โ”œ licenses: Apache-2.0
  4316. โ”‚ โ”œ repository: https://github.com/mikeal/oauth-sign
  4317. โ”‚ โ”œ publisher: Mikeal Rogers
  4318. โ”‚ โ”œ email: mikeal.rogers@gmail.com
  4319. โ”‚ โ”œ url: http://www.futurealoof.com
  4320. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/node-sass/node_modules/oauth-sign
  4321. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/node-sass/node_modules/oauth-sign/LICENSE
  4322. โ”œ object-assign@2.1.1
  4323. โ”‚ โ”œ licenses: MIT
  4324. โ”‚ โ”œ repository: https://github.com/sindresorhus/object-assign
  4325. โ”‚ โ”œ publisher: Sindre Sorhus
  4326. โ”‚ โ”œ email: sindresorhus@gmail.com
  4327. โ”‚ โ”œ url: http://sindresorhus.com
  4328. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/configstore/node_modules/object-assign
  4329. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/configstore/node_modules/object-assign/license
  4330. โ”œ object-assign@4.1.1
  4331. โ”‚ โ”œ licenses: MIT
  4332. โ”‚ โ”œ repository: https://github.com/sindresorhus/object-assign
  4333. โ”‚ โ”œ publisher: Sindre Sorhus
  4334. โ”‚ โ”œ email: sindresorhus@gmail.com
  4335. โ”‚ โ”œ url: sindresorhus.com
  4336. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/object-assign
  4337. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/object-assign/license
  4338. โ”œ object-component@0.0.3
  4339. โ”‚ โ”œ licenses: MIT*
  4340. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/object-component
  4341. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/object-component/Readme.md
  4342. โ”œ object-copy@0.1.0
  4343. โ”‚ โ”œ licenses: MIT
  4344. โ”‚ โ”œ repository: https://github.com/jonschlinkert/object-copy
  4345. โ”‚ โ”œ publisher: Jon Schlinkert
  4346. โ”‚ โ”œ url: https://github.com/jonschlinkert
  4347. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/object-copy
  4348. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/object-copy/LICENSE
  4349. โ”œ object-keys@1.0.1
  4350. โ”‚ โ”œ licenses: MIT
  4351. โ”‚ โ”œ repository: https://github.com/ljharb/object-keys
  4352. โ”‚ โ”œ publisher: Jordan Harband
  4353. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/object-keys
  4354. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/object-keys/LICENSE
  4355. โ”œ object-visit@1.0.1
  4356. โ”‚ โ”œ licenses: MIT
  4357. โ”‚ โ”œ repository: https://github.com/jonschlinkert/object-visit
  4358. โ”‚ โ”œ publisher: Jon Schlinkert
  4359. โ”‚ โ”œ url: https://github.com/jonschlinkert
  4360. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/object-visit
  4361. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/object-visit/LICENSE
  4362. โ”œ object.omit@2.0.1
  4363. โ”‚ โ”œ licenses: MIT
  4364. โ”‚ โ”œ repository: https://github.com/jonschlinkert/object.omit
  4365. โ”‚ โ”œ publisher: Jon Schlinkert
  4366. โ”‚ โ”œ url: https://github.com/jonschlinkert
  4367. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/object.omit
  4368. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/object.omit/LICENSE
  4369. โ”œ object.pick@1.3.0
  4370. โ”‚ โ”œ licenses: MIT
  4371. โ”‚ โ”œ repository: https://github.com/jonschlinkert/object.pick
  4372. โ”‚ โ”œ publisher: Jon Schlinkert
  4373. โ”‚ โ”œ url: https://github.com/jonschlinkert
  4374. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/object.pick
  4375. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/object.pick/LICENSE
  4376. โ”œ on-finished@2.2.1
  4377. โ”‚ โ”œ licenses: MIT
  4378. โ”‚ โ”œ repository: https://github.com/jshttp/on-finished
  4379. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/send/node_modules/on-finished
  4380. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/send/node_modules/on-finished/LICENSE
  4381. โ”œ on-finished@2.3.0
  4382. โ”‚ โ”œ licenses: MIT
  4383. โ”‚ โ”œ repository: https://github.com/jshttp/on-finished
  4384. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/on-finished
  4385. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/on-finished/LICENSE
  4386. โ”œ on-headers@1.0.1
  4387. โ”‚ โ”œ licenses: MIT
  4388. โ”‚ โ”œ repository: https://github.com/jshttp/on-headers
  4389. โ”‚ โ”œ publisher: Douglas Christopher Wilson
  4390. โ”‚ โ”œ email: doug@somethingdoug.com
  4391. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/on-headers
  4392. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/on-headers/LICENSE
  4393. โ”œ once@1.2.0
  4394. โ”‚ โ”œ licenses: BSD*
  4395. โ”‚ โ”œ repository: https://github.com/isaacs/once
  4396. โ”‚ โ”œ publisher: Isaac Z. Schlueter
  4397. โ”‚ โ”œ email: i@izs.me
  4398. โ”‚ โ”œ url: http://blog.izs.me/
  4399. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/pump/node_modules/once
  4400. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/pump/node_modules/once/LICENSE
  4401. โ”œ once@1.3.3
  4402. โ”‚ โ”œ licenses: ISC
  4403. โ”‚ โ”œ repository: https://github.com/isaacs/once
  4404. โ”‚ โ”œ publisher: Isaac Z. Schlueter
  4405. โ”‚ โ”œ email: i@izs.me
  4406. โ”‚ โ”œ url: http://blog.izs.me/
  4407. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/pump/node_modules/end-of-stream/node_modules/once
  4408. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/pump/node_modules/end-of-stream/node_modules/once/LICENSE
  4409. โ”œ once@1.4.0
  4410. โ”‚ โ”œ licenses: ISC
  4411. โ”‚ โ”œ repository: https://github.com/isaacs/once
  4412. โ”‚ โ”œ publisher: Isaac Z. Schlueter
  4413. โ”‚ โ”œ email: i@izs.me
  4414. โ”‚ โ”œ url: http://blog.izs.me/
  4415. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/once
  4416. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/once/LICENSE
  4417. โ”œ onetime@1.1.0
  4418. โ”‚ โ”œ licenses: MIT
  4419. โ”‚ โ”œ repository: https://github.com/sindresorhus/onetime
  4420. โ”‚ โ”œ publisher: Sindre Sorhus
  4421. โ”‚ โ”œ email: sindresorhus@gmail.com
  4422. โ”‚ โ”œ url: sindresorhus.com
  4423. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/onetime
  4424. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/onetime/license
  4425. โ”œ open@0.0.5
  4426. โ”‚ โ”œ licenses: MIT
  4427. โ”‚ โ”œ repository: https://github.com/pwnall/node-open
  4428. โ”‚ โ”œ publisher: J Jordan
  4429. โ”‚ โ”œ email: jjrdn@styosis.com
  4430. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/open
  4431. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/open/LICENSE
  4432. โ”œ openport@0.0.4
  4433. โ”‚ โ”œ licenses: MIT
  4434. โ”‚ โ”œ repository: https://github.com/joeferner/node-openport
  4435. โ”‚ โ”œ publisher: Joe Ferner
  4436. โ”‚ โ”œ email: joe@fernsroth.com
  4437. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/openport
  4438. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/openport/README.md
  4439. โ”œ optimist@0.6.1
  4440. โ”‚ โ”œ licenses: MIT*
  4441. โ”‚ โ”œ repository: https://github.com/substack/node-optimist
  4442. โ”‚ โ”œ publisher: James Halliday
  4443. โ”‚ โ”œ email: mail@substack.net
  4444. โ”‚ โ”œ url: http://substack.net
  4445. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/optimist
  4446. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/optimist/LICENSE
  4447. โ”œ optionator@0.5.0
  4448. โ”‚ โ”œ licenses: MIT
  4449. โ”‚ โ”œ repository: https://github.com/gkz/optionator
  4450. โ”‚ โ”œ publisher: George Zahariev
  4451. โ”‚ โ”œ email: z@georgezahariev.com
  4452. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/optionator
  4453. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/optionator/LICENSE
  4454. โ”œ options@0.0.6
  4455. โ”‚ โ”œ licenses: MIT*
  4456. โ”‚ โ”œ repository: https://github.com/einaros/options.js
  4457. โ”‚ โ”œ publisher: Einar Otto Stangvik
  4458. โ”‚ โ”œ email: einaros@gmail.com
  4459. โ”‚ โ”œ url: http://2x.io
  4460. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/options
  4461. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/options/README.md
  4462. โ”œ ordered-ast-traverse@1.1.1
  4463. โ”‚ โ”œ licenses: MIT
  4464. โ”‚ โ”œ repository: https://github.com/olov/ordered-ast-traverse
  4465. โ”‚ โ”œ publisher: Olov Lassus
  4466. โ”‚ โ”œ email: olov.lassus@gmail.com
  4467. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/ordered-ast-traverse
  4468. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/ordered-ast-traverse/LICENSE
  4469. โ”œ ordered-esprima-props@1.1.0
  4470. โ”‚ โ”œ licenses: MIT
  4471. โ”‚ โ”œ repository: https://github.com/olov/ordered-esprima-props
  4472. โ”‚ โ”œ publisher: Olov Lassus
  4473. โ”‚ โ”œ email: olov.lassus@gmail.com
  4474. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/ordered-esprima-props
  4475. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/ordered-esprima-props/LICENSE
  4476. โ”œ os-homedir@1.0.2
  4477. โ”‚ โ”œ licenses: MIT
  4478. โ”‚ โ”œ repository: https://github.com/sindresorhus/os-homedir
  4479. โ”‚ โ”œ publisher: Sindre Sorhus
  4480. โ”‚ โ”œ email: sindresorhus@gmail.com
  4481. โ”‚ โ”œ url: sindresorhus.com
  4482. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/os-homedir
  4483. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/os-homedir/license
  4484. โ”œ os-locale@1.4.0
  4485. โ”‚ โ”œ licenses: MIT
  4486. โ”‚ โ”œ repository: https://github.com/sindresorhus/os-locale
  4487. โ”‚ โ”œ publisher: Sindre Sorhus
  4488. โ”‚ โ”œ email: sindresorhus@gmail.com
  4489. โ”‚ โ”œ url: sindresorhus.com
  4490. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/os-locale
  4491. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/os-locale/license
  4492. โ”œ os-tmpdir@1.0.2
  4493. โ”‚ โ”œ licenses: MIT
  4494. โ”‚ โ”œ repository: https://github.com/sindresorhus/os-tmpdir
  4495. โ”‚ โ”œ publisher: Sindre Sorhus
  4496. โ”‚ โ”œ email: sindresorhus@gmail.com
  4497. โ”‚ โ”œ url: sindresorhus.com
  4498. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/os-tmpdir
  4499. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/os-tmpdir/license
  4500. โ”œ osenv@0.1.4
  4501. โ”‚ โ”œ licenses: ISC
  4502. โ”‚ โ”œ repository: https://github.com/npm/osenv
  4503. โ”‚ โ”œ publisher: Isaac Z. Schlueter
  4504. โ”‚ โ”œ email: i@izs.me
  4505. โ”‚ โ”œ url: http://blog.izs.me/
  4506. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/osenv
  4507. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/osenv/LICENSE
  4508. โ”œ osenv@0.1.5
  4509. โ”‚ โ”œ licenses: ISC
  4510. โ”‚ โ”œ repository: https://github.com/npm/osenv
  4511. โ”‚ โ”œ publisher: Isaac Z. Schlueter
  4512. โ”‚ โ”œ email: i@izs.me
  4513. โ”‚ โ”œ url: http://blog.izs.me/
  4514. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/fsevents/node_modules/osenv
  4515. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/fsevents/node_modules/osenv/LICENSE
  4516. โ”œ ov-secure-data-manager@1.4.0
  4517. โ”‚ โ”œ licenses: UNLICENSED
  4518. โ”‚ โ”œ private: true
  4519. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend
  4520. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/LICENSE
  4521. โ”œ package-license@0.1.2
  4522. โ”‚ โ”œ licenses: Apache*
  4523. โ”‚ โ”œ repository: https://github.com/AceMetrix/package-license
  4524. โ”‚ โ”œ publisher: Duncan Wong
  4525. โ”‚ โ”œ email: baduncaduncan@gmail.com
  4526. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/package-license
  4527. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/package-license/LICENSE
  4528. โ”œ package@1.0.1
  4529. โ”‚ โ”œ licenses: MIT*
  4530. โ”‚ โ”œ repository: https://github.com/vesln/package
  4531. โ”‚ โ”œ publisher: Veselin Todorov
  4532. โ”‚ โ”œ email: hi@vesln.com
  4533. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/package
  4534. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/package/Readme.md
  4535. โ”œ pako@0.2.9
  4536. โ”‚ โ”œ licenses: MIT
  4537. โ”‚ โ”œ repository: https://github.com/nodeca/pako
  4538. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/pako
  4539. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/pako/LICENSE
  4540. โ”œ param-case@2.1.1
  4541. โ”‚ โ”œ licenses: MIT
  4542. โ”‚ โ”œ repository: https://github.com/blakeembrey/param-case
  4543. โ”‚ โ”œ publisher: Blake Embrey
  4544. โ”‚ โ”œ email: hello@blakeembrey.com
  4545. โ”‚ โ”œ url: http://blakeembrey.me
  4546. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/param-case
  4547. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/param-case/LICENSE
  4548. โ”œ parse-glob@3.0.4
  4549. โ”‚ โ”œ licenses: MIT
  4550. โ”‚ โ”œ repository: https://github.com/jonschlinkert/parse-glob
  4551. โ”‚ โ”œ publisher: Jon Schlinkert
  4552. โ”‚ โ”œ url: https://github.com/jonschlinkert
  4553. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/parse-glob
  4554. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/parse-glob/LICENSE
  4555. โ”œ parse-json@2.2.0
  4556. โ”‚ โ”œ licenses: MIT
  4557. โ”‚ โ”œ repository: https://github.com/sindresorhus/parse-json
  4558. โ”‚ โ”œ publisher: Sindre Sorhus
  4559. โ”‚ โ”œ email: sindresorhus@gmail.com
  4560. โ”‚ โ”œ url: sindresorhus.com
  4561. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/parse-json
  4562. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/parse-json/license
  4563. โ”œ parse-passwd@1.0.0
  4564. โ”‚ โ”œ licenses: MIT
  4565. โ”‚ โ”œ repository: https://github.com/doowb/parse-passwd
  4566. โ”‚ โ”œ publisher: Brian Woodward
  4567. โ”‚ โ”œ url: https://github.com/doowb
  4568. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/parse-passwd
  4569. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/parse-passwd/LICENSE
  4570. โ”œ parsejson@0.0.1
  4571. โ”‚ โ”œ licenses: MIT
  4572. โ”‚ โ”” path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/parsejson
  4573. โ”œ parseqs@0.0.2
  4574. โ”‚ โ”œ licenses: MIT
  4575. โ”‚ โ”” path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/parseqs
  4576. โ”œ parseuri@0.0.2
  4577. โ”‚ โ”œ licenses: MIT
  4578. โ”‚ โ”” path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/parseuri
  4579. โ”œ parseuri@0.0.4
  4580. โ”‚ โ”œ licenses: MIT
  4581. โ”‚ โ”œ repository: https://github.com/get/parseuri
  4582. โ”‚ โ”” path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/engine.io-client/node_modules/parseuri
  4583. โ”œ parseurl@1.3.2
  4584. โ”‚ โ”œ licenses: MIT
  4585. โ”‚ โ”œ repository: https://github.com/pillarjs/parseurl
  4586. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/parseurl
  4587. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/parseurl/LICENSE
  4588. โ”œ pascal-case@2.0.1
  4589. โ”‚ โ”œ licenses: MIT
  4590. โ”‚ โ”œ repository: https://github.com/blakeembrey/pascal-case
  4591. โ”‚ โ”œ publisher: Blake Embrey
  4592. โ”‚ โ”œ email: hello@blakeembrey.com
  4593. โ”‚ โ”œ url: http://blakeembrey.me
  4594. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/pascal-case
  4595. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/pascal-case/LICENSE
  4596. โ”œ pascalcase@0.1.1
  4597. โ”‚ โ”œ licenses: MIT
  4598. โ”‚ โ”œ repository: https://github.com/jonschlinkert/pascalcase
  4599. โ”‚ โ”œ publisher: Jon Schlinkert
  4600. โ”‚ โ”œ url: https://github.com/jonschlinkert
  4601. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/pascalcase
  4602. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/pascalcase/LICENSE
  4603. โ”œ path-case@2.1.1
  4604. โ”‚ โ”œ licenses: MIT
  4605. โ”‚ โ”œ repository: https://github.com/blakeembrey/path-case
  4606. โ”‚ โ”œ publisher: Blake Embrey
  4607. โ”‚ โ”œ email: hello@blakeembrey.com
  4608. โ”‚ โ”œ url: http://blakeembrey.me
  4609. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/path-case
  4610. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/path-case/LICENSE
  4611. โ”œ path-exists@2.1.0
  4612. โ”‚ โ”œ licenses: MIT
  4613. โ”‚ โ”œ repository: https://github.com/sindresorhus/path-exists
  4614. โ”‚ โ”œ publisher: Sindre Sorhus
  4615. โ”‚ โ”œ email: sindresorhus@gmail.com
  4616. โ”‚ โ”œ url: sindresorhus.com
  4617. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/path-exists
  4618. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/path-exists/license
  4619. โ”œ path-is-absolute@1.0.1
  4620. โ”‚ โ”œ licenses: MIT
  4621. โ”‚ โ”œ repository: https://github.com/sindresorhus/path-is-absolute
  4622. โ”‚ โ”œ publisher: Sindre Sorhus
  4623. โ”‚ โ”œ email: sindresorhus@gmail.com
  4624. โ”‚ โ”œ url: sindresorhus.com
  4625. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/path-is-absolute
  4626. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/path-is-absolute/license
  4627. โ”œ path-parse@1.0.5
  4628. โ”‚ โ”œ licenses: MIT
  4629. โ”‚ โ”œ repository: https://github.com/jbgutierrez/path-parse
  4630. โ”‚ โ”œ publisher: Javier Blanco
  4631. โ”‚ โ”œ email: http://jbgutierrez.info
  4632. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/path-parse
  4633. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/path-parse/README.md
  4634. โ”œ path-to-regexp@0.1.3
  4635. โ”‚ โ”œ licenses: MIT*
  4636. โ”‚ โ”œ repository: https://github.com/component/path-to-regexp
  4637. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/path-to-regexp
  4638. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/path-to-regexp/Readme.md
  4639. โ”œ path-type@1.1.0
  4640. โ”‚ โ”œ licenses: MIT
  4641. โ”‚ โ”œ repository: https://github.com/sindresorhus/path-type
  4642. โ”‚ โ”œ publisher: Sindre Sorhus
  4643. โ”‚ โ”œ email: sindresorhus@gmail.com
  4644. โ”‚ โ”œ url: sindresorhus.com
  4645. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/path-type
  4646. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/path-type/license
  4647. โ”œ pause@0.1.0
  4648. โ”‚ โ”œ licenses: MIT
  4649. โ”‚ โ”œ repository: https://github.com/stream-utils/pause
  4650. โ”‚ โ”œ publisher: TJ Holowaychuk
  4651. โ”‚ โ”œ email: tj@vision-media.ca
  4652. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/pause
  4653. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/pause/LICENSE
  4654. โ”œ phantomjs@1.9.18
  4655. โ”‚ โ”œ licenses: Apache-2.0
  4656. โ”‚ โ”œ repository: https://github.com/Medium/phantomjs
  4657. โ”‚ โ”œ publisher: Dan Pupius
  4658. โ”‚ โ”œ email: dan@obvious.com
  4659. โ”‚ โ”œ url: http://pupius.co.uk
  4660. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/phantomjs
  4661. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/phantomjs/LICENSE.txt
  4662. โ”œ pify@2.3.0
  4663. โ”‚ โ”œ licenses: MIT
  4664. โ”‚ โ”œ repository: https://github.com/sindresorhus/pify
  4665. โ”‚ โ”œ publisher: Sindre Sorhus
  4666. โ”‚ โ”œ email: sindresorhus@gmail.com
  4667. โ”‚ โ”œ url: sindresorhus.com
  4668. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/pify
  4669. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/pify/license
  4670. โ”œ pinkie-promise@2.0.1
  4671. โ”‚ โ”œ licenses: MIT
  4672. โ”‚ โ”œ repository: https://github.com/floatdrop/pinkie-promise
  4673. โ”‚ โ”œ publisher: Vsevolod Strukchinsky
  4674. โ”‚ โ”œ email: floatdrop@gmail.com
  4675. โ”‚ โ”œ url: github.com/floatdrop
  4676. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/pinkie-promise
  4677. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/pinkie-promise/license
  4678. โ”œ pinkie@2.0.4
  4679. โ”‚ โ”œ licenses: MIT
  4680. โ”‚ โ”œ repository: https://github.com/floatdrop/pinkie
  4681. โ”‚ โ”œ publisher: Vsevolod Strukchinsky
  4682. โ”‚ โ”œ email: floatdrop@gmail.com
  4683. โ”‚ โ”œ url: github.com/floatdrop
  4684. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/pinkie
  4685. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/pinkie/license
  4686. โ”œ pkginfo@0.3.1
  4687. โ”‚ โ”œ licenses: MIT
  4688. โ”‚ โ”œ repository: https://github.com/indexzero/node-pkginfo
  4689. โ”‚ โ”œ publisher: Charlie Robbins
  4690. โ”‚ โ”œ email: charlie.robbins@gmail.com
  4691. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/pkginfo
  4692. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/pkginfo/LICENSE
  4693. โ”œ platform-overrides@1.0.1
  4694. โ”‚ โ”œ licenses: MIT
  4695. โ”‚ โ”œ repository: https://github.com/adam-lynch/platform-overrides
  4696. โ”‚ โ”œ publisher: Adam Lynch
  4697. โ”‚ โ”œ email: contact@adamlynch.com
  4698. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/platform-overrides
  4699. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/platform-overrides/README.md
  4700. โ”œ plist@1.2.0
  4701. โ”‚ โ”œ licenses: MIT
  4702. โ”‚ โ”œ repository: https://github.com/TooTallNate/node-plist
  4703. โ”‚ โ”œ publisher: Nathan Rajlich
  4704. โ”‚ โ”œ email: nathan@tootallnate.net
  4705. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/plist
  4706. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/plist/LICENSE
  4707. โ”œ pofile@1.0.9
  4708. โ”‚ โ”œ licenses: MIT*
  4709. โ”‚ โ”œ repository: https://github.com/rubenv/pofile
  4710. โ”‚ โ”œ publisher: Ruben Vermeersch
  4711. โ”‚ โ”œ email: ruben@savanne.be
  4712. โ”‚ โ”œ url: http://savanne.be/
  4713. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/pofile
  4714. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/pofile/LICENSE
  4715. โ”œ posix-character-classes@0.1.1
  4716. โ”‚ โ”œ licenses: MIT
  4717. โ”‚ โ”œ repository: https://github.com/jonschlinkert/posix-character-classes
  4718. โ”‚ โ”œ publisher: Jon Schlinkert
  4719. โ”‚ โ”œ url: https://github.com/jonschlinkert
  4720. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/posix-character-classes
  4721. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/posix-character-classes/LICENSE
  4722. โ”œ prelude-ls@1.1.2
  4723. โ”‚ โ”œ licenses: MIT
  4724. โ”‚ โ”œ repository: https://github.com/gkz/prelude-ls
  4725. โ”‚ โ”œ publisher: George Zahariev
  4726. โ”‚ โ”œ email: z@georgezahariev.com
  4727. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/prelude-ls
  4728. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/prelude-ls/LICENSE
  4729. โ”œ preserve@0.2.0
  4730. โ”‚ โ”œ licenses: MIT
  4731. โ”‚ โ”œ repository: https://github.com/jonschlinkert/preserve
  4732. โ”‚ โ”œ publisher: Jon Schlinkert
  4733. โ”‚ โ”œ url: https://github.com/jonschlinkert
  4734. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/preserve
  4735. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/preserve/LICENSE
  4736. โ”œ pretty-bytes@1.0.4
  4737. โ”‚ โ”œ licenses: MIT
  4738. โ”‚ โ”œ repository: https://github.com/sindresorhus/pretty-bytes
  4739. โ”‚ โ”œ publisher: Sindre Sorhus
  4740. โ”‚ โ”œ email: sindresorhus@gmail.com
  4741. โ”‚ โ”œ url: http://sindresorhus.com
  4742. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/grunt-contrib-uglify/node_modules/pretty-bytes
  4743. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/grunt-contrib-uglify/node_modules/pretty-bytes/license
  4744. โ”œ pretty-bytes@3.0.1
  4745. โ”‚ โ”œ licenses: MIT
  4746. โ”‚ โ”œ repository: https://github.com/sindresorhus/pretty-bytes
  4747. โ”‚ โ”œ publisher: Sindre Sorhus
  4748. โ”‚ โ”œ email: sindresorhus@gmail.com
  4749. โ”‚ โ”œ url: sindresorhus.com
  4750. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/pretty-bytes
  4751. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/pretty-bytes/license
  4752. โ”œ prettysize@0.0.3
  4753. โ”‚ โ”œ licenses: BSD
  4754. โ”‚ โ”œ repository: https://github.com/davglass/prettysize
  4755. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/prettysize
  4756. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/prettysize/LICENSE
  4757. โ”œ process-nextick-args@1.0.7
  4758. โ”‚ โ”œ licenses: MIT
  4759. โ”‚ โ”œ repository: https://github.com/calvinmetcalf/process-nextick-args
  4760. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/process-nextick-args
  4761. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/process-nextick-args/license.md
  4762. โ”œ process-nextick-args@2.0.0
  4763. โ”‚ โ”œ licenses: MIT
  4764. โ”‚ โ”œ repository: https://github.com/calvinmetcalf/process-nextick-args
  4765. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/fsevents/node_modules/process-nextick-args
  4766. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/fsevents/node_modules/process-nextick-args/license.md
  4767. โ”œ progress@1.1.8
  4768. โ”‚ โ”œ licenses: MIT*
  4769. โ”‚ โ”œ repository: https://github.com/visionmedia/node-progress
  4770. โ”‚ โ”œ publisher: TJ Holowaychuk
  4771. โ”‚ โ”œ email: tj@vision-media.ca
  4772. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/progress
  4773. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/progress/LICENSE
  4774. โ”œ promise@7.3.1
  4775. โ”‚ โ”œ licenses: MIT
  4776. โ”‚ โ”œ repository: https://github.com/then/promise
  4777. โ”‚ โ”œ publisher: ForbesLindesay
  4778. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/promise
  4779. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/promise/LICENSE
  4780. โ”œ proto-list@1.2.4
  4781. โ”‚ โ”œ licenses: ISC
  4782. โ”‚ โ”œ repository: https://github.com/isaacs/proto-list
  4783. โ”‚ โ”œ publisher: Isaac Z. Schlueter
  4784. โ”‚ โ”œ email: i@izs.me
  4785. โ”‚ โ”œ url: http://blog.izs.me/
  4786. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/proto-list
  4787. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/proto-list/LICENSE
  4788. โ”œ proxy-addr@1.0.10
  4789. โ”‚ โ”œ licenses: MIT
  4790. โ”‚ โ”œ repository: https://github.com/jshttp/proxy-addr
  4791. โ”‚ โ”œ publisher: Douglas Christopher Wilson
  4792. โ”‚ โ”œ email: doug@somethingdoug.com
  4793. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/proxy-addr
  4794. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/proxy-addr/LICENSE
  4795. โ”œ proxyquire@1.8.0
  4796. โ”‚ โ”œ licenses: MIT
  4797. โ”‚ โ”œ repository: https://github.com/thlorenz/proxyquire
  4798. โ”‚ โ”œ publisher: Thorsten Lorenz
  4799. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/proxyquire
  4800. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/proxyquire/LICENSE
  4801. โ”œ pseudomap@1.0.2
  4802. โ”‚ โ”œ licenses: ISC
  4803. โ”‚ โ”œ repository: https://github.com/isaacs/pseudomap
  4804. โ”‚ โ”œ publisher: Isaac Z. Schlueter
  4805. โ”‚ โ”œ email: i@izs.me
  4806. โ”‚ โ”œ url: http://blog.izs.me/
  4807. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/pseudomap
  4808. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/pseudomap/LICENSE
  4809. โ”œ pug-attrs@2.0.2
  4810. โ”‚ โ”œ licenses: MIT
  4811. โ”‚ โ”œ repository: https://github.com/pugjs/pug-attrs
  4812. โ”‚ โ”œ publisher: Forbes Lindesay
  4813. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/pug-attrs
  4814. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/pug-attrs/LICENSE
  4815. โ”œ pug-code-gen@2.0.0
  4816. โ”‚ โ”œ licenses: MIT
  4817. โ”‚ โ”œ repository: https://github.com/pugjs/pug-code-gen
  4818. โ”‚ โ”œ publisher: Forbes Lindesay
  4819. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/pug-code-gen
  4820. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/pug-code-gen/LICENSE
  4821. โ”œ pug-error@1.3.2
  4822. โ”‚ โ”œ licenses: MIT
  4823. โ”‚ โ”œ repository: https://github.com/pugjs/pug-error
  4824. โ”‚ โ”œ publisher: Forbes Lindesay
  4825. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/pug-error
  4826. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/pug-error/LICENSE
  4827. โ”œ pug-filters@2.1.5
  4828. โ”‚ โ”œ licenses: MIT
  4829. โ”‚ โ”œ repository: https://github.com/pugjs/pug-filters
  4830. โ”‚ โ”œ publisher: Forbes Lindesay
  4831. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/pug-filters
  4832. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/pug-filters/LICENSE
  4833. โ”œ pug-lexer@3.1.0
  4834. โ”‚ โ”œ licenses: MIT
  4835. โ”‚ โ”œ repository: https://github.com/pugjs/pug-lexer
  4836. โ”‚ โ”œ publisher: ForbesLindesay
  4837. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/pug-lexer
  4838. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/pug-lexer/LICENSE
  4839. โ”œ pug-linker@3.0.3
  4840. โ”‚ โ”œ licenses: MIT
  4841. โ”‚ โ”œ repository: https://github.com/pugjs/pug-linker
  4842. โ”‚ โ”œ publisher: Forbes Lindesay
  4843. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/pug-linker
  4844. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/pug-linker/LICENSE
  4845. โ”œ pug-load@2.0.9
  4846. โ”‚ โ”œ licenses: MIT
  4847. โ”‚ โ”œ repository: https://github.com/pugjs/pug-load
  4848. โ”‚ โ”œ publisher: ForbesLindesay
  4849. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/pug-load
  4850. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/pug-load/LICENSE
  4851. โ”œ pug-parser@4.0.0
  4852. โ”‚ โ”œ licenses: MIT
  4853. โ”‚ โ”œ repository: https://github.com/pugjs/pug-parser
  4854. โ”‚ โ”œ publisher: ForbesLindesay
  4855. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/pug-parser
  4856. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/pug-parser/LICENSE
  4857. โ”œ pug-runtime@2.0.3
  4858. โ”‚ โ”œ licenses: MIT
  4859. โ”‚ โ”œ repository: https://github.com/pugjs/pug-runtime
  4860. โ”‚ โ”œ publisher: ForbesLindesay
  4861. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/pug-runtime
  4862. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/pug-runtime/LICENSE
  4863. โ”œ pug-strip-comments@1.0.2
  4864. โ”‚ โ”œ licenses: MIT
  4865. โ”‚ โ”œ repository: https://github.com/pugjs/pug-strip-comments
  4866. โ”‚ โ”œ publisher: Timothy Gu
  4867. โ”‚ โ”œ email: timothygu99@gmail.com
  4868. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/pug-strip-comments
  4869. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/pug-strip-comments/LICENSE.md
  4870. โ”œ pug-walk@1.1.5
  4871. โ”‚ โ”œ licenses: MIT
  4872. โ”‚ โ”œ repository: https://github.com/pugjs/pug-walk
  4873. โ”‚ โ”œ publisher: ForbesLindesay
  4874. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/pug-walk
  4875. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/pug-walk/LICENSE
  4876. โ”œ pug@2.0.0-rc.4
  4877. โ”‚ โ”œ licenses: MIT
  4878. โ”‚ โ”œ repository: https://github.com/pugjs/pug
  4879. โ”‚ โ”œ publisher: TJ Holowaychuk
  4880. โ”‚ โ”œ email: tj@vision-media.ca
  4881. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/pug
  4882. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/pug/LICENSE
  4883. โ”œ pump@0.3.5
  4884. โ”‚ โ”œ licenses: MIT
  4885. โ”‚ โ”œ repository: https://github.com/mafintosh/pump
  4886. โ”‚ โ”œ publisher: Mathias Buus Madsen
  4887. โ”‚ โ”œ email: mathiasbuus@gmail.com
  4888. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/pump
  4889. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/pump/README.md
  4890. โ”œ punycode@1.4.1
  4891. โ”‚ โ”œ licenses: MIT
  4892. โ”‚ โ”œ repository: https://github.com/bestiejs/punycode.js
  4893. โ”‚ โ”œ publisher: Mathias Bynens
  4894. โ”‚ โ”œ url: https://mathiasbynens.be/
  4895. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/punycode
  4896. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/punycode/LICENSE-MIT.txt
  4897. โ”œ q@0.8.12
  4898. โ”‚ โ”œ licenses: MIT
  4899. โ”‚ โ”œ repository: https://github.com/kriskowal/q
  4900. โ”‚ โ”œ publisher: Kris Kowal
  4901. โ”‚ โ”œ email: kris@cixar.com
  4902. โ”‚ โ”œ url: https://github.com/kriskowal
  4903. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/q
  4904. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/q/README.md
  4905. โ”œ q@1.0.1
  4906. โ”‚ โ”œ licenses: MIT
  4907. โ”‚ โ”œ repository: https://github.com/kriskowal/q
  4908. โ”‚ โ”œ publisher: Kris Kowal
  4909. โ”‚ โ”œ email: kris@cixar.com
  4910. โ”‚ โ”œ url: https://github.com/kriskowal
  4911. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/decompress-zip/node_modules/q
  4912. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/decompress-zip/node_modules/q/LICENSE
  4913. โ”œ qs@0.5.6
  4914. โ”‚ โ”œ licenses: MIT*
  4915. โ”‚ โ”œ repository: https://github.com/visionmedia/node-querystring
  4916. โ”‚ โ”œ publisher: TJ Holowaychuk
  4917. โ”‚ โ”œ email: tj@vision-media.ca
  4918. โ”‚ โ”œ url: http://tjholowaychuk.com
  4919. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/tiny-lr-fork/node_modules/qs
  4920. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/tiny-lr-fork/node_modules/qs/Readme.md
  4921. โ”œ qs@1.0.2
  4922. โ”‚ โ”œ licenses: BSD
  4923. โ”‚ โ”œ repository: https://github.com/hapijs/qs
  4924. โ”‚ โ”œ publisher: Nathan LaFreniere
  4925. โ”‚ โ”œ email: quitlahok@gmail.com
  4926. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/request/node_modules/qs
  4927. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/request/node_modules/qs/LICENSE
  4928. โ”œ qs@1.2.2
  4929. โ”‚ โ”œ licenses: BSD
  4930. โ”‚ โ”œ repository: https://github.com/hapijs/qs
  4931. โ”‚ โ”œ publisher: Nathan LaFreniere
  4932. โ”‚ โ”œ email: quitlahok@gmail.com
  4933. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/phantomjs/node_modules/qs
  4934. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/phantomjs/node_modules/qs/LICENSE
  4935. โ”œ qs@2.4.2
  4936. โ”‚ โ”œ licenses: BSD
  4937. โ”‚ โ”œ repository: https://github.com/hapijs/qs
  4938. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/express/node_modules/qs
  4939. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/express/node_modules/qs/LICENSE
  4940. โ”œ qs@3.1.0
  4941. โ”‚ โ”œ licenses: BSD-3-Clause
  4942. โ”‚ โ”œ repository: https://github.com/hapijs/qs
  4943. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/qs
  4944. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/qs/LICENSE
  4945. โ”œ qs@4.0.0
  4946. โ”‚ โ”œ licenses: BSD-3-Clause
  4947. โ”‚ โ”œ repository: https://github.com/hapijs/qs
  4948. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/connect/node_modules/qs
  4949. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/connect/node_modules/qs/LICENSE
  4950. โ”œ qs@5.1.0
  4951. โ”‚ โ”œ licenses: BSD-3-Clause
  4952. โ”‚ โ”œ repository: https://github.com/hapijs/qs
  4953. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/tiny-lr/node_modules/qs
  4954. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/tiny-lr/node_modules/qs/LICENSE
  4955. โ”œ qs@5.2.0
  4956. โ”‚ โ”œ licenses: BSD-3-Clause
  4957. โ”‚ โ”œ repository: https://github.com/hapijs/qs
  4958. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/tiny-lr/node_modules/body-parser/node_modules/qs
  4959. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/tiny-lr/node_modules/body-parser/node_modules/qs/LICENSE
  4960. โ”œ qs@6.3.2
  4961. โ”‚ โ”œ licenses: BSD-3-Clause
  4962. โ”‚ โ”œ repository: https://github.com/ljharb/qs
  4963. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/node-sass/node_modules/qs
  4964. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/node-sass/node_modules/qs/LICENSE
  4965. โ”œ random-bytes@1.0.0
  4966. โ”‚ โ”œ licenses: MIT
  4967. โ”‚ โ”œ repository: https://github.com/crypto-utils/random-bytes
  4968. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/random-bytes
  4969. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/random-bytes/LICENSE
  4970. โ”œ randomatic@1.1.7
  4971. โ”‚ โ”œ licenses: MIT
  4972. โ”‚ โ”œ repository: https://github.com/jonschlinkert/randomatic
  4973. โ”‚ โ”œ publisher: Jon Schlinkert
  4974. โ”‚ โ”œ url: https://github.com/jonschlinkert
  4975. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/randomatic
  4976. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/randomatic/LICENSE
  4977. โ”œ range-parser@1.0.3
  4978. โ”‚ โ”œ licenses: MIT
  4979. โ”‚ โ”œ repository: https://github.com/jshttp/range-parser
  4980. โ”‚ โ”œ publisher: TJ Holowaychuk
  4981. โ”‚ โ”œ email: tj@vision-media.ca
  4982. โ”‚ โ”œ url: http://tjholowaychuk.com
  4983. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/range-parser
  4984. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/range-parser/LICENSE
  4985. โ”œ range-parser@1.2.0
  4986. โ”‚ โ”œ licenses: MIT
  4987. โ”‚ โ”œ repository: https://github.com/jshttp/range-parser
  4988. โ”‚ โ”œ publisher: TJ Holowaychuk
  4989. โ”‚ โ”œ email: tj@vision-media.ca
  4990. โ”‚ โ”œ url: http://tjholowaychuk.com
  4991. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/freddie/node_modules/range-parser
  4992. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/freddie/node_modules/range-parser/LICENSE
  4993. โ”œ raptor-args@1.0.3
  4994. โ”‚ โ”œ licenses: MIT
  4995. โ”‚ โ”œ repository: https://github.com/raptorjs/raptor-args
  4996. โ”‚ โ”œ publisher: Patrick Steele-Idem
  4997. โ”‚ โ”œ email: pnidem@gmail.com
  4998. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/raptor-args
  4999. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/raptor-args/README.md
  5000. โ”œ raw-body@2.1.7
  5001. โ”‚ โ”œ licenses: MIT
  5002. โ”‚ โ”œ repository: https://github.com/stream-utils/raw-body
  5003. โ”‚ โ”œ publisher: Jonathan Ong
  5004. โ”‚ โ”œ email: me@jongleberry.com
  5005. โ”‚ โ”œ url: http://jongleberry.com
  5006. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/raw-body
  5007. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/raw-body/LICENSE
  5008. โ”œ rc@1.2.7
  5009. โ”‚ โ”œ licenses: (BSD-2-Clause OR MIT OR Apache-2.0)
  5010. โ”‚ โ”œ repository: https://github.com/dominictarr/rc
  5011. โ”‚ โ”œ publisher: Dominic Tarr
  5012. โ”‚ โ”œ email: dominic.tarr@gmail.com
  5013. โ”‚ โ”œ url: dominictarr.com
  5014. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/fsevents/node_modules/rc
  5015. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/fsevents/node_modules/rc/LICENSE.APACHE2
  5016. โ”œ rcedit@0.2.0
  5017. โ”‚ โ”œ licenses: MIT
  5018. โ”‚ โ”œ repository: https://github.com/atom/node-rcedit
  5019. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/rcedit
  5020. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/rcedit/LICENSE
  5021. โ”œ read-installed@4.0.3
  5022. โ”‚ โ”œ licenses: ISC
  5023. โ”‚ โ”œ repository: https://github.com/isaacs/read-installed
  5024. โ”‚ โ”œ publisher: Isaac Z. Schlueter
  5025. โ”‚ โ”œ email: i@izs.me
  5026. โ”‚ โ”œ url: http://blog.izs.me/
  5027. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/read-installed
  5028. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/read-installed/LICENSE
  5029. โ”œ read-package-json@2.0.13
  5030. โ”‚ โ”œ licenses: ISC
  5031. โ”‚ โ”œ repository: https://github.com/npm/read-package-json
  5032. โ”‚ โ”œ publisher: Isaac Z. Schlueter
  5033. โ”‚ โ”œ email: i@izs.me
  5034. โ”‚ โ”œ url: http://blog.izs.me/
  5035. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/read-package-json
  5036. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/read-package-json/LICENSE
  5037. โ”œ read-pkg-up@1.0.1
  5038. โ”‚ โ”œ licenses: MIT
  5039. โ”‚ โ”œ repository: https://github.com/sindresorhus/read-pkg-up
  5040. โ”‚ โ”œ publisher: Sindre Sorhus
  5041. โ”‚ โ”œ email: sindresorhus@gmail.com
  5042. โ”‚ โ”œ url: sindresorhus.com
  5043. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/read-pkg-up
  5044. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/read-pkg-up/license
  5045. โ”œ read-pkg@1.1.0
  5046. โ”‚ โ”œ licenses: MIT
  5047. โ”‚ โ”œ repository: https://github.com/sindresorhus/read-pkg
  5048. โ”‚ โ”œ publisher: Sindre Sorhus
  5049. โ”‚ โ”œ email: sindresorhus@gmail.com
  5050. โ”‚ โ”œ url: sindresorhus.com
  5051. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/read-pkg
  5052. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/read-pkg/license
  5053. โ”œ readable-stream@1.0.34
  5054. โ”‚ โ”œ licenses: MIT
  5055. โ”‚ โ”œ repository: https://github.com/isaacs/readable-stream
  5056. โ”‚ โ”œ publisher: Isaac Z. Schlueter
  5057. โ”‚ โ”œ email: i@izs.me
  5058. โ”‚ โ”œ url: http://blog.izs.me/
  5059. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/lazystream/node_modules/readable-stream
  5060. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/lazystream/node_modules/readable-stream/LICENSE
  5061. โ”œ readable-stream@1.1.14
  5062. โ”‚ โ”œ licenses: MIT
  5063. โ”‚ โ”œ repository: https://github.com/isaacs/readable-stream
  5064. โ”‚ โ”œ publisher: Isaac Z. Schlueter
  5065. โ”‚ โ”œ email: i@izs.me
  5066. โ”‚ โ”œ url: http://blog.izs.me/
  5067. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/readable-stream
  5068. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/readable-stream/LICENSE
  5069. โ”œ readable-stream@2.3.3
  5070. โ”‚ โ”œ licenses: MIT
  5071. โ”‚ โ”œ repository: https://github.com/nodejs/readable-stream
  5072. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/readdirp/node_modules/readable-stream
  5073. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/readdirp/node_modules/readable-stream/LICENSE
  5074. โ”œ readable-stream@2.3.6
  5075. โ”‚ โ”œ licenses: MIT
  5076. โ”‚ โ”œ repository: https://github.com/nodejs/readable-stream
  5077. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/fsevents/node_modules/readable-stream
  5078. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/fsevents/node_modules/readable-stream/LICENSE
  5079. โ”œ readdir-scoped-modules@1.0.2
  5080. โ”‚ โ”œ licenses: ISC
  5081. โ”‚ โ”œ repository: https://github.com/npm/readdir-scoped-modules
  5082. โ”‚ โ”œ publisher: Isaac Z. Schlueter
  5083. โ”‚ โ”œ email: i@izs.me
  5084. โ”‚ โ”œ url: http://blog.izs.me/
  5085. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/readdir-scoped-modules
  5086. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/readdir-scoped-modules/LICENSE
  5087. โ”œ readdirp@2.1.0
  5088. โ”‚ โ”œ licenses: MIT
  5089. โ”‚ โ”œ repository: https://github.com/thlorenz/readdirp
  5090. โ”‚ โ”œ publisher: Thorsten Lorenz
  5091. โ”‚ โ”œ email: thlorenz@gmx.de
  5092. โ”‚ โ”œ url: thlorenz.com
  5093. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/readdirp
  5094. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/readdirp/LICENSE
  5095. โ”œ redent@1.0.0
  5096. โ”‚ โ”œ licenses: MIT
  5097. โ”‚ โ”œ repository: https://github.com/sindresorhus/redent
  5098. โ”‚ โ”œ publisher: Sindre Sorhus
  5099. โ”‚ โ”œ email: sindresorhus@gmail.com
  5100. โ”‚ โ”œ url: sindresorhus.com
  5101. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/redent
  5102. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/redent/license
  5103. โ”œ regex-cache@0.4.4
  5104. โ”‚ โ”œ licenses: MIT
  5105. โ”‚ โ”œ repository: https://github.com/jonschlinkert/regex-cache
  5106. โ”‚ โ”œ publisher: Jon Schlinkert
  5107. โ”‚ โ”œ url: https://github.com/jonschlinkert
  5108. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/regex-cache
  5109. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/regex-cache/LICENSE
  5110. โ”œ regex-not@1.0.0
  5111. โ”‚ โ”œ licenses: MIT
  5112. โ”‚ โ”œ repository: https://github.com/jonschlinkert/regex-not
  5113. โ”‚ โ”œ publisher: Jon Schlinkert
  5114. โ”‚ โ”œ url: https://github.com/jonschlinkert
  5115. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/regex-not
  5116. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/regex-not/LICENSE
  5117. โ”œ relateurl@0.2.7
  5118. โ”‚ โ”œ licenses: MIT
  5119. โ”‚ โ”œ repository: https://github.com/stevenvachon/relateurl
  5120. โ”‚ โ”œ publisher: Steven Vachon
  5121. โ”‚ โ”œ email: contact@svachon.com
  5122. โ”‚ โ”œ url: http://www.svachon.com/
  5123. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/relateurl
  5124. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/relateurl/license
  5125. โ”œ remove-trailing-separator@1.1.0
  5126. โ”‚ โ”œ licenses: ISC
  5127. โ”‚ โ”œ repository: https://github.com/darsain/remove-trailing-separator
  5128. โ”‚ โ”œ publisher: darsain
  5129. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/remove-trailing-separator
  5130. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/remove-trailing-separator/license
  5131. โ”œ repeat-element@1.1.2
  5132. โ”‚ โ”œ licenses: MIT
  5133. โ”‚ โ”œ repository: https://github.com/jonschlinkert/repeat-element
  5134. โ”‚ โ”œ publisher: Jon Schlinkert
  5135. โ”‚ โ”œ url: https://github.com/jonschlinkert
  5136. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/repeat-element
  5137. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/repeat-element/LICENSE
  5138. โ”œ repeat-string@0.2.2
  5139. โ”‚ โ”œ licenses: MIT
  5140. โ”‚ โ”œ repository: https://github.com/jonschlinkert/repeat-string
  5141. โ”‚ โ”œ publisher: Jon Schlinkert
  5142. โ”‚ โ”œ url: http://github.com/jonschlinkert/
  5143. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/expand-braces/node_modules/repeat-string
  5144. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/expand-braces/node_modules/repeat-string/LICENSE-MIT
  5145. โ”œ repeat-string@1.6.1
  5146. โ”‚ โ”œ licenses: MIT
  5147. โ”‚ โ”œ repository: https://github.com/jonschlinkert/repeat-string
  5148. โ”‚ โ”œ publisher: Jon Schlinkert
  5149. โ”‚ โ”œ url: http://github.com/jonschlinkert
  5150. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/repeat-string
  5151. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/repeat-string/LICENSE
  5152. โ”œ repeating@2.0.1
  5153. โ”‚ โ”œ licenses: MIT
  5154. โ”‚ โ”œ repository: https://github.com/sindresorhus/repeating
  5155. โ”‚ โ”œ publisher: Sindre Sorhus
  5156. โ”‚ โ”œ email: sindresorhus@gmail.com
  5157. โ”‚ โ”œ url: sindresorhus.com
  5158. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/repeating
  5159. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/repeating/license
  5160. โ”œ request-progress@0.3.1
  5161. โ”‚ โ”œ licenses: MIT
  5162. โ”‚ โ”œ repository: https://github.com/IndigoUnited/node-request-progress
  5163. โ”‚ โ”œ publisher: IndigoUnited
  5164. โ”‚ โ”œ email: hello@indigounited.com
  5165. โ”‚ โ”œ url: http://indigounited.com
  5166. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/request-progress
  5167. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/request-progress/LICENSE
  5168. โ”œ request@2.40.0
  5169. โ”‚ โ”œ licenses: Apache-2.0
  5170. โ”‚ โ”œ repository: https://github.com/mikeal/request
  5171. โ”‚ โ”œ publisher: Mikeal Rogers
  5172. โ”‚ โ”œ email: mikeal.rogers@gmail.com
  5173. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/request
  5174. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/request/LICENSE
  5175. โ”œ request@2.42.0
  5176. โ”‚ โ”œ licenses: Apache-2.0
  5177. โ”‚ โ”œ repository: https://github.com/mikeal/request
  5178. โ”‚ โ”œ publisher: Mikeal Rogers
  5179. โ”‚ โ”œ email: mikeal.rogers@gmail.com
  5180. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/phantomjs/node_modules/request
  5181. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/phantomjs/node_modules/request/LICENSE
  5182. โ”œ request@2.79.0
  5183. โ”‚ โ”œ licenses: Apache-2.0
  5184. โ”‚ โ”œ repository: https://github.com/request/request
  5185. โ”‚ โ”œ publisher: Mikeal Rogers
  5186. โ”‚ โ”œ email: mikeal.rogers@gmail.com
  5187. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/node-sass/node_modules/request
  5188. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/node-sass/node_modules/request/LICENSE
  5189. โ”œ require-directory@2.1.1
  5190. โ”‚ โ”œ licenses: MIT
  5191. โ”‚ โ”œ repository: https://github.com/troygoode/node-require-directory
  5192. โ”‚ โ”œ publisher: Troy Goode
  5193. โ”‚ โ”œ email: troygoode@gmail.com
  5194. โ”‚ โ”œ url: http://github.com/troygoode/
  5195. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/require-directory
  5196. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/require-directory/LICENSE
  5197. โ”œ require-main-filename@1.0.1
  5198. โ”‚ โ”œ licenses: ISC
  5199. โ”‚ โ”œ repository: https://github.com/yargs/require-main-filename
  5200. โ”‚ โ”œ publisher: Ben Coe
  5201. โ”‚ โ”œ email: ben@npmjs.com
  5202. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/require-main-filename
  5203. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/require-main-filename/LICENSE.txt
  5204. โ”œ requires-port@1.0.0
  5205. โ”‚ โ”œ licenses: MIT
  5206. โ”‚ โ”œ repository: https://github.com/unshiftio/requires-port
  5207. โ”‚ โ”œ publisher: Arnout Kazemier
  5208. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/requires-port
  5209. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/requires-port/LICENSE
  5210. โ”œ resolve-dir@1.0.1
  5211. โ”‚ โ”œ licenses: MIT
  5212. โ”‚ โ”œ repository: https://github.com/jonschlinkert/resolve-dir
  5213. โ”‚ โ”œ publisher: Jon Schlinkert
  5214. โ”‚ โ”œ url: https://github.com/jonschlinkert
  5215. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/resolve-dir
  5216. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/resolve-dir/LICENSE
  5217. โ”œ resolve-url@0.2.1
  5218. โ”‚ โ”œ licenses: MIT
  5219. โ”‚ โ”œ repository: https://github.com/lydell/resolve-url
  5220. โ”‚ โ”œ publisher: Simon Lydell
  5221. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/resolve-url
  5222. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/resolve-url/LICENSE
  5223. โ”œ resolve@1.1.7
  5224. โ”‚ โ”œ licenses: MIT
  5225. โ”‚ โ”œ repository: https://github.com/substack/node-resolve
  5226. โ”‚ โ”œ publisher: James Halliday
  5227. โ”‚ โ”œ email: mail@substack.net
  5228. โ”‚ โ”œ url: http://substack.net
  5229. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/proxyquire/node_modules/resolve
  5230. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/proxyquire/node_modules/resolve/LICENSE
  5231. โ”œ resolve@1.5.0
  5232. โ”‚ โ”œ licenses: MIT
  5233. โ”‚ โ”œ repository: https://github.com/browserify/node-resolve
  5234. โ”‚ โ”œ publisher: James Halliday
  5235. โ”‚ โ”œ email: mail@substack.net
  5236. โ”‚ โ”œ url: http://substack.net
  5237. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/resolve
  5238. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/resolve/LICENSE
  5239. โ”œ response-time@2.3.2
  5240. โ”‚ โ”œ licenses: MIT
  5241. โ”‚ โ”œ repository: https://github.com/expressjs/response-time
  5242. โ”‚ โ”œ publisher: Jonathan Ong
  5243. โ”‚ โ”œ email: me@jongleberry.com
  5244. โ”‚ โ”œ url: http://jongleberry.com
  5245. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/response-time
  5246. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/response-time/LICENSE
  5247. โ”œ right-align@0.1.3
  5248. โ”‚ โ”œ licenses: MIT
  5249. โ”‚ โ”œ repository: https://github.com/jonschlinkert/right-align
  5250. โ”‚ โ”œ publisher: Jon Schlinkert
  5251. โ”‚ โ”œ url: https://github.com/jonschlinkert
  5252. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/right-align
  5253. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/right-align/LICENSE
  5254. โ”œ rimraf@2.2.8
  5255. โ”‚ โ”œ licenses: MIT
  5256. โ”‚ โ”œ repository: https://github.com/isaacs/rimraf
  5257. โ”‚ โ”œ publisher: Isaac Z. Schlueter
  5258. โ”‚ โ”œ email: i@izs.me
  5259. โ”‚ โ”œ url: http://blog.izs.me/
  5260. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/rimraf
  5261. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/rimraf/LICENSE
  5262. โ”œ rimraf@2.6.2
  5263. โ”‚ โ”œ licenses: ISC
  5264. โ”‚ โ”œ repository: https://github.com/isaacs/rimraf
  5265. โ”‚ โ”œ publisher: Isaac Z. Schlueter
  5266. โ”‚ โ”œ email: i@izs.me
  5267. โ”‚ โ”œ url: http://blog.izs.me/
  5268. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/grunt-contrib-clean/node_modules/rimraf
  5269. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/grunt-contrib-clean/node_modules/rimraf/LICENSE
  5270. โ”œ rndm@1.2.0
  5271. โ”‚ โ”œ licenses: MIT
  5272. โ”‚ โ”œ repository: https://github.com/crypto-utils/rndm
  5273. โ”‚ โ”œ publisher: Jonathan Ong
  5274. โ”‚ โ”œ email: me@jongleberry.com
  5275. โ”‚ โ”œ url: http://jongleberry.com
  5276. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/rndm
  5277. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/rndm/LICENSE
  5278. โ”œ safe-buffer@5.1.1
  5279. โ”‚ โ”œ licenses: MIT
  5280. โ”‚ โ”œ repository: https://github.com/feross/safe-buffer
  5281. โ”‚ โ”œ publisher: Feross Aboukhadijeh
  5282. โ”‚ โ”œ email: feross@feross.org
  5283. โ”‚ โ”œ url: http://feross.org
  5284. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/safe-buffer
  5285. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/safe-buffer/LICENSE
  5286. โ”œ safer-buffer@2.1.2
  5287. โ”‚ โ”œ licenses: MIT
  5288. โ”‚ โ”œ repository: https://github.com/ChALkeR/safer-buffer
  5289. โ”‚ โ”œ publisher: Nikita Skovoroda
  5290. โ”‚ โ”œ email: chalkerx@gmail.com
  5291. โ”‚ โ”œ url: https://github.com/ChALkeR
  5292. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/fsevents/node_modules/safer-buffer
  5293. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/fsevents/node_modules/safer-buffer/LICENSE
  5294. โ”œ sass-graph@2.2.4
  5295. โ”‚ โ”œ licenses: MIT
  5296. โ”‚ โ”œ repository: https://github.com/xzyfer/sass-graph
  5297. โ”‚ โ”œ publisher: xzyfer
  5298. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/sass-graph
  5299. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/sass-graph/readme.md
  5300. โ”œ sax@1.2.4
  5301. โ”‚ โ”œ licenses: ISC
  5302. โ”‚ โ”œ repository: https://github.com/isaacs/sax-js
  5303. โ”‚ โ”œ publisher: Isaac Z. Schlueter
  5304. โ”‚ โ”œ email: i@izs.me
  5305. โ”‚ โ”œ url: http://blog.izs.me/
  5306. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/fsevents/node_modules/sax
  5307. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/fsevents/node_modules/sax/LICENSE
  5308. โ”œ scss-tokenizer@0.2.3
  5309. โ”‚ โ”œ licenses: MIT
  5310. โ”‚ โ”œ repository: https://github.com/sasstools/scss-tokenizer
  5311. โ”‚ โ”œ publisher: xzyfer
  5312. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/scss-tokenizer
  5313. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/scss-tokenizer/LICENSE
  5314. โ”œ searchjs@0.11.0
  5315. โ”‚ โ”œ licenses: MIT*
  5316. โ”‚ โ”œ repository: https://github.com/deitch/searchjs
  5317. โ”‚ โ”œ publisher: Avi Deitcher
  5318. โ”‚ โ”œ url: https://github.com/deitch
  5319. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/searchjs
  5320. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/searchjs/LICENSE
  5321. โ”œ seedrandom@2.4.3
  5322. โ”‚ โ”œ licenses: MIT
  5323. โ”‚ โ”œ repository: https://github.com/davidbau/seedrandom
  5324. โ”‚ โ”œ publisher: David Bau
  5325. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/seedrandom
  5326. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/seedrandom/README.md
  5327. โ”œ semver@1.1.4
  5328. โ”‚ โ”œ licenses: MIT
  5329. โ”‚ โ”œ repository: https://github.com/isaacs/node-semver
  5330. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/lib-parent-grunt/node_modules/semver
  5331. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/lib-parent-grunt/node_modules/semver/LICENSE
  5332. โ”œ semver@2.3.2
  5333. โ”‚ โ”œ licenses: BSD*
  5334. โ”‚ โ”œ repository: https://github.com/isaacs/node-semver
  5335. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/node-webkit-builder/node_modules/semver
  5336. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/node-webkit-builder/node_modules/semver/LICENSE
  5337. โ”œ semver@4.3.6
  5338. โ”‚ โ”œ licenses: ISC
  5339. โ”‚ โ”œ repository: https://github.com/npm/node-semver
  5340. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/log4js/node_modules/semver
  5341. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/log4js/node_modules/semver/LICENSE
  5342. โ”œ semver@5.3.0
  5343. โ”‚ โ”œ licenses: ISC
  5344. โ”‚ โ”œ repository: https://github.com/npm/node-semver
  5345. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/semver
  5346. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/semver/LICENSE
  5347. โ”œ semver@5.5.0
  5348. โ”‚ โ”œ licenses: ISC
  5349. โ”‚ โ”œ repository: https://github.com/npm/node-semver
  5350. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/fsevents/node_modules/semver
  5351. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/fsevents/node_modules/semver/LICENSE
  5352. โ”œ semver@5.6.0
  5353. โ”‚ โ”œ licenses: ISC
  5354. โ”‚ โ”œ repository: https://github.com/npm/node-semver
  5355. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/license-checker/node_modules/semver
  5356. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/license-checker/node_modules/semver/LICENSE
  5357. โ”œ send@0.12.3
  5358. โ”‚ โ”œ licenses: MIT
  5359. โ”‚ โ”œ repository: https://github.com/pillarjs/send
  5360. โ”‚ โ”œ publisher: TJ Holowaychuk
  5361. โ”‚ โ”œ email: tj@vision-media.ca
  5362. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/send
  5363. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/send/LICENSE
  5364. โ”œ send@0.13.2
  5365. โ”‚ โ”œ licenses: MIT
  5366. โ”‚ โ”œ repository: https://github.com/pillarjs/send
  5367. โ”‚ โ”œ publisher: TJ Holowaychuk
  5368. โ”‚ โ”œ email: tj@vision-media.ca
  5369. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/connect/node_modules/send
  5370. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/connect/node_modules/send/LICENSE
  5371. โ”œ send@0.16.1
  5372. โ”‚ โ”œ licenses: MIT
  5373. โ”‚ โ”œ repository: https://github.com/pillarjs/send
  5374. โ”‚ โ”œ publisher: TJ Holowaychuk
  5375. โ”‚ โ”œ email: tj@vision-media.ca
  5376. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/freddie/node_modules/send
  5377. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/freddie/node_modules/send/LICENSE
  5378. โ”œ sentence-case@2.1.1
  5379. โ”‚ โ”œ licenses: MIT
  5380. โ”‚ โ”œ repository: https://github.com/blakeembrey/sentence-case
  5381. โ”‚ โ”œ publisher: Blake Embrey
  5382. โ”‚ โ”œ email: hello@blakeembrey.com
  5383. โ”‚ โ”œ url: http://blakeembrey.me
  5384. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/sentence-case
  5385. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/sentence-case/LICENSE
  5386. โ”œ serve-favicon@2.3.2
  5387. โ”‚ โ”œ licenses: MIT
  5388. โ”‚ โ”œ repository: https://github.com/expressjs/serve-favicon
  5389. โ”‚ โ”œ publisher: Douglas Christopher Wilson
  5390. โ”‚ โ”œ email: doug@somethingdoug.com
  5391. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/serve-favicon
  5392. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/serve-favicon/LICENSE
  5393. โ”œ serve-index@1.7.3
  5394. โ”‚ โ”œ licenses: MIT
  5395. โ”‚ โ”œ repository: https://github.com/expressjs/serve-index
  5396. โ”‚ โ”œ publisher: Douglas Christopher Wilson
  5397. โ”‚ โ”œ email: doug@somethingdoug.com
  5398. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/serve-index
  5399. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/serve-index/LICENSE
  5400. โ”œ serve-static@1.10.3
  5401. โ”‚ โ”œ licenses: MIT
  5402. โ”‚ โ”œ repository: https://github.com/expressjs/serve-static
  5403. โ”‚ โ”œ publisher: Douglas Christopher Wilson
  5404. โ”‚ โ”œ email: doug@somethingdoug.com
  5405. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/connect/node_modules/serve-static
  5406. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/connect/node_modules/serve-static/LICENSE
  5407. โ”œ serve-static@1.13.1
  5408. โ”‚ โ”œ licenses: MIT
  5409. โ”‚ โ”œ repository: https://github.com/expressjs/serve-static
  5410. โ”‚ โ”œ publisher: Douglas Christopher Wilson
  5411. โ”‚ โ”œ email: doug@somethingdoug.com
  5412. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/freddie/node_modules/serve-static
  5413. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/freddie/node_modules/serve-static/LICENSE
  5414. โ”œ serve-static@1.9.3
  5415. โ”‚ โ”œ licenses: MIT
  5416. โ”‚ โ”œ repository: https://github.com/expressjs/serve-static
  5417. โ”‚ โ”œ publisher: Douglas Christopher Wilson
  5418. โ”‚ โ”œ email: doug@somethingdoug.com
  5419. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/serve-static
  5420. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/serve-static/LICENSE
  5421. โ”œ set-blocking@2.0.0
  5422. โ”‚ โ”œ licenses: ISC
  5423. โ”‚ โ”œ repository: https://github.com/yargs/set-blocking
  5424. โ”‚ โ”œ publisher: Ben Coe
  5425. โ”‚ โ”œ email: ben@npmjs.com
  5426. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/set-blocking
  5427. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/set-blocking/LICENSE.txt
  5428. โ”œ set-getter@0.1.0
  5429. โ”‚ โ”œ licenses: MIT
  5430. โ”‚ โ”œ repository: https://github.com/doowb/set-getter
  5431. โ”‚ โ”œ publisher: Brian Woodward
  5432. โ”‚ โ”œ url: https://github.com/doowb
  5433. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/set-getter
  5434. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/set-getter/LICENSE
  5435. โ”œ set-immediate-shim@1.0.1
  5436. โ”‚ โ”œ licenses: MIT
  5437. โ”‚ โ”œ repository: https://github.com/sindresorhus/set-immediate-shim
  5438. โ”‚ โ”œ publisher: Sindre Sorhus
  5439. โ”‚ โ”œ email: sindresorhus@gmail.com
  5440. โ”‚ โ”œ url: sindresorhus.com
  5441. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/set-immediate-shim
  5442. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/set-immediate-shim/readme.md
  5443. โ”œ set-value@0.4.3
  5444. โ”‚ โ”œ licenses: MIT
  5445. โ”‚ โ”œ repository: https://github.com/jonschlinkert/set-value
  5446. โ”‚ โ”œ publisher: Jon Schlinkert
  5447. โ”‚ โ”œ url: https://github.com/jonschlinkert
  5448. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/union-value/node_modules/set-value
  5449. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/union-value/node_modules/set-value/LICENSE
  5450. โ”œ set-value@2.0.0
  5451. โ”‚ โ”œ licenses: MIT
  5452. โ”‚ โ”œ repository: https://github.com/jonschlinkert/set-value
  5453. โ”‚ โ”œ publisher: Jon Schlinkert
  5454. โ”‚ โ”œ url: https://github.com/jonschlinkert
  5455. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/set-value
  5456. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/set-value/LICENSE
  5457. โ”œ setprototypeof@1.0.3
  5458. โ”‚ โ”œ licenses: ISC
  5459. โ”‚ โ”œ repository: https://github.com/wesleytodd/setprototypeof
  5460. โ”‚ โ”œ publisher: Wes Todd
  5461. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/setprototypeof
  5462. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/setprototypeof/LICENSE
  5463. โ”œ shelljs@0.3.0
  5464. โ”‚ โ”œ licenses: BSD*
  5465. โ”‚ โ”œ repository: https://github.com/arturadib/shelljs
  5466. โ”‚ โ”œ publisher: Artur Adib
  5467. โ”‚ โ”œ email: aadib@mozilla.com
  5468. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/lib-parent-grunt/node_modules/shelljs
  5469. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/lib-parent-grunt/node_modules/shelljs/LICENSE
  5470. โ”œ sigmund@1.0.1
  5471. โ”‚ โ”œ licenses: ISC
  5472. โ”‚ โ”œ repository: https://github.com/isaacs/sigmund
  5473. โ”‚ โ”œ publisher: Isaac Z. Schlueter
  5474. โ”‚ โ”œ email: i@izs.me
  5475. โ”‚ โ”œ url: http://blog.izs.me/
  5476. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/sigmund
  5477. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/sigmund/LICENSE
  5478. โ”œ signal-exit@3.0.2
  5479. โ”‚ โ”œ licenses: ISC
  5480. โ”‚ โ”œ repository: https://github.com/tapjs/signal-exit
  5481. โ”‚ โ”œ publisher: Ben Coe
  5482. โ”‚ โ”œ email: ben@npmjs.com
  5483. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/signal-exit
  5484. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/signal-exit/LICENSE.txt
  5485. โ”œ simple-fmt@0.1.0
  5486. โ”‚ โ”œ licenses: MIT
  5487. โ”‚ โ”œ repository: https://github.com/olov/simple-fmt
  5488. โ”‚ โ”œ publisher: Olov Lassus
  5489. โ”‚ โ”œ email: olov.lassus@gmail.com
  5490. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/simple-fmt
  5491. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/simple-fmt/LICENSE
  5492. โ”œ simple-glob@0.1.0
  5493. โ”‚ โ”œ licenses: MIT
  5494. โ”‚ โ”œ repository: https://github.com/jedmao/simple-glob
  5495. โ”‚ โ”œ publisher: "Cowboy" Ben Alman
  5496. โ”‚ โ”œ url: http://benalman.com/
  5497. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/simple-glob
  5498. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/simple-glob/LICENSE-MIT
  5499. โ”œ simple-is@0.2.0
  5500. โ”‚ โ”œ licenses: MIT
  5501. โ”‚ โ”œ repository: https://github.com/olov/simple-is
  5502. โ”‚ โ”œ publisher: Olov Lassus
  5503. โ”‚ โ”œ email: olov.lassus@gmail.com
  5504. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/simple-is
  5505. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/simple-is/LICENSE
  5506. โ”œ slash@1.0.0
  5507. โ”‚ โ”œ licenses: MIT
  5508. โ”‚ โ”œ repository: https://github.com/sindresorhus/slash
  5509. โ”‚ โ”œ publisher: Sindre Sorhus
  5510. โ”‚ โ”œ email: sindresorhus@gmail.com
  5511. โ”‚ โ”œ url: http://sindresorhus.com
  5512. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/slash
  5513. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/slash/readme.md
  5514. โ”œ slide@1.1.6
  5515. โ”‚ โ”œ licenses: ISC
  5516. โ”‚ โ”œ repository: https://github.com/isaacs/slide-flow-control
  5517. โ”‚ โ”œ publisher: Isaac Z. Schlueter
  5518. โ”‚ โ”œ email: i@izs.me
  5519. โ”‚ โ”œ url: http://blog.izs.me/
  5520. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/slide
  5521. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/slide/LICENSE
  5522. โ”œ snake-case@2.1.0
  5523. โ”‚ โ”œ licenses: MIT
  5524. โ”‚ โ”œ repository: https://github.com/blakeembrey/snake-case
  5525. โ”‚ โ”œ publisher: Blake Embrey
  5526. โ”‚ โ”œ email: hello@blakeembrey.com
  5527. โ”‚ โ”œ url: http://blakeembrey.me
  5528. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/snake-case
  5529. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/snake-case/LICENSE
  5530. โ”œ snapdragon-node@2.1.1
  5531. โ”‚ โ”œ licenses: MIT
  5532. โ”‚ โ”œ repository: https://github.com/jonschlinkert/snapdragon-node
  5533. โ”‚ โ”œ publisher: Jon Schlinkert
  5534. โ”‚ โ”œ url: https://github.com/jonschlinkert
  5535. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/snapdragon-node
  5536. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/snapdragon-node/LICENSE
  5537. โ”œ snapdragon-util@3.0.1
  5538. โ”‚ โ”œ licenses: MIT
  5539. โ”‚ โ”œ repository: https://github.com/jonschlinkert/snapdragon-util
  5540. โ”‚ โ”œ publisher: Jon Schlinkert
  5541. โ”‚ โ”œ url: https://github.com/jonschlinkert
  5542. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/snapdragon-util
  5543. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/snapdragon-util/LICENSE
  5544. โ”œ snapdragon@0.8.1
  5545. โ”‚ โ”œ licenses: MIT
  5546. โ”‚ โ”œ repository: https://github.com/jonschlinkert/snapdragon
  5547. โ”‚ โ”œ publisher: Jon Schlinkert
  5548. โ”‚ โ”œ url: https://github.com/jonschlinkert
  5549. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/snapdragon
  5550. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/snapdragon/LICENSE
  5551. โ”œ sntp@0.2.4
  5552. โ”‚ โ”œ licenses: BSD
  5553. โ”‚ โ”œ repository: https://github.com/hueniverse/sntp
  5554. โ”‚ โ”œ publisher: Eran Hammer
  5555. โ”‚ โ”œ email: eran@hueniverse.com
  5556. โ”‚ โ”œ url: http://hueniverse.com
  5557. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/sntp
  5558. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/sntp/LICENSE
  5559. โ”œ sntp@1.0.9
  5560. โ”‚ โ”œ licenses: BSD
  5561. โ”‚ โ”œ repository: https://github.com/hueniverse/sntp
  5562. โ”‚ โ”œ publisher: Eran Hammer
  5563. โ”‚ โ”œ email: eran@hammer.io
  5564. โ”‚ โ”œ url: http://hueniverse.com
  5565. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/node-sass/node_modules/sntp
  5566. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/node-sass/node_modules/sntp/LICENSE
  5567. โ”œ socket.io-adapter@0.3.1
  5568. โ”‚ โ”œ licenses: MIT*
  5569. โ”‚ โ”œ repository: https://github.com/Automattic/socket.io-adapter
  5570. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/socket.io-adapter
  5571. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/socket.io-adapter/Readme.md
  5572. โ”œ socket.io-client@1.3.7
  5573. โ”‚ โ”œ licenses: MIT
  5574. โ”‚ โ”œ repository: https://github.com/Automattic/socket.io-client
  5575. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/socket.io-client
  5576. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/socket.io-client/LICENSE
  5577. โ”œ socket.io-parser@2.2.2
  5578. โ”‚ โ”œ licenses: MIT
  5579. โ”‚ โ”œ repository: https://github.com/Automattic/socket.io-parser
  5580. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/socket.io-adapter/node_modules/socket.io-parser
  5581. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/socket.io-adapter/node_modules/socket.io-parser/Readme.md
  5582. โ”œ socket.io-parser@2.2.4
  5583. โ”‚ โ”œ licenses: MIT
  5584. โ”‚ โ”œ repository: https://github.com/Automattic/socket.io-parser
  5585. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/socket.io-parser
  5586. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/socket.io-parser/Readme.md
  5587. โ”œ socket.io@1.3.7
  5588. โ”‚ โ”œ licenses: MIT*
  5589. โ”‚ โ”œ repository: https://github.com/Automattic/socket.io
  5590. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/socket.io
  5591. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/socket.io/LICENSE
  5592. โ”œ source-map-resolve@0.5.1
  5593. โ”‚ โ”œ licenses: MIT
  5594. โ”‚ โ”œ repository: https://github.com/lydell/source-map-resolve
  5595. โ”‚ โ”œ publisher: Simon Lydell
  5596. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/source-map-resolve
  5597. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/source-map-resolve/LICENSE
  5598. โ”œ source-map-url@0.4.0
  5599. โ”‚ โ”œ licenses: MIT
  5600. โ”‚ โ”œ repository: https://github.com/lydell/source-map-url
  5601. โ”‚ โ”œ publisher: Simon Lydell
  5602. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/source-map-url
  5603. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/source-map-url/LICENSE
  5604. โ”œ source-map@0.2.0
  5605. โ”‚ โ”œ licenses: BSD
  5606. โ”‚ โ”œ repository: https://github.com/mozilla/source-map
  5607. โ”‚ โ”œ publisher: Nick Fitzgerald
  5608. โ”‚ โ”œ email: nfitzgerald@mozilla.com
  5609. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/escodegen/node_modules/source-map
  5610. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/escodegen/node_modules/source-map/LICENSE
  5611. โ”œ source-map@0.4.4
  5612. โ”‚ โ”œ licenses: BSD-3-Clause
  5613. โ”‚ โ”œ repository: https://github.com/mozilla/source-map
  5614. โ”‚ โ”œ publisher: Nick Fitzgerald
  5615. โ”‚ โ”œ email: nfitzgerald@mozilla.com
  5616. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/html-minifier/node_modules/source-map
  5617. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/html-minifier/node_modules/source-map/README.md
  5618. โ”œ source-map@0.5.7
  5619. โ”‚ โ”œ licenses: BSD-3-Clause
  5620. โ”‚ โ”œ repository: https://github.com/mozilla/source-map
  5621. โ”‚ โ”œ publisher: Nick Fitzgerald
  5622. โ”‚ โ”œ email: nfitzgerald@mozilla.com
  5623. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/source-map
  5624. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/source-map/LICENSE
  5625. โ”œ source-map@0.6.1
  5626. โ”‚ โ”œ licenses: BSD-3-Clause
  5627. โ”‚ โ”œ repository: https://github.com/mozilla/source-map
  5628. โ”‚ โ”œ publisher: Nick Fitzgerald
  5629. โ”‚ โ”œ email: nfitzgerald@mozilla.com
  5630. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/uglify-js/node_modules/source-map
  5631. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/uglify-js/node_modules/source-map/LICENSE
  5632. โ”œ spdx-compare@1.0.0
  5633. โ”‚ โ”œ licenses: MIT
  5634. โ”‚ โ”œ repository: https://github.com/kemitchell/spdx-compare.js
  5635. โ”‚ โ”œ publisher: Kyle E. Mitchell
  5636. โ”‚ โ”œ email: kyle@kemitchell.com
  5637. โ”‚ โ”œ url: https://kemitchell.com
  5638. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/spdx-compare
  5639. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/spdx-compare/LICENSE.md
  5640. โ”œ spdx-correct@1.0.2
  5641. โ”‚ โ”œ licenses: Apache-2.0
  5642. โ”‚ โ”œ repository: https://github.com/kemitchell/spdx-correct.js
  5643. โ”‚ โ”œ publisher: Kyle E. Mitchell
  5644. โ”‚ โ”œ email: kyle@kemitchell.com
  5645. โ”‚ โ”œ url: https://kemitchell.com
  5646. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/spdx-correct
  5647. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/spdx-correct/LICENSE
  5648. โ”œ spdx-correct@3.1.0
  5649. โ”‚ โ”œ licenses: Apache-2.0
  5650. โ”‚ โ”œ repository: https://github.com/jslicense/spdx-correct.js
  5651. โ”‚ โ”œ publisher: Kyle E. Mitchell
  5652. โ”‚ โ”œ email: kyle@kemitchell.com
  5653. โ”‚ โ”œ url: https://kemitchell.com
  5654. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/license-checker/node_modules/spdx-correct
  5655. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/license-checker/node_modules/spdx-correct/LICENSE
  5656. โ”œ spdx-exceptions@2.2.0
  5657. โ”‚ โ”œ licenses: CC-BY-3.0
  5658. โ”‚ โ”œ repository: https://github.com/kemitchell/spdx-exceptions.json
  5659. โ”‚ โ”œ publisher: The Linux Foundation
  5660. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/spdx-exceptions
  5661. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/spdx-exceptions/README.md
  5662. โ”œ spdx-expression-parse@1.0.4
  5663. โ”‚ โ”œ licenses: (MIT AND CC-BY-3.0)
  5664. โ”‚ โ”œ repository: https://github.com/kemitchell/spdx-expression-parse.js
  5665. โ”‚ โ”œ publisher: Kyle E. Mitchell
  5666. โ”‚ โ”œ email: kyle@kemitchell.com
  5667. โ”‚ โ”œ url: http://kemitchell.com
  5668. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/spdx-expression-parse
  5669. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/spdx-expression-parse/LICENSE
  5670. โ”œ spdx-expression-parse@3.0.0
  5671. โ”‚ โ”œ licenses: MIT
  5672. โ”‚ โ”œ repository: https://github.com/jslicense/spdx-expression-parse.js
  5673. โ”‚ โ”œ publisher: Kyle E. Mitchell
  5674. โ”‚ โ”œ email: kyle@kemitchell.com
  5675. โ”‚ โ”œ url: http://kemitchell.com
  5676. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/spdx-compare/node_modules/spdx-expression-parse
  5677. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/spdx-compare/node_modules/spdx-expression-parse/LICENSE
  5678. โ”œ spdx-license-ids@1.2.2
  5679. โ”‚ โ”œ licenses: Unlicense
  5680. โ”‚ โ”œ repository: https://github.com/shinnn/spdx-license-ids
  5681. โ”‚ โ”œ publisher: Shinnosuke Watanabe
  5682. โ”‚ โ”œ url: https://github.com/shinnn
  5683. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/spdx-license-ids
  5684. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/spdx-license-ids/LICENSE
  5685. โ”œ spdx-license-ids@3.0.3
  5686. โ”‚ โ”œ licenses: CC0-1.0
  5687. โ”‚ โ”œ repository: https://github.com/shinnn/spdx-license-ids
  5688. โ”‚ โ”œ publisher: Shinnosuke Watanabe
  5689. โ”‚ โ”œ url: https://github.com/shinnn
  5690. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/spdx-compare/node_modules/spdx-license-ids
  5691. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/spdx-compare/node_modules/spdx-license-ids/README.md
  5692. โ”œ spdx-ranges@2.1.0
  5693. โ”‚ โ”œ licenses: CC-BY-3.0
  5694. โ”‚ โ”œ repository: https://github.com/kemitchell/spdx-ranges.js
  5695. โ”‚ โ”œ publisher: The Linux Foundation
  5696. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/spdx-ranges
  5697. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/spdx-ranges/LICENSE.md
  5698. โ”œ spdx-satisfies@4.0.1
  5699. โ”‚ โ”œ licenses: MIT
  5700. โ”‚ โ”œ repository: https://github.com/kemitchell/spdx-satisfies.js
  5701. โ”‚ โ”œ publisher: Kyle E. Mitchell
  5702. โ”‚ โ”œ email: kyle@kemitchell.com
  5703. โ”‚ โ”œ url: https://kemitchell.com
  5704. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/spdx-satisfies
  5705. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/spdx-satisfies/LICENSE
  5706. โ”œ split-string@3.1.0
  5707. โ”‚ โ”œ licenses: MIT
  5708. โ”‚ โ”œ repository: https://github.com/jonschlinkert/split-string
  5709. โ”‚ โ”œ publisher: Jon Schlinkert
  5710. โ”‚ โ”œ url: https://github.com/jonschlinkert
  5711. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/split-string
  5712. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/split-string/LICENSE
  5713. โ”œ sprintf-js@1.0.3
  5714. โ”‚ โ”œ licenses: BSD-3-Clause
  5715. โ”‚ โ”œ repository: https://github.com/alexei/sprintf.js
  5716. โ”‚ โ”œ publisher: Alexandru Marasteanu
  5717. โ”‚ โ”œ email: hello@alexei.ro
  5718. โ”‚ โ”œ url: http://alexei.ro/
  5719. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/sprintf-js
  5720. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/sprintf-js/LICENSE
  5721. โ”œ sshpk@1.13.1
  5722. โ”‚ โ”œ licenses: MIT
  5723. โ”‚ โ”œ repository: https://github.com/arekinath/node-sshpk
  5724. โ”‚ โ”œ publisher: Joyent, Inc
  5725. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/sshpk
  5726. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/sshpk/LICENSE
  5727. โ”œ stable@0.1.6
  5728. โ”‚ โ”œ licenses: MIT
  5729. โ”‚ โ”œ repository: https://github.com/Two-Screen/stable
  5730. โ”‚ โ”œ publisher: Angry Bytes
  5731. โ”‚ โ”œ email: info@angrybytes.com
  5732. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/stable
  5733. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/stable/README.md
  5734. โ”œ stack-trace@0.0.10
  5735. โ”‚ โ”œ licenses: MIT
  5736. โ”‚ โ”œ repository: https://github.com/felixge/node-stack-trace
  5737. โ”‚ โ”œ publisher: Felix Geisendรถrfer
  5738. โ”‚ โ”œ email: felix@debuggable.com
  5739. โ”‚ โ”œ url: http://debuggable.com/
  5740. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/stack-trace
  5741. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/stack-trace/License
  5742. โ”œ static-extend@0.1.2
  5743. โ”‚ โ”œ licenses: MIT
  5744. โ”‚ โ”œ repository: https://github.com/jonschlinkert/static-extend
  5745. โ”‚ โ”œ publisher: Jon Schlinkert
  5746. โ”‚ โ”œ url: https://github.com/jonschlinkert
  5747. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/static-extend
  5748. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/static-extend/LICENSE
  5749. โ”œ statuses@1.2.1
  5750. โ”‚ โ”œ licenses: MIT
  5751. โ”‚ โ”œ repository: https://github.com/jshttp/statuses
  5752. โ”‚ โ”œ publisher: Jonathan Ong
  5753. โ”‚ โ”œ email: me@jongleberry.com
  5754. โ”‚ โ”œ url: http://jongleberry.com
  5755. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/connect/node_modules/statuses
  5756. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/connect/node_modules/statuses/LICENSE
  5757. โ”œ statuses@1.3.1
  5758. โ”‚ โ”œ licenses: MIT
  5759. โ”‚ โ”œ repository: https://github.com/jshttp/statuses
  5760. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/freddie/node_modules/statuses
  5761. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/freddie/node_modules/statuses/LICENSE
  5762. โ”œ statuses@1.4.0
  5763. โ”‚ โ”œ licenses: MIT
  5764. โ”‚ โ”œ repository: https://github.com/jshttp/statuses
  5765. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/statuses
  5766. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/statuses/LICENSE
  5767. โ”œ stdout-stream@1.4.0
  5768. โ”‚ โ”œ licenses: MIT*
  5769. โ”‚ โ”œ repository: https://github.com/mafintosh/stdout-stream
  5770. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/stdout-stream
  5771. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/stdout-stream/LICENSE
  5772. โ”œ stream-counter@0.2.0
  5773. โ”‚ โ”œ licenses: BSD*
  5774. โ”‚ โ”œ repository: https://github.com/superjoe30/node-stream-counter
  5775. โ”‚ โ”œ publisher: Andrew Kelley
  5776. โ”‚ โ”œ email: superjoe30@gmail.com
  5777. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/stream-counter
  5778. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/stream-counter/README.md
  5779. โ”œ string-width@1.0.2
  5780. โ”‚ โ”œ licenses: MIT
  5781. โ”‚ โ”œ repository: https://github.com/sindresorhus/string-width
  5782. โ”‚ โ”œ publisher: Sindre Sorhus
  5783. โ”‚ โ”œ email: sindresorhus@gmail.com
  5784. โ”‚ โ”œ url: sindresorhus.com
  5785. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/string-width
  5786. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/string-width/license
  5787. โ”œ string_decoder@0.10.31
  5788. โ”‚ โ”œ licenses: MIT
  5789. โ”‚ โ”œ repository: https://github.com/rvagg/string_decoder
  5790. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/string_decoder
  5791. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/string_decoder/LICENSE
  5792. โ”œ string_decoder@1.0.3
  5793. โ”‚ โ”œ licenses: MIT
  5794. โ”‚ โ”œ repository: https://github.com/rvagg/string_decoder
  5795. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/readdirp/node_modules/string_decoder
  5796. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/readdirp/node_modules/string_decoder/LICENSE
  5797. โ”œ string_decoder@1.1.1
  5798. โ”‚ โ”œ licenses: MIT
  5799. โ”‚ โ”œ repository: https://github.com/nodejs/string_decoder
  5800. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/fsevents/node_modules/string_decoder
  5801. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/fsevents/node_modules/string_decoder/LICENSE
  5802. โ”œ stringmap@0.2.2
  5803. โ”‚ โ”œ licenses: MIT
  5804. โ”‚ โ”œ repository: https://github.com/olov/stringmap
  5805. โ”‚ โ”œ publisher: Olov Lassus
  5806. โ”‚ โ”œ email: olov.lassus@gmail.com
  5807. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/stringmap
  5808. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/stringmap/LICENSE
  5809. โ”œ stringset@0.2.1
  5810. โ”‚ โ”œ licenses: MIT
  5811. โ”‚ โ”œ repository: https://github.com/olov/stringset
  5812. โ”‚ โ”œ publisher: Olov Lassus
  5813. โ”‚ โ”œ email: olov.lassus@gmail.com
  5814. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/stringset
  5815. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/stringset/LICENSE
  5816. โ”œ stringstream@0.0.5
  5817. โ”‚ โ”œ licenses: MIT
  5818. โ”‚ โ”œ repository: https://github.com/mhart/StringStream
  5819. โ”‚ โ”œ publisher: Michael Hart
  5820. โ”‚ โ”œ email: michael.hart.au@gmail.com
  5821. โ”‚ โ”œ url: http://github.com/mhart
  5822. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/stringstream
  5823. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/stringstream/LICENSE.txt
  5824. โ”œ strip-ansi@0.1.1
  5825. โ”‚ โ”œ licenses: MIT
  5826. โ”‚ โ”œ repository: https://github.com/sindresorhus/strip-ansi
  5827. โ”‚ โ”œ publisher: Sindre Sorhus
  5828. โ”‚ โ”œ email: sindresorhus@gmail.com
  5829. โ”‚ โ”œ url: http://sindresorhus.com
  5830. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/update-notifier/node_modules/strip-ansi
  5831. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/update-notifier/node_modules/strip-ansi/readme.md
  5832. โ”œ strip-ansi@0.3.0
  5833. โ”‚ โ”œ licenses: MIT
  5834. โ”‚ โ”œ repository: https://github.com/sindresorhus/strip-ansi
  5835. โ”‚ โ”œ publisher: Sindre Sorhus
  5836. โ”‚ โ”œ email: sindresorhus@gmail.com
  5837. โ”‚ โ”œ url: http://sindresorhus.com
  5838. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/strip-ansi
  5839. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/strip-ansi/readme.md
  5840. โ”œ strip-ansi@3.0.1
  5841. โ”‚ โ”œ licenses: MIT
  5842. โ”‚ โ”œ repository: https://github.com/chalk/strip-ansi
  5843. โ”‚ โ”œ publisher: Sindre Sorhus
  5844. โ”‚ โ”œ email: sindresorhus@gmail.com
  5845. โ”‚ โ”œ url: sindresorhus.com
  5846. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/node-sass/node_modules/strip-ansi
  5847. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/node-sass/node_modules/strip-ansi/license
  5848. โ”œ strip-bom@2.0.0
  5849. โ”‚ โ”œ licenses: MIT
  5850. โ”‚ โ”œ repository: https://github.com/sindresorhus/strip-bom
  5851. โ”‚ โ”œ publisher: Sindre Sorhus
  5852. โ”‚ โ”œ email: sindresorhus@gmail.com
  5853. โ”‚ โ”œ url: sindresorhus.com
  5854. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/strip-bom
  5855. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/strip-bom/license
  5856. โ”œ strip-indent@1.0.1
  5857. โ”‚ โ”œ licenses: MIT
  5858. โ”‚ โ”œ repository: https://github.com/sindresorhus/strip-indent
  5859. โ”‚ โ”œ publisher: Sindre Sorhus
  5860. โ”‚ โ”œ email: sindresorhus@gmail.com
  5861. โ”‚ โ”œ url: http://sindresorhus.com
  5862. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/strip-indent
  5863. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/strip-indent/license
  5864. โ”œ strip-json-comments@1.0.4
  5865. โ”‚ โ”œ licenses: MIT
  5866. โ”‚ โ”œ repository: https://github.com/sindresorhus/strip-json-comments
  5867. โ”‚ โ”œ publisher: Sindre Sorhus
  5868. โ”‚ โ”œ email: sindresorhus@gmail.com
  5869. โ”‚ โ”œ url: sindresorhus.com
  5870. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/lib-parent-grunt/node_modules/strip-json-comments
  5871. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/lib-parent-grunt/node_modules/strip-json-comments/license
  5872. โ”œ strip-json-comments@2.0.1
  5873. โ”‚ โ”œ licenses: MIT
  5874. โ”‚ โ”œ repository: https://github.com/sindresorhus/strip-json-comments
  5875. โ”‚ โ”œ publisher: Sindre Sorhus
  5876. โ”‚ โ”œ email: sindresorhus@gmail.com
  5877. โ”‚ โ”œ url: sindresorhus.com
  5878. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/strip-json-comments
  5879. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/strip-json-comments/license
  5880. โ”œ sugar@1.5.0
  5881. โ”‚ โ”œ licenses: MIT
  5882. โ”‚ โ”œ repository: https://github.com/andrewplummer/Sugar
  5883. โ”‚ โ”œ publisher: Andrew Plummer
  5884. โ”‚ โ”œ email: plummer.andrew@gmail.com
  5885. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/sugar
  5886. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/sugar/LICENSE
  5887. โ”œ supports-color@0.2.0
  5888. โ”‚ โ”œ licenses: MIT
  5889. โ”‚ โ”œ repository: https://github.com/sindresorhus/supports-color
  5890. โ”‚ โ”œ publisher: Sindre Sorhus
  5891. โ”‚ โ”œ email: sindresorhus@gmail.com
  5892. โ”‚ โ”œ url: http://sindresorhus.com
  5893. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/supports-color
  5894. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/supports-color/readme.md
  5895. โ”œ supports-color@2.0.0
  5896. โ”‚ โ”œ licenses: MIT
  5897. โ”‚ โ”œ repository: https://github.com/chalk/supports-color
  5898. โ”‚ โ”œ publisher: Sindre Sorhus
  5899. โ”‚ โ”œ email: sindresorhus@gmail.com
  5900. โ”‚ โ”œ url: sindresorhus.com
  5901. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/node-sass/node_modules/supports-color
  5902. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/node-sass/node_modules/supports-color/license
  5903. โ”œ supports-color@3.2.3
  5904. โ”‚ โ”œ licenses: MIT
  5905. โ”‚ โ”œ repository: https://github.com/chalk/supports-color
  5906. โ”‚ โ”œ publisher: Sindre Sorhus
  5907. โ”‚ โ”œ email: sindresorhus@gmail.com
  5908. โ”‚ โ”œ url: sindresorhus.com
  5909. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/istanbul/node_modules/supports-color
  5910. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/istanbul/node_modules/supports-color/license
  5911. โ”œ supports-color@5.5.0
  5912. โ”‚ โ”œ licenses: MIT
  5913. โ”‚ โ”œ repository: https://github.com/chalk/supports-color
  5914. โ”‚ โ”œ publisher: Sindre Sorhus
  5915. โ”‚ โ”œ email: sindresorhus@gmail.com
  5916. โ”‚ โ”œ url: sindresorhus.com
  5917. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/license-checker/node_modules/supports-color
  5918. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/license-checker/node_modules/supports-color/license
  5919. โ”œ swap-case@1.1.2
  5920. โ”‚ โ”œ licenses: MIT
  5921. โ”‚ โ”œ repository: https://github.com/blakeembrey/swap-case
  5922. โ”‚ โ”œ publisher: Blake Embrey
  5923. โ”‚ โ”œ email: hello@blakeembrey.com
  5924. โ”‚ โ”œ url: http://blakeembrey.me
  5925. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/swap-case
  5926. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/swap-case/LICENSE
  5927. โ”œ tar-fs@0.3.3
  5928. โ”‚ โ”œ licenses: MIT*
  5929. โ”‚ โ”œ repository: https://github.com/mafintosh/tar-fs
  5930. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/tar-fs
  5931. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/tar-fs/README.md
  5932. โ”œ tar-stream@0.4.7
  5933. โ”‚ โ”œ licenses: MIT
  5934. โ”‚ โ”œ repository: https://github.com/mafintosh/tar-stream
  5935. โ”‚ โ”œ publisher: Mathias Buus
  5936. โ”‚ โ”œ email: mathiasbuus@gmail.com
  5937. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/tar-fs/node_modules/tar-stream
  5938. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/tar-fs/node_modules/tar-stream/LICENSE
  5939. โ”œ tar-stream@1.1.5
  5940. โ”‚ โ”œ licenses: MIT
  5941. โ”‚ โ”œ repository: https://github.com/mafintosh/tar-stream
  5942. โ”‚ โ”œ publisher: Mathias Buus
  5943. โ”‚ โ”œ email: mathiasbuus@gmail.com
  5944. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/tar-stream
  5945. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/tar-stream/LICENSE
  5946. โ”œ tar@2.2.1
  5947. โ”‚ โ”œ licenses: ISC
  5948. โ”‚ โ”œ repository: https://github.com/isaacs/node-tar
  5949. โ”‚ โ”œ publisher: Isaac Z. Schlueter
  5950. โ”‚ โ”œ email: i@izs.me
  5951. โ”‚ โ”œ url: http://blog.izs.me/
  5952. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/tar
  5953. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/tar/LICENSE
  5954. โ”œ tar@4.4.1
  5955. โ”‚ โ”œ licenses: ISC
  5956. โ”‚ โ”œ repository: https://github.com/npm/node-tar
  5957. โ”‚ โ”œ publisher: Isaac Z. Schlueter
  5958. โ”‚ โ”œ email: i@izs.me
  5959. โ”‚ โ”œ url: http://blog.izs.me/
  5960. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/fsevents/node_modules/tar
  5961. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/fsevents/node_modules/tar/LICENSE
  5962. โ”œ temp@0.7.0
  5963. โ”‚ โ”œ licenses: MIT*
  5964. โ”‚ โ”œ repository: https://github.com/bruce/node-temp
  5965. โ”‚ โ”œ publisher: Bruce Williams
  5966. โ”‚ โ”œ email: bruce@codefluency.com
  5967. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/temp
  5968. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/temp/LICENSE
  5969. โ”œ temporary@0.0.8
  5970. โ”‚ โ”œ licenses: MIT*
  5971. โ”‚ โ”œ repository: https://github.com/vesln/temporary
  5972. โ”‚ โ”œ publisher: Veselin Todorov
  5973. โ”‚ โ”œ email: hi@vesln.com
  5974. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/temporary
  5975. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/temporary/Readme.md
  5976. โ”œ throttleit@0.0.2
  5977. โ”‚ โ”œ licenses: MIT
  5978. โ”‚ โ”œ repository: https://github.com/component/throttle
  5979. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/throttleit
  5980. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/throttleit/Readme.md
  5981. โ”œ timers-ext@0.1.2
  5982. โ”‚ โ”œ licenses: MIT
  5983. โ”‚ โ”œ repository: https://github.com/medikoo/timers-ext
  5984. โ”‚ โ”œ publisher: Mariusz Nowak
  5985. โ”‚ โ”œ email: medyk@medikoo.com
  5986. โ”‚ โ”œ url: http://www.medikoo.com/
  5987. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/timers-ext
  5988. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/timers-ext/LICENSE
  5989. โ”œ tiny-lr-fork@0.0.5
  5990. โ”‚ โ”œ licenses: MIT
  5991. โ”‚ โ”œ repository: https://github.com/mklabs/tiny-lr
  5992. โ”‚ โ”œ publisher: mklabs
  5993. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/tiny-lr-fork
  5994. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/tiny-lr-fork/LICENSE-MIT
  5995. โ”œ tiny-lr@0.2.1
  5996. โ”‚ โ”œ licenses: MIT
  5997. โ”‚ โ”œ repository: https://github.com/mklabs/tiny-lr
  5998. โ”‚ โ”œ publisher: mklabs
  5999. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/tiny-lr
  6000. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/tiny-lr/LICENSE-MIT
  6001. โ”œ title-case@2.1.1
  6002. โ”‚ โ”œ licenses: MIT
  6003. โ”‚ โ”œ repository: https://github.com/blakeembrey/title-case
  6004. โ”‚ โ”œ publisher: Blake Embrey
  6005. โ”‚ โ”œ email: hello@blakeembrey.com
  6006. โ”‚ โ”œ url: http://blakeembrey.me
  6007. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/title-case
  6008. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/title-case/LICENSE
  6009. โ”œ tmp@0.0.33
  6010. โ”‚ โ”œ licenses: MIT
  6011. โ”‚ โ”œ repository: https://github.com/raszi/node-tmp
  6012. โ”‚ โ”œ publisher: KARASZI Istvรกn
  6013. โ”‚ โ”œ email: github@spam.raszi.hu
  6014. โ”‚ โ”œ url: http://raszi.hu/
  6015. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/tmp
  6016. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/tmp/LICENSE
  6017. โ”œ to-array@0.1.3
  6018. โ”‚ โ”œ licenses: MIT
  6019. โ”‚ โ”œ repository: https://github.com/Raynos/to-array
  6020. โ”‚ โ”œ publisher: Raynos
  6021. โ”‚ โ”œ email: raynos2@gmail.com
  6022. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/to-array
  6023. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/to-array/LICENCE
  6024. โ”œ to-object-path@0.3.0
  6025. โ”‚ โ”œ licenses: MIT
  6026. โ”‚ โ”œ repository: https://github.com/jonschlinkert/to-object-path
  6027. โ”‚ โ”œ publisher: Jon Schlinkert
  6028. โ”‚ โ”œ url: https://github.com/jonschlinkert
  6029. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/to-object-path
  6030. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/to-object-path/LICENSE
  6031. โ”œ to-regex-range@2.1.1
  6032. โ”‚ โ”œ licenses: MIT
  6033. โ”‚ โ”œ repository: https://github.com/micromatch/to-regex-range
  6034. โ”‚ โ”œ publisher: Jon Schlinkert
  6035. โ”‚ โ”œ url: https://github.com/jonschlinkert
  6036. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/to-regex-range
  6037. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/to-regex-range/LICENSE
  6038. โ”œ to-regex@3.0.1
  6039. โ”‚ โ”œ licenses: MIT
  6040. โ”‚ โ”œ repository: https://github.com/jonschlinkert/to-regex
  6041. โ”‚ โ”œ publisher: Jon Schlinkert
  6042. โ”‚ โ”œ url: https://github.com/jonschlinkert
  6043. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/to-regex
  6044. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/to-regex/LICENSE
  6045. โ”œ token-stream@0.0.1
  6046. โ”‚ โ”œ licenses: MIT
  6047. โ”‚ โ”œ repository: https://github.com/jadejs/token-stream
  6048. โ”‚ โ”œ publisher: ForbesLindesay
  6049. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/token-stream
  6050. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/token-stream/LICENSE
  6051. โ”œ touch@0.0.2
  6052. โ”‚ โ”œ licenses: MIT*
  6053. โ”‚ โ”œ repository: https://github.com/isaacs/node-touch
  6054. โ”‚ โ”œ publisher: Isaac Z. Schlueter
  6055. โ”‚ โ”œ email: i@izs.me
  6056. โ”‚ โ”œ url: http://blog.izs.me/
  6057. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/decompress-zip/node_modules/touch
  6058. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/decompress-zip/node_modules/touch/LICENSE
  6059. โ”œ touch@0.0.3
  6060. โ”‚ โ”œ licenses: ISC
  6061. โ”‚ โ”œ repository: https://github.com/isaacs/node-touch
  6062. โ”‚ โ”œ publisher: Isaac Z. Schlueter
  6063. โ”‚ โ”œ email: i@izs.me
  6064. โ”‚ โ”œ url: http://blog.izs.me/
  6065. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/touch
  6066. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/touch/LICENSE
  6067. โ”œ tough-cookie@2.3.3
  6068. โ”‚ โ”œ licenses: BSD-3-Clause
  6069. โ”‚ โ”œ repository: https://github.com/salesforce/tough-cookie
  6070. โ”‚ โ”œ publisher: Jeremy Stashewsky
  6071. โ”‚ โ”œ email: jstashewsky@salesforce.com
  6072. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/tough-cookie
  6073. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/tough-cookie/LICENSE
  6074. โ”œ traverse@0.3.9
  6075. โ”‚ โ”œ licenses: MIT*
  6076. โ”‚ โ”œ repository: https://github.com/substack/js-traverse
  6077. โ”‚ โ”œ publisher: James Halliday
  6078. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/traverse
  6079. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/traverse/LICENSE
  6080. โ”œ treeify@1.0.1
  6081. โ”‚ โ”œ licenses: MIT
  6082. โ”‚ โ”œ repository: https://github.com/notatestuser/treeify
  6083. โ”‚ โ”œ publisher: Luke Plaster
  6084. โ”‚ โ”œ email: notatestuser@gmail.com
  6085. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/npm-license/node_modules/treeify
  6086. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/npm-license/node_modules/treeify/README.md
  6087. โ”œ treeify@1.1.0
  6088. โ”‚ โ”œ licenses: MIT
  6089. โ”‚ โ”œ repository: https://github.com/notatestuser/treeify
  6090. โ”‚ โ”œ publisher: Luke Plaster
  6091. โ”‚ โ”œ email: notatestuser@gmail.com
  6092. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/treeify
  6093. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/treeify/LICENSE
  6094. โ”œ trim-newlines@1.0.0
  6095. โ”‚ โ”œ licenses: MIT
  6096. โ”‚ โ”œ repository: https://github.com/sindresorhus/trim-newlines
  6097. โ”‚ โ”œ publisher: Sindre Sorhus
  6098. โ”‚ โ”œ email: sindresorhus@gmail.com
  6099. โ”‚ โ”œ url: sindresorhus.com
  6100. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/trim-newlines
  6101. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/trim-newlines/license
  6102. โ”œ true-case-path@1.0.2
  6103. โ”‚ โ”œ licenses: Apache*
  6104. โ”‚ โ”œ repository: https://github.com/barsh/true-case-path
  6105. โ”‚ โ”œ publisher: barsh
  6106. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/true-case-path
  6107. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/true-case-path/LICENSE
  6108. โ”œ tryor@0.1.2
  6109. โ”‚ โ”œ licenses: MIT
  6110. โ”‚ โ”œ repository: https://github.com/olov/tryor
  6111. โ”‚ โ”œ publisher: Olov Lassus
  6112. โ”‚ โ”œ email: olov.lassus@gmail.com
  6113. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/tryor
  6114. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/tryor/LICENSE
  6115. โ”œ tsscmp@1.0.5
  6116. โ”‚ โ”œ licenses: MIT
  6117. โ”‚ โ”œ repository: https://github.com/suryagh/tsscmp
  6118. โ”‚ โ”œ publisher: suryagh
  6119. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/tsscmp
  6120. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/tsscmp/LICENSE
  6121. โ”œ tunnel-agent@0.4.3
  6122. โ”‚ โ”œ licenses: Apache-2.0
  6123. โ”‚ โ”œ repository: https://github.com/mikeal/tunnel-agent
  6124. โ”‚ โ”œ publisher: Mikeal Rogers
  6125. โ”‚ โ”œ email: mikeal.rogers@gmail.com
  6126. โ”‚ โ”œ url: http://www.futurealoof.com
  6127. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/tunnel-agent
  6128. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/tunnel-agent/LICENSE
  6129. โ”œ tweetnacl@0.14.5
  6130. โ”‚ โ”œ licenses: Unlicense
  6131. โ”‚ โ”œ repository: https://github.com/dchest/tweetnacl-js
  6132. โ”‚ โ”œ publisher: TweetNaCl-js contributors
  6133. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/tweetnacl
  6134. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/tweetnacl/LICENSE
  6135. โ”œ type-check@0.3.2
  6136. โ”‚ โ”œ licenses: MIT
  6137. โ”‚ โ”œ repository: https://github.com/gkz/type-check
  6138. โ”‚ โ”œ publisher: George Zahariev
  6139. โ”‚ โ”œ email: z@georgezahariev.com
  6140. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/type-check
  6141. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/type-check/LICENSE
  6142. โ”œ type-is@1.6.15
  6143. โ”‚ โ”œ licenses: MIT
  6144. โ”‚ โ”œ repository: https://github.com/jshttp/type-is
  6145. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/type-is
  6146. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/type-is/LICENSE
  6147. โ”œ typedarray@0.0.6
  6148. โ”‚ โ”œ licenses: MIT
  6149. โ”‚ โ”œ repository: https://github.com/substack/typedarray
  6150. โ”‚ โ”œ publisher: James Halliday
  6151. โ”‚ โ”œ email: mail@substack.net
  6152. โ”‚ โ”œ url: http://substack.net
  6153. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/typedarray
  6154. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/typedarray/LICENSE
  6155. โ”œ typescript-eslint-parser@3.0.0
  6156. โ”‚ โ”œ licenses: BSD-2-Clause
  6157. โ”‚ โ”œ repository: https://github.com/eslint/typescript-eslint-parser
  6158. โ”‚ โ”œ publisher: Nicholas C. Zakas
  6159. โ”‚ โ”œ email: nicholas+npm@nczconsulting.com
  6160. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/typescript-eslint-parser
  6161. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/typescript-eslint-parser/LICENSE
  6162. โ”œ typescript@2.3.4
  6163. โ”‚ โ”œ licenses: Apache-2.0
  6164. โ”‚ โ”œ repository: https://github.com/Microsoft/TypeScript
  6165. โ”‚ โ”œ publisher: Microsoft Corp.
  6166. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/typescript
  6167. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/typescript/LICENSE.txt
  6168. โ”œ uglify-js@2.7.5
  6169. โ”‚ โ”œ licenses: BSD-2-Clause
  6170. โ”‚ โ”œ repository: https://github.com/mishoo/UglifyJS2
  6171. โ”‚ โ”œ publisher: Mihai Bazon
  6172. โ”‚ โ”œ email: mihai.bazon@gmail.com
  6173. โ”‚ โ”œ url: http://lisperator.net/
  6174. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/html-minifier/node_modules/uglify-js
  6175. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/html-minifier/node_modules/uglify-js/LICENSE
  6176. โ”œ uglify-js@2.8.29
  6177. โ”‚ โ”œ licenses: BSD-2-Clause
  6178. โ”‚ โ”œ repository: https://github.com/mishoo/UglifyJS2
  6179. โ”‚ โ”œ publisher: Mihai Bazon
  6180. โ”‚ โ”œ email: mihai.bazon@gmail.com
  6181. โ”‚ โ”œ url: http://lisperator.net/
  6182. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/handlebars/node_modules/uglify-js
  6183. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/handlebars/node_modules/uglify-js/LICENSE
  6184. โ”œ uglify-js@3.2.0
  6185. โ”‚ โ”œ licenses: BSD-2-Clause
  6186. โ”‚ โ”œ repository: https://github.com/mishoo/UglifyJS2
  6187. โ”‚ โ”œ publisher: Mihai Bazon
  6188. โ”‚ โ”œ email: mihai.bazon@gmail.com
  6189. โ”‚ โ”œ url: http://lisperator.net/
  6190. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/uglify-js
  6191. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/uglify-js/LICENSE
  6192. โ”œ uglify-to-browserify@1.0.2
  6193. โ”‚ โ”œ licenses: MIT
  6194. โ”‚ โ”œ repository: https://github.com/ForbesLindesay/uglify-to-browserify
  6195. โ”‚ โ”œ publisher: ForbesLindesay
  6196. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/uglify-to-browserify
  6197. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/uglify-to-browserify/LICENSE
  6198. โ”œ uid-number@0.0.5
  6199. โ”‚ โ”œ licenses: ISC
  6200. โ”‚ โ”œ repository: https://github.com/isaacs/uid-number
  6201. โ”‚ โ”œ publisher: Isaac Z. Schlueter
  6202. โ”‚ โ”œ email: i@izs.me
  6203. โ”‚ โ”œ url: http://blog.izs.me/
  6204. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/uid-number
  6205. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/uid-number/LICENSE
  6206. โ”œ uid-safe@2.0.0
  6207. โ”‚ โ”œ licenses: MIT
  6208. โ”‚ โ”œ repository: https://github.com/crypto-utils/uid-safe
  6209. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/express-session/node_modules/uid-safe
  6210. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/express-session/node_modules/uid-safe/LICENSE
  6211. โ”œ uid-safe@2.1.4
  6212. โ”‚ โ”œ licenses: MIT
  6213. โ”‚ โ”œ repository: https://github.com/crypto-utils/uid-safe
  6214. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/uid-safe
  6215. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/uid-safe/LICENSE
  6216. โ”œ ultron@1.0.2
  6217. โ”‚ โ”œ licenses: MIT
  6218. โ”‚ โ”œ repository: https://github.com/unshiftio/ultron
  6219. โ”‚ โ”œ publisher: Arnout Kazemier
  6220. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/ultron
  6221. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/ultron/LICENSE
  6222. โ”œ underscore.string@2.2.1
  6223. โ”‚ โ”œ licenses: MIT
  6224. โ”‚ โ”œ repository: https://github.com/epeli/underscore.string
  6225. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/underscore.string
  6226. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/underscore.string/README.markdown
  6227. โ”œ underscore.string@2.3.3
  6228. โ”‚ โ”œ licenses: MIT
  6229. โ”‚ โ”œ repository: https://github.com/epeli/underscore.string
  6230. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/grunt-legacy-log-utils/node_modules/underscore.string
  6231. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/grunt-legacy-log-utils/node_modules/underscore.string/README.markdown
  6232. โ”œ underscore.string@2.4.0
  6233. โ”‚ โ”œ licenses: MIT
  6234. โ”‚ โ”œ repository: https://github.com/epeli/underscore.string
  6235. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/argparse/node_modules/underscore.string
  6236. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/argparse/node_modules/underscore.string/README.markdown
  6237. โ”œ underscore@1.4.4
  6238. โ”‚ โ”œ licenses: MIT*
  6239. โ”‚ โ”œ repository: https://github.com/documentcloud/underscore
  6240. โ”‚ โ”œ publisher: Jeremy Ashkenas
  6241. โ”‚ โ”œ email: jeremy@documentcloud.org
  6242. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/npm-license/node_modules/underscore
  6243. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/npm-license/node_modules/underscore/LICENSE
  6244. โ”œ underscore@1.5.2
  6245. โ”‚ โ”œ licenses: MIT
  6246. โ”‚ โ”œ repository: https://github.com/jashkenas/underscore
  6247. โ”‚ โ”œ publisher: Jeremy Ashkenas
  6248. โ”‚ โ”œ email: jeremy@documentcloud.org
  6249. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/bower-license/node_modules/underscore
  6250. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/bower-license/node_modules/underscore/LICENSE
  6251. โ”œ underscore@1.7.0
  6252. โ”‚ โ”œ licenses: MIT
  6253. โ”‚ โ”œ repository: https://github.com/jashkenas/underscore
  6254. โ”‚ โ”œ publisher: Jeremy Ashkenas
  6255. โ”‚ โ”œ email: jeremy@documentcloud.org
  6256. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/underscore
  6257. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/underscore/LICENSE
  6258. โ”œ union-value@1.0.0
  6259. โ”‚ โ”œ licenses: MIT
  6260. โ”‚ โ”œ repository: https://github.com/jonschlinkert/union-value
  6261. โ”‚ โ”œ publisher: Jon Schlinkert
  6262. โ”‚ โ”œ url: https://github.com/jonschlinkert
  6263. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/union-value
  6264. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/union-value/LICENSE
  6265. โ”œ unpipe@1.0.0
  6266. โ”‚ โ”œ licenses: MIT
  6267. โ”‚ โ”œ repository: https://github.com/stream-utils/unpipe
  6268. โ”‚ โ”œ publisher: Douglas Christopher Wilson
  6269. โ”‚ โ”œ email: doug@somethingdoug.com
  6270. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/unpipe
  6271. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/unpipe/LICENSE
  6272. โ”œ unset-value@1.0.0
  6273. โ”‚ โ”œ licenses: MIT
  6274. โ”‚ โ”œ repository: https://github.com/jonschlinkert/unset-value
  6275. โ”‚ โ”œ publisher: Jon Schlinkert
  6276. โ”‚ โ”œ url: https://github.com/jonschlinkert
  6277. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/unset-value
  6278. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/unset-value/LICENSE
  6279. โ”œ update-notifier@0.1.10
  6280. โ”‚ โ”œ licenses: BSD
  6281. โ”‚ โ”œ repository: https://github.com/yeoman/update-notifier
  6282. โ”‚ โ”œ publisher: Sindre Sorhus
  6283. โ”‚ โ”œ email: sindresorhus@gmail.com
  6284. โ”‚ โ”œ url: http://sindresorhus.com
  6285. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/update-notifier
  6286. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/update-notifier/readme.md
  6287. โ”œ upper-case-first@1.1.2
  6288. โ”‚ โ”œ licenses: MIT
  6289. โ”‚ โ”œ repository: https://github.com/blakeembrey/upper-case-first
  6290. โ”‚ โ”œ publisher: Blake Embrey
  6291. โ”‚ โ”œ email: hello@blakeembrey.com
  6292. โ”‚ โ”œ url: http://blakeembrey.me
  6293. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/upper-case-first
  6294. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/upper-case-first/LICENSE
  6295. โ”œ upper-case@1.1.3
  6296. โ”‚ โ”œ licenses: MIT
  6297. โ”‚ โ”œ repository: https://github.com/blakeembrey/upper-case
  6298. โ”‚ โ”œ publisher: Blake Embrey
  6299. โ”‚ โ”œ email: hello@blakeembrey.com
  6300. โ”‚ โ”œ url: http://blakeembrey.me
  6301. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/upper-case
  6302. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/upper-case/LICENSE
  6303. โ”œ uri-path@1.0.0
  6304. โ”‚ โ”œ licenses: WTFPL OR MIT
  6305. โ”‚ โ”œ repository: https://github.com/UltCombo/uri-path
  6306. โ”‚ โ”œ publisher: Ult Combo
  6307. โ”‚ โ”œ email: ultcombo@gmail.com
  6308. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/uri-path
  6309. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/uri-path/LICENSE-MIT
  6310. โ”œ urix@0.1.0
  6311. โ”‚ โ”œ licenses: MIT
  6312. โ”‚ โ”œ repository: https://github.com/lydell/urix
  6313. โ”‚ โ”œ publisher: Simon Lydell
  6314. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/urix
  6315. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/urix/LICENSE
  6316. โ”œ use@2.0.2
  6317. โ”‚ โ”œ licenses: MIT
  6318. โ”‚ โ”œ repository: https://github.com/jonschlinkert/use
  6319. โ”‚ โ”œ publisher: Jon Schlinkert
  6320. โ”‚ โ”œ url: https://github.com/jonschlinkert
  6321. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/use
  6322. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/use/LICENSE
  6323. โ”œ user-home@1.1.1
  6324. โ”‚ โ”œ licenses: MIT
  6325. โ”‚ โ”œ repository: https://github.com/sindresorhus/user-home
  6326. โ”‚ โ”œ publisher: Sindre Sorhus
  6327. โ”‚ โ”œ email: sindresorhus@gmail.com
  6328. โ”‚ โ”œ url: http://sindresorhus.com
  6329. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/user-home
  6330. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/user-home/license
  6331. โ”œ useragent@2.2.1
  6332. โ”‚ โ”œ licenses: MIT
  6333. โ”‚ โ”œ repository: https://github.com/3rd-Eden/useragent
  6334. โ”‚ โ”œ publisher: Arnout Kazemier
  6335. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/useragent
  6336. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/useragent/LICENSE
  6337. โ”œ utf-8-validate@1.2.2
  6338. โ”‚ โ”œ licenses: MIT
  6339. โ”‚ โ”œ repository: https://github.com/websockets/utf-8-validate
  6340. โ”‚ โ”œ publisher: Einar Otto Stangvik
  6341. โ”‚ โ”œ email: einaros@gmail.com
  6342. โ”‚ โ”œ url: http://2x.io
  6343. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/utf-8-validate
  6344. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/utf-8-validate/LICENSE
  6345. โ”œ utf8@2.1.0
  6346. โ”‚ โ”œ licenses: MIT
  6347. โ”‚ โ”œ repository: https://github.com/mathiasbynens/utf8.js
  6348. โ”‚ โ”œ publisher: Mathias Bynens
  6349. โ”‚ โ”œ url: https://mathiasbynens.be/
  6350. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/utf8
  6351. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/utf8/LICENSE-MIT.txt
  6352. โ”œ util-deprecate@1.0.2
  6353. โ”‚ โ”œ licenses: MIT
  6354. โ”‚ โ”œ repository: https://github.com/TooTallNate/util-deprecate
  6355. โ”‚ โ”œ publisher: Nathan Rajlich
  6356. โ”‚ โ”œ email: nathan@tootallnate.net
  6357. โ”‚ โ”œ url: http://n8.io/
  6358. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/util-deprecate
  6359. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/util-deprecate/LICENSE
  6360. โ”œ util-extend@1.0.3
  6361. โ”‚ โ”œ licenses: MIT
  6362. โ”‚ โ”œ repository: https://github.com/isaacs/util-extend
  6363. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/util-extend
  6364. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/util-extend/LICENSE
  6365. โ”œ utils-merge@1.0.0
  6366. โ”‚ โ”œ licenses: MIT
  6367. โ”‚ โ”œ repository: https://github.com/jaredhanson/utils-merge
  6368. โ”‚ โ”œ publisher: Jared Hanson
  6369. โ”‚ โ”œ email: jaredhanson@gmail.com
  6370. โ”‚ โ”œ url: http://www.jaredhanson.net/
  6371. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/utils-merge
  6372. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/utils-merge/LICENSE
  6373. โ”œ utils-merge@1.0.1
  6374. โ”‚ โ”œ licenses: MIT
  6375. โ”‚ โ”œ repository: https://github.com/jaredhanson/utils-merge
  6376. โ”‚ โ”œ publisher: Jared Hanson
  6377. โ”‚ โ”œ email: jaredhanson@gmail.com
  6378. โ”‚ โ”œ url: http://www.jaredhanson.net/
  6379. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/freddie/node_modules/utils-merge
  6380. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/freddie/node_modules/utils-merge/LICENSE
  6381. โ”œ uuid@2.0.3
  6382. โ”‚ โ”œ licenses: MIT
  6383. โ”‚ โ”œ repository: https://github.com/defunctzombie/node-uuid
  6384. โ”‚ โ”œ publisher: Robert Kieffer
  6385. โ”‚ โ”œ email: robert@broofa.com
  6386. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/uuid
  6387. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/uuid/LICENSE.md
  6388. โ”œ uuid@3.1.0
  6389. โ”‚ โ”œ licenses: MIT
  6390. โ”‚ โ”œ repository: https://github.com/kelektiv/node-uuid
  6391. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/node-sass/node_modules/uuid
  6392. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/node-sass/node_modules/uuid/LICENSE.md
  6393. โ”œ validate-npm-package-license@3.0.1
  6394. โ”‚ โ”œ licenses: Apache-2.0
  6395. โ”‚ โ”œ repository: https://github.com/kemitchell/validate-npm-package-license.js
  6396. โ”‚ โ”œ publisher: Kyle E. Mitchell
  6397. โ”‚ โ”œ email: kyle@kemitchell.com
  6398. โ”‚ โ”œ url: https://kemitchell.com
  6399. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/validate-npm-package-license
  6400. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/validate-npm-package-license/LICENSE
  6401. โ”œ vary@1.0.1
  6402. โ”‚ โ”œ licenses: MIT
  6403. โ”‚ โ”œ repository: https://github.com/jshttp/vary
  6404. โ”‚ โ”œ publisher: Douglas Christopher Wilson
  6405. โ”‚ โ”œ email: doug@somethingdoug.com
  6406. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/vary
  6407. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/vary/LICENSE
  6408. โ”œ vary@1.1.2
  6409. โ”‚ โ”œ licenses: MIT
  6410. โ”‚ โ”œ repository: https://github.com/jshttp/vary
  6411. โ”‚ โ”œ publisher: Douglas Christopher Wilson
  6412. โ”‚ โ”œ email: doug@somethingdoug.com
  6413. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/method-override/node_modules/vary
  6414. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/method-override/node_modules/vary/LICENSE
  6415. โ”œ verror@1.10.0
  6416. โ”‚ โ”œ licenses: MIT
  6417. โ”‚ โ”œ repository: https://github.com/davepacheco/node-verror
  6418. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/verror
  6419. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/verror/LICENSE
  6420. โ”œ vhost@3.0.2
  6421. โ”‚ โ”œ licenses: MIT
  6422. โ”‚ โ”œ repository: https://github.com/expressjs/vhost
  6423. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/vhost
  6424. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/vhost/LICENSE
  6425. โ”œ void-elements@2.0.1
  6426. โ”‚ โ”œ licenses: MIT
  6427. โ”‚ โ”œ repository: https://github.com/hemanth/void-elements
  6428. โ”‚ โ”œ publisher: hemanth.hm
  6429. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/void-elements
  6430. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/void-elements/LICENSE
  6431. โ”œ websocket-driver@0.7.0
  6432. โ”‚ โ”œ licenses: MIT
  6433. โ”‚ โ”œ repository: https://github.com/faye/websocket-driver-node
  6434. โ”‚ โ”œ publisher: James Coglan
  6435. โ”‚ โ”œ email: jcoglan@gmail.com
  6436. โ”‚ โ”œ url: http://jcoglan.com/
  6437. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/websocket-driver
  6438. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/websocket-driver/LICENSE.md
  6439. โ”œ websocket-extensions@0.1.3
  6440. โ”‚ โ”œ licenses: MIT
  6441. โ”‚ โ”œ repository: https://github.com/faye/websocket-extensions-node
  6442. โ”‚ โ”œ publisher: James Coglan
  6443. โ”‚ โ”œ email: jcoglan@gmail.com
  6444. โ”‚ โ”œ url: http://jcoglan.com/
  6445. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/websocket-extensions
  6446. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/websocket-extensions/LICENSE.md
  6447. โ”œ which-module@1.0.0
  6448. โ”‚ โ”œ licenses: ISC
  6449. โ”‚ โ”œ repository: https://github.com/nexdrew/which-module
  6450. โ”‚ โ”œ publisher: nexdrew
  6451. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/which-module
  6452. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/which-module/LICENSE
  6453. โ”œ which@1.0.9
  6454. โ”‚ โ”œ licenses: ISC
  6455. โ”‚ โ”œ repository: https://github.com/isaacs/node-which
  6456. โ”‚ โ”œ publisher: Isaac Z. Schlueter
  6457. โ”‚ โ”œ email: i@izs.me
  6458. โ”‚ โ”œ url: http://blog.izs.me
  6459. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/which
  6460. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/which/LICENSE
  6461. โ”œ which@1.3.0
  6462. โ”‚ โ”œ licenses: ISC
  6463. โ”‚ โ”œ repository: https://github.com/isaacs/node-which
  6464. โ”‚ โ”œ publisher: Isaac Z. Schlueter
  6465. โ”‚ โ”œ email: i@izs.me
  6466. โ”‚ โ”œ url: http://blog.izs.me
  6467. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/global-prefix/node_modules/which
  6468. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/global-prefix/node_modules/which/LICENSE
  6469. โ”œ wide-align@1.1.2
  6470. โ”‚ โ”œ licenses: ISC
  6471. โ”‚ โ”œ repository: https://github.com/iarna/wide-align
  6472. โ”‚ โ”œ publisher: Rebecca Turner
  6473. โ”‚ โ”œ email: me@re-becca.org
  6474. โ”‚ โ”œ url: http://re-becca.org/
  6475. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/wide-align
  6476. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/wide-align/LICENSE
  6477. โ”œ window-size@0.1.0
  6478. โ”‚ โ”œ licenses: MIT
  6479. โ”‚ โ”œ repository: https://github.com/jonschlinkert/window-size
  6480. โ”‚ โ”œ publisher: Jon Schlinkert
  6481. โ”‚ โ”œ url: https://github.com/jonschlinkert
  6482. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/window-size
  6483. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/window-size/LICENSE-MIT
  6484. โ”œ winresourcer@0.9.0
  6485. โ”‚ โ”œ licenses: Freeware
  6486. โ”‚ โ”œ repository: https://github.com/felicienfrancois/node-winresourcer
  6487. โ”‚ โ”œ publisher: Felicien Francois
  6488. โ”‚ โ”œ email: felicien@tweakstyle.com
  6489. โ”‚ โ”œ url: http://tweakstyle.com
  6490. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/winresourcer
  6491. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/winresourcer/LICENSE
  6492. โ”œ with@5.1.1
  6493. โ”‚ โ”œ licenses: MIT
  6494. โ”‚ โ”œ repository: https://github.com/pugjs/with
  6495. โ”‚ โ”œ publisher: ForbesLindesay
  6496. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/with
  6497. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/with/LICENSE
  6498. โ”œ wordwrap@0.0.2
  6499. โ”‚ โ”œ licenses: MIT*
  6500. โ”‚ โ”œ repository: https://github.com/substack/node-wordwrap
  6501. โ”‚ โ”œ publisher: James Halliday
  6502. โ”‚ โ”œ email: mail@substack.net
  6503. โ”‚ โ”œ url: http://substack.net
  6504. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/cliui/node_modules/wordwrap
  6505. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/cliui/node_modules/wordwrap/README.markdown
  6506. โ”œ wordwrap@0.0.3
  6507. โ”‚ โ”œ licenses: MIT
  6508. โ”‚ โ”œ repository: https://github.com/substack/node-wordwrap
  6509. โ”‚ โ”œ publisher: James Halliday
  6510. โ”‚ โ”œ email: mail@substack.net
  6511. โ”‚ โ”œ url: http://substack.net
  6512. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/wordwrap
  6513. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/wordwrap/LICENSE
  6514. โ”œ wordwrap@1.0.0
  6515. โ”‚ โ”œ licenses: MIT
  6516. โ”‚ โ”œ repository: https://github.com/substack/node-wordwrap
  6517. โ”‚ โ”œ publisher: James Halliday
  6518. โ”‚ โ”œ email: mail@substack.net
  6519. โ”‚ โ”œ url: http://substack.net
  6520. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/istanbul/node_modules/wordwrap
  6521. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/istanbul/node_modules/wordwrap/LICENSE
  6522. โ”œ wrap-ansi@2.1.0
  6523. โ”‚ โ”œ licenses: MIT
  6524. โ”‚ โ”œ repository: https://github.com/chalk/wrap-ansi
  6525. โ”‚ โ”œ publisher: Sindre Sorhus
  6526. โ”‚ โ”œ email: sindresorhus@gmail.com
  6527. โ”‚ โ”œ url: sindresorhus.com
  6528. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/wrap-ansi
  6529. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/wrap-ansi/license
  6530. โ”œ wrappy@1.0.2
  6531. โ”‚ โ”œ licenses: ISC
  6532. โ”‚ โ”œ repository: https://github.com/npm/wrappy
  6533. โ”‚ โ”œ publisher: Isaac Z. Schlueter
  6534. โ”‚ โ”œ email: i@izs.me
  6535. โ”‚ โ”œ url: http://blog.izs.me/
  6536. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/wrappy
  6537. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/wrappy/LICENSE
  6538. โ”œ ws@0.8.0
  6539. โ”‚ โ”œ licenses: MIT
  6540. โ”‚ โ”œ repository: https://github.com/websockets/ws
  6541. โ”‚ โ”œ publisher: Einar Otto Stangvik
  6542. โ”‚ โ”œ email: einaros@gmail.com
  6543. โ”‚ โ”œ url: http://2x.io
  6544. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/ws
  6545. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/ws/README.md
  6546. โ”œ xdg-basedir@1.0.1
  6547. โ”‚ โ”œ licenses: MIT
  6548. โ”‚ โ”œ repository: https://github.com/sindresorhus/xdg-basedir
  6549. โ”‚ โ”œ publisher: Sindre Sorhus
  6550. โ”‚ โ”œ email: sindresorhus@gmail.com
  6551. โ”‚ โ”œ url: http://sindresorhus.com
  6552. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/xdg-basedir
  6553. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/xdg-basedir/license
  6554. โ”œ xml-char-classes@1.0.0
  6555. โ”‚ โ”œ licenses: MIT
  6556. โ”‚ โ”œ repository: https://github.com/sindresorhus/xml-char-classes
  6557. โ”‚ โ”œ publisher: Sindre Sorhus
  6558. โ”‚ โ”œ email: sindresorhus@gmail.com
  6559. โ”‚ โ”œ url: http://sindresorhus.com
  6560. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/xml-char-classes
  6561. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/xml-char-classes/readme.md
  6562. โ”œ xmlbuilder@0.4.2
  6563. โ”‚ โ”œ licenses: MIT
  6564. โ”‚ โ”œ repository: https://github.com/oozcitak/xmlbuilder-js
  6565. โ”‚ โ”œ publisher: Ozgur Ozcitak
  6566. โ”‚ โ”œ email: oozcitak@gmail.com
  6567. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/karma-junit-reporter/node_modules/xmlbuilder
  6568. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/karma-junit-reporter/node_modules/xmlbuilder/README.md
  6569. โ”œ xmlbuilder@4.0.0
  6570. โ”‚ โ”œ licenses: MIT
  6571. โ”‚ โ”œ repository: https://github.com/oozcitak/xmlbuilder-js
  6572. โ”‚ โ”œ publisher: Ozgur Ozcitak
  6573. โ”‚ โ”œ email: oozcitak@gmail.com
  6574. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/xmlbuilder
  6575. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/xmlbuilder/LICENSE
  6576. โ”œ xmldom@0.1.27
  6577. โ”‚ โ”œ licenses: LGPL
  6578. โ”‚ โ”œ repository: https://github.com/jindw/xmldom
  6579. โ”‚ โ”œ publisher: jindw
  6580. โ”‚ โ”œ email: jindw@xidea.org
  6581. โ”‚ โ”œ url: http://www.xidea.org
  6582. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/xmldom
  6583. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/xmldom/LICENSE
  6584. โ”œ xmlhttprequest@1.5.0
  6585. โ”‚ โ”œ licenses: MIT
  6586. โ”‚ โ”œ repository: https://github.com/driverdan/node-XMLHttpRequest
  6587. โ”‚ โ”œ publisher: Dan DeFelippi
  6588. โ”‚ โ”œ url: http://driverdan.com
  6589. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/xmlhttprequest
  6590. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/xmlhttprequest/LICENSE
  6591. โ”œ xtend@4.0.1
  6592. โ”‚ โ”œ licenses: MIT
  6593. โ”‚ โ”œ repository: https://github.com/Raynos/xtend
  6594. โ”‚ โ”œ publisher: Raynos
  6595. โ”‚ โ”œ email: raynos2@gmail.com
  6596. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/xtend
  6597. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/xtend/LICENCE
  6598. โ”œ y18n@3.2.1
  6599. โ”‚ โ”œ licenses: ISC
  6600. โ”‚ โ”œ repository: https://github.com/yargs/y18n
  6601. โ”‚ โ”œ publisher: Ben Coe
  6602. โ”‚ โ”œ email: ben@npmjs.com
  6603. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/y18n
  6604. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/y18n/LICENSE
  6605. โ”œ yallist@2.1.2
  6606. โ”‚ โ”œ licenses: ISC
  6607. โ”‚ โ”œ repository: https://github.com/isaacs/yallist
  6608. โ”‚ โ”œ publisher: Isaac Z. Schlueter
  6609. โ”‚ โ”œ email: i@izs.me
  6610. โ”‚ โ”œ url: http://blog.izs.me/
  6611. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/yallist
  6612. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/yallist/LICENSE
  6613. โ”œ yallist@3.0.2
  6614. โ”‚ โ”œ licenses: ISC
  6615. โ”‚ โ”œ repository: https://github.com/isaacs/yallist
  6616. โ”‚ โ”œ publisher: Isaac Z. Schlueter
  6617. โ”‚ โ”œ email: i@izs.me
  6618. โ”‚ โ”œ url: http://blog.izs.me/
  6619. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/fsevents/node_modules/yallist
  6620. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/fsevents/node_modules/yallist/LICENSE
  6621. โ”œ yargs-parser@5.0.0
  6622. โ”‚ โ”œ licenses: ISC
  6623. โ”‚ โ”œ repository: https://github.com/yargs/yargs-parser
  6624. โ”‚ โ”œ publisher: Ben Coe
  6625. โ”‚ โ”œ email: ben@npmjs.com
  6626. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/yargs-parser
  6627. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/yargs-parser/LICENSE.txt
  6628. โ”œ yargs@3.10.0
  6629. โ”‚ โ”œ licenses: MIT
  6630. โ”‚ โ”œ repository: https://github.com/bcoe/yargs
  6631. โ”‚ โ”œ publisher: Alex Ford
  6632. โ”‚ โ”œ email: Alex.Ford@CodeTunnel.com
  6633. โ”‚ โ”œ url: http://CodeTunnel.com
  6634. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/yargs
  6635. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/yargs/LICENSE
  6636. โ”œ yargs@7.1.0
  6637. โ”‚ โ”œ licenses: MIT
  6638. โ”‚ โ”œ repository: https://github.com/yargs/yargs
  6639. โ”‚ โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/sass-graph/node_modules/yargs
  6640. โ”‚ โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/sass-graph/node_modules/yargs/LICENSE
  6641. โ”” zip-stream@0.5.2
  6642. โ”œ licenses: MIT
  6643. โ”œ repository: https://github.com/archiverjs/node-zip-stream
  6644. โ”œ publisher: Chris Talkington
  6645. โ”œ url: http://christalkington.com/
  6646. โ”œ path: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/zip-stream
  6647. โ”” licenseFile: /online-voting-secure-data-manager/secure-data-manager-frontend/node_modules/zip-stream/LICENSE