{"_id":"macchiato","_rev":"57-8bc5388a7deda4b8d0bd695c0b2bdad1","name":"macchiato","time":{"modified":"2022-06-19T15:03:29.202Z","created":"2011-09-19T18:53:26.754Z","0.0.0":"2011-09-19T18:53:27.802Z","0.0.1":"2011-09-19T18:55:18.701Z","0.0.2":"2014-04-19T01:45:27.937Z","0.0.3":"2014-04-19T01:48:48.957Z","0.0.4":"2014-04-24T20:20:24.298Z","0.1.1":"2014-05-25T10:51:36.349Z","0.2.0":"2014-08-09T21:51:31.080Z","1.0.0":"2014-08-10T23:33:30.544Z","2.0.0":"2014-10-10T18:31:07.483Z","2.0.1":"2014-10-10T18:35:11.595Z","2.1.0":"2014-10-12T02:59:20.132Z","2.2.0":"2014-10-14T18:49:02.401Z","2.3.0":"2014-11-13T20:33:48.595Z","2.3.1":"2014-12-02T18:51:09.302Z","2.3.2":"2014-12-09T10:05:24.143Z","2.4.0":"2014-12-12T20:59:46.534Z","2.5.0":"2015-01-15T02:31:45.966Z","2.5.1":"2015-01-15T02:34:40.436Z","2.6.0":"2015-03-09T19:15:19.926Z","2.7.0":"2015-03-21T19:34:12.548Z","2.8.0":"2015-04-06T20:36:11.807Z","3.0.0":"2015-04-28T20:27:16.361Z","3.0.1":"2015-04-30T22:30:19.524Z","3.1.0":"2015-05-23T17:20:48.067Z","3.1.1":"2015-05-23T21:32:03.988Z","4.0.0":"2015-05-23T23:21:17.218Z","4.1.0":"2015-06-07T15:40:44.999Z","4.2.0":"2015-07-03T22:57:55.767Z","4.2.1":"2015-07-03T23:53:51.473Z","4.3.0":"2015-08-30T09:04:41.252Z","4.4.0":"2015-11-07T23:37:00.028Z","4.5.0":"2015-11-08T01:22:54.351Z","4.6.0":"2015-11-08T03:30:43.136Z"},"maintainers":[{"name":"sonewman","email":"newmansam@outlook.com"}],"dist-tags":{"latest":"4.6.0"},"description":"Mocha styled tape with sinon","readme":"# Macchiato\n\nInstall:\n```bash\n$ npm install --save-dev macchiato\n```\nand globally:\n```bash\n$ npm install -g macchiato\n```\n\nA [Mocha](https://github.com/visionmedia/mocha) / [Jasmine](https://github.com/pivotal/jasmine)\nthemed testing framework, comes equiped with a built in assertion library ([Certain](https://github.com/sonewman/certain)).\n\nEach of the test contexts have various assert methods added to them which call `certain` under\nthe hood for ease of use. In addition to this each of the test contexts are instanciated [sinon](http://github.com/cjohansen/Sinon.JS) sandbox's!\n\n```javascript\nvar describe = require('macchiato')({[options]})\n\n// or\n\nvar describe = require('macchiato')\n```\nOnce you've written your tests you can run them like this:\n```bash\n$ macchiato [-options] test/*.js\n\n# or\n\n$ node test/my-file.js [-options]\n```\n\n## Usage\n### A New Way To Write Tests!\n```javascript\ndescribe('my test')\n.beforeEach(function () {\n  // sinon is baked in to the test context\n  // and passed into all `beforeEach` and\n  // `afterEach` callbacks. All spys/stubs\n  // are restored after each test.\n  this.myStub = this.stub()\n})\n.it('should do amazing things', function (t) {\n  // the test context can be accessed as the first\n  // arguments to the test callback\n  t.equals('tape assertions are also baked into the framework', true)\n  t.end()\n})\n.it('should do another thing', function () {\n  // the test context is also `this` in the test callback\n  this.assert(true, 'this test is asserting something')\n  this.done()\n})\n```\n\n### Classic way to write tests\n```javascript\ndescribe('my test', function () {\n\n  describe.beforeEach(function () {\n    // sinon is baked in to the test context\n    // and passed into all `beforeEach` and\n    // `afterEach` callbacks. All spys/stubs\n    // are restored after each test.\n    this.myStub = this.stub()\n  })\n\n  describe.it('should do amazing things', function (t) {\n    // the test context can be accessed as the first\n    // arguments to the test callback\n    t.equals('assertions are also baked into the framework', true)\n    t.end()\n  })\n\n  describe('my subtest', function () {\n\n    descibe.it('should do something interesting', function () {\n      // the test context is also `this` in the test callback\n      this.assert(true, 'this test is asserting something')\n      this.done()\n    })\n  })\n})\n```\n\n## Version 2.*\nThe original version of `macchiato` was build ontop of the testing framework [Tape](https://github.com/substack/tape).\nThis is undoubtable an awesome testing framework, the problem was that when changes were\nneeded to tweak the inner workings of `Macchiato` this was very difficult since all of the main\ndesign decisions had been made inside of Tape. I don't think Tape had really been build to accomodate that kind of abuse!\n\nIn `v2` this dependency has been completely removed. Macchiato now has it's own test runner.\nThis has made it much easier to manage and very modular, which means that in the future when features are added (to analyse test methods execution etc.) this will be a lot easier and also creates a lot of possibilies.\n\n**Macchiato used to only output TAP (Test Anywhere Protocol), this has now changed.**\n\nMacchiato has it's own output which is a lot like the `-R spec` option this is the default console output.\n\nTo change this output you can specify it as an option:\n\nJavascript:\n\n```javascript\ndescribe({ output: 'tap' })\n```\nTerminal:\n```bash\n$ macchiato -o tap test/*.js\n```\n\nMore documentation coming soon...\n\n# Licence\nMIT\n","versions":{"0.0.2":{"name":"macchiato","version":"0.0.2","description":"Mocha styled tape with sinon","main":"macchiato.js","scripts":{"test":"npm test"},"repository":{"type":"git","url":"git@github.com:sonewman/macchiato.git"},"keywords":["mocha","tape","sinon","testing"],"author":{"name":"Sam Newman"},"license":"ISC","bugs":{"url":"https://github.com/sonewman/macchiato/issues"},"homepage":"https://github.com/sonewman/macchiato","_id":"macchiato@0.0.2","dist":{"shasum":"46c79aeced0d5ce4e14e0dc255db10f40a004862","tarball":"https://registry.npmjs.org/macchiato/-/macchiato-0.0.2.tgz","integrity":"sha512-om8SUZoitA3fUVsTyVYGV59K1mw4+Wmq5fa12ootAFkTjeYIAP9utMIx0SFy1BPUJZQYIVgJz6Q+hZW7BZPukg==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCICQLUa7inZlQU/ob8VnVK7clELqpppuC7R30EmI0lnaZAiEA2l42WyuZCAl6Xs+0w8J8wlp2zD6BcJt96HDnwliTwm8="}]},"_from":".","_npmVersion":"1.4.3","_npmUser":{"name":"sonewman","email":"newmansam@outlook.com"},"maintainers":[{"name":"sonewman","email":"newmansam@outlook.com"}]},"0.0.3":{"name":"macchiato","version":"0.0.3","description":"Mocha styled tape with sinon","main":"macchiato.js","scripts":{"test":"npm test"},"repository":{"type":"git","url":"git@github.com:sonewman/macchiato.git"},"keywords":["mocha","tape","sinon","testing"],"author":{"name":"Sam Newman"},"license":"ISC","bugs":{"url":"https://github.com/sonewman/macchiato/issues"},"homepage":"https://github.com/sonewman/macchiato","dependencies":{"sinon":"^1.9.1","tape":"^2.12.3"},"_id":"macchiato@0.0.3","dist":{"shasum":"516cd24b56bf6d1492e495257b258af88383b01b","tarball":"https://registry.npmjs.org/macchiato/-/macchiato-0.0.3.tgz","integrity":"sha512-QLYyk0Q0dxa/AuqtVX+fU2yE55XzPuUuSemIp11X/RAn1Yal3kbZ5h/59XFqSlwrkiVai8TemVjZvIL3ZrXNVw==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQCkqPAASBEOxBFWRR3wj4xOceCCboIx0m54Ij116wcgdAIhAMTFTDkgkoaMxiu1Mq3nLDsihcHup2Z2PdUawvc8+pB4"}]},"_from":".","_npmVersion":"1.4.3","_npmUser":{"name":"sonewman","email":"newmansam@outlook.com"},"maintainers":[{"name":"sonewman","email":"newmansam@outlook.com"}]},"0.0.4":{"name":"macchiato","version":"0.0.4","description":"Mocha styled tape with sinon","main":"macchiato.js","scripts":{"test":"npm test"},"repository":{"type":"git","url":"git@github.com:sonewman/macchiato.git"},"keywords":["mocha","tape","sinon","testing"],"author":{"name":"Sam Newman"},"license":"ISC","bugs":{"url":"https://github.com/sonewman/macchiato/issues"},"homepage":"https://github.com/sonewman/macchiato","dependencies":{"sinon":"^1.9.1","tape":"^2.12.3"},"_id":"macchiato@0.0.4","dist":{"shasum":"48325bcda07910473f6d576a7117914b83144c6c","tarball":"https://registry.npmjs.org/macchiato/-/macchiato-0.0.4.tgz","integrity":"sha512-9P6vGB/JMEnbsi/f4QCGb+c3QHso+VqBN6MSxAPXTP4rCXkQ43xu4oJwS+UD0t7WCTAMeYxrr5TeOT+51xwomA==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQDpREE9Kq9V4I/F7CaMa46lYSlS3kukwuY0szHqgbpWtwIhAJYS1cR63A1VYINh9LC7MEyeROFWxJHbt/PC12V2w58B"}]},"_from":".","_npmVersion":"1.4.3","_npmUser":{"name":"sonewman","email":"newmansam@outlook.com"},"maintainers":[{"name":"sonewman","email":"newmansam@outlook.com"}]},"0.1.1":{"name":"macchiato","version":"0.1.1","description":"Mocha styled tape with sinon","main":"macchiato.js","scripts":{"test":"bin/macchiato test/"},"repository":{"type":"git","url":"git@github.com:sonewman/macchiato.git"},"keywords":["mocha","tape","sinon","testing"],"author":{"name":"Sam Newman"},"license":"ISC","bugs":{"url":"https://github.com/sonewman/macchiato/issues"},"homepage":"https://github.com/sonewman/macchiato","dependencies":{"foreach-async":"^1.1.0","sinon":"^1.9.1","tape":"^2.12.3","tapout":"^1.1.0"},"devDependencies":{"tap":"^0.4.8"},"_id":"macchiato@0.1.1","_shasum":"5459950dcf8bdc10de1bb5827049603b0d309315","_from":".","_npmVersion":"1.4.9","_npmUser":{"name":"sonewman","email":"newmansam@outlook.com"},"maintainers":[{"name":"sonewman","email":"newmansam@outlook.com"}],"dist":{"shasum":"5459950dcf8bdc10de1bb5827049603b0d309315","tarball":"https://registry.npmjs.org/macchiato/-/macchiato-0.1.1.tgz","integrity":"sha512-E/fZDaLWhfq298P6lVuTrHWyGR6LCeX/qfnyivjZB/LRqadAZs56sRpy6M4QKa2qWKUj9M8YVqMpD8Ts/LJfzQ==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQCSXmZ4KBh4+T34zwHpIKsU5Nv0qcsz8hAnpmGebsjt8AIgOrCLMhsJLHe2NW68lWiZPTTMnnw0vWTa55VxOTxK9Rs="}]}},"0.2.0":{"name":"macchiato","version":"0.2.0","description":"Mocha styled tape with sinon","main":"macchiato.js","scripts":{"test":"bin/macchiato test/"},"repository":{"type":"git","url":"git@github.com:sonewman/macchiato.git"},"keywords":["mocha","tape","sinon","testing"],"author":{"name":"Sam Newman"},"license":"ISC","bugs":{"url":"https://github.com/sonewman/macchiato/issues"},"homepage":"https://github.com/sonewman/macchiato","dependencies":{"foreach-async":"^1.1.0","sinon":"^1.9.1","tape":"^2.12.3","tapout":"^1.2.0"},"devDependencies":{"tap":"^0.4.8"},"gitHead":"35e3a22b8f2e922d48cc8bd597f4c0bcb1cb400f","_id":"macchiato@0.2.0","_shasum":"2c8b8a5b11bb698e135d2f0a49728b50783b2ee1","_from":".","_npmVersion":"1.4.21","_npmUser":{"name":"sonewman","email":"newmansam@outlook.com"},"maintainers":[{"name":"sonewman","email":"newmansam@outlook.com"}],"dist":{"shasum":"2c8b8a5b11bb698e135d2f0a49728b50783b2ee1","tarball":"https://registry.npmjs.org/macchiato/-/macchiato-0.2.0.tgz","integrity":"sha512-B8uYzi/JqG8yENyTdY3suXzCk5LFg+zaQbJH4EKhYH4mBzSClQUyxXYVEt+r5G5QaKrlfDDmJUYV+YPuHolQQg==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQDVfI23HwAqKLFfQoUwjU7X9crHrqTHmEVLrZlasDuKLQIhAPSRIZ7t5ZnbXz6RmebzXZCb+cfqYgQcawRB2oS1PoWY"}]}},"1.0.0":{"name":"macchiato","version":"1.0.0","description":"Mocha styled tape with sinon","main":"macchiato.js","scripts":{"test":"bin/macchiato test/"},"bin":{"macchiato":"./bin/macchiato"},"repository":{"type":"git","url":"git@github.com:sonewman/macchiato.git"},"keywords":["mocha","tape","sinon","testing"],"author":{"name":"Sam Newman"},"license":"ISC","bugs":{"url":"https://github.com/sonewman/macchiato/issues"},"homepage":"https://github.com/sonewman/macchiato","dependencies":{"foreach-async":"^1.1.0","minimist":"^0.2.0","sinon":"^1.9.1","tape":"^2.12.3","tapout":"^1.2.0"},"devDependencies":{"tap":"^0.4.8"},"gitHead":"4e83b9cc4fd92ba728c9322d0f21e6f8c6fdc648","_id":"macchiato@1.0.0","_shasum":"4bdc171032a4a9a9af59dfa6ca4e28d9ecc0fa5f","_from":".","_npmVersion":"1.4.21","_npmUser":{"name":"sonewman","email":"newmansam@outlook.com"},"maintainers":[{"name":"sonewman","email":"newmansam@outlook.com"}],"dist":{"shasum":"4bdc171032a4a9a9af59dfa6ca4e28d9ecc0fa5f","tarball":"https://registry.npmjs.org/macchiato/-/macchiato-1.0.0.tgz","integrity":"sha512-HQnERGtxa6aCDbzwIUiBSBs6GyGR7PBGDJ4eK/x7DSd/O1jhDzJCSoDIBDdRFQPAYgSVOgZpt3PM/MmHt+BZrg==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQDrOWcC9vqy6VoHbTeTQ62dKomvY/nLA/rmH8FWqFCTIQIhAKW8KDSN9f85ivubip9DIp9V8FgOFJ4n8ah6DbUHpcqB"}]}},"2.0.0":{"name":"macchiato","version":"2.0.0","description":"Mocha styled tape with sinon","main":"macchiato.js","scripts":{"test":"bin/macchiato test/"},"bin":{"macchiato":"./bin/macchiato"},"repository":{"type":"git","url":"git@github.com:sonewman/macchiato.git"},"keywords":["mocha","tape","sinon","testing"],"author":{"name":"Sam Newman"},"license":"ISC","bugs":{"url":"https://github.com/sonewman/macchiato/issues"},"homepage":"https://github.com/sonewman/macchiato","dependencies":{"certain":"^1.3.0","core-util-is":"^1.0.1","foreach-async":"^1.1.0","inherits":"^2.0.1","minimist":"^0.2.0","readable-stream":"^1.1.13","sinon":"^1.9.1","tapout":"^1.2.0","util-extend":"^1.0.1"},"gitHead":"a6e1f12d73915c74f3a707736f9ac749b8f84a59","_id":"macchiato@2.0.0","_shasum":"034f0a0baafb3bac0407bf400869d54902d77b02","_from":".","_npmVersion":"1.4.21","_npmUser":{"name":"sonewman","email":"newmansam@outlook.com"},"maintainers":[{"name":"sonewman","email":"newmansam@outlook.com"}],"dist":{"shasum":"034f0a0baafb3bac0407bf400869d54902d77b02","tarball":"https://registry.npmjs.org/macchiato/-/macchiato-2.0.0.tgz","integrity":"sha512-cgRNi3YTowAieSsA7ktrY5wBlDQh8B1/0cat3kRnGWm7ta+HEFzhLfjhfIN780HWC0i2WuKfKtVKf0uUWUPd0g==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQDOnF4hyEGGnhLej2hg3ufzV74qf8pXAdJ1U8DWN+qAhAIgDdFdu4Fr7VgyjxKY53efWFCqwV6j8E0Xv3WM+tiLJsQ="}]}},"2.0.1":{"name":"macchiato","version":"2.0.1","description":"Mocha styled tape with sinon","main":"macchiato.js","scripts":{"test":"bin/macchiato test/"},"bin":{"macchiato":"./bin/macchiato"},"repository":{"type":"git","url":"git@github.com:sonewman/macchiato.git"},"keywords":["mocha","tape","sinon","testing"],"author":{"name":"Sam Newman"},"license":"ISC","bugs":{"url":"https://github.com/sonewman/macchiato/issues"},"homepage":"https://github.com/sonewman/macchiato","dependencies":{"certain":"^1.3.0","core-util-is":"^1.0.1","foreach-async":"^1.1.0","inherits":"^2.0.1","minimist":"^0.2.0","readable-stream":"^1.1.13","sinon":"^1.9.1","tapout":"^1.2.0","util-extend":"^1.0.1"},"gitHead":"7dd21a761e089490f6fdc13db7ed26214891bb5a","_id":"macchiato@2.0.1","_shasum":"bf8e5c4868b548cad37a3bba4264758ddd8d8047","_from":".","_npmVersion":"1.4.21","_npmUser":{"name":"sonewman","email":"newmansam@outlook.com"},"maintainers":[{"name":"sonewman","email":"newmansam@outlook.com"}],"dist":{"shasum":"bf8e5c4868b548cad37a3bba4264758ddd8d8047","tarball":"https://registry.npmjs.org/macchiato/-/macchiato-2.0.1.tgz","integrity":"sha512-u7JFiKT7oFxjFX8CdaWW9INL9iJqiL8GMBF1oRBhFlFCPMnovrmErtXbzdT5+8nIFzuTUNFEr1ZETsKRqiqsmQ==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIB9BAYJnDRgMVzODOaRgY/EqzbIR4b5gc8ZCEqQLEaqtAiBKyziaqpmWBugNng2L5sT16PlYVuJH5p3vdEI+pFqoLA=="}]}},"2.1.0":{"name":"macchiato","version":"2.1.0","description":"Mocha styled tape with sinon","main":"macchiato.js","scripts":{"test":"bin/macchiato test/"},"bin":{"macchiato":"./bin/macchiato"},"repository":{"type":"git","url":"git@github.com:sonewman/macchiato.git"},"keywords":["mocha","tape","sinon","testing"],"author":{"name":"Sam Newman"},"license":"ISC","bugs":{"url":"https://github.com/sonewman/macchiato/issues"},"homepage":"https://github.com/sonewman/macchiato","dependencies":{"certain":"^1.3.0","core-util-is":"^1.0.1","foreach-async":"^1.1.0","inherits":"^2.0.1","minimist":"^0.2.0","readable-stream":"^1.1.13","sinon":"^1.9.1","tapout":"^1.2.0","util-extend":"^1.0.1"},"gitHead":"8aeafdcd4d91e2fc502bc42660a1fe9315f9656b","_id":"macchiato@2.1.0","_shasum":"a8febc8e0b0e3d222ac8dd28f1871af4c337dea9","_from":".","_npmVersion":"1.4.21","_npmUser":{"name":"sonewman","email":"newmansam@outlook.com"},"maintainers":[{"name":"sonewman","email":"newmansam@outlook.com"}],"dist":{"shasum":"a8febc8e0b0e3d222ac8dd28f1871af4c337dea9","tarball":"https://registry.npmjs.org/macchiato/-/macchiato-2.1.0.tgz","integrity":"sha512-3NGG7J/Ic0I7M/EinFPZ7ItL9lLt+kt9HmrD5YqcEfjv5LZw6lKibrQpw8IXzE0RUdfbwjmo4igcZB7OuC/nwQ==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQCN+oMbWBdqb6r3hLT8qOJSjJBzI4oaOSecr0Ah0QBhAwIgQw15joRDW3SJ7A/P8WfRqaNvvTje4PFWbMel5yQ9QZo="}]}},"2.2.0":{"name":"macchiato","version":"2.2.0","description":"Mocha styled tape with sinon","main":"macchiato.js","scripts":{"test":"bin/macchiato test/"},"bin":{"macchiato":"./bin/macchiato"},"repository":{"type":"git","url":"git@github.com:sonewman/macchiato.git"},"keywords":["mocha","tape","sinon","testing"],"author":{"name":"Sam Newman"},"license":"ISC","bugs":{"url":"https://github.com/sonewman/macchiato/issues"},"homepage":"https://github.com/sonewman/macchiato","dependencies":{"certain":"^1.4.0","core-util-is":"^1.0.1","foreach-async":"^1.1.0","inherits":"^2.0.1","minimist":"^0.2.0","readable-stream":"^1.1.13","sinon":"^1.9.1","tapout":"^1.2.0","util-extend":"^1.0.1"},"gitHead":"5de03460c3813699bbffbb9ffbfe39bce069009e","_id":"macchiato@2.2.0","_shasum":"76395db6ea425df2003509f365fc20b064329d75","_from":".","_npmVersion":"1.4.21","_npmUser":{"name":"sonewman","email":"newmansam@outlook.com"},"maintainers":[{"name":"sonewman","email":"newmansam@outlook.com"}],"dist":{"shasum":"76395db6ea425df2003509f365fc20b064329d75","tarball":"https://registry.npmjs.org/macchiato/-/macchiato-2.2.0.tgz","integrity":"sha512-vmveVIGtBxQKGq0w6JY5SaO8dBLj1BYAyKblQItgXE/Bv3nr8L132KIfgWsr2IiEhyCC+y1FlIcKOjJsXurwMQ==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQCjz0mirQuV06YCw+N5jc4wSqx0QBrxyBPo42plZzJlEwIgbZ2QPSouhnuVUTeMkGzItpNm0F0j1Ma0PxKNvgufrjo="}]}},"2.3.0":{"name":"macchiato","version":"2.3.0","description":"Mocha styled tape with sinon","main":"macchiato.js","scripts":{"test":"bin/macchiato test/"},"bin":{"macchiato":"./bin/macchiato"},"repository":{"type":"git","url":"git@github.com:sonewman/macchiato.git"},"keywords":["mocha","tape","sinon","testing"],"author":{"name":"Sam Newman"},"license":"ISC","bugs":{"url":"https://github.com/sonewman/macchiato/issues"},"homepage":"https://github.com/sonewman/macchiato","dependencies":{"certain":"^1.4.0","commander":"^2.3.0","core-util-is":"^1.0.1","foreach-async":"^1.1.0","inherits":"^2.0.1","readable-stream":"^1.1.13","sinon":"^1.9.1","tapout":"^2.0.0","util-extend":"^1.0.1"},"gitHead":"db0ee8482695e3e51603b104b699a807f7da74c8","_id":"macchiato@2.3.0","_shasum":"5cf938b717b441a298b01216ba50ea429bcc5ece","_from":".","_npmVersion":"2.1.6","_nodeVersion":"0.11.15-pre","_npmUser":{"name":"sonewman","email":"newmansam@outlook.com"},"maintainers":[{"name":"sonewman","email":"newmansam@outlook.com"}],"dist":{"shasum":"5cf938b717b441a298b01216ba50ea429bcc5ece","tarball":"https://registry.npmjs.org/macchiato/-/macchiato-2.3.0.tgz","integrity":"sha512-tZmDCBD89JhbcQi05DaUtOFfmgbsW8iCpPjV29nxLgGPsqSREk8UHczf597zaqgm9msNjZ7jP9AeFqtbwKMXzA==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQDCvGIxmr0rgB1vhyn8CyQNTyuk6gr27RkImzLTLaFmNgIhAP+IpBa8VdndIGfQhL2unnnFRAygdTjIWTXtBppBk8xE"}]}},"2.3.1":{"name":"macchiato","version":"2.3.1","description":"Mocha styled tape with sinon","main":"macchiato.js","scripts":{"test":"bin/macchiato test/"},"bin":{"macchiato":"./bin/macchiato"},"repository":{"type":"git","url":"git@github.com:sonewman/macchiato.git"},"keywords":["mocha","tape","sinon","testing"],"author":{"name":"Sam Newman"},"license":"ISC","bugs":{"url":"https://github.com/sonewman/macchiato/issues"},"homepage":"https://github.com/sonewman/macchiato","dependencies":{"certain":"^1.4.0","commander":"^2.3.0","core-util-is":"^1.0.1","foreach-async":"^1.1.0","inherits":"^2.0.1","readable-stream":"^1.1.13","sinon":"^1.9.1","tapout":"^2.0.0","util-extend":"^1.0.1"},"gitHead":"eef055e7491760b3f0113073d44639609cd62a3b","_id":"macchiato@2.3.1","_shasum":"a0e07e75c4362a34f35876e20c80a7881edb016d","_from":".","_npmVersion":"2.1.10","_nodeVersion":"0.11.15-pre","_npmUser":{"name":"sonewman","email":"newmansam@outlook.com"},"maintainers":[{"name":"sonewman","email":"newmansam@outlook.com"}],"dist":{"shasum":"a0e07e75c4362a34f35876e20c80a7881edb016d","tarball":"https://registry.npmjs.org/macchiato/-/macchiato-2.3.1.tgz","integrity":"sha512-owx2/uUnj182HTRk7dAM7YfWTvDExr0mbs9/01g5Si3hxJ2JHEQEnmYI357lg5sL0votg8W6sYPV08gXEbft8A==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIDUOY/CkyE0rwctEGIw6lSVLo+58RXolOlcry2FV67nYAiAKsk1Fz6YMLqa53uzacoXxGmX/cARBoaRPJNK34plxsQ=="}]}},"2.3.2":{"name":"macchiato","version":"2.3.2","description":"Mocha styled tape with sinon","main":"macchiato.js","scripts":{"test":"bin/macchiato test/"},"bin":{"macchiato":"./bin/macchiato"},"repository":{"type":"git","url":"git@github.com:sonewman/macchiato.git"},"keywords":["mocha","tape","sinon","testing"],"author":{"name":"Sam Newman"},"license":"ISC","bugs":{"url":"https://github.com/sonewman/macchiato/issues"},"homepage":"https://github.com/sonewman/macchiato","dependencies":{"certain":"^1.4.0","commander":"^2.3.0","core-util-is":"^1.0.1","foreach-async":"^1.1.0","inherits":"^2.0.1","readable-stream":"^1.1.13","sinon":"^1.9.1","tapout":"^2.0.0","util-extend":"^1.0.1"},"gitHead":"8ad37b79d4fb2453f95fd90ad229f07d9516e93e","_id":"macchiato@2.3.2","_shasum":"18ae62afd487ee111b864553fac4bf0732001202","_from":".","_npmVersion":"2.1.6","_nodeVersion":"0.10.33","_npmUser":{"name":"sonewman","email":"newmansam@outlook.com"},"maintainers":[{"name":"sonewman","email":"newmansam@outlook.com"}],"dist":{"shasum":"18ae62afd487ee111b864553fac4bf0732001202","tarball":"https://registry.npmjs.org/macchiato/-/macchiato-2.3.2.tgz","integrity":"sha512-uopnUoECLgrf8xYrV1YULCnxtx46sKa8m5v4r9henZxVyfewKRCLGctFehalregnmFDI43bSMFD/o9Ky1Bw8+Q==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIDpBFZO6gffKaqp4VJjMEO9reEnP2f8x9wxyaClVGtIgAiEAtXvn/spGMaYSomGXFlnGP0YfSEVASdxaJuuewPJKZFE="}]}},"2.4.0":{"name":"macchiato","version":"2.4.0","description":"Mocha styled tape with sinon","main":"macchiato.js","scripts":{"test":"bin/macchiato test/"},"bin":{"macchiato":"./bin/macchiato"},"repository":{"type":"git","url":"git@github.com:sonewman/macchiato.git"},"keywords":["mocha","tape","sinon","testing"],"author":{"name":"Sam Newman"},"license":"ISC","bugs":{"url":"https://github.com/sonewman/macchiato/issues"},"homepage":"https://github.com/sonewman/macchiato","dependencies":{"certain":"^1.4.0","commander":"^2.3.0","core-util-is":"^1.0.1","foreach-async":"^1.1.0","inherits":"^2.0.1","readable-stream":"^1.1.13","sinon":"^1.9.1","tapout":"^2.0.0","util-extend":"^1.0.1"},"gitHead":"8f84d327bc0f68264fa4cfcca1b95b0a6082d52e","_id":"macchiato@2.4.0","_shasum":"90c029d8081ac23c1ba918f358563414283abdca","_from":".","_npmVersion":"2.1.6","_nodeVersion":"0.10.33","_npmUser":{"name":"sonewman","email":"newmansam@outlook.com"},"maintainers":[{"name":"sonewman","email":"newmansam@outlook.com"}],"dist":{"shasum":"90c029d8081ac23c1ba918f358563414283abdca","tarball":"https://registry.npmjs.org/macchiato/-/macchiato-2.4.0.tgz","integrity":"sha512-MWklxOtJOqNIK7Eo3Ylymd2fKaMRQcQfBI4s3AnFmW5ZPk+1kq/tNsot53UEy2/TOv3ZQFBWj/xPrCc4Nw3JvQ==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQDTmuL8weaJXoKcdo0qEFmpi4P6Mz7e8+1kfYodbe3hQwIhAKQeJ1Mpj/vzLk0Is1/rT57vBfAjBGAnES8pFTB+Vd2/"}]}},"2.5.0":{"name":"macchiato","version":"2.5.0","description":"Mocha styled tape with sinon","main":"macchiato.js","scripts":{"test":"bin/macchiato test/"},"bin":{"macchiato":"./bin/macchiato"},"repository":{"type":"git","url":"git@github.com:sonewman/macchiato.git"},"keywords":["mocha","tape","sinon","testing"],"author":{"name":"Sam Newman"},"license":"ISC","bugs":{"url":"https://github.com/sonewman/macchiato/issues"},"homepage":"https://github.com/sonewman/macchiato","dependencies":{"certain":"^1.4.0","commander":"^2.3.0","core-util-is":"^1.0.1","foreach-async":"^1.1.0","inherits":"^2.0.1","readable-stream":"^1.1.13","sinon":"^1.9.1","tapout":"^2.0.0","util-extend":"^1.0.1"},"gitHead":"65ebbf220f67106e0be68d754aab06f59361a8bc","_id":"macchiato@2.5.0","_shasum":"54fc68435042c752fb130c9a9087be1f5a64a38d","_from":".","_npmVersion":"2.1.18","_nodeVersion":"1.0.1","_npmUser":{"name":"sonewman","email":"newmansam@outlook.com"},"maintainers":[{"name":"sonewman","email":"newmansam@outlook.com"}],"dist":{"shasum":"54fc68435042c752fb130c9a9087be1f5a64a38d","tarball":"https://registry.npmjs.org/macchiato/-/macchiato-2.5.0.tgz","integrity":"sha512-lUsG2EyjsqzF7NFxvyEC9xaKkjzQkT70nPpUJlbegMB3RmMcHM3StUFjSUGU+ehMpdwOIzZ96shDuL+r1nrwFA==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQDrAfBnJ+NdiPWJrucBcYRHTmkvcPlWWNlhcskh6gng3gIgJjH3RjB9wwVQ/JcRHI57eBlFId0kaDBwJTrHvCx5Xc0="}]}},"2.5.1":{"name":"macchiato","version":"2.5.1","description":"Mocha styled tape with sinon","main":"macchiato.js","scripts":{"test":"bin/macchiato test/"},"bin":{"macchiato":"./bin/macchiato"},"repository":{"type":"git","url":"git@github.com:sonewman/macchiato.git"},"keywords":["mocha","tape","sinon","testing"],"author":{"name":"Sam Newman"},"license":"ISC","bugs":{"url":"https://github.com/sonewman/macchiato/issues"},"homepage":"https://github.com/sonewman/macchiato","dependencies":{"certain":"^1.4.0","commander":"^2.3.0","core-util-is":"^1.0.1","foreach-async":"^1.1.0","inherits":"^2.0.1","readable-stream":"^1.1.13","sinon":"^1.9.1","tapout":"^2.0.0","util-extend":"^1.0.1"},"gitHead":"088de617828f38b201087c924222de8419abb626","_id":"macchiato@2.5.1","_shasum":"e032e92c6cf7c4ae97e981b7006f38e88fbe2cff","_from":".","_npmVersion":"2.1.18","_nodeVersion":"1.0.1","_npmUser":{"name":"sonewman","email":"newmansam@outlook.com"},"maintainers":[{"name":"sonewman","email":"newmansam@outlook.com"}],"dist":{"shasum":"e032e92c6cf7c4ae97e981b7006f38e88fbe2cff","tarball":"https://registry.npmjs.org/macchiato/-/macchiato-2.5.1.tgz","integrity":"sha512-1xRXrq8ELdGsOayj6H6PYxFwXRlyuPKBHSnHW/B8Bop6Ov3NUNSkJG8a3SJNajTBqZSryviIHE44FQ76bIfbww==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQDVevhPHDpnXCrb9QjeJXxuFwvpRVemX3rxJByABzv0ygIhAIEQOhuwTBpleHJsKEoeD9gqsPSPRVIxTn3E12LeLGHs"}]}},"2.6.0":{"name":"macchiato","version":"2.6.0","description":"Mocha styled tape with sinon","main":"macchiato.js","scripts":{"test":"bin/macchiato test/"},"bin":{"macchiato":"./bin/macchiato"},"repository":{"type":"git","url":"git@github.com:sonewman/macchiato.git"},"keywords":["mocha","tape","sinon","testing"],"author":{"name":"Sam Newman"},"license":"ISC","bugs":{"url":"https://github.com/sonewman/macchiato/issues"},"homepage":"https://github.com/sonewman/macchiato","dependencies":{"certain":"^1.4.0","commander":"^2.3.0","core-util-is":"^1.0.1","foreach-async":"^1.1.0","inherits":"^2.0.1","readable-stream":"^1.1.13","sinon":"^1.9.1","tapout":"^2.0.0","util-extend":"^1.0.1"},"gitHead":"6a5bf8a2e36dc7feb81e392a963eb073874941c3","_id":"macchiato@2.6.0","_shasum":"3180d91f8d8906923253634ef305b741a6c0c904","_from":".","_npmVersion":"2.6.1","_nodeVersion":"1.4.3","_npmUser":{"name":"sonewman","email":"newmansam@outlook.com"},"maintainers":[{"name":"sonewman","email":"newmansam@outlook.com"}],"dist":{"shasum":"3180d91f8d8906923253634ef305b741a6c0c904","tarball":"https://registry.npmjs.org/macchiato/-/macchiato-2.6.0.tgz","integrity":"sha512-K/ZoVlNaQOjCsOPL0EA05CcChjcSnApsCkI8Xh0HpsI8RTPqiQ/p/oLftIbfsxR+qh/bRBb3M5OOWnsgCc6VGA==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIG4CFHGoV9jYqMexVaH3L2vAVJdiriKafBqpZm0t7nVaAiAOBwKq7fv2O1iZdfsUNnCPCfuBYXFt85QoTBRWAF+1jw=="}]}},"2.7.0":{"name":"macchiato","version":"2.7.0","description":"Mocha styled tape with sinon","main":"macchiato.js","scripts":{"test":"bin/macchiato test/"},"bin":{"macchiato":"./bin/macchiato"},"repository":{"type":"git","url":"git@github.com:sonewman/macchiato.git"},"keywords":["mocha","tape","sinon","testing"],"author":{"name":"Sam Newman"},"license":"ISC","bugs":{"url":"https://github.com/sonewman/macchiato/issues"},"homepage":"https://github.com/sonewman/macchiato","dependencies":{"certain":"^1.4.0","commander":"^2.3.0","core-util-is":"^1.0.1","foreach-async":"^1.1.0","inherits":"^2.0.1","readable-stream":"^1.1.13","sinon":"^1.9.1","tapout":"^2.0.0","util-extend":"^1.0.1"},"gitHead":"ef04d42258cc26a9279f77332cc5c45415f34891","_id":"macchiato@2.7.0","_shasum":"971b6ffdf7fe9967f7d10417d2551ee4e89b6204","_from":".","_npmVersion":"2.6.1","_nodeVersion":"1.5.1","_npmUser":{"name":"sonewman","email":"newmansam@outlook.com"},"maintainers":[{"name":"sonewman","email":"newmansam@outlook.com"}],"dist":{"shasum":"971b6ffdf7fe9967f7d10417d2551ee4e89b6204","tarball":"https://registry.npmjs.org/macchiato/-/macchiato-2.7.0.tgz","integrity":"sha512-8KTNLetKTtU8Q0pSQq8wA2B8KUUO2G3E3J3HlqDfcYFMMdzmorgEztLdbEfHu035Z99levwqlxaFiOK7V1MVhQ==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQCKLeasSMgKEBkb+x9OoOieNBMge8ELyjSbG27RfwjzcwIgQXsYxXAdTyUWGWQUcZoa84ZdQ2mYO1wrU758KcclUco="}]}},"2.8.0":{"name":"macchiato","version":"2.8.0","description":"Mocha styled tape with sinon","main":"macchiato.js","scripts":{"test":"bin/macchiato test/"},"bin":{"macchiato":"./bin/macchiato"},"repository":{"type":"git","url":"git@github.com:sonewman/macchiato.git"},"keywords":["mocha","tape","sinon","testing"],"author":{"name":"Sam Newman"},"license":"ISC","bugs":{"url":"https://github.com/sonewman/macchiato/issues"},"homepage":"https://github.com/sonewman/macchiato","dependencies":{"certain":"^1.4.0","commander":"^2.3.0","core-util-is":"^1.0.1","foreach-async":"^1.1.0","inherits":"^2.0.1","readable-stream":"^1.1.13","sinon":"^1.9.1","tapout":"^2.0.0","util-extend":"^1.0.1"},"gitHead":"1ad0ac57bdbb570118d8165ca2ecacc1b7dd5076","_id":"macchiato@2.8.0","_shasum":"7c3cd517fee11ab4e9faf74da47bc2433119e254","_from":".","_npmVersion":"2.6.1","_nodeVersion":"1.5.1","_npmUser":{"name":"sonewman","email":"newmansam@outlook.com"},"maintainers":[{"name":"sonewman","email":"newmansam@outlook.com"}],"dist":{"shasum":"7c3cd517fee11ab4e9faf74da47bc2433119e254","tarball":"https://registry.npmjs.org/macchiato/-/macchiato-2.8.0.tgz","integrity":"sha512-gNa5kd3xEr/A4/lFybqQSI74EpuTFNViP2L1M+Jk4dUufPX28uaajI/DsGnd3iHr/04+1RyGR08mxQNvqADvYg==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIAg+wgfiv5NaEdVuLkDNHs+4BmQwVg+6TgprOGViJZ1WAiAKcKFNDfDBvVESg4F8xelIxSZ07c26IDMmJ6FnKPZIrg=="}]}},"3.0.0":{"name":"macchiato","version":"3.0.0","description":"Mocha styled tape with sinon","main":"macchiato.js","scripts":{"test":"bin/macchiato test/"},"bin":{"macchiato":"./bin/macchiato"},"repository":{"type":"git","url":"git+ssh://git@github.com/sonewman/macchiato.git"},"keywords":["mocha","tape","sinon","testing"],"author":{"name":"Sam Newman"},"license":"ISC","bugs":{"url":"https://github.com/sonewman/macchiato/issues"},"homepage":"https://github.com/sonewman/macchiato","dependencies":{"certain":"^1.4.0","commander":"^2.3.0","core-util-is":"^1.0.1","foreach-async":"^1.1.0","inherits":"^2.0.1","readable-stream":"^1.1.13","sinon":"^1.9.1","tapout":"^2.0.0","util-extend":"^1.0.1"},"devDependencies":{"promise":"^7.0.1"},"gitHead":"4a6b3f00504cea07f92c89f6ef36d29abb4802a8","_id":"macchiato@3.0.0","_shasum":"db982533697073e452dbd9561bb9aa0a7f5fc354","_from":".","_npmVersion":"2.8.3","_nodeVersion":"1.8.1","_npmUser":{"name":"sonewman","email":"newmansam@outlook.com"},"maintainers":[{"name":"sonewman","email":"newmansam@outlook.com"}],"dist":{"shasum":"db982533697073e452dbd9561bb9aa0a7f5fc354","tarball":"https://registry.npmjs.org/macchiato/-/macchiato-3.0.0.tgz","integrity":"sha512-g/X9QH4jzc779TKg8Hy/JRPuO5MkIkRiXdJIvH2vVQDdR3tr5JfqFzMQ1+SWGV2WvZlkfxBJIZIhiKxELv0eYQ==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQDVST8G1IpRXUsv/awcRX7sXeXK+7uI+vODFvE0LOllAAIhAMUP6OS6v9mwtT9Ve99Um7cQbHsA4nz+A9Hi3CC3tza4"}]}},"3.0.1":{"name":"macchiato","version":"3.0.1","description":"Mocha styled tape with sinon","main":"macchiato.js","scripts":{"test":"bin/macchiato test/"},"bin":{"macchiato":"./bin/macchiato"},"repository":{"type":"git","url":"git+ssh://git@github.com/sonewman/macchiato.git"},"keywords":["mocha","tape","sinon","testing"],"author":{"name":"Sam Newman"},"license":"MIT","bugs":{"url":"https://github.com/sonewman/macchiato/issues"},"homepage":"https://github.com/sonewman/macchiato","dependencies":{"certain":"^1.4.0","commander":"^2.3.0","core-util-is":"^1.0.1","foreach-async":"^1.1.0","inherits":"^2.0.1","readable-stream":"^1.1.13","sinon":"^1.9.1","tapout":"^2.0.0","util-extend":"^1.0.1"},"devDependencies":{"promise":"^7.0.1"},"gitHead":"1da5db6d22cbc6990b8265a9802414ce8b942f67","_id":"macchiato@3.0.1","_shasum":"3d7137d6d3e5881474e0d5394cfb18e362c3c0d3","_from":".","_npmVersion":"2.8.3","_nodeVersion":"1.8.1","_npmUser":{"name":"sonewman","email":"newmansam@outlook.com"},"maintainers":[{"name":"sonewman","email":"newmansam@outlook.com"}],"dist":{"shasum":"3d7137d6d3e5881474e0d5394cfb18e362c3c0d3","tarball":"https://registry.npmjs.org/macchiato/-/macchiato-3.0.1.tgz","integrity":"sha512-KjAL2EmxVPDqBkm8LLRFZ3PGz5ArK0uuEfPqKWccxrK1h8aO3490fkktS5oR8LohWoHTQqvQQW+OBaKwW9yTGg==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIGf6slLlVpX4SHdit4EuPtbB0Ljself0foiqxWnDjnhSAiB3qcNmS7Dn4FUPbyhYO0ZismXVyRO0LVk3ABNBnIn0nA=="}]}},"3.1.0":{"name":"macchiato","version":"3.1.0","description":"Mocha styled tape with sinon","main":"macchiato.js","scripts":{"test":"bin/macchiato test/"},"bin":{"macchiato":"./bin/macchiato"},"repository":{"type":"git","url":"git+ssh://git@github.com/sonewman/macchiato.git"},"keywords":["mocha","tape","sinon","testing"],"author":{"name":"Sam Newman"},"license":"MIT","bugs":{"url":"https://github.com/sonewman/macchiato/issues"},"homepage":"https://github.com/sonewman/macchiato","dependencies":{"certain":"^1.4.0","commander":"^2.3.0","core-util-is":"^1.0.1","foreach-async":"^1.1.0","inherits":"^2.0.1","readable-stream":"^1.1.13","sinon":"^1.9.1","tapout":"^2.0.0","util-extend":"^1.0.1"},"devDependencies":{"promise":"^7.0.1"},"gitHead":"f905160b5f5acd2864e9be365ef54032d5b799cb","_id":"macchiato@3.1.0","_shasum":"65159f105725d58129a24b473cb8a0967745a662","_from":".","_npmVersion":"2.9.0","_nodeVersion":"2.0.2","_npmUser":{"name":"sonewman","email":"newmansam@outlook.com"},"maintainers":[{"name":"sonewman","email":"newmansam@outlook.com"}],"dist":{"shasum":"65159f105725d58129a24b473cb8a0967745a662","tarball":"https://registry.npmjs.org/macchiato/-/macchiato-3.1.0.tgz","integrity":"sha512-NVlfE6iw9J/vO0TOAnajth6bb8p6jOPMA8BMM/48mmRv2hiJPTtQ9YE1zLEJZL5Ia3AgqI3ev0ffYU3RwQXkHA==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQD3zkH1xRFetFY142LusAbzMz1uKk6/yz63CkcdyARExgIgBNy424CvfpIzuT1AS3lwUY/1+yJk/KzadoN0CCoxsa0="}]}},"3.1.1":{"name":"macchiato","version":"3.1.1","description":"Mocha styled tape with sinon","main":"macchiato.js","scripts":{"test":"bin/macchiato test/"},"bin":{"macchiato":"./bin/macchiato"},"repository":{"type":"git","url":"git+ssh://git@github.com/sonewman/macchiato.git"},"keywords":["mocha","tape","sinon","testing"],"author":{"name":"Sam Newman"},"license":"MIT","bugs":{"url":"https://github.com/sonewman/macchiato/issues"},"homepage":"https://github.com/sonewman/macchiato","dependencies":{"certain":"^1.4.0","commander":"^2.3.0","core-util-is":"^1.0.1","foreach-async":"^1.1.0","inherits":"^2.0.1","readable-stream":"^1.1.13","sinon":"^1.9.1","tapout":"^2.0.0","util-extend":"^1.0.1"},"devDependencies":{"promise":"^7.0.1"},"gitHead":"c511ad416badda426c3f99cfbce00c76a9c48988","_id":"macchiato@3.1.1","_shasum":"4189096d97dae4b77cb3cea94a2c13cbbbe0c2d5","_from":".","_npmVersion":"2.9.0","_nodeVersion":"2.0.2","_npmUser":{"name":"sonewman","email":"newmansam@outlook.com"},"maintainers":[{"name":"sonewman","email":"newmansam@outlook.com"}],"dist":{"shasum":"4189096d97dae4b77cb3cea94a2c13cbbbe0c2d5","tarball":"https://registry.npmjs.org/macchiato/-/macchiato-3.1.1.tgz","integrity":"sha512-tTIsQmtpLgCcr43tf+a0r72qDdnVO7T+nlo6tuQ9SnBpvQT0EFU86wuOcN2UTEoYAS66GhuRaP+cvXnSAFfZbw==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIDm73KjrzwP1ZHUH1eESw4qW3Ov0IKq8fEnwu4AfJ7DxAiEAss4/gkWHtg73RL6Xq1BAPf/HRmTgwcXbO1YHRdJUd70="}]}},"4.0.0":{"name":"macchiato","version":"4.0.0","description":"Mocha styled tape with sinon","main":"macchiato.js","scripts":{"test":"bin/macchiato test/"},"bin":{"macchiato":"./bin/macchiato"},"repository":{"type":"git","url":"git+ssh://git@github.com/sonewman/macchiato.git"},"keywords":["mocha","tape","sinon","testing"],"author":{"name":"Sam Newman"},"license":"MIT","bugs":{"url":"https://github.com/sonewman/macchiato/issues"},"homepage":"https://github.com/sonewman/macchiato","dependencies":{"certain":"^1.4.0","commander":"^2.3.0","core-util-is":"^1.0.1","foreach-async":"^1.1.0","inherits":"^2.0.1","readable-stream":"^1.1.13","sinon":"^1.9.1","tapout":"^2.0.0","util-extend":"^1.0.1"},"devDependencies":{"promise":"^7.0.1"},"gitHead":"0fce70eddcce7165011c7079538243072c9664d8","_id":"macchiato@4.0.0","_shasum":"b92d6145517cd6f26483f8b1a68be4a79493c126","_from":".","_npmVersion":"2.9.0","_nodeVersion":"2.0.2","_npmUser":{"name":"sonewman","email":"newmansam@outlook.com"},"maintainers":[{"name":"sonewman","email":"newmansam@outlook.com"}],"dist":{"shasum":"b92d6145517cd6f26483f8b1a68be4a79493c126","tarball":"https://registry.npmjs.org/macchiato/-/macchiato-4.0.0.tgz","integrity":"sha512-PbfRSk2c0SkMAcOIr0XMd7UcHAN99q3iLyIkvfyf7a7BJfrhfaKy1eyo02eUtKoBkHRg5RqVcyjxn0X4dsozYg==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQDLk0y23XRXAaNkZYFi7qiLSXuCVnPRTlftEBXdvoL2NAIhAJmDZhnSAr1+Zys9CAGyXXu+M4rtA8tPPRDAUfNLojaf"}]}},"4.1.0":{"name":"macchiato","version":"4.1.0","description":"Mocha styled tape with sinon","main":"macchiato.js","scripts":{"test":"bin/macchiato test/"},"bin":{"macchiato":"./bin/macchiato"},"repository":{"type":"git","url":"git+ssh://git@github.com/sonewman/macchiato.git"},"keywords":["mocha","tape","sinon","testing"],"author":{"name":"Sam Newman"},"license":"MIT","bugs":{"url":"https://github.com/sonewman/macchiato/issues"},"homepage":"https://github.com/sonewman/macchiato","dependencies":{"certain":"^1.6.0","commander":"^2.3.0","core-util-is":"^1.0.1","foreach-async":"^1.1.0","inherits":"^2.0.1","readable-stream":"^1.1.13","sinon":"^1.9.1","tapout":"^2.0.0","util-extend":"^1.0.1"},"devDependencies":{"promise":"^7.0.1"},"gitHead":"42ee6fa39fe83ac1eaed5d29b6fc1b87b674e5f5","_id":"macchiato@4.1.0","_shasum":"3c779fbe27440e328dcaf9968a7d7b0d76164051","_from":".","_npmVersion":"2.11.0","_nodeVersion":"2.2.1","_npmUser":{"name":"sonewman","email":"newmansam@outlook.com"},"maintainers":[{"name":"sonewman","email":"newmansam@outlook.com"}],"dist":{"shasum":"3c779fbe27440e328dcaf9968a7d7b0d76164051","tarball":"https://registry.npmjs.org/macchiato/-/macchiato-4.1.0.tgz","integrity":"sha512-DzgaGZp/ZCPTF5ITOLv7dUTG4qpdIhv0v43CcXvAdFM4tBDJye6boIgfAKRN5t8c82SQK3WyqC8SDgVGsftxbA==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCID+CfNWh3UfjOevRCTkJfq8sCk7gKPWprmsSaDo6ApRLAiA/bkloie77fG8ieronLF6+C1ZUZ0bZ7MsonmEGOBV+pw=="}]}},"4.2.0":{"name":"macchiato","version":"4.2.0","description":"Mocha styled tape with sinon","main":"macchiato.js","scripts":{"test":"bin/macchiato test/"},"bin":{"macchiato":"./bin/macchiato"},"repository":{"type":"git","url":"git+ssh://git@github.com/sonewman/macchiato.git"},"keywords":["mocha","tape","sinon","testing"],"author":{"name":"Sam Newman"},"license":"MIT","bugs":{"url":"https://github.com/sonewman/macchiato/issues"},"homepage":"https://github.com/sonewman/macchiato","dependencies":{"certain":"^1.7.0","commander":"^2.3.0","core-util-is":"^1.0.1","foreach-async":"^1.1.0","inherits":"^2.0.1","readable-stream":"^1.1.13","sinon":"^1.9.1","tapout":"^2.0.0","util-extend":"^1.0.1"},"devDependencies":{"promise":"^7.0.1"},"gitHead":"e1d7a87b6c6c4cf9043a1b6306dc445cfe09caca","_id":"macchiato@4.2.0","_shasum":"ab0c3d8e0f639f700d866d01751d891e34360f4d","_from":".","_npmVersion":"2.11.3","_nodeVersion":"2.3.1","_npmUser":{"name":"sonewman","email":"newmansam@outlook.com"},"maintainers":[{"name":"sonewman","email":"newmansam@outlook.com"}],"dist":{"shasum":"ab0c3d8e0f639f700d866d01751d891e34360f4d","tarball":"https://registry.npmjs.org/macchiato/-/macchiato-4.2.0.tgz","integrity":"sha512-LHxmF8L2te9eL6+b4TL+rvR2ZC4Qxxpv16yenZdcxgOV99qn3/Adol9JOcDypX1so9JSSj3a95Cmx5PSgtpFYA==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIFKsZVQjXcELbuhV4tZiEHU+2ClwYLaOOElFiBwpU5xsAiAj8x8+yjjeNu+nBNQSLlbVCk291zGdtBjPebxJ6anDGQ=="}]}},"4.2.1":{"name":"macchiato","version":"4.2.1","description":"Mocha styled tape with sinon","main":"macchiato.js","scripts":{"test":"bin/macchiato test/"},"bin":{"macchiato":"./bin/macchiato"},"repository":{"type":"git","url":"git+ssh://git@github.com/sonewman/macchiato.git"},"keywords":["mocha","tape","sinon","testing"],"author":{"name":"Sam Newman"},"license":"MIT","bugs":{"url":"https://github.com/sonewman/macchiato/issues"},"homepage":"https://github.com/sonewman/macchiato","dependencies":{"certain":"^1.7.1","commander":"^2.3.0","core-util-is":"^1.0.1","foreach-async":"^1.1.0","inherits":"^2.0.1","readable-stream":"^1.1.13","sinon":"^1.9.1","tapout":"^2.0.0","util-extend":"^1.0.1"},"devDependencies":{"promise":"^7.0.1"},"gitHead":"22663d3d8febe61109a6507fa11c8e1046c8cb18","_id":"macchiato@4.2.1","_shasum":"a0b17d1ffc470def1240fac170dc5e76e280b030","_from":".","_npmVersion":"2.11.3","_nodeVersion":"2.3.1","_npmUser":{"name":"sonewman","email":"newmansam@outlook.com"},"maintainers":[{"name":"sonewman","email":"newmansam@outlook.com"}],"dist":{"shasum":"a0b17d1ffc470def1240fac170dc5e76e280b030","tarball":"https://registry.npmjs.org/macchiato/-/macchiato-4.2.1.tgz","integrity":"sha512-U0qHzBOPav0i++PP10MHvoz6YRN6cvVlHyGfyZGB0ZQeH1cn86YrBR8TRbHzybSCg8AzM2e6fSEh2wwMBlcLUg==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQC61gHKoLTN9YvCStxDMDSJ3qGsHGF4rfg2xZ/j+Wyz+QIgNU+UgkliK+RthoAsGTGrc1zq+AwAPRaYkbnxMygJtSk="}]}},"4.3.0":{"name":"macchiato","version":"4.3.0","description":"Mocha styled tape with sinon","main":"macchiato.js","scripts":{"test":"bin/macchiato test/"},"bin":{"macchiato":"./bin/macchiato"},"repository":{"type":"git","url":"git+ssh://git@github.com/sonewman/macchiato.git"},"keywords":["mocha","tape","sinon","testing"],"author":{"name":"Sam Newman"},"license":"MIT","bugs":{"url":"https://github.com/sonewman/macchiato/issues"},"homepage":"https://github.com/sonewman/macchiato","dependencies":{"certain":"^1.7.1","commander":"^2.3.0","core-util-is":"^1.0.1","foreach-async":"^1.1.0","inherits":"^2.0.1","readable-stream":"^1.1.13","sinon":"^1.9.1","tapout":"^2.0.0","util-extend":"^1.0.1"},"devDependencies":{"promise":"^7.0.1"},"gitHead":"606058c25522d4d1f71e4ac68fd7f0f0c0ea6555","_id":"macchiato@4.3.0","_shasum":"e959b76077cb684adb492ef5e59ae68096b97ab8","_from":".","_npmVersion":"2.13.3","_nodeVersion":"3.0.0","_npmUser":{"name":"sonewman","email":"newmansam@outlook.com"},"maintainers":[{"name":"sonewman","email":"newmansam@outlook.com"}],"dist":{"shasum":"e959b76077cb684adb492ef5e59ae68096b97ab8","tarball":"https://registry.npmjs.org/macchiato/-/macchiato-4.3.0.tgz","integrity":"sha512-TBJVJzVjnGesAnJhdvuo+RwP/cyWsRbrz7Fid4Mh9ku8C19W7EDjF/H+M8FXTY7FRgMlrMj3tTnamVdx5BV8Bw==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIFubVuPyndYWLec+jt5+S5HMvoVgyixTkPmJfAGCfKXaAiA/X1fT4FPLY3gdfOu8/l8PSzeHjG9IjwQVywuBQv/t5A=="}]}},"4.4.0":{"name":"macchiato","version":"4.4.0","description":"Mocha styled tape with sinon","main":"macchiato.js","scripts":{"test":"bin/macchiato test/"},"bin":{"macchiato":"./bin/macchiato"},"repository":{"type":"git","url":"git+ssh://git@github.com/sonewman/macchiato.git"},"keywords":["mocha","tape","sinon","testing"],"author":{"name":"Sam Newman"},"license":"MIT","bugs":{"url":"https://github.com/sonewman/macchiato/issues"},"homepage":"https://github.com/sonewman/macchiato","dependencies":{"certain":"^1.7.1","commander":"^2.3.0","core-util-is":"^1.0.1","foreach-async":"^1.1.0","inherits":"^2.0.1","readable-stream":"^1.1.13","sinon":"^1.9.1","tapout":"^2.0.0","util-extend":"^1.0.1"},"devDependencies":{"promise":"^7.0.1"},"gitHead":"0d80a9a906a06a09f41679201bde7a58d11149b7","_id":"macchiato@4.4.0","_shasum":"4595416cf77c50351834a56ce9ab47c29925c168","_from":".","_npmVersion":"3.3.6","_nodeVersion":"4.2.1","_npmUser":{"name":"sonewman","email":"newmansam@outlook.com"},"dist":{"shasum":"4595416cf77c50351834a56ce9ab47c29925c168","tarball":"https://registry.npmjs.org/macchiato/-/macchiato-4.4.0.tgz","integrity":"sha512-5nMfthAF9tBFb37NXvRel5RXzeR4dAOns5IWzVG4sWXF3a1VQzfwdGFUasjWdM2ePk470PsW8Adk1AnLBKerkg==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIGJJw5Yolt4T8zR15DuvwDf/ZMu/tYS/mgNOLwZWNJ6rAiALwT57SEIYMoEX2Oalr3zC1/wkZoIwSVVnmkt8a293sw=="}]},"maintainers":[{"name":"sonewman","email":"newmansam@outlook.com"}]},"4.5.0":{"name":"macchiato","version":"4.5.0","description":"Mocha styled tape with sinon","main":"macchiato.js","scripts":{"test":"bin/macchiato test/"},"bin":{"macchiato":"./bin/macchiato"},"repository":{"type":"git","url":"git+ssh://git@github.com/sonewman/macchiato.git"},"keywords":["mocha","tape","sinon","testing"],"author":{"name":"Sam Newman"},"license":"MIT","bugs":{"url":"https://github.com/sonewman/macchiato/issues"},"homepage":"https://github.com/sonewman/macchiato","dependencies":{"certain":"^1.7.1","commander":"^2.3.0","core-util-is":"^1.0.1","foreach-async":"^1.1.0","inherits":"^2.0.1","readable-stream":"^1.1.13","sinon":"^1.9.1","tapout":"^2.0.0","util-extend":"^1.0.1"},"devDependencies":{"promise":"^7.0.1"},"gitHead":"226ce51561ae26d8d55cde5116e3ab369c2b664b","_id":"macchiato@4.5.0","_shasum":"d45bde6e6d6b4dab426718be272b52eb8f2ff648","_from":".","_npmVersion":"3.3.6","_nodeVersion":"4.2.1","_npmUser":{"name":"sonewman","email":"newmansam@outlook.com"},"dist":{"shasum":"d45bde6e6d6b4dab426718be272b52eb8f2ff648","tarball":"https://registry.npmjs.org/macchiato/-/macchiato-4.5.0.tgz","integrity":"sha512-OX0ZGAxHU+HOYHuUl3A0Agt+V4k8JIZ3lY/UM50/3rWbJ89WQwzBZUwGaOxAsNF43hbKN6HkuZJVep79/X5ZMA==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIHBNV979U4gnO3VpdwWPMznFq0V/lCD448jb7tdo60LPAiEAxpREdD/Ur87gSVNWTLzAUHYYIWNtEPsDwJT5TAuh6Dg="}]},"maintainers":[{"name":"sonewman","email":"newmansam@outlook.com"}]},"4.6.0":{"name":"macchiato","version":"4.6.0","description":"Mocha styled tape with sinon","main":"macchiato.js","scripts":{"test":"bin/macchiato test/"},"bin":{"macchiato":"./bin/macchiato"},"repository":{"type":"git","url":"git+ssh://git@github.com/sonewman/macchiato.git"},"keywords":["mocha","tape","sinon","testing"],"author":{"name":"Sam Newman"},"license":"MIT","bugs":{"url":"https://github.com/sonewman/macchiato/issues"},"homepage":"https://github.com/sonewman/macchiato","dependencies":{"certain":"^1.8.0","commander":"^2.3.0","core-util-is":"^1.0.1","foreach-async":"^1.1.0","inherits":"^2.0.1","readable-stream":"^1.1.13","sinon":"^1.9.1","tapout":"^2.0.0","util-extend":"^1.0.1"},"devDependencies":{"promise":"^7.0.1"},"gitHead":"91bddc6f12be1cf33fe1b77931b36a21549fc76b","_id":"macchiato@4.6.0","_shasum":"11e7f5a6c55a3daa9c5ff649b08cff3bdf726f01","_from":".","_npmVersion":"3.3.6","_nodeVersion":"4.2.1","_npmUser":{"name":"sonewman","email":"newmansam@outlook.com"},"dist":{"shasum":"11e7f5a6c55a3daa9c5ff649b08cff3bdf726f01","tarball":"https://registry.npmjs.org/macchiato/-/macchiato-4.6.0.tgz","integrity":"sha512-74wjsVT1RVe74Vu1Xi+MijnnDYKO5rQmehWbRBIY1mlsWiCMhuX98YLOwUpx1UEejeaB8jQB/8rRujme6VmUgw==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQD/iPYx6e3DI8qBy1DRqv4xqPF5HXXYvK1cyhc32pFQbAIhANkiQ6khGuLdsPv/9auP+5oWgLVgDxdgtwcB8BjveljB"}]},"maintainers":[{"name":"sonewman","email":"newmansam@outlook.com"}]}},"homepage":"https://github.com/sonewman/macchiato","keywords":["mocha","tape","sinon","testing"],"repository":{"type":"git","url":"git+ssh://git@github.com/sonewman/macchiato.git"},"author":{"name":"Sam Newman"},"bugs":{"url":"https://github.com/sonewman/macchiato/issues"},"license":"MIT","readmeFilename":"readme.md"}