package.json 42 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025
  1. {
  2. "@mocha/contributors": {
  3. "exclude": [
  4. "greenkeeperio-bot <support@greenkeeper.io>",
  5. "greenkeeper[bot] <greenkeeper[bot]@users.noreply.github.com>",
  6. "TJ Holowaychuk <tj@vision-media.ca>"
  7. ]
  8. },
  9. "_from": "mocha",
  10. "_id": "mocha@6.0.1",
  11. "_inBundle": false,
  12. "_integrity": "sha1-wofah5E/oO3ExEhQuovE/b8g0+o=",
  13. "_location": "/mocha",
  14. "_phantomChildren": {
  15. "argparse": "1.0.10",
  16. "assign-symbols": "1.0.0",
  17. "braces": "2.3.1",
  18. "fragment-cache": "0.2.1",
  19. "has-flag": "3.0.0",
  20. "homedir-polyfill": "1.0.3",
  21. "ini": "1.3.5",
  22. "is-buffer": "1.1.6",
  23. "is-descriptor": "1.0.2",
  24. "is-plain-object": "2.0.4",
  25. "isobject": "3.0.1",
  26. "nanomatch": "1.2.13",
  27. "object.pick": "1.3.0",
  28. "posix-character-classes": "0.1.1",
  29. "regex-not": "1.0.2",
  30. "snapdragon": "0.8.2",
  31. "to-regex": "3.0.2",
  32. "which": "1.3.1"
  33. },
  34. "_requested": {
  35. "type": "tag",
  36. "registry": true,
  37. "raw": "mocha",
  38. "name": "mocha",
  39. "escapedName": "mocha",
  40. "rawSpec": "",
  41. "saveSpec": null,
  42. "fetchSpec": "latest"
  43. },
  44. "_requiredBy": [
  45. "#USER",
  46. "/"
  47. ],
  48. "_resolved": "http://registry.npm.taobao.org/mocha/download/mocha-6.0.1.tgz",
  49. "_shasum": "c287da87913fa0edc4c44850ba8bc4fdbf20d3ea",
  50. "_spec": "mocha",
  51. "_where": "E:\\dev\\007\\node_module\\node10",
  52. "author": {
  53. "name": "TJ Holowaychuk",
  54. "email": "tj@vision-media.ca"
  55. },
  56. "bin": {
  57. "mocha": "./bin/mocha",
  58. "_mocha": "./bin/_mocha"
  59. },
  60. "browser": {
  61. "./index.js": "./browser-entry.js",
  62. "./lib/growl.js": "./lib/browser/growl.js",
  63. "tty": "./lib/browser/tty.js",
  64. "fs": false,
  65. "glob": false,
  66. "path": false,
  67. "supports-color": false
  68. },
  69. "browserify": {
  70. "transform": [
  71. "./scripts/package-json-cullify"
  72. ]
  73. },
  74. "bugs": {
  75. "url": "https://github.com/mochajs/mocha/issues/"
  76. },
  77. "bundleDependencies": false,
  78. "contributors": [
  79. {
  80. "name": "38elements",
  81. "email": "mh19820223@gmail.com"
  82. },
  83. {
  84. "name": "Aaron Brady",
  85. "email": "aaron@mori.com"
  86. },
  87. {
  88. "name": "Aaron Hamid",
  89. "email": "aaron.hamid@gmail.com"
  90. },
  91. {
  92. "name": "Aaron Heckmann",
  93. "email": "aaron.heckmann+github@gmail.com"
  94. },
  95. {
  96. "name": "Aaron Krause",
  97. "email": "aaronjkrause@gmail.com"
  98. },
  99. {
  100. "name": "Aaron Petcoff",
  101. "email": "hello@aaronpetcoff.me"
  102. },
  103. {
  104. "name": "abrkn",
  105. "email": "a@abrkn.com"
  106. },
  107. {
  108. "name": "Adam Crabtree",
  109. "email": "adam.crabtree@redrobotlabs.com"
  110. },
  111. {
  112. "name": "Adam Gruber",
  113. "email": "talknmime@gmail.com"
  114. },
  115. {
  116. "name": "Adrian Ludwig",
  117. "email": "me@adrianludwig.pl"
  118. },
  119. {
  120. "name": "Ahmad Bamieh",
  121. "email": "ahmadbamieh@gmail.com"
  122. },
  123. {
  124. "name": "airportyh",
  125. "email": "airportyh@gmail.com"
  126. },
  127. {
  128. "name": "Ajay Kodali",
  129. "email": "ajay.kodali@citrix.com"
  130. },
  131. {
  132. "name": "Al Scott",
  133. "email": "al.scott@atomicobject.com"
  134. },
  135. {
  136. "name": "Alex Bainter",
  137. "email": "metalex9@users.noreply.github.com"
  138. },
  139. {
  140. "name": "Alexander Early",
  141. "email": "alexander.early@gmail.com"
  142. },
  143. {
  144. "name": "Alexander Shepelin",
  145. "email": "Brightcor@gmail.com"
  146. },
  147. {
  148. "name": "Alhadis",
  149. "email": "gardnerjohng@gmail.com"
  150. },
  151. {
  152. "name": "amsul",
  153. "email": "reach@amsul.ca"
  154. },
  155. {
  156. "name": "Anders Olsen Sandvik",
  157. "email": "Andersos@users.noreply.github.com"
  158. },
  159. {
  160. "name": "Andreas Brekken",
  161. "email": "andreas@opuno.com"
  162. },
  163. {
  164. "name": "Andreas Lind",
  165. "email": "andreaslindpetersen@gmail.com"
  166. },
  167. {
  168. "name": "Andreas Lind Petersen",
  169. "email": "andreas@one.com"
  170. },
  171. {
  172. "name": "Andrew Krawchyk",
  173. "email": "903716+akrawchyk@users.noreply.github.com"
  174. },
  175. {
  176. "name": "Andrew Nesbitt",
  177. "email": "andrewnez@gmail.com"
  178. },
  179. {
  180. "name": "Andrey Popp",
  181. "email": "8mayday@gmail.com"
  182. },
  183. {
  184. "name": "Andrii Shumada",
  185. "email": "eagleeyes91@gmail.com"
  186. },
  187. {
  188. "name": "andy matthews",
  189. "email": "andy@commadelimited.com"
  190. },
  191. {
  192. "name": "Angelica Valenta",
  193. "email": "angelicavalenta@gmail.com"
  194. },
  195. {
  196. "name": "Anis Safine",
  197. "email": "anis.safine.ext@francetv.fr"
  198. },
  199. {
  200. "name": "Anish Karandikar",
  201. "email": "anishkny@gmail.com"
  202. },
  203. {
  204. "name": "Anna Henningsen",
  205. "email": "github@addaleax.net"
  206. },
  207. {
  208. "name": "Anthony",
  209. "email": "keppi@o2.pl"
  210. },
  211. {
  212. "name": "Anton",
  213. "email": "anton.redfox@gmail.com"
  214. },
  215. {
  216. "name": "anton",
  217. "email": "anton.valickij@gmail.com"
  218. },
  219. {
  220. "name": "APerson",
  221. "email": "danielhglus@gmail.com"
  222. },
  223. {
  224. "name": "Arian Stolwijk",
  225. "email": "arian@aryweb.nl"
  226. },
  227. {
  228. "name": "Ariel Mashraki",
  229. "email": "ariel@mashraki.co.il"
  230. },
  231. {
  232. "name": "Arnaud Brousseau",
  233. "email": "arnaud.brousseau@gmail.com"
  234. },
  235. {
  236. "name": "Artem Govorov",
  237. "email": "artem.govorov@gmail.com"
  238. },
  239. {
  240. "name": "Atsuya Takagi",
  241. "email": "asoftonight@gmail.com"
  242. },
  243. {
  244. "name": "Attila Domokos",
  245. "email": "adomokos@gmail.com"
  246. },
  247. {
  248. "name": "Austin Birch",
  249. "email": "mraustinbirch@gmail.com"
  250. },
  251. {
  252. "name": "Avi Vahl",
  253. "email": "avi.vahl@wix.com"
  254. },
  255. {
  256. "name": "badunk",
  257. "email": "baduncaduncan@gmail.com"
  258. },
  259. {
  260. "name": "Bamieh",
  261. "email": "ahmadbamieh@gmail.com"
  262. },
  263. {
  264. "name": "Ben Bradley",
  265. "email": "ben@bradleyit.com"
  266. },
  267. {
  268. "name": "Ben Glassman",
  269. "email": "benglass@users.noreply.github.com"
  270. },
  271. {
  272. "name": "Ben Harris",
  273. "email": "benhdev@gmail.com"
  274. },
  275. {
  276. "name": "Ben Hutchison",
  277. "email": "ben@aldaviva.com"
  278. },
  279. {
  280. "name": "Ben Lindsey",
  281. "email": "ben.lindsey@vungle.com"
  282. },
  283. {
  284. "name": "Ben Noordhuis",
  285. "email": "info@bnoordhuis.nl"
  286. },
  287. {
  288. "name": "Ben Vinegar",
  289. "email": "ben@benv.ca"
  290. },
  291. {
  292. "name": "Benjamin Eidelman",
  293. "email": "beneidel@gmail.com"
  294. },
  295. {
  296. "name": "Benjie Gillam",
  297. "email": "benjie@jemjie.com"
  298. },
  299. {
  300. "name": "Benoit Larroque",
  301. "email": "zeta.ben@gmail.com"
  302. },
  303. {
  304. "name": "Benoît Zugmeyer",
  305. "email": "bzugmeyer@gmail.com"
  306. },
  307. {
  308. "name": "Benson Trent",
  309. "email": "bensontrent@gmail.com"
  310. },
  311. {
  312. "name": "Berker Peksag",
  313. "email": "berker.peksag@gmail.com"
  314. },
  315. {
  316. "name": "berni",
  317. "email": "berni@extensa.pl"
  318. },
  319. {
  320. "name": "Bjørge Næss",
  321. "email": "bjoerge@origo.no"
  322. },
  323. {
  324. "name": "Brendan Nee",
  325. "email": "brendan.nee@gmail.com"
  326. },
  327. {
  328. "name": "Brian Beck",
  329. "email": "exogen@gmail.com"
  330. },
  331. {
  332. "name": "Brian Lalor",
  333. "email": "blalor@bravo5.org"
  334. },
  335. {
  336. "name": "Brian M. Carlson",
  337. "email": "brian.m.carlson@gmail.com"
  338. },
  339. {
  340. "name": "Brian Moore",
  341. "email": "guardbionic-github@yahoo.com"
  342. },
  343. {
  344. "name": "Brian Tomlin",
  345. "email": "tendonstrength@gmail.com"
  346. },
  347. {
  348. "name": "Brittany Moore",
  349. "email": "moore.brittanyann@gmail.com"
  350. },
  351. {
  352. "name": "Bryan Donovan",
  353. "email": "bdondo@gmail.com"
  354. },
  355. {
  356. "name": "Buck Doyle",
  357. "email": "b@chromatin.ca"
  358. },
  359. {
  360. "name": "C. Scott Ananian",
  361. "email": "cscott@cscott.net"
  362. },
  363. {
  364. "name": "Callum Macrae",
  365. "email": "callum@macr.ae"
  366. },
  367. {
  368. "name": "Can Oztokmak",
  369. "email": "can@zeplin.io"
  370. },
  371. {
  372. "name": "Capacitor Set",
  373. "email": "CapacitorSet@users.noreply.github.com"
  374. },
  375. {
  376. "name": "Casey Foster",
  377. "email": "casey@caseywebdev.com"
  378. },
  379. {
  380. "name": "Charles Lowell",
  381. "email": "cowboyd@frontside.io"
  382. },
  383. {
  384. "name": "Charles Merriam",
  385. "email": "charles.merriam@gmail.com"
  386. },
  387. {
  388. "name": "Charles Samborski",
  389. "email": "demurgos@demurgos.net"
  390. },
  391. {
  392. "name": "Charlie Rudolph",
  393. "email": "charles.w.rudolph@gmail.com"
  394. },
  395. {
  396. "name": "Chen Yangjian",
  397. "email": "252317+cyjake@users.noreply.github.com"
  398. },
  399. {
  400. "name": "Chris",
  401. "email": "chrisleck@users.noreply.github.com"
  402. },
  403. {
  404. "name": "Chris Buckley",
  405. "email": "chris@cmbuckley.co.uk"
  406. },
  407. {
  408. "name": "Chris Lamb",
  409. "email": "chris@chris-lamb.co.uk"
  410. },
  411. {
  412. "name": "Christian",
  413. "email": "me@rndm.de"
  414. },
  415. {
  416. "name": "Christoffer Hallas",
  417. "email": "christoffer.hallas@gmail.com"
  418. },
  419. {
  420. "name": "Christoph Neuroth",
  421. "email": "christoph.neuroth@gmail.com"
  422. },
  423. {
  424. "name": "Christopher Hiller",
  425. "email": "boneskull@boneskull.com"
  426. },
  427. {
  428. "name": "ChrisWren",
  429. "email": "cthewren@gmail.com"
  430. },
  431. {
  432. "name": "claudyus",
  433. "email": "claudyus@HEX.(none)",
  434. "url": "none"
  435. },
  436. {
  437. "name": "Connor Dunn",
  438. "email": "connorhd@gmail.com"
  439. },
  440. {
  441. "name": "Corey Butler",
  442. "email": "corey@coreybutler.com"
  443. },
  444. {
  445. "name": "Corey Farrell",
  446. "email": "git@cfware.com"
  447. },
  448. {
  449. "name": "Cory Thomas",
  450. "email": "cory.thomas@bazaarvoice.com"
  451. },
  452. {
  453. "name": "Craig Taub",
  454. "email": "craigtaub@gmail.com"
  455. },
  456. {
  457. "name": "Cube",
  458. "email": "maty21@gmail.com"
  459. },
  460. {
  461. "name": "Daniel Ruf",
  462. "email": "daniel@daniel-ruf.de"
  463. },
  464. {
  465. "name": "Daniel St. Jules",
  466. "email": "danielst.jules@gmail.com"
  467. },
  468. {
  469. "name": "Daniel Stockman",
  470. "email": "daniel.stockman@gmail.com"
  471. },
  472. {
  473. "name": "Darryl Pogue",
  474. "email": "dvpdiner2@gmail.com"
  475. },
  476. {
  477. "name": "Dave McKenna",
  478. "email": "davemckenna01@gmail.com"
  479. },
  480. {
  481. "name": "David da Silva Contín",
  482. "email": "dasilvacontin@gmail.com"
  483. },
  484. {
  485. "name": "David Henderson",
  486. "email": "david.henderson@triggeredmessaging.com"
  487. },
  488. {
  489. "name": "David M. Lee",
  490. "email": "leedm777@yahoo.com"
  491. },
  492. {
  493. "name": "David Neubauer",
  494. "email": "davidneub@gmail.com"
  495. },
  496. {
  497. "name": "DavNej",
  498. "email": "davnej.dev@gmail.com"
  499. },
  500. {
  501. "name": "Denis Bardadym",
  502. "email": "bardadymchik@gmail.com"
  503. },
  504. {
  505. "name": "Devin Weaver",
  506. "email": "suki@tritarget.org"
  507. },
  508. {
  509. "name": "dfberry",
  510. "email": "dinaberry@outlook.com"
  511. },
  512. {
  513. "name": "Di Wu",
  514. "email": "dwu@palantir.com"
  515. },
  516. {
  517. "name": "Dina Berry",
  518. "email": "dfberry@users.noreply.github.com"
  519. },
  520. {
  521. "name": "Diogo Monteiro",
  522. "email": "diogo.gmt@gmail.com"
  523. },
  524. {
  525. "name": "Dmitriy Simushev",
  526. "email": "simushevds@gmail.com"
  527. },
  528. {
  529. "name": "Dmitry Shirokov",
  530. "email": "deadrunk@gmail.com"
  531. },
  532. {
  533. "name": "Dmitry Sorin",
  534. "email": "info@staypositive.ru"
  535. },
  536. {
  537. "name": "Domenic Denicola",
  538. "email": "domenic@domenicdenicola.com"
  539. },
  540. {
  541. "name": "Dominic Barnes",
  542. "email": "dominic@dbarnes.info"
  543. },
  544. {
  545. "name": "Dominique Quatravaux",
  546. "email": "dominique@quatravaux.org"
  547. },
  548. {
  549. "name": "Douglas Christopher Wilson",
  550. "email": "doug@somethingdoug.com"
  551. },
  552. {
  553. "name": "Duncan Beevers",
  554. "email": "duncan@dweebd.com"
  555. },
  556. {
  557. "name": "eiji.ienaga",
  558. "email": "eiji.ienaga@gmail.com"
  559. },
  560. {
  561. "name": "elergy",
  562. "email": "elergy@yandex-team.ru"
  563. },
  564. {
  565. "name": "Eli Skeggs",
  566. "email": "skeggse@users.noreply.github.com"
  567. },
  568. {
  569. "name": "ELLIOTTCABLE",
  570. "email": "me@ell.io"
  571. },
  572. {
  573. "name": "Emanuele",
  574. "email": "my.burning@gmail.com"
  575. },
  576. {
  577. "name": "Enric Pallerols",
  578. "email": "enric@pallerols.cat"
  579. },
  580. {
  581. "name": "Erik Eng",
  582. "email": "mail@ptz0n.se"
  583. },
  584. {
  585. "name": "Eugene Tiutiunnyk",
  586. "email": "eugene.tiutiunnyk@lookout.com"
  587. },
  588. {
  589. "name": "Fabio M. Costa",
  590. "email": "fabiomcosta@gmail.com"
  591. },
  592. {
  593. "name": "Fábio Santos",
  594. "email": "fabiosantosart@gmail.com"
  595. },
  596. {
  597. "name": "Fagner Brack",
  598. "email": "github3@fagnermartins.com"
  599. },
  600. {
  601. "name": "fargies",
  602. "email": "fargies@users.noreply.github.com"
  603. },
  604. {
  605. "name": "FARKAS Máté",
  606. "email": "mate.farkas@virtual-call-center.eu"
  607. },
  608. {
  609. "name": "fcrisci",
  610. "email": "fabio.crisci@amadeus.com"
  611. },
  612. {
  613. "name": "Fede Ramirez",
  614. "email": "i@2fd.me"
  615. },
  616. {
  617. "name": "Fedor Indutny",
  618. "email": "fedor.indutny@gmail.com"
  619. },
  620. {
  621. "name": "fengmk2",
  622. "email": "fengmk2@gmail.com"
  623. },
  624. {
  625. "name": "Fin Chen",
  626. "email": "finfin@gmail.com"
  627. },
  628. {
  629. "name": "Florian Margaine",
  630. "email": "florian@margaine.com"
  631. },
  632. {
  633. "name": "FND",
  634. "email": "FND@users.noreply.github.com"
  635. },
  636. {
  637. "name": "fool2fish",
  638. "email": "fool2fish@gmail.com"
  639. },
  640. {
  641. "name": "Forbes Lindesay",
  642. "email": "forbes@lindesay.co.uk"
  643. },
  644. {
  645. "name": "Frank Leon Rose",
  646. "email": "frankleonrose@gmail.com"
  647. },
  648. {
  649. "name": "Frederico Silva",
  650. "email": "frederico.silva@gmail.com"
  651. },
  652. {
  653. "name": "Fredrik Enestad",
  654. "email": "fredrik@devloop.se"
  655. },
  656. {
  657. "name": "Fredrik Lindin",
  658. "email": "fredriklindin@gmail.com"
  659. },
  660. {
  661. "name": "Fumiaki MATSUSHIMA",
  662. "email": "mtsmfm@gmail.com"
  663. },
  664. {
  665. "name": "Gabriel Silk",
  666. "email": "gabesilk@gmail.com"
  667. },
  668. {
  669. "name": "Gareth Aye",
  670. "email": "gaye@mozilla.com"
  671. },
  672. {
  673. "name": "Gareth Murphy",
  674. "email": "gareth.cpm@gmail.com"
  675. },
  676. {
  677. "name": "Gavin Mogan",
  678. "email": "GavinM@airg.com"
  679. },
  680. {
  681. "name": "gaye",
  682. "email": "gaye@mozilla.com"
  683. },
  684. {
  685. "name": "gigadude",
  686. "email": "gigadude@users.noreply.github.com"
  687. },
  688. {
  689. "name": "Giovanni Bassi",
  690. "email": "giggio@giggio.net"
  691. },
  692. {
  693. "name": "gizemkeser",
  694. "email": "44727928+gizemkeser@users.noreply.github.com"
  695. },
  696. {
  697. "name": "Glen Huang",
  698. "email": "curvedmark@gmail.com"
  699. },
  700. {
  701. "name": "Glen Mailer",
  702. "email": "glenjamin@gmail.com"
  703. },
  704. {
  705. "name": "grasGendarme",
  706. "email": "me@grasgendar.me"
  707. },
  708. {
  709. "name": "Greg Perkins",
  710. "email": "gregperkins@alum.mit.edu"
  711. },
  712. {
  713. "name": "Guangcong Luo",
  714. "email": "guangcongluo@gmail.com"
  715. },
  716. {
  717. "name": "Guillermo Rauch",
  718. "email": "rauchg@gmail.com"
  719. },
  720. {
  721. "name": "Guy Arye",
  722. "email": "arye.guy@gmail.com"
  723. },
  724. {
  725. "name": "Gyandeep Singh",
  726. "email": "gyandeeps@gmail.com"
  727. },
  728. {
  729. "name": "Harish",
  730. "email": "hyeluri@gmail.com"
  731. },
  732. {
  733. "name": "Harry Brundage",
  734. "email": "harry.brundage@gmail.com"
  735. },
  736. {
  737. "name": "Harry Sarson",
  738. "email": "harry.sarson@hotmail.co.uk"
  739. },
  740. {
  741. "name": "Harry Wolff",
  742. "email": "hswolff@users.noreply.github.com"
  743. },
  744. {
  745. "name": "Herman Junge",
  746. "email": "herman@geekli.st"
  747. },
  748. {
  749. "name": "hokaccha",
  750. "email": "k.hokamura@gmail.com"
  751. },
  752. {
  753. "name": "Honza Javorek",
  754. "email": "mail@honzajavorek.cz"
  755. },
  756. {
  757. "name": "Hugo Giraudel",
  758. "email": "hugo.giraudel@gmail.com"
  759. },
  760. {
  761. "name": "Ian Storm Taylor",
  762. "email": "ian@ianstormtaylor.com"
  763. },
  764. {
  765. "name": "Ian W. Remmel",
  766. "email": "design@ianwremmel.com"
  767. },
  768. {
  769. "name": "Ian Young",
  770. "email": "ian.greenleaf@gmail.com"
  771. },
  772. {
  773. "name": "Ian Zamojc",
  774. "email": "ian@thesecretlocation.net"
  775. },
  776. {
  777. "name": "Igwe Kalu",
  778. "email": "igwe.kalu@live.com"
  779. },
  780. {
  781. "name": "ImgBot",
  782. "email": "31427850+ImgBotApp@users.noreply.github.com"
  783. },
  784. {
  785. "name": "inxorable",
  786. "email": "inxorable@codewren.ch"
  787. },
  788. {
  789. "name": "Ivan",
  790. "email": "ivan@kinvey.com"
  791. },
  792. {
  793. "name": "Jaakko Salonen",
  794. "email": "jaakko.salonen@iki.fi"
  795. },
  796. {
  797. "name": "Jacob Wejendorp",
  798. "email": "jacob@wejendorp.dk"
  799. },
  800. {
  801. "name": "Jake Craige",
  802. "email": "james.craige@gmail.com"
  803. },
  804. {
  805. "name": "Jake Marsh",
  806. "email": "jakemmarsh@gmail.com"
  807. },
  808. {
  809. "name": "Jakob Krigovsky",
  810. "email": "jakob@krigovsky.com"
  811. },
  812. {
  813. "name": "Jakub Nešetřil",
  814. "email": "jakub@apiary.io"
  815. },
  816. {
  817. "name": "James Bowes",
  818. "email": "jbowes@repl.ca"
  819. },
  820. {
  821. "name": "James Carr",
  822. "email": "james.r.carr@gmail.com"
  823. },
  824. {
  825. "name": "James G. Kim",
  826. "email": "jgkim@jayg.org"
  827. },
  828. {
  829. "name": "James Lal",
  830. "email": "james@lightsofapollo.com"
  831. },
  832. {
  833. "name": "James Nylen",
  834. "email": "jnylen@gmail.com"
  835. },
  836. {
  837. "name": "Jan Kopriva",
  838. "email": "jan.kopriva@gooddata.com"
  839. },
  840. {
  841. "name": "Jan Krems",
  842. "email": "jan.krems@groupon.com"
  843. },
  844. {
  845. "name": "Jan Lehnardt",
  846. "email": "jan@apache.org"
  847. },
  848. {
  849. "name": "Jason Barry",
  850. "email": "jay@jcbarry.com"
  851. },
  852. {
  853. "name": "Jason Lai",
  854. "email": "jason@getpebble.com"
  855. },
  856. {
  857. "name": "Jason Leyba",
  858. "email": "jmleyba@gmail.com"
  859. },
  860. {
  861. "name": "Javier Aranda",
  862. "email": "javierav@javierav.com"
  863. },
  864. {
  865. "name": "Jayasankar",
  866. "email": "jayasankar.m@gmail.com"
  867. },
  868. {
  869. "name": "Jean Ponchon",
  870. "email": "gelule@gmail.com"
  871. },
  872. {
  873. "name": "Jeff Kunkle",
  874. "email": "jeff.kunkle@nearinfinity.com"
  875. },
  876. {
  877. "name": "Jeff Schilling",
  878. "email": "jeff.schilling@q2ebanking.com"
  879. },
  880. {
  881. "name": "JeongHoon Byun",
  882. "email": "outsideris@gmail.com",
  883. "url": "aka Outsider"
  884. },
  885. {
  886. "name": "Jérémie Astori",
  887. "email": "jeremie@astori.fr"
  888. },
  889. {
  890. "name": "Jeremy Martin",
  891. "email": "jmar777@gmail.com"
  892. },
  893. {
  894. "name": "Jerry Muzsik",
  895. "email": "jerrymuzsik@icloud.com"
  896. },
  897. {
  898. "name": "Jesse Dailey",
  899. "email": "jesse.dailey@gmail.com"
  900. },
  901. {
  902. "name": "jimenglish81",
  903. "email": "jimenglish81@gmail.com"
  904. },
  905. {
  906. "name": "Jimmy Cuadra",
  907. "email": "jimmy@jimmycuadra.com"
  908. },
  909. {
  910. "name": "Jo Liss",
  911. "email": "joliss42@gmail.com"
  912. },
  913. {
  914. "name": "Joao Moreno",
  915. "email": "mail@joaomoreno.com"
  916. },
  917. {
  918. "name": "Joel Kemp",
  919. "email": "mrjoelkemp@gmail.com"
  920. },
  921. {
  922. "name": "Joey Cozza",
  923. "email": "joey@grow.com"
  924. },
  925. {
  926. "name": "John Doty",
  927. "email": "jrhdoty@gmail.com"
  928. },
  929. {
  930. "name": "John Firebaugh",
  931. "email": "john.firebaugh@gmail.com"
  932. },
  933. {
  934. "name": "John Reeves",
  935. "email": "github@jonnyreeves.co.uk"
  936. },
  937. {
  938. "name": "Johnathon Sanders",
  939. "email": "outdooricon@gmail.com"
  940. },
  941. {
  942. "name": "Jon Surrell",
  943. "email": "jon.surrell@automattic.com"
  944. },
  945. {
  946. "name": "Jonas Dohse",
  947. "email": "jonas@mbr-targeting.com"
  948. },
  949. {
  950. "name": "Jonas Westerlund",
  951. "email": "jonas.westerlund@me.com"
  952. },
  953. {
  954. "name": "Jonathan Creamer",
  955. "email": "matrixhasyou2k4@gmail.com"
  956. },
  957. {
  958. "name": "Jonathan Delgado",
  959. "email": "jdelgado@rewip.com"
  960. },
  961. {
  962. "name": "Jonathan Kim",
  963. "email": "jkimbo@gmail.com"
  964. },
  965. {
  966. "name": "Jonathan Ong",
  967. "email": "jonathanrichardong@gmail.com"
  968. },
  969. {
  970. "name": "Jonathan Park",
  971. "email": "jpark@daptiv.com"
  972. },
  973. {
  974. "name": "Jonathan Rajavuori",
  975. "email": "jrajav@gmail.com"
  976. },
  977. {
  978. "name": "Jordan Sexton",
  979. "email": "jordan@jordansexton.com"
  980. },
  981. {
  982. "name": "Joseph Lin",
  983. "email": "josephlin55555@gmail.com"
  984. },
  985. {
  986. "name": "Josh Eversmann",
  987. "email": "josh.eversmann@gmail.com"
  988. },
  989. {
  990. "name": "Josh Lory",
  991. "email": "josh.lory@code.org"
  992. },
  993. {
  994. "name": "Josh Soref",
  995. "email": "jsoref@users.noreply.github.com"
  996. },
  997. {
  998. "name": "Joshua Appelman",
  999. "email": "jappelman@xebia.com"
  1000. },
  1001. {
  1002. "name": "Joshua Krall",
  1003. "email": "joshuakrall@pobox.com"
  1004. },
  1005. {
  1006. "name": "JP Bochi",
  1007. "email": "jpbochi@gmail.com"
  1008. },
  1009. {
  1010. "name": "jsdevel",
  1011. "email": "js.developer.undefined@gmail.com"
  1012. },
  1013. {
  1014. "name": "Juerg B",
  1015. "email": "44573692+juergba@users.noreply.github.com"
  1016. },
  1017. {
  1018. "name": "Julien Wajsberg",
  1019. "email": "felash@gmail.com"
  1020. },
  1021. {
  1022. "name": "Jupp Müller",
  1023. "email": "jupp0r@gmail.com"
  1024. },
  1025. {
  1026. "name": "Jussi Virtanen",
  1027. "email": "jussi.k.virtanen@gmail.com"
  1028. },
  1029. {
  1030. "name": "Justin DuJardin",
  1031. "email": "justin.dujardin@sococo.com"
  1032. },
  1033. {
  1034. "name": "Juzer Ali",
  1035. "email": "er.juzerali@gmail.com"
  1036. },
  1037. {
  1038. "name": "Katie Gengler",
  1039. "email": "katiegengler@gmail.com"
  1040. },
  1041. {
  1042. "name": "kavun",
  1043. "email": "kevin.a.reed@gmail.com"
  1044. },
  1045. {
  1046. "name": "Kazuhito Hokamura",
  1047. "email": "k.hokamura@gmail.com"
  1048. },
  1049. {
  1050. "name": "Keith Cirkel",
  1051. "email": "github@keithcirkel.co.uk"
  1052. },
  1053. {
  1054. "name": "Kelong Wang",
  1055. "email": "buaawkl@gmail.com"
  1056. },
  1057. {
  1058. "name": "Kent C. Dodds",
  1059. "email": "kent+github@doddsfamily.us"
  1060. },
  1061. {
  1062. "name": "Kevin Burke",
  1063. "email": "kev@inburke.com"
  1064. },
  1065. {
  1066. "name": "Kevin Conway",
  1067. "email": "kevinjacobconway@gmail.com"
  1068. },
  1069. {
  1070. "name": "Kevin Kirsche",
  1071. "email": "Kev.Kirsche+GitHub@gmail.com"
  1072. },
  1073. {
  1074. "name": "Kevin Partington",
  1075. "email": "platinum.azure@kernelpanicstudios.com"
  1076. },
  1077. {
  1078. "name": "Kevin Wang",
  1079. "email": "kevin@fossa.io"
  1080. },
  1081. {
  1082. "name": "Kirill Korolyov",
  1083. "email": "kirill.korolyov@gmail.com"
  1084. },
  1085. {
  1086. "name": "klaemo",
  1087. "email": "klaemo@fastmail.fm"
  1088. },
  1089. {
  1090. "name": "Koen Punt",
  1091. "email": "koen@koenpunt.nl"
  1092. },
  1093. {
  1094. "name": "Konstantin Käfer",
  1095. "email": "github@kkaefer.com"
  1096. },
  1097. {
  1098. "name": "Kris Rasmussen",
  1099. "email": "kristopher.rasmussen@gmail.com"
  1100. },
  1101. {
  1102. "name": "Kunal Nagpal",
  1103. "email": "kunagpal@users.noreply.github.com"
  1104. },
  1105. {
  1106. "name": "Kyle Mitchell",
  1107. "email": "kyle@kemitchell.com"
  1108. },
  1109. {
  1110. "name": "lakmeer",
  1111. "email": "lakmeerkravid@gmail.com"
  1112. },
  1113. {
  1114. "name": "Lane Kelly",
  1115. "email": "lanekelly16@gmail.com"
  1116. },
  1117. {
  1118. "name": "László Bácsi",
  1119. "email": "lackac@lackac.hu"
  1120. },
  1121. {
  1122. "name": "Laurence Rowe",
  1123. "email": "lrowe@netflix.com"
  1124. },
  1125. {
  1126. "name": "Liam Newman",
  1127. "email": "bitwiseman@gmail.com"
  1128. },
  1129. {
  1130. "name": "Linus Unnebäck",
  1131. "email": "linus@folkdatorn.se"
  1132. },
  1133. {
  1134. "name": "lodr",
  1135. "email": "salva@unoyunodiez.com"
  1136. },
  1137. {
  1138. "name": "Long Ho",
  1139. "email": "longlho@users.noreply.github.com"
  1140. },
  1141. {
  1142. "name": "Maciej Małecki",
  1143. "email": "maciej.malecki@notimplemented.org"
  1144. },
  1145. {
  1146. "name": "Mal Graty",
  1147. "email": "mal.graty@googlemail.com"
  1148. },
  1149. {
  1150. "name": "Marais Rossouw",
  1151. "email": "me@maraisr.com"
  1152. },
  1153. {
  1154. "name": "Marc Kuo",
  1155. "email": "kuomarc2@gmail.com"
  1156. },
  1157. {
  1158. "name": "Marc Udoff",
  1159. "email": "mlucool@gmail.com"
  1160. },
  1161. {
  1162. "name": "Marcello Bastea-Forte",
  1163. "email": "marcello@cellosoft.com"
  1164. },
  1165. {
  1166. "name": "Mark Banner",
  1167. "email": "standard8@mozilla.com"
  1168. },
  1169. {
  1170. "name": "Mark Owsiak",
  1171. "email": "mark.owsiak@gmail.com"
  1172. },
  1173. {
  1174. "name": "Markus Tacker",
  1175. "email": "m@coderbyheart.com"
  1176. },
  1177. {
  1178. "name": "Martijn Cuppens",
  1179. "email": "martijn.cuppens@intracto.com"
  1180. },
  1181. {
  1182. "name": "Martin Marko",
  1183. "email": "marcus@gratex.com"
  1184. },
  1185. {
  1186. "name": "Mathieu Desvé",
  1187. "email": "mathieudesve@MacBook-Pro-de-Mathieu.local"
  1188. },
  1189. {
  1190. "name": "Matija Marohnić",
  1191. "email": "matija.marohnic@gmail.com"
  1192. },
  1193. {
  1194. "name": "Matt Bierner",
  1195. "email": "mattbierner@gmail.com"
  1196. },
  1197. {
  1198. "name": "Matt Giles",
  1199. "email": "matt.giles@cerner.com"
  1200. },
  1201. {
  1202. "name": "Matt Robenolt",
  1203. "email": "matt@ydekproductions.com"
  1204. },
  1205. {
  1206. "name": "Matt Smith",
  1207. "email": "matthewgarysmith@gmail.com"
  1208. },
  1209. {
  1210. "name": "Matthew Shanley",
  1211. "email": "matthewshanley@littlesecretsrecords.com"
  1212. },
  1213. {
  1214. "name": "Mattias Tidlund",
  1215. "email": "mattias.tidlund@learningwell.se"
  1216. },
  1217. {
  1218. "name": "Max Goodman",
  1219. "email": "c@chromakode.com"
  1220. },
  1221. {
  1222. "name": "Maximilian Antoni",
  1223. "email": "mail@maxantoni.de"
  1224. },
  1225. {
  1226. "name": "Merrick Christensen",
  1227. "email": "merrick.christensen@gmail.com"
  1228. },
  1229. {
  1230. "name": "Michael Demmer",
  1231. "email": "demmer@jut.io"
  1232. },
  1233. {
  1234. "name": "Michael Jackson",
  1235. "email": "mjijackson@gmail.com"
  1236. },
  1237. {
  1238. "name": "Michael Olson",
  1239. "email": "mwolson@member.fsf.org"
  1240. },
  1241. {
  1242. "name": "Michael Riley",
  1243. "email": "michael.riley@autodesk.com"
  1244. },
  1245. {
  1246. "name": "Michael Schoonmaker",
  1247. "email": "michael.r.schoonmaker@gmail.com"
  1248. },
  1249. {
  1250. "name": "Michal Charemza",
  1251. "email": "michalcharemza@gmail.com"
  1252. },
  1253. {
  1254. "name": "Michiel de Jong",
  1255. "email": "michiel@unhosted.org"
  1256. },
  1257. {
  1258. "name": "Mick Brooks",
  1259. "email": "mick.brooks@sinking.in"
  1260. },
  1261. {
  1262. "name": "Mike Pennisi",
  1263. "email": "mike@mikepennisi.com"
  1264. },
  1265. {
  1266. "name": "Mislav Marohnić",
  1267. "email": "mislav.marohnic@gmail.com"
  1268. },
  1269. {
  1270. "name": "monowerker",
  1271. "email": "monowerker@gmail.com"
  1272. },
  1273. {
  1274. "name": "Moshe Kolodny",
  1275. "email": "mkolodny@integralads.com"
  1276. },
  1277. {
  1278. "name": "mrShturman",
  1279. "email": "mrshturman@gmail.com"
  1280. },
  1281. {
  1282. "name": "Nathan Alderson",
  1283. "email": "nathan.alderson@adtran.com"
  1284. },
  1285. {
  1286. "name": "Nathan Black",
  1287. "email": "nathan@nathanblack.org"
  1288. },
  1289. {
  1290. "name": "Nathan Bowser",
  1291. "email": "nathan.bowser@spiderstrategies.com"
  1292. },
  1293. {
  1294. "name": "Nathan Houle",
  1295. "email": "nathan@nathanhoule.com"
  1296. },
  1297. {
  1298. "name": "Nathan Rajlich",
  1299. "email": "nathan@tootallnate.net"
  1300. },
  1301. {
  1302. "name": "nexdrew",
  1303. "email": "andrew.goode@nextraq.com"
  1304. },
  1305. {
  1306. "name": "Nick Fitzgerald",
  1307. "email": "fitzgen@gmail.com"
  1308. },
  1309. {
  1310. "name": "Nicolas Girault",
  1311. "email": "nic.girault@gmail.com"
  1312. },
  1313. {
  1314. "name": "Nicolo Taddei",
  1315. "email": "taddei.uk@gmail.com"
  1316. },
  1317. {
  1318. "name": "Nik Nyby",
  1319. "email": "nnyby@columbia.edu"
  1320. },
  1321. {
  1322. "name": "Nikolaos Georgiou",
  1323. "email": "Nikolaos.Georgiou@gmail.com"
  1324. },
  1325. {
  1326. "name": "nishigori",
  1327. "email": "Takuya_Nishigori@voyagegroup.com"
  1328. },
  1329. {
  1330. "name": "Noshir Patel",
  1331. "email": "nosh@blackpiano.com"
  1332. },
  1333. {
  1334. "name": "not-an-aardvark",
  1335. "email": "not-an-aardvark@users.noreply.github.com"
  1336. },
  1337. {
  1338. "name": "OlegTsyba",
  1339. "email": "oleg.tsyba.ua@gmail.com"
  1340. },
  1341. {
  1342. "name": "olsonpm",
  1343. "email": "olsonpm@users.noreply.github.com"
  1344. },
  1345. {
  1346. "name": "omardelarosa",
  1347. "email": "thedelarosa@gmail.com"
  1348. },
  1349. {
  1350. "name": "Oscar Godson",
  1351. "email": "oscargodson@outlook.com"
  1352. },
  1353. {
  1354. "name": "Outsider",
  1355. "email": "outsideris@gmail.com"
  1356. },
  1357. {
  1358. "name": "oveddan",
  1359. "email": "stangogh@gmail.com"
  1360. },
  1361. {
  1362. "name": "P. Roebuck",
  1363. "email": "plroebuck@users.noreply.github.com"
  1364. },
  1365. {
  1366. "name": "Panu Horsmalahti",
  1367. "email": "panu.horsmalahti@iki.fi"
  1368. },
  1369. {
  1370. "name": "Parker Moore",
  1371. "email": "parkrmoore@gmail.com"
  1372. },
  1373. {
  1374. "name": "Pat Finnigan",
  1375. "email": "patrick.k.finnigan@gmail.com"
  1376. },
  1377. {
  1378. "name": "Paul Armstrong",
  1379. "email": "paul@paularmstrongdesigns.com"
  1380. },
  1381. {
  1382. "name": "Paul Miller",
  1383. "email": "paul@paulmillr.com"
  1384. },
  1385. {
  1386. "name": "Paul Roebuck",
  1387. "email": "plroebuck@users.noreply.github.com"
  1388. },
  1389. {
  1390. "name": "Pavel Zubkou",
  1391. "email": "pavel.zubkou@gmail.com"
  1392. },
  1393. {
  1394. "name": "Pete Hawkins",
  1395. "email": "pete@petes-imac.frontinternal.net"
  1396. },
  1397. {
  1398. "name": "Peter Müller",
  1399. "email": "munter@fumle.dk"
  1400. },
  1401. {
  1402. "name": "Peter Rust",
  1403. "email": "peter@cornerstonenw.com"
  1404. },
  1405. {
  1406. "name": "Phil Sung",
  1407. "email": "psung@dnanexus.com"
  1408. },
  1409. {
  1410. "name": "Philip M. White",
  1411. "email": "philip@mailworks.org"
  1412. },
  1413. {
  1414. "name": "PoppinL",
  1415. "email": "poppinlp@gmail.com"
  1416. },
  1417. {
  1418. "name": "Poprádi Árpád",
  1419. "email": "popradi.arpad11@gmail.com"
  1420. },
  1421. {
  1422. "name": "Prayag Verma",
  1423. "email": "prayag.verma@gmail.com"
  1424. },
  1425. {
  1426. "name": "qiuzuhui",
  1427. "email": "qiuzuhui@users.noreply.github.com"
  1428. },
  1429. {
  1430. "name": "Quang Van",
  1431. "email": "quangvvv@gmail.com"
  1432. },
  1433. {
  1434. "name": "Quanlong He",
  1435. "email": "kyan.ql.he@gmail.com"
  1436. },
  1437. {
  1438. "name": "R56",
  1439. "email": "rviskus@gmail.com"
  1440. },
  1441. {
  1442. "name": "Raynos",
  1443. "email": "raynos2@gmail.com"
  1444. },
  1445. {
  1446. "name": "Refael Ackermann",
  1447. "email": "refael@empeeric.com"
  1448. },
  1449. {
  1450. "name": "Rich Trott",
  1451. "email": "rtrott@gmail.com"
  1452. },
  1453. {
  1454. "name": "Richard Dingwall",
  1455. "email": "rdingwall@gmail.com"
  1456. },
  1457. {
  1458. "name": "Richard Knop",
  1459. "email": "RichardKnop@users.noreply.github.com"
  1460. },
  1461. {
  1462. "name": "Rico Sta. Cruz",
  1463. "email": "rstacruz@users.noreply.github.com"
  1464. },
  1465. {
  1466. "name": "rmacklin",
  1467. "email": "richard.github@nrm.com"
  1468. },
  1469. {
  1470. "name": "Rob Loach",
  1471. "email": "robloach@gmail.com"
  1472. },
  1473. {
  1474. "name": "Rob Raux",
  1475. "email": "rraux@peachworks.com"
  1476. },
  1477. {
  1478. "name": "Rob Wu",
  1479. "email": "rob@robwu.nl"
  1480. },
  1481. {
  1482. "name": "Robert Rossmann",
  1483. "email": "rr.rossmann@me.com"
  1484. },
  1485. {
  1486. "name": "Romain Prieto",
  1487. "email": "romain.prieto@gmail.com"
  1488. },
  1489. {
  1490. "name": "Roman Neuhauser",
  1491. "email": "rneuhauser@suse.cz"
  1492. },
  1493. {
  1494. "name": "Roman Shtylman",
  1495. "email": "shtylman@gmail.com"
  1496. },
  1497. {
  1498. "name": "Ross Warren",
  1499. "email": "rosswarren4@gmail.com"
  1500. },
  1501. {
  1502. "name": "rotemdan",
  1503. "email": "rotemdan@gmail.com"
  1504. },
  1505. {
  1506. "name": "Russ Bradberry",
  1507. "email": "devdazed@me.com"
  1508. },
  1509. {
  1510. "name": "Russell Munson",
  1511. "email": "rmunson@github.com"
  1512. },
  1513. {
  1514. "name": "Rustem Mustafin",
  1515. "email": "mustafin.rustem@gmail.com"
  1516. },
  1517. {
  1518. "name": "Ryan Hubbard",
  1519. "email": "ryanmhubbard@gmail.com"
  1520. },
  1521. {
  1522. "name": "Ryan Shaw",
  1523. "email": "ryan.shaw@min.vc"
  1524. },
  1525. {
  1526. "name": "Ryan Tablada",
  1527. "email": "ryan.tablada@gmail.com"
  1528. },
  1529. {
  1530. "name": "Ryunosuke SATO",
  1531. "email": "tricknotes.rs@gmail.com"
  1532. },
  1533. {
  1534. "name": "ryym",
  1535. "email": "ryym.64@gmail.com"
  1536. },
  1537. {
  1538. "name": "Salehen Shovon Rahman",
  1539. "email": "salehen.rahman@gmail.com"
  1540. },
  1541. {
  1542. "name": "Sam Mussell",
  1543. "email": "smussell@gmail.com"
  1544. },
  1545. {
  1546. "name": "samuel goldszmidt",
  1547. "email": "samuel.goldszmidt@gmail.com"
  1548. },
  1549. {
  1550. "name": "sarehag",
  1551. "email": "joakim.sarehag@gmail.com"
  1552. },
  1553. {
  1554. "name": "Sasha Koss",
  1555. "email": "koss@nocorp.me"
  1556. },
  1557. {
  1558. "name": "Scott Kao",
  1559. "email": "Scottkao85@users.noreply.github.com"
  1560. },
  1561. {
  1562. "name": "Scott Santucci",
  1563. "email": "ScottFreeCode@users.noreply.github.com"
  1564. },
  1565. {
  1566. "name": "ScottFreeCode",
  1567. "email": "ScottFreeCode@users.noreply.github.com"
  1568. },
  1569. {
  1570. "name": "Sean Lang",
  1571. "email": "slang800@gmail.com"
  1572. },
  1573. {
  1574. "name": "Sebastian Van Sande",
  1575. "email": "sebastian@vansande.org"
  1576. },
  1577. {
  1578. "name": "sebv",
  1579. "email": "seb.vincent@gmail.com"
  1580. },
  1581. {
  1582. "name": "Seiya Konno",
  1583. "email": "nulltask@gmail.com"
  1584. },
  1585. {
  1586. "name": "Sergey Simonchik",
  1587. "email": "sergey.simonchik@jetbrains.com"
  1588. },
  1589. {
  1590. "name": "Sergio Santoro",
  1591. "email": "santoro.srg@gmail.com"
  1592. },
  1593. {
  1594. "name": "Shaine Hatch",
  1595. "email": "shaine@squidtree.com"
  1596. },
  1597. {
  1598. "name": "Shawn Krisman",
  1599. "email": "telaviv@github"
  1600. },
  1601. {
  1602. "name": "Shinnosuke Watanabe",
  1603. "email": "snnskwtnb@gmail.com"
  1604. },
  1605. {
  1606. "name": "silentcloud",
  1607. "email": "rjmuqiang@gmail.com"
  1608. },
  1609. {
  1610. "name": "Silvio Massari",
  1611. "email": "silvio.massari@auth0.com"
  1612. },
  1613. {
  1614. "name": "Simon Gaeremynck",
  1615. "email": "gaeremyncks@gmail.com"
  1616. },
  1617. {
  1618. "name": "Simon Goumaz",
  1619. "email": "simon@attentif.ch"
  1620. },
  1621. {
  1622. "name": "simov",
  1623. "email": "simeonvelichkov@gmail.com"
  1624. },
  1625. {
  1626. "name": "Sindre Sorhus",
  1627. "email": "sindresorhus@gmail.com"
  1628. },
  1629. {
  1630. "name": "Slobodan Mišković",
  1631. "email": "slobodan@miskovic.ca"
  1632. },
  1633. {
  1634. "name": "slyg",
  1635. "email": "syl.faucherand@gmail.com"
  1636. },
  1637. {
  1638. "name": "Soel",
  1639. "email": "shachar.soel@sap.com"
  1640. },
  1641. {
  1642. "name": "solodynamo",
  1643. "email": "bittuf3@gmail.com"
  1644. },
  1645. {
  1646. "name": "Sorin Iclanzan",
  1647. "email": "sorin@iclanzan.com"
  1648. },
  1649. {
  1650. "name": "Standa Opichal",
  1651. "email": "opichals@gmail.com"
  1652. },
  1653. {
  1654. "name": "startswithaj",
  1655. "email": "jake.mc@icloud.com"
  1656. },
  1657. {
  1658. "name": "Stephen Mathieson",
  1659. "email": "smath23@gmail.com"
  1660. },
  1661. {
  1662. "name": "Steve Mason",
  1663. "email": "stevem@brandwatch.com"
  1664. },
  1665. {
  1666. "name": "Stewart Taylor",
  1667. "email": "stewart.taylor1@gmail.com"
  1668. },
  1669. {
  1670. "name": "Stone",
  1671. "email": "baoshi.li@adleida.com"
  1672. },
  1673. {
  1674. "name": "Sulabh Bista",
  1675. "email": "sul4bh@gmail.com"
  1676. },
  1677. {
  1678. "name": "Sune Simonsen",
  1679. "email": "sune@we-knowhow.dk"
  1680. },
  1681. {
  1682. "name": "Svetlana",
  1683. "email": "39729453+Lana-Light@users.noreply.github.com"
  1684. },
  1685. {
  1686. "name": "Szauka",
  1687. "email": "33459309+Szauka@users.noreply.github.com"
  1688. },
  1689. {
  1690. "name": "Tapiwa Kelvin",
  1691. "email": "tapiwa@munzwa.tk"
  1692. },
  1693. {
  1694. "name": "Ted Yavuzkurt",
  1695. "email": "hello@TedY.io"
  1696. },
  1697. {
  1698. "name": "Teddy Zeenny",
  1699. "email": "teddyzeenny@gmail.com"
  1700. },
  1701. {
  1702. "name": "tgautier@yahoo.com",
  1703. "email": "tgautier@gmail.com"
  1704. },
  1705. {
  1706. "name": "Thedark1337",
  1707. "email": "thedark1337@thedark1337.com"
  1708. },
  1709. {
  1710. "name": "Thomas Broadley",
  1711. "email": "buriedunderbooks@hotmail.com"
  1712. },
  1713. {
  1714. "name": "Thomas Grainger",
  1715. "email": "tagrain@gmail.com"
  1716. },
  1717. {
  1718. "name": "Thomas Vantuycom",
  1719. "email": "thomasvantuycom@protonmail.com"
  1720. },
  1721. {
  1722. "name": "Tim Ehat",
  1723. "email": "timehat@gmail.com"
  1724. },
  1725. {
  1726. "name": "Tim Harshman",
  1727. "email": "goteamtim+git@gmail.com"
  1728. },
  1729. {
  1730. "name": "Timo Tijhof",
  1731. "email": "krinklemail@gmail.com"
  1732. },
  1733. {
  1734. "name": "Timothy Gu",
  1735. "email": "timothygu99@gmail.com"
  1736. },
  1737. {
  1738. "name": "Tingan Ho",
  1739. "email": "tingan87@gmail.com"
  1740. },
  1741. {
  1742. "name": "tmont",
  1743. "email": "tommy.mont@gmail.com"
  1744. },
  1745. {
  1746. "name": "Tobias Bieniek",
  1747. "email": "tobias.bieniek@gmail.com"
  1748. },
  1749. {
  1750. "name": "Tobias Mollstam",
  1751. "email": "tobias@mollstam.com"
  1752. },
  1753. {
  1754. "name": "Todd Agulnick",
  1755. "email": "tagulnick@onjack.com"
  1756. },
  1757. {
  1758. "name": "Tom Coquereau",
  1759. "email": "tom@thau.me"
  1760. },
  1761. {
  1762. "name": "Tom Hughes",
  1763. "email": "tom@compton.nu"
  1764. },
  1765. {
  1766. "name": "Tomer Eskenazi",
  1767. "email": "tomer.eskenazi@ironsrc.com"
  1768. },
  1769. {
  1770. "name": "traleig1",
  1771. "email": "darkphoenix739@gmail.com"
  1772. },
  1773. {
  1774. "name": "Travis Jeffery",
  1775. "email": "tj@travisjeffery.com"
  1776. },
  1777. {
  1778. "name": "tripu",
  1779. "email": "t@tripu.info"
  1780. },
  1781. {
  1782. "name": "Tyson Tate",
  1783. "email": "tyson@tysontate.com"
  1784. },
  1785. {
  1786. "name": "Vadim Nikitin",
  1787. "email": "vnikiti@ncsu.edu"
  1788. },
  1789. {
  1790. "name": "Valentin Agachi",
  1791. "email": "github-com@agachi.name"
  1792. },
  1793. {
  1794. "name": "Valeri Karpov",
  1795. "email": "val@karpov.io"
  1796. },
  1797. {
  1798. "name": "Victor",
  1799. "email": "victor@turo.com"
  1800. },
  1801. {
  1802. "name": "Victor Costan",
  1803. "email": "costan@gmail.com"
  1804. },
  1805. {
  1806. "name": "Ville Saukkonen",
  1807. "email": "villesau@users.noreply.github.com"
  1808. },
  1809. {
  1810. "name": "Vivek Ganesan",
  1811. "email": "caliberoviv@gmail.com"
  1812. },
  1813. {
  1814. "name": "vlad",
  1815. "email": "iamvlad@gmail.com"
  1816. },
  1817. {
  1818. "name": "Vlad Magdalin",
  1819. "email": "vlad@webflow.com"
  1820. },
  1821. {
  1822. "name": "Volker Buzek",
  1823. "email": "volker.buzek@sap.com"
  1824. },
  1825. {
  1826. "name": "Wanseob Lim",
  1827. "email": "email@wanseob.com"
  1828. },
  1829. {
  1830. "name": "Wil Moore III",
  1831. "email": "wil.moore@wilmoore.com"
  1832. },
  1833. {
  1834. "name": "Will Langstroth",
  1835. "email": "will@langstroth.com"
  1836. },
  1837. {
  1838. "name": "wsw",
  1839. "email": "wsw0108@gmail.com"
  1840. },
  1841. {
  1842. "name": "Xavier Antoviaque",
  1843. "email": "xavier@antoviaque.org"
  1844. },
  1845. {
  1846. "name": "Xavier Damman",
  1847. "email": "xdamman@gmail.com"
  1848. },
  1849. {
  1850. "name": "XhmikosR",
  1851. "email": "xhmikosr@users.sourceforge.net"
  1852. },
  1853. {
  1854. "name": "Yanis Wang",
  1855. "email": "yanis.wang@gmail.com"
  1856. },
  1857. {
  1858. "name": "yehiyam",
  1859. "email": "yehiyam@users.noreply.github.com"
  1860. },
  1861. {
  1862. "name": "Yoshiya Hinosawa",
  1863. "email": "hinosawa@waku-2.com"
  1864. },
  1865. {
  1866. "name": "Yuest Wang",
  1867. "email": "yuestwang@gmail.com"
  1868. },
  1869. {
  1870. "name": "yuitest",
  1871. "email": "yuitest@cjhat.net"
  1872. },
  1873. {
  1874. "name": "zhiyelee",
  1875. "email": "zhiyelee@gmail.com"
  1876. },
  1877. {
  1878. "name": "Zsolt Takács",
  1879. "email": "zsolt@takacs.cc"
  1880. },
  1881. {
  1882. "name": "现充",
  1883. "email": "qixiang.cqx@alibaba-inc.com"
  1884. }
  1885. ],
  1886. "dependencies": {
  1887. "ansi-colors": "3.2.3",
  1888. "browser-stdout": "1.3.1",
  1889. "debug": "3.2.6",
  1890. "diff": "3.5.0",
  1891. "escape-string-regexp": "1.0.5",
  1892. "findup-sync": "2.0.0",
  1893. "glob": "7.1.3",
  1894. "growl": "1.10.5",
  1895. "he": "1.2.0",
  1896. "js-yaml": "3.12.0",
  1897. "log-symbols": "2.2.0",
  1898. "minimatch": "3.0.4",
  1899. "mkdirp": "0.5.1",
  1900. "ms": "2.1.1",
  1901. "node-environment-flags": "1.0.4",
  1902. "object.assign": "4.1.0",
  1903. "strip-json-comments": "2.0.1",
  1904. "supports-color": "6.0.0",
  1905. "which": "1.3.1",
  1906. "wide-align": "1.1.3",
  1907. "yargs": "12.0.5",
  1908. "yargs-parser": "11.1.1",
  1909. "yargs-unparser": "1.5.0"
  1910. },
  1911. "deprecated": false,
  1912. "description": "simple, flexible, fun test framework",
  1913. "devDependencies": {
  1914. "@11ty/eleventy": "^0.7.1",
  1915. "@mocha/contributors": "^1.0.3",
  1916. "@mocha/docdash": "^2.0.0",
  1917. "assetgraph-builder": "^6.6.3",
  1918. "browserify": "^16.2.3",
  1919. "browserify-package-json": "^1.0.1",
  1920. "chai": "^4.2.0",
  1921. "coffee-script": "^1.10.0",
  1922. "coveralls": "^3.0.2",
  1923. "cross-env": "^5.2.0",
  1924. "cross-spawn": "^6.0.5",
  1925. "eslint": "^5.14.1",
  1926. "eslint-config-prettier": "^3.6.0",
  1927. "eslint-config-semistandard": "^13.0.0",
  1928. "eslint-config-standard": "^12.0.0",
  1929. "eslint-plugin-import": "^2.16.0",
  1930. "eslint-plugin-node": "^8.0.1",
  1931. "eslint-plugin-prettier": "^3.0.0",
  1932. "eslint-plugin-promise": "^4.0.1",
  1933. "eslint-plugin-standard": "^4.0.0",
  1934. "husky": "^1.2.1",
  1935. "jsdoc": "^3.5.5",
  1936. "karma": "^4.0.0",
  1937. "karma-browserify": "^5.3.0",
  1938. "karma-chrome-launcher": "^2.0.0",
  1939. "karma-mocha": "^1.3.0",
  1940. "karma-mocha-reporter": "^2.2.4",
  1941. "karma-sauce-launcher": "^1.2.0",
  1942. "lint-staged": "^8.1.4",
  1943. "markdown-it": "^8.4.2",
  1944. "markdown-it-anchor": "^5.0.2",
  1945. "markdown-it-attrs": "^2.3.2",
  1946. "markdown-it-prism": "^2.0.1",
  1947. "markdown-magic": "^0.1.25",
  1948. "markdown-magic-package-json": "^2.0.0",
  1949. "markdown-toc": "^1.2.0",
  1950. "markdownlint-cli": "^0.13.0",
  1951. "nps": "^5.9.3",
  1952. "nyc": "^13.3.0",
  1953. "prettier": "^1.16.4",
  1954. "remark": "^10.0.1",
  1955. "remark-github": "^7.0.6",
  1956. "remark-inline-links": "^3.1.2",
  1957. "rewiremock": "^3.12.3",
  1958. "rimraf": "^2.5.2",
  1959. "sinon": "^7.2.4",
  1960. "strip-ansi": "^5.0.0",
  1961. "svgo": "^1.1.1",
  1962. "through2": "^3.0.0",
  1963. "to-vfile": "^5.0.2",
  1964. "unexpected": "^10.39.2",
  1965. "unexpected-eventemitter": "^1.1.3",
  1966. "unexpected-sinon": "^10.11.1",
  1967. "uslug": "^1.0.4",
  1968. "watchify": "^3.11.1"
  1969. },
  1970. "directories": {
  1971. "lib": "./lib",
  1972. "test": "./test"
  1973. },
  1974. "engines": {
  1975. "node": ">= 6.0.0"
  1976. },
  1977. "files": [
  1978. "bin/{*mocha,options.js}",
  1979. "assets/growl/*.png",
  1980. "lib/**/*.{js,html,json}",
  1981. "index.js",
  1982. "mocha.css",
  1983. "mocha.js",
  1984. "browser-entry.js"
  1985. ],
  1986. "gitter": "https://gitter.im/mochajs/mocha",
  1987. "homepage": "https://mochajs.org/",
  1988. "husky": {
  1989. "hooks": {
  1990. "pre-commit": "lint-staged"
  1991. }
  1992. },
  1993. "keywords": [
  1994. "mocha",
  1995. "test",
  1996. "bdd",
  1997. "tdd",
  1998. "tap"
  1999. ],
  2000. "license": "MIT",
  2001. "logo": "https://cldup.com/S9uQ-cOLYz.svg",
  2002. "name": "mocha",
  2003. "notifyLogo": "https://ibin.co/4QuRuGjXvl36.png",
  2004. "prettier": {
  2005. "singleQuote": true,
  2006. "bracketSpacing": false,
  2007. "endOfLine": "auto"
  2008. },
  2009. "repository": {
  2010. "type": "git",
  2011. "url": "git+https://github.com/mochajs/mocha.git"
  2012. },
  2013. "scripts": {
  2014. "prepublishOnly": "nps test clean build",
  2015. "start": "nps",
  2016. "test": "nps test",
  2017. "version": "nps version"
  2018. },
  2019. "version": "6.0.1",
  2020. "yargs": {
  2021. "combine-arrays": true,
  2022. "short-option-groups": false,
  2023. "dot-notation": false
  2024. }
  2025. }