├── .github
├── ISSUE_TEMPLATE.md
└── PULL_REQUEST_TEMPLATE.md
├── .gitignore
├── Makefile
├── README.md
├── circle.yml
├── index.js
├── lib
└── diff.js
├── package.json
├── test
├── index.js
└── mocha.opts
└── yarn.lock
/.github/ISSUE_TEMPLATE.md:
--------------------------------------------------------------------------------
1 | **What needs to get done?**
2 |
3 | - Describe the issue or task that needs work
4 |
5 | **Why does it need to get done?**
6 |
7 | - Explain the importance/urgency of the task
8 |
9 | **How do I do it?**
10 |
11 | - Give a quick explanation for how someone could do it.
12 | - If it's a repeat task or just more complex, write some step-by-step instructions below to help walk them through it.
13 |
14 |
15 | Setup
16 |
17 | - Clone the repo by running `git clone https://github.com/segmentio/niffy.git`
18 | - Run `npm install`
19 | - Run tests with `make tests` (tests will "fail" for now, as expected)
20 |
21 |
22 |
--------------------------------------------------------------------------------
/.github/PULL_REQUEST_TEMPLATE.md:
--------------------------------------------------------------------------------
1 | **Which issue or problem is this solving?**
2 |
3 | - Please link to a Github issue that describes the what/why
4 | - If there's no issue, let us know what it is & why you made it
5 |
6 | **Remaining tasks**
7 |
8 | - [ ] Let us know if there's anything else you need to do
9 | - [ ] That way we can have open status updates
10 | - [ ] And maybe get others to help
11 |
12 | **Request for comments**
13 |
14 | - Describe what you'd like feedback on or if this is just something to get approved & merged
15 |
--------------------------------------------------------------------------------
/.gitignore:
--------------------------------------------------------------------------------
1 | node_modules/*
2 |
--------------------------------------------------------------------------------
/Makefile:
--------------------------------------------------------------------------------
1 | GREP ?=.
2 |
3 | test: node_modules
4 | @rm -rf /tmp/niffy
5 | @node_modules/.bin/mocha --harmony --grep "$(GREP)"
6 |
7 | node_modules: package.json
8 | @npm install
9 |
10 | .PHONY: test
11 |
--------------------------------------------------------------------------------
/README.md:
--------------------------------------------------------------------------------
1 |

2 |
3 | Perceptual diffing suite
4 |
5 | built on Nightmare by Segment
6 |
7 |
8 |
9 |
10 |
11 | ## Getting Started
12 | You can look at [`test/index.js`](https://github.com/segmentio/niffy/blob/master/test/index.js) as an example for how to use Niffy. To run the example test just do `make test` after cloning this repo.
13 |
14 | ## Reference
15 | Niffy is built on [Nightmare](https://github.com/segmentio/nightmare) and used in combination with [Mocha](https://mochajs.org/). You'll also need to read and use both of those library's APIs to use niffy effectively.
16 |
17 | ### Niffy(basehost, testhost[, options])
18 | To create a new Niffy differ:
19 |
20 | ```js
21 | let niffy = new Niffy(basehost, testhost, nightmareOptions);
22 | ```
23 |
24 | * `basehost` is the url that is assumed "good"
25 | * `testhost` is the url that you are comparing to the base
26 | * `nightmareOptions` can be seen [here in the Nightmare docs](https://github.com/segmentio/nightmare#nightmareoptions)
27 | * `.threshold` is the maximum percentage difference for a passing test (default: 0.2%)
28 |
29 | ### .test(url[, fn])
30 | This method instructs niffy to go to a `url` (and optionally take additional actions like clicking, typing or checkboxing via the `fn` argument), and test `basehost` vs. `testhost` screenshots for pixel differences, and output the diff-highlight image. Typically you'll use `.test(url, fn)` in the body of a mocha test, like this:
31 |
32 | ```js
33 | it('/news', function* () {
34 | yield niffy.test('/news');
35 | });
36 | ```
37 |
38 | ### .goto(url[, fn])
39 | This method instructs niffy to go to a `url` and optionally take additional actions like clicking, typing or checkboxing via the `fn` argument. Typically you'll use `.goto(url, fn)` in the `before` method of a mocha test suite, like this:
40 |
41 | ```js
42 | before(function* () {
43 | yield niffy.goto('/logout', function* (nightmare) {
44 | yield nightmare
45 | .type('input[name="email"]', 'fake@faketestfaketest.com')
46 | .type('input[name="password"]', 'fakepassword')
47 | .click('button[type="submit"]');
48 | });
49 | });
50 | ```
51 |
52 | ### .end()
53 | This method closes the underlying Nightmare instance (e.g. freeing up memory). Typically you'll use `.end()` in the `after` method of a mocha test suite, like this:
54 |
55 | ```js
56 | after(function* () {
57 | yield niffy.end();
58 | });
59 | ```
60 |
61 |
62 | ## License (MIT)
63 |
64 | ```
65 | WWWWWW||WWWWWW
66 | W W W||W W W
67 | ||
68 | ( OO )__________
69 | / | \
70 | /o o| MIT \
71 | \___/||_||__||_|| *
72 | || || || ||
73 | _||_|| _||_||
74 | (__|__|(__|__|
75 | ```
76 | Copyright (c) 2017 Segment.io, Inc. friends@segment.com
77 |
78 | Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the 'Software'), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
79 |
80 | The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
81 |
82 | THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
83 |
--------------------------------------------------------------------------------
/circle.yml:
--------------------------------------------------------------------------------
1 | machine:
2 | node:
3 | version: 6.1
4 | services:
5 | - docker
6 |
7 | dependencies:
8 | cache_directories:
9 | - node_modules
10 | pre:
11 | - docker login -e $DOCKER_EMAIL -u $DOCKER_USER -p $DOCKER_PASS
12 | - npm config set "//registry.npmjs.org/:_authToken" $NPM_AUTH
13 | override:
14 | - make node_modules
15 |
16 | test:
17 | override:
18 | - echo "tests currently fail on purpose"
19 | # - make test
20 |
21 | deployment:
22 | publish:
23 | tag: /[0-9]+(\.[0-9]+)*/
24 | commands:
25 | - npm publish
26 |
--------------------------------------------------------------------------------
/index.js:
--------------------------------------------------------------------------------
1 | /*jshint esnext:true*/
2 |
3 | var debug = require('debug')('niffy');
4 | var Nightmare = require('nightmare');
5 | var mkdirp = require('mkdirp');
6 | var fs = require('fs');
7 | var thunkify = require('thunkify');
8 | var defaults = require('defaults');
9 | var sprintf = require('sprintf-js').sprintf;
10 | var diff = require('./lib/diff');
11 |
12 | /**
13 | * Export `Niffy`
14 | */
15 |
16 | module.exports = Niffy;
17 |
18 | /**
19 | * Initialize `Nightmare`
20 | *
21 | * @param {String} base
22 | * @param {String} test
23 | * @param {Object} options
24 | */
25 |
26 | function Niffy(base, test, options) {
27 | if (!(this instanceof Niffy)) return new Niffy(base, test, options);
28 | options = defaults(options, { show: false, width: 1400, height: 1000, threshold: .2 });
29 | this.nightmare = new Nightmare(options);
30 | this.basehost = base;
31 | this.testhost = test;
32 | this.starts = {};
33 | this.profiles = {};
34 | this.errorThreshold = options.threshold;
35 | }
36 |
37 | /**
38 | * Generate a test function.
39 | *
40 | * @param {String} path
41 | * @param {Function} fn
42 | */
43 |
44 | Niffy.prototype.test = function* (path, fn) {
45 | var diff = yield this.capture(path, fn);
46 | var pct = '' + Math.floor(diff.percentage * 10000) / 10000 + '%';
47 | var failMessage = sprintf('%s different, open %s', pct, diff.diffFilepath);
48 | var absolutePct = Math.abs(diff.percentage);
49 | if (diff.percentage > this.errorThreshold) {
50 | throw new Error(failMessage);
51 | }
52 | };
53 |
54 | /**
55 | * goto a specific path and optionally take some actions.
56 | *
57 | * @param {String} path
58 | * @param {Function} fn
59 | */
60 |
61 | Niffy.prototype.goto = function* (path, fn) {
62 | this.startProfile('goto');
63 | yield this.gotoHost(this.basehost, path, fn);
64 | yield this.gotoHost(this.testhost, path, fn);
65 | this.stopProfile('goto');
66 | };
67 |
68 | /**
69 | * goto for a specific host, optionally take some actions.
70 | *
71 | * @param {String} host
72 | * @param {String} path
73 | * @param {Function} fn
74 | */
75 |
76 | Niffy.prototype.gotoHost = function* (host, path, fn) {
77 | yield this.nightmare.goto(host + path);
78 | if (fn) {
79 | yield timeout(1000);
80 | yield fn(this.nightmare);
81 | yield timeout(1000);
82 | }
83 | };
84 |
85 | /**
86 | * capture a specific path after optionally taking some actions.
87 | *
88 | * @param {String} path
89 | * @param {Function} fn
90 | */
91 |
92 | Niffy.prototype.capture = function* (path, fn) {
93 |
94 | /**
95 | * Capture the screenshots.
96 | */
97 |
98 | yield this.captureHost('base', this.basehost, path, fn);
99 | yield this.captureHost('test', this.testhost, path, fn);
100 |
101 | /**
102 | * Run the diff calculation.
103 | */
104 |
105 | this.startProfile('diff');
106 | var pathA = imgfilepath('base', path);
107 | var pathB = imgfilepath('test', path);
108 | var pathDiff = imgfilepath('diff', path);
109 | var result = yield diff(pathA, pathB, pathDiff);
110 | this.stopProfile('diff');
111 |
112 | /**
113 | * Prep the results.
114 | */
115 |
116 | result.percentage = result.differences / result.total * 100;
117 | result.diffFilepath = imgfilepath('diff', path);
118 | return result;
119 | };
120 |
121 | /**
122 | * capture for a specific host name + host, and optionally take some actions.
123 | *
124 | * @param {String} name
125 | * @param {String} host
126 | * @param {String} path
127 | * @param {Function} fn
128 | */
129 |
130 | Niffy.prototype.captureHost = function* (name, host, path, fn) {
131 |
132 | this.startProfile('goto');
133 | yield this.gotoHost(host, path, fn);
134 | this.stopProfile('goto');
135 |
136 | this.startProfile('capture');
137 | yield this.nightmare.wait(1000).screenshot(imgfilepath(name, path));
138 | this.stopProfile('capture');
139 | yield timeout(250);
140 | };
141 |
142 | /**
143 | * End the capture session.
144 | */
145 |
146 | Niffy.prototype.end = function* () {
147 | yield this.nightmare.end();
148 |
149 | debug(
150 | 'profile\n\tgoto %s\n\tcapture %s\n\tdiff %s',
151 | this.profiles.goto,
152 | this.profiles.capture,
153 | this.profiles.diff
154 | );
155 | };
156 |
157 | /**
158 | * Mark an execution start time.
159 | *
160 | * @param {String} name
161 | */
162 |
163 | Niffy.prototype.startProfile = function (name) {
164 | var start = new Date().getTime();
165 | this.starts[name] = start;
166 | };
167 |
168 | /**
169 | * Mark an execution stop time.
170 | *
171 | * @param {String} name
172 | */
173 |
174 | Niffy.prototype.stopProfile = function (name) {
175 | var end = new Date().getTime();
176 | if (!this.starts[name]) return;
177 | if (this.profiles[name]) this.profiles[name] += (end - this.starts[name]);
178 | else this.profiles[name] = (end - this.starts[name]);
179 | };
180 |
181 | /**
182 | * Utils
183 | */
184 |
185 | function imgfilepath(name, path) {
186 | var filepath = '/tmp/niffy' + path;
187 | if (filepath.slice(-1) !== '/') filepath += '/';
188 | mkdirp(filepath);
189 | return (filepath + name + '.png');
190 | }
191 |
192 | function* timeout(ms) {
193 | var to = function (ms, cb) {
194 | setTimeout(function () { cb(null); }, ms);
195 | };
196 | yield thunkify(to)(ms);
197 | }
198 |
--------------------------------------------------------------------------------
/lib/diff.js:
--------------------------------------------------------------------------------
1 |
2 | var debug = require('debug')('niffy:diff');
3 | var PNG = require('pngjs').PNG;
4 | var fs = require('fs');
5 | var thunkify = require('thunkify');
6 |
7 | module.exports = diff;
8 |
9 | /**
10 | * Diff two pngs into an img and stats.
11 | *
12 | * @param {String} pathA
13 | * @param {String} pathB
14 | * @param {String} pathDiff
15 | *
16 | * @returns {Object} stats
17 | */
18 |
19 | function* diff(pathA, pathB, pathDiff) {
20 |
21 | debug('starting img diffing %s', new Date());
22 |
23 | var imgA = yield thunkify(readPNG)(pathA);
24 | var imgB = yield thunkify(readPNG)(pathB);
25 |
26 | debug('finished loading imgs %s', new Date());
27 |
28 | var stats = diffAnalyze(imgA, imgB);
29 |
30 | debug('finished analyzing imgs %s', new Date());
31 |
32 | var png = diffImg(imgA, imgB);
33 |
34 | debug('finished diffing imgs %s', new Date());
35 |
36 | writePNG(png, pathDiff);
37 |
38 | debug('finished img diffing %s', new Date());
39 |
40 | return stats;
41 | }
42 |
43 | /**
44 | * Read in a png file.
45 | *
46 | * @param {String} path
47 | * @param {Function} callback
48 | */
49 |
50 | function readPNG(path, callback) {
51 | fs.createReadStream(path)
52 | .pipe(new PNG({
53 | filterType: 4
54 | }))
55 | .on('parsed', function() {
56 | callback(null, this);
57 | });
58 | }
59 |
60 | /**
61 | * write out a png file
62 | *
63 | * @param {PNG} png
64 | * @param {String} path
65 | */
66 |
67 | function writePNG(png, path) {
68 | png
69 | .pack()
70 | .pipe(fs.createWriteStream(path));
71 | }
72 |
73 | /**
74 | * diff two png images into a third img
75 | *
76 | * @param {PNG} imgA
77 | * @param {PNG} imgB
78 | *
79 | * @return {PNG} diff
80 | */
81 |
82 | function diffImg(imgA, imgB) {
83 | var png = new PNG({
84 | filterType: 4,
85 | width: imgA.width,
86 | height: imgB.height
87 | });
88 | for (var y = 0; y < png.height; y++) {
89 | for (var x = 0; x < png.width; x++) {
90 | var idx = (png.width * y + x) << 2;
91 |
92 | if (
93 | imgA.data[idx ] !== imgB.data[idx ] ||
94 | imgA.data[idx+1] !== imgB.data[idx+1] ||
95 | imgA.data[idx+2] !== imgB.data[idx+2] ||
96 | imgA.data[idx+3] !== imgB.data[idx+3]
97 | ) {
98 | // color
99 | png.data[idx ] = 0xff;
100 | png.data[idx+1] = (imgA.data[idx+1] + imgB.data[idx+1])/5;
101 | png.data[idx+2] = (imgA.data[idx+2] + imgB.data[idx+2])/5;
102 |
103 | // opacity
104 | png.data[idx+3] = 0xff;
105 | }
106 | else {
107 | // color
108 | png.data[idx ] = imgA.data[idx ];
109 | png.data[idx+1] = imgA.data[idx+1];
110 | png.data[idx+2] = imgA.data[idx+2];
111 |
112 | // opacity
113 | png.data[idx+3] = imgA.data[idx+3]/3;
114 | }
115 | }
116 | }
117 | return png;
118 | }
119 |
120 | /**
121 | * diff two images into an analysis
122 | *
123 | * @param {PNG} imgA
124 | * @param {PNG} imgB
125 | *
126 | * @return {Object} stats
127 | */
128 |
129 | function diffAnalyze(imgA, imgB) {
130 | var stats = {
131 | total: 0,
132 | differences: 0
133 | };
134 | for (var i = 0; i < imgA.data.length; i++) {
135 | stats.total++;
136 | if (imgA.data[i] !== imgB.data[i]) stats.differences++;
137 | }
138 | return stats;
139 | }
140 |
--------------------------------------------------------------------------------
/package.json:
--------------------------------------------------------------------------------
1 | {
2 | "name": "niffy",
3 | "version": "0.2.0",
4 | "license": "MIT",
5 | "main": "index.js",
6 | "scripts": {
7 | "test": "make test"
8 | },
9 | "repository": {
10 | "type": "git",
11 | "url": "https://github.com/segmentio/niffy.git"
12 | },
13 | "author": "Segment",
14 | "keywords": [
15 | "niffy",
16 | "nightmare",
17 | "perceptual diffing",
18 | "electron"
19 | ],
20 | "description": "Perceptual diffing built on Nightmare.",
21 | "dependencies": {
22 | "colors": "^1.1.2",
23 | "debug": "^2.2.0",
24 | "defaults": "^1.0.2",
25 | "mkdirp": "^0.5.1",
26 | "nightmare": "^2.0.3",
27 | "pngjs": "^3.0.1",
28 | "sprintf-js": "^1.0.3",
29 | "thunkify": "^2.1.2",
30 | "vo": "^1.0.3"
31 | },
32 | "devDependencies": {
33 | "chai": "^2.2.0",
34 | "co-mocha": "^1.0.1",
35 | "mocha": "^2.3.0"
36 | }
37 | }
38 |
--------------------------------------------------------------------------------
/test/index.js:
--------------------------------------------------------------------------------
1 | /*jshint esnext:true*/
2 |
3 | var debug = require('debug')('niffy:test');
4 | var should = require('chai').should();
5 | var Niffy = require('..');
6 |
7 | describe('Google', function () {
8 | var niffy
9 |
10 | before(function () {
11 | niffy = new Niffy(
12 | 'https://google.com',
13 | 'https://google.co.jp',
14 | { show: true }
15 | )
16 | })
17 |
18 | it('Homepage', function* () {
19 | yield niffy.test('/')
20 | })
21 |
22 | it('Services', function* () {
23 | yield niffy.test('/services')
24 | })
25 |
26 | after(function* () {
27 | yield niffy.end()
28 | })
29 | })
30 |
--------------------------------------------------------------------------------
/test/mocha.opts:
--------------------------------------------------------------------------------
1 | --slow 10s
2 | --timeout 200s
3 | --require co-mocha
4 |
--------------------------------------------------------------------------------
/yarn.lock:
--------------------------------------------------------------------------------
1 | # THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY.
2 | # yarn lockfile v1
3 |
4 |
5 | ajv@^4.9.1:
6 | version "4.11.5"
7 | resolved "https://registry.yarnpkg.com/ajv/-/ajv-4.11.5.tgz#b6ee74657b993a01dce44b7944d56f485828d5bd"
8 | dependencies:
9 | co "^4.6.0"
10 | json-stable-stringify "^1.0.1"
11 |
12 | ansi-regex@^2.0.0:
13 | version "2.1.1"
14 | resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-2.1.1.tgz#c3b33ab5ee360d86e0e628f0468ae7ef27d654df"
15 |
16 | array-find-index@^1.0.1:
17 | version "1.0.2"
18 | resolved "https://registry.yarnpkg.com/array-find-index/-/array-find-index-1.0.2.tgz#df010aa1287e164bbda6f9723b0a96a1ec4187a1"
19 |
20 | asn1@~0.2.3:
21 | version "0.2.3"
22 | resolved "https://registry.yarnpkg.com/asn1/-/asn1-0.2.3.tgz#dac8787713c9966849fc8180777ebe9c1ddf3b86"
23 |
24 | assert-plus@1.0.0, assert-plus@^1.0.0:
25 | version "1.0.0"
26 | resolved "https://registry.yarnpkg.com/assert-plus/-/assert-plus-1.0.0.tgz#f12e0f3c5d77b0b1cdd9146942e4e96c1e4dd525"
27 |
28 | assert-plus@^0.2.0:
29 | version "0.2.0"
30 | resolved "https://registry.yarnpkg.com/assert-plus/-/assert-plus-0.2.0.tgz#d74e1b87e7affc0db8aadb7021f3fe48101ab234"
31 |
32 | assertion-error@1.0.0:
33 | version "1.0.0"
34 | resolved "https://registry.yarnpkg.com/assertion-error/-/assertion-error-1.0.0.tgz#c7f85438fdd466bc7ca16ab90c81513797a5d23b"
35 |
36 | asynckit@^0.4.0:
37 | version "0.4.0"
38 | resolved "https://registry.yarnpkg.com/asynckit/-/asynckit-0.4.0.tgz#c79ed97f7f34cb8f2ba1bc9790bcc366474b4b79"
39 |
40 | aws-sign2@~0.6.0:
41 | version "0.6.0"
42 | resolved "https://registry.yarnpkg.com/aws-sign2/-/aws-sign2-0.6.0.tgz#14342dd38dbcc94d0e5b87d763cd63612c0e794f"
43 |
44 | aws4@^1.2.1:
45 | version "1.6.0"
46 | resolved "https://registry.yarnpkg.com/aws4/-/aws4-1.6.0.tgz#83ef5ca860b2b32e4a0deedee8c771b9db57471e"
47 |
48 | balanced-match@^0.4.1:
49 | version "0.4.2"
50 | resolved "https://registry.yarnpkg.com/balanced-match/-/balanced-match-0.4.2.tgz#cb3f3e3c732dc0f01ee70b403f302e61d7709838"
51 |
52 | bcrypt-pbkdf@^1.0.0:
53 | version "1.0.1"
54 | resolved "https://registry.yarnpkg.com/bcrypt-pbkdf/-/bcrypt-pbkdf-1.0.1.tgz#63bc5dcb61331b92bc05fd528953c33462a06f8d"
55 | dependencies:
56 | tweetnacl "^0.14.3"
57 |
58 | boom@2.x.x:
59 | version "2.10.1"
60 | resolved "https://registry.yarnpkg.com/boom/-/boom-2.10.1.tgz#39c8918ceff5799f83f9492a848f625add0c766f"
61 | dependencies:
62 | hoek "2.x.x"
63 |
64 | brace-expansion@^1.0.0:
65 | version "1.1.6"
66 | resolved "https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-1.1.6.tgz#7197d7eaa9b87e648390ea61fc66c84427420df9"
67 | dependencies:
68 | balanced-match "^0.4.1"
69 | concat-map "0.0.1"
70 |
71 | buffer-shims@^1.0.0:
72 | version "1.0.0"
73 | resolved "https://registry.yarnpkg.com/buffer-shims/-/buffer-shims-1.0.0.tgz#9978ce317388c649ad8793028c3477ef044a8b51"
74 |
75 | builtin-modules@^1.0.0:
76 | version "1.1.1"
77 | resolved "https://registry.yarnpkg.com/builtin-modules/-/builtin-modules-1.1.1.tgz#270f076c5a72c02f5b65a47df94c5fe3a278892f"
78 |
79 | camelcase-keys@^2.0.0:
80 | version "2.1.0"
81 | resolved "https://registry.yarnpkg.com/camelcase-keys/-/camelcase-keys-2.1.0.tgz#308beeaffdf28119051efa1d932213c91b8f92e7"
82 | dependencies:
83 | camelcase "^2.0.0"
84 | map-obj "^1.0.0"
85 |
86 | camelcase@^2.0.0:
87 | version "2.1.1"
88 | resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-2.1.1.tgz#7c1d16d679a1bbe59ca02cacecfb011e201f5a1f"
89 |
90 | caseless@~0.12.0:
91 | version "0.12.0"
92 | resolved "https://registry.yarnpkg.com/caseless/-/caseless-0.12.0.tgz#1b681c21ff84033c826543090689420d187151dc"
93 |
94 | chai@^2.2.0:
95 | version "2.3.0"
96 | resolved "https://registry.yarnpkg.com/chai/-/chai-2.3.0.tgz#8a2f6a34748da801090fd73287b2aa739a4e909a"
97 | dependencies:
98 | assertion-error "1.0.0"
99 | deep-eql "0.1.3"
100 |
101 | clone@^1.0.2:
102 | version "1.0.2"
103 | resolved "https://registry.yarnpkg.com/clone/-/clone-1.0.2.tgz#260b7a99ebb1edfe247538175f783243cb19d149"
104 |
105 | co-mocha@^1.0.1:
106 | version "1.2.0"
107 | resolved "https://registry.yarnpkg.com/co-mocha/-/co-mocha-1.2.0.tgz#d9be35a2a2d16f4b1b0e83f6973401ca4b6660af"
108 | dependencies:
109 | co "^4.0.0"
110 | is-generator "^1.0.1"
111 |
112 | co@3.1.0:
113 | version "3.1.0"
114 | resolved "https://registry.yarnpkg.com/co/-/co-3.1.0.tgz#4ea54ea5a08938153185e15210c68d9092bc1b78"
115 |
116 | co@^4.0.0, co@^4.6.0:
117 | version "4.6.0"
118 | resolved "https://registry.yarnpkg.com/co/-/co-4.6.0.tgz#6ea6bdf3d853ae54ccb8e47bfa0bf3f9031fb184"
119 |
120 | code-point-at@^1.0.0:
121 | version "1.1.0"
122 | resolved "https://registry.yarnpkg.com/code-point-at/-/code-point-at-1.1.0.tgz#0d070b4d043a5bea33a2f1a40e2edb3d9a4ccf77"
123 |
124 | colors@^1.1.2:
125 | version "1.1.2"
126 | resolved "https://registry.yarnpkg.com/colors/-/colors-1.1.2.tgz#168a4701756b6a7f51a12ce0c97bfa28c084ed63"
127 |
128 | combined-stream@^1.0.5, combined-stream@~1.0.5:
129 | version "1.0.5"
130 | resolved "https://registry.yarnpkg.com/combined-stream/-/combined-stream-1.0.5.tgz#938370a57b4a51dea2c77c15d5c5fdf895164009"
131 | dependencies:
132 | delayed-stream "~1.0.0"
133 |
134 | commander@0.6.1:
135 | version "0.6.1"
136 | resolved "https://registry.yarnpkg.com/commander/-/commander-0.6.1.tgz#fa68a14f6a945d54dbbe50d8cdb3320e9e3b1a06"
137 |
138 | commander@1.0.4:
139 | version "1.0.4"
140 | resolved "https://registry.yarnpkg.com/commander/-/commander-1.0.4.tgz#5edeb1aee23c4fb541a6b70d692abef19669a2d3"
141 | dependencies:
142 | keypress "0.1.x"
143 |
144 | commander@2.3.0:
145 | version "2.3.0"
146 | resolved "https://registry.yarnpkg.com/commander/-/commander-2.3.0.tgz#fd430e889832ec353b9acd1de217c11cb3eef873"
147 |
148 | concat-map@0.0.1:
149 | version "0.0.1"
150 | resolved "https://registry.yarnpkg.com/concat-map/-/concat-map-0.0.1.tgz#d8a96bd77fd68df7793a73036a3ba0d5405d477b"
151 |
152 | concat-stream@1.5.0:
153 | version "1.5.0"
154 | resolved "https://registry.yarnpkg.com/concat-stream/-/concat-stream-1.5.0.tgz#53f7d43c51c5e43f81c8fdd03321c631be68d611"
155 | dependencies:
156 | inherits "~2.0.1"
157 | readable-stream "~2.0.0"
158 | typedarray "~0.0.5"
159 |
160 | core-util-is@~1.0.0:
161 | version "1.0.2"
162 | resolved "https://registry.yarnpkg.com/core-util-is/-/core-util-is-1.0.2.tgz#b5fd54220aa2bc5ab57aab7140c940754503c1a7"
163 |
164 | cryptiles@2.x.x:
165 | version "2.0.5"
166 | resolved "https://registry.yarnpkg.com/cryptiles/-/cryptiles-2.0.5.tgz#3bdfecdc608147c1c67202fa291e7dca59eaa3b8"
167 | dependencies:
168 | boom "2.x.x"
169 |
170 | currently-unhandled@^0.4.1:
171 | version "0.4.1"
172 | resolved "https://registry.yarnpkg.com/currently-unhandled/-/currently-unhandled-0.4.1.tgz#988df33feab191ef799a61369dd76c17adf957ea"
173 | dependencies:
174 | array-find-index "^1.0.1"
175 |
176 | dashdash@^1.12.0:
177 | version "1.14.1"
178 | resolved "https://registry.yarnpkg.com/dashdash/-/dashdash-1.14.1.tgz#853cfa0f7cbe2fed5de20326b8dd581035f6e2f0"
179 | dependencies:
180 | assert-plus "^1.0.0"
181 |
182 | debug@0.7.4:
183 | version "0.7.4"
184 | resolved "https://registry.yarnpkg.com/debug/-/debug-0.7.4.tgz#06e1ea8082c2cb14e39806e22e2f6f757f92af39"
185 |
186 | debug@2.2.0:
187 | version "2.2.0"
188 | resolved "https://registry.yarnpkg.com/debug/-/debug-2.2.0.tgz#f87057e995b1a1f6ae6a4960664137bc56f039da"
189 | dependencies:
190 | ms "0.7.1"
191 |
192 | debug@^2.1.3, debug@^2.2.0:
193 | version "2.6.3"
194 | resolved "https://registry.yarnpkg.com/debug/-/debug-2.6.3.tgz#0f7eb8c30965ec08c72accfa0130c8b79984141d"
195 | dependencies:
196 | ms "0.7.2"
197 |
198 | decamelize@^1.1.2:
199 | version "1.2.0"
200 | resolved "https://registry.yarnpkg.com/decamelize/-/decamelize-1.2.0.tgz#f6534d15148269b20352e7bee26f501f9a191290"
201 |
202 | deep-defaults@^1.0.3:
203 | version "1.0.4"
204 | resolved "https://registry.yarnpkg.com/deep-defaults/-/deep-defaults-1.0.4.tgz#1a9762e2b6c8d6a4e9931b8ee7ff8cdcee1d1750"
205 | dependencies:
206 | lodash "3.0.x"
207 |
208 | deep-eql@0.1.3:
209 | version "0.1.3"
210 | resolved "https://registry.yarnpkg.com/deep-eql/-/deep-eql-0.1.3.tgz#ef558acab8de25206cd713906d74e56930eb69f2"
211 | dependencies:
212 | type-detect "0.1.1"
213 |
214 | deep-extend@~0.4.0:
215 | version "0.4.1"
216 | resolved "https://registry.yarnpkg.com/deep-extend/-/deep-extend-0.4.1.tgz#efe4113d08085f4e6f9687759810f807469e2253"
217 |
218 | defaults@^1.0.2:
219 | version "1.0.3"
220 | resolved "https://registry.yarnpkg.com/defaults/-/defaults-1.0.3.tgz#c656051e9817d9ff08ed881477f3fe4019f3ef7d"
221 | dependencies:
222 | clone "^1.0.2"
223 |
224 | delayed-stream@~1.0.0:
225 | version "1.0.0"
226 | resolved "https://registry.yarnpkg.com/delayed-stream/-/delayed-stream-1.0.0.tgz#df3ae199acadfb7d440aaae0b29e2272b24ec619"
227 |
228 | diff@1.4.0:
229 | version "1.4.0"
230 | resolved "https://registry.yarnpkg.com/diff/-/diff-1.4.0.tgz#7f28d2eb9ee7b15a97efd89ce63dcfdaa3ccbabf"
231 |
232 | ecc-jsbn@~0.1.1:
233 | version "0.1.1"
234 | resolved "https://registry.yarnpkg.com/ecc-jsbn/-/ecc-jsbn-0.1.1.tgz#0fc73a9ed5f0d53c38193398523ef7e543777505"
235 | dependencies:
236 | jsbn "~0.1.0"
237 |
238 | electron-download@^3.0.1:
239 | version "3.3.0"
240 | resolved "https://registry.yarnpkg.com/electron-download/-/electron-download-3.3.0.tgz#2cfd54d6966c019c4d49ad65fbe65cc9cdef68c8"
241 | dependencies:
242 | debug "^2.2.0"
243 | fs-extra "^0.30.0"
244 | home-path "^1.0.1"
245 | minimist "^1.2.0"
246 | nugget "^2.0.0"
247 | path-exists "^2.1.0"
248 | rc "^1.1.2"
249 | semver "^5.3.0"
250 | sumchecker "^1.2.0"
251 |
252 | electron@^1.4.4:
253 | version "1.6.5"
254 | resolved "https://registry.yarnpkg.com/electron/-/electron-1.6.5.tgz#6408d738025bc34f7c0ce8ee8827539475680a99"
255 | dependencies:
256 | electron-download "^3.0.1"
257 | extract-zip "^1.0.3"
258 |
259 | enqueue@^1.0.2:
260 | version "1.0.2"
261 | resolved "https://registry.yarnpkg.com/enqueue/-/enqueue-1.0.2.tgz#9014e9bce570ee93ca96e6c8e63ad54c192b6bc8"
262 | dependencies:
263 | sliced "0.0.5"
264 |
265 | error-ex@^1.2.0:
266 | version "1.3.1"
267 | resolved "https://registry.yarnpkg.com/error-ex/-/error-ex-1.3.1.tgz#f855a86ce61adc4e8621c3cda21e7a7612c3a8dc"
268 | dependencies:
269 | is-arrayish "^0.2.1"
270 |
271 | es6-promise@^4.0.5:
272 | version "4.1.0"
273 | resolved "https://registry.yarnpkg.com/es6-promise/-/es6-promise-4.1.0.tgz#dda03ca8f9f89bc597e689842929de7ba8cebdf0"
274 |
275 | escape-string-regexp@1.0.2:
276 | version "1.0.2"
277 | resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-1.0.2.tgz#4dbc2fe674e71949caf3fb2695ce7f2dc1d9a8d1"
278 |
279 | extend@~3.0.0:
280 | version "3.0.0"
281 | resolved "https://registry.yarnpkg.com/extend/-/extend-3.0.0.tgz#5a474353b9f3353ddd8176dfd37b91c83a46f1d4"
282 |
283 | extract-zip@^1.0.3:
284 | version "1.6.0"
285 | resolved "https://registry.yarnpkg.com/extract-zip/-/extract-zip-1.6.0.tgz#7f400c9607ea866ecab7aa6d54fb978eeb11621a"
286 | dependencies:
287 | concat-stream "1.5.0"
288 | debug "0.7.4"
289 | mkdirp "0.5.0"
290 | yauzl "2.4.1"
291 |
292 | extsprintf@1.0.2:
293 | version "1.0.2"
294 | resolved "https://registry.yarnpkg.com/extsprintf/-/extsprintf-1.0.2.tgz#e1080e0658e300b06294990cc70e1502235fd550"
295 |
296 | fd-slicer@~1.0.1:
297 | version "1.0.1"
298 | resolved "https://registry.yarnpkg.com/fd-slicer/-/fd-slicer-1.0.1.tgz#8b5bcbd9ec327c5041bf9ab023fd6750f1177e65"
299 | dependencies:
300 | pend "~1.2.0"
301 |
302 | find-up@^1.0.0:
303 | version "1.1.2"
304 | resolved "https://registry.yarnpkg.com/find-up/-/find-up-1.1.2.tgz#6b2e9822b1a2ce0a60ab64d610eccad53cb24d0f"
305 | dependencies:
306 | path-exists "^2.0.0"
307 | pinkie-promise "^2.0.0"
308 |
309 | foreach@^2.0.5:
310 | version "2.0.5"
311 | resolved "https://registry.yarnpkg.com/foreach/-/foreach-2.0.5.tgz#0bee005018aeb260d0a3af3ae658dd0136ec1b99"
312 |
313 | forever-agent@~0.6.1:
314 | version "0.6.1"
315 | resolved "https://registry.yarnpkg.com/forever-agent/-/forever-agent-0.6.1.tgz#fbc71f0c41adeb37f96c577ad1ed42d8fdacca91"
316 |
317 | form-data@~2.1.1:
318 | version "2.1.2"
319 | resolved "https://registry.yarnpkg.com/form-data/-/form-data-2.1.2.tgz#89c3534008b97eada4cbb157d58f6f5df025eae4"
320 | dependencies:
321 | asynckit "^0.4.0"
322 | combined-stream "^1.0.5"
323 | mime-types "^2.1.12"
324 |
325 | fs-extra@^0.30.0:
326 | version "0.30.0"
327 | resolved "https://registry.yarnpkg.com/fs-extra/-/fs-extra-0.30.0.tgz#f233ffcc08d4da7d432daa449776989db1df93f0"
328 | dependencies:
329 | graceful-fs "^4.1.2"
330 | jsonfile "^2.1.0"
331 | klaw "^1.0.0"
332 | path-is-absolute "^1.0.0"
333 | rimraf "^2.2.8"
334 |
335 | fs.realpath@^1.0.0:
336 | version "1.0.0"
337 | resolved "https://registry.yarnpkg.com/fs.realpath/-/fs.realpath-1.0.0.tgz#1504ad2523158caa40db4a2787cb01411994ea4f"
338 |
339 | function-source@^0.1.0:
340 | version "0.1.0"
341 | resolved "https://registry.yarnpkg.com/function-source/-/function-source-0.1.0.tgz#d9104bf3e46788b55468c02bf1b2fabcf8fc19af"
342 |
343 | get-stdin@^4.0.1:
344 | version "4.0.1"
345 | resolved "https://registry.yarnpkg.com/get-stdin/-/get-stdin-4.0.1.tgz#b968c6b0a04384324902e8bf1a5df32579a450fe"
346 |
347 | getpass@^0.1.1:
348 | version "0.1.6"
349 | resolved "https://registry.yarnpkg.com/getpass/-/getpass-0.1.6.tgz#283ffd9fc1256840875311c1b60e8c40187110e6"
350 | dependencies:
351 | assert-plus "^1.0.0"
352 |
353 | glob@3.2.11:
354 | version "3.2.11"
355 | resolved "https://registry.yarnpkg.com/glob/-/glob-3.2.11.tgz#4a973f635b9190f715d10987d5c00fd2815ebe3d"
356 | dependencies:
357 | inherits "2"
358 | minimatch "0.3"
359 |
360 | glob@^7.0.5:
361 | version "7.1.1"
362 | resolved "https://registry.yarnpkg.com/glob/-/glob-7.1.1.tgz#805211df04faaf1c63a3600306cdf5ade50b2ec8"
363 | dependencies:
364 | fs.realpath "^1.0.0"
365 | inflight "^1.0.4"
366 | inherits "2"
367 | minimatch "^3.0.2"
368 | once "^1.3.0"
369 | path-is-absolute "^1.0.0"
370 |
371 | graceful-fs@^4.1.2, graceful-fs@^4.1.6, graceful-fs@^4.1.9:
372 | version "4.1.11"
373 | resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.1.11.tgz#0e8bdfe4d1ddb8854d64e04ea7c00e2a026e5658"
374 |
375 | growl@1.9.2:
376 | version "1.9.2"
377 | resolved "https://registry.yarnpkg.com/growl/-/growl-1.9.2.tgz#0ea7743715db8d8de2c5ede1775e1b45ac85c02f"
378 |
379 | har-schema@^1.0.5:
380 | version "1.0.5"
381 | resolved "https://registry.yarnpkg.com/har-schema/-/har-schema-1.0.5.tgz#d263135f43307c02c602afc8fe95970c0151369e"
382 |
383 | har-validator@~4.2.1:
384 | version "4.2.1"
385 | resolved "https://registry.yarnpkg.com/har-validator/-/har-validator-4.2.1.tgz#33481d0f1bbff600dd203d75812a6a5fba002e2a"
386 | dependencies:
387 | ajv "^4.9.1"
388 | har-schema "^1.0.5"
389 |
390 | hawk@~3.1.3:
391 | version "3.1.3"
392 | resolved "https://registry.yarnpkg.com/hawk/-/hawk-3.1.3.tgz#078444bd7c1640b0fe540d2c9b73d59678e8e1c4"
393 | dependencies:
394 | boom "2.x.x"
395 | cryptiles "2.x.x"
396 | hoek "2.x.x"
397 | sntp "1.x.x"
398 |
399 | hoek@2.x.x:
400 | version "2.16.3"
401 | resolved "https://registry.yarnpkg.com/hoek/-/hoek-2.16.3.tgz#20bb7403d3cea398e91dc4710a8ff1b8274a25ed"
402 |
403 | home-path@^1.0.1:
404 | version "1.0.5"
405 | resolved "https://registry.yarnpkg.com/home-path/-/home-path-1.0.5.tgz#788b29815b12d53bacf575648476e6f9041d133f"
406 |
407 | hosted-git-info@^2.1.4:
408 | version "2.4.1"
409 | resolved "https://registry.yarnpkg.com/hosted-git-info/-/hosted-git-info-2.4.1.tgz#4b0445e41c004a8bd1337773a4ff790ca40318c8"
410 |
411 | http-signature@~1.1.0:
412 | version "1.1.1"
413 | resolved "https://registry.yarnpkg.com/http-signature/-/http-signature-1.1.1.tgz#df72e267066cd0ac67fb76adf8e134a8fbcf91bf"
414 | dependencies:
415 | assert-plus "^0.2.0"
416 | jsprim "^1.2.2"
417 | sshpk "^1.7.0"
418 |
419 | indent-string@^2.1.0:
420 | version "2.1.0"
421 | resolved "https://registry.yarnpkg.com/indent-string/-/indent-string-2.1.0.tgz#8e2d48348742121b4a8218b7a137e9a52049dc80"
422 | dependencies:
423 | repeating "^2.0.0"
424 |
425 | inflight@^1.0.4:
426 | version "1.0.6"
427 | resolved "https://registry.yarnpkg.com/inflight/-/inflight-1.0.6.tgz#49bd6331d7d02d0c09bc910a1075ba8165b56df9"
428 | dependencies:
429 | once "^1.3.0"
430 | wrappy "1"
431 |
432 | inherits@2, inherits@~2.0.1:
433 | version "2.0.3"
434 | resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.3.tgz#633c2c83e3da42a502f52466022480f4208261de"
435 |
436 | ini@~1.3.0:
437 | version "1.3.4"
438 | resolved "https://registry.yarnpkg.com/ini/-/ini-1.3.4.tgz#0537cb79daf59b59a1a517dff706c86ec039162e"
439 |
440 | is-arrayish@^0.2.1:
441 | version "0.2.1"
442 | resolved "https://registry.yarnpkg.com/is-arrayish/-/is-arrayish-0.2.1.tgz#77c99840527aa8ecb1a8ba697b80645a7a926a9d"
443 |
444 | is-builtin-module@^1.0.0:
445 | version "1.0.0"
446 | resolved "https://registry.yarnpkg.com/is-builtin-module/-/is-builtin-module-1.0.0.tgz#540572d34f7ac3119f8f76c30cbc1b1e037affbe"
447 | dependencies:
448 | builtin-modules "^1.0.0"
449 |
450 | is-finite@^1.0.0:
451 | version "1.0.2"
452 | resolved "https://registry.yarnpkg.com/is-finite/-/is-finite-1.0.2.tgz#cc6677695602be550ef11e8b4aa6305342b6d0aa"
453 | dependencies:
454 | number-is-nan "^1.0.0"
455 |
456 | is-fullwidth-code-point@^1.0.0:
457 | version "1.0.0"
458 | resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-1.0.0.tgz#ef9e31386f031a7f0d643af82fde50c457ef00cb"
459 | dependencies:
460 | number-is-nan "^1.0.0"
461 |
462 | is-generator@^1.0.1:
463 | version "1.0.3"
464 | resolved "https://registry.yarnpkg.com/is-generator/-/is-generator-1.0.3.tgz#c14c21057ed36e328db80347966c693f886389f3"
465 |
466 | is-typedarray@~1.0.0:
467 | version "1.0.0"
468 | resolved "https://registry.yarnpkg.com/is-typedarray/-/is-typedarray-1.0.0.tgz#e479c80858df0c1b11ddda6940f96011fcda4a9a"
469 |
470 | is-utf8@^0.2.0:
471 | version "0.2.1"
472 | resolved "https://registry.yarnpkg.com/is-utf8/-/is-utf8-0.2.1.tgz#4b0da1442104d1b336340e80797e865cf39f7d72"
473 |
474 | isarray@0.0.1:
475 | version "0.0.1"
476 | resolved "https://registry.yarnpkg.com/isarray/-/isarray-0.0.1.tgz#8a18acfca9a8f4177e09abfc6038939b05d1eedf"
477 |
478 | isarray@~1.0.0:
479 | version "1.0.0"
480 | resolved "https://registry.yarnpkg.com/isarray/-/isarray-1.0.0.tgz#bb935d48582cba168c06834957a54a3e07124f11"
481 |
482 | isstream@~0.1.2:
483 | version "0.1.2"
484 | resolved "https://registry.yarnpkg.com/isstream/-/isstream-0.1.2.tgz#47e63f7af55afa6f92e1500e690eb8b8529c099a"
485 |
486 | jade@0.26.3:
487 | version "0.26.3"
488 | resolved "https://registry.yarnpkg.com/jade/-/jade-0.26.3.tgz#8f10d7977d8d79f2f6ff862a81b0513ccb25686c"
489 | dependencies:
490 | commander "0.6.1"
491 | mkdirp "0.3.0"
492 |
493 | jodid25519@^1.0.0:
494 | version "1.0.2"
495 | resolved "https://registry.yarnpkg.com/jodid25519/-/jodid25519-1.0.2.tgz#06d4912255093419477d425633606e0e90782967"
496 | dependencies:
497 | jsbn "~0.1.0"
498 |
499 | jsbn@~0.1.0:
500 | version "0.1.1"
501 | resolved "https://registry.yarnpkg.com/jsbn/-/jsbn-0.1.1.tgz#a5e654c2e5a2deb5f201d96cefbca80c0ef2f513"
502 |
503 | jsesc@^0.5.0:
504 | version "0.5.0"
505 | resolved "https://registry.yarnpkg.com/jsesc/-/jsesc-0.5.0.tgz#e7dee66e35d6fc16f710fe91d5cf69f70f08911d"
506 |
507 | json-schema@0.2.3:
508 | version "0.2.3"
509 | resolved "https://registry.yarnpkg.com/json-schema/-/json-schema-0.2.3.tgz#b480c892e59a2f05954ce727bd3f2a4e882f9e13"
510 |
511 | json-stable-stringify@^1.0.1:
512 | version "1.0.1"
513 | resolved "https://registry.yarnpkg.com/json-stable-stringify/-/json-stable-stringify-1.0.1.tgz#9a759d39c5f2ff503fd5300646ed445f88c4f9af"
514 | dependencies:
515 | jsonify "~0.0.0"
516 |
517 | json-stringify-safe@~5.0.1:
518 | version "5.0.1"
519 | resolved "https://registry.yarnpkg.com/json-stringify-safe/-/json-stringify-safe-5.0.1.tgz#1296a2d58fd45f19a0f6ce01d65701e2c735b6eb"
520 |
521 | jsonfile@^2.1.0:
522 | version "2.4.0"
523 | resolved "https://registry.yarnpkg.com/jsonfile/-/jsonfile-2.4.0.tgz#3736a2b428b87bbda0cc83b53fa3d633a35c2ae8"
524 | optionalDependencies:
525 | graceful-fs "^4.1.6"
526 |
527 | jsonify@~0.0.0:
528 | version "0.0.0"
529 | resolved "https://registry.yarnpkg.com/jsonify/-/jsonify-0.0.0.tgz#2c74b6ee41d93ca51b7b5aaee8f503631d252a73"
530 |
531 | jsprim@^1.2.2:
532 | version "1.4.0"
533 | resolved "https://registry.yarnpkg.com/jsprim/-/jsprim-1.4.0.tgz#a3b87e40298d8c380552d8cc7628a0bb95a22918"
534 | dependencies:
535 | assert-plus "1.0.0"
536 | extsprintf "1.0.2"
537 | json-schema "0.2.3"
538 | verror "1.3.6"
539 |
540 | keypress@0.1.x:
541 | version "0.1.0"
542 | resolved "https://registry.yarnpkg.com/keypress/-/keypress-0.1.0.tgz#4a3188d4291b66b4f65edb99f806aa9ae293592a"
543 |
544 | klaw@^1.0.0:
545 | version "1.3.1"
546 | resolved "https://registry.yarnpkg.com/klaw/-/klaw-1.3.1.tgz#4088433b46b3b1ba259d78785d8e96f73ba02439"
547 | optionalDependencies:
548 | graceful-fs "^4.1.9"
549 |
550 | load-json-file@^1.0.0:
551 | version "1.1.0"
552 | resolved "https://registry.yarnpkg.com/load-json-file/-/load-json-file-1.1.0.tgz#956905708d58b4bab4c2261b04f59f31c99374c0"
553 | dependencies:
554 | graceful-fs "^4.1.2"
555 | parse-json "^2.2.0"
556 | pify "^2.0.0"
557 | pinkie-promise "^2.0.0"
558 | strip-bom "^2.0.0"
559 |
560 | lodash@3.0.x:
561 | version "3.0.1"
562 | resolved "https://registry.yarnpkg.com/lodash/-/lodash-3.0.1.tgz#14d49028a38bc740241d11e2ecd57ec06d73c19a"
563 |
564 | loud-rejection@^1.0.0:
565 | version "1.6.0"
566 | resolved "https://registry.yarnpkg.com/loud-rejection/-/loud-rejection-1.6.0.tgz#5b46f80147edee578870f086d04821cf998e551f"
567 | dependencies:
568 | currently-unhandled "^0.4.1"
569 | signal-exit "^3.0.0"
570 |
571 | lru-cache@2:
572 | version "2.7.3"
573 | resolved "https://registry.yarnpkg.com/lru-cache/-/lru-cache-2.7.3.tgz#6d4524e8b955f95d4f5b58851ce21dd72fb4e952"
574 |
575 | map-obj@^1.0.0, map-obj@^1.0.1:
576 | version "1.0.1"
577 | resolved "https://registry.yarnpkg.com/map-obj/-/map-obj-1.0.1.tgz#d933ceb9205d82bdcf4886f6742bdc2b4dea146d"
578 |
579 | meow@^3.1.0:
580 | version "3.7.0"
581 | resolved "https://registry.yarnpkg.com/meow/-/meow-3.7.0.tgz#72cb668b425228290abbfa856892587308a801fb"
582 | dependencies:
583 | camelcase-keys "^2.0.0"
584 | decamelize "^1.1.2"
585 | loud-rejection "^1.0.0"
586 | map-obj "^1.0.1"
587 | minimist "^1.1.3"
588 | normalize-package-data "^2.3.4"
589 | object-assign "^4.0.1"
590 | read-pkg-up "^1.0.1"
591 | redent "^1.0.0"
592 | trim-newlines "^1.0.0"
593 |
594 | mime-db@~1.27.0:
595 | version "1.27.0"
596 | resolved "https://registry.yarnpkg.com/mime-db/-/mime-db-1.27.0.tgz#820f572296bbd20ec25ed55e5b5de869e5436eb1"
597 |
598 | mime-types@^2.1.12, mime-types@~2.1.7:
599 | version "2.1.15"
600 | resolved "https://registry.yarnpkg.com/mime-types/-/mime-types-2.1.15.tgz#a4ebf5064094569237b8cf70046776d09fc92aed"
601 | dependencies:
602 | mime-db "~1.27.0"
603 |
604 | minimatch@0.3:
605 | version "0.3.0"
606 | resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-0.3.0.tgz#275d8edaac4f1bb3326472089e7949c8394699dd"
607 | dependencies:
608 | lru-cache "2"
609 | sigmund "~1.0.0"
610 |
611 | minimatch@^3.0.2:
612 | version "3.0.3"
613 | resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-3.0.3.tgz#2a4e4090b96b2db06a9d7df01055a62a77c9b774"
614 | dependencies:
615 | brace-expansion "^1.0.0"
616 |
617 | minimist@0.0.8:
618 | version "0.0.8"
619 | resolved "https://registry.yarnpkg.com/minimist/-/minimist-0.0.8.tgz#857fcabfc3397d2625b8228262e86aa7a011b05d"
620 |
621 | minimist@^1.1.0, minimist@^1.1.3, minimist@^1.2.0:
622 | version "1.2.0"
623 | resolved "https://registry.yarnpkg.com/minimist/-/minimist-1.2.0.tgz#a35008b20f41383eec1fb914f4cd5df79a264284"
624 |
625 | minstache@^1.2.0:
626 | version "1.2.0"
627 | resolved "https://registry.yarnpkg.com/minstache/-/minstache-1.2.0.tgz#ff1cc403ac2844f68dbf18c662129be7eb0efc41"
628 | dependencies:
629 | commander "1.0.4"
630 |
631 | mkdirp@0.3.0:
632 | version "0.3.0"
633 | resolved "https://registry.yarnpkg.com/mkdirp/-/mkdirp-0.3.0.tgz#1bbf5ab1ba827af23575143490426455f481fe1e"
634 |
635 | mkdirp@0.5.0:
636 | version "0.5.0"
637 | resolved "https://registry.yarnpkg.com/mkdirp/-/mkdirp-0.5.0.tgz#1d73076a6df986cd9344e15e71fcc05a4c9abf12"
638 | dependencies:
639 | minimist "0.0.8"
640 |
641 | mkdirp@0.5.1, mkdirp@^0.5.1:
642 | version "0.5.1"
643 | resolved "https://registry.yarnpkg.com/mkdirp/-/mkdirp-0.5.1.tgz#30057438eac6cf7f8c4767f38648d6697d75c903"
644 | dependencies:
645 | minimist "0.0.8"
646 |
647 | mocha@^2.3.0:
648 | version "2.5.3"
649 | resolved "https://registry.yarnpkg.com/mocha/-/mocha-2.5.3.tgz#161be5bdeb496771eb9b35745050b622b5aefc58"
650 | dependencies:
651 | commander "2.3.0"
652 | debug "2.2.0"
653 | diff "1.4.0"
654 | escape-string-regexp "1.0.2"
655 | glob "3.2.11"
656 | growl "1.9.2"
657 | jade "0.26.3"
658 | mkdirp "0.5.1"
659 | supports-color "1.2.0"
660 | to-iso-string "0.0.2"
661 |
662 | ms@0.7.1:
663 | version "0.7.1"
664 | resolved "https://registry.yarnpkg.com/ms/-/ms-0.7.1.tgz#9cd13c03adbff25b65effde7ce864ee952017098"
665 |
666 | ms@0.7.2:
667 | version "0.7.2"
668 | resolved "https://registry.yarnpkg.com/ms/-/ms-0.7.2.tgz#ae25cf2512b3885a1d95d7f037868d8431124765"
669 |
670 | nightmare@^2.0.3:
671 | version "2.10.0"
672 | resolved "https://registry.yarnpkg.com/nightmare/-/nightmare-2.10.0.tgz#e9c5d590bb296f59685fd48218c2fbac44767b21"
673 | dependencies:
674 | debug "^2.2.0"
675 | deep-defaults "^1.0.3"
676 | defaults "^1.0.2"
677 | electron "^1.4.4"
678 | enqueue "^1.0.2"
679 | function-source "^0.1.0"
680 | jsesc "^0.5.0"
681 | minstache "^1.2.0"
682 | mkdirp "^0.5.1"
683 | once "^1.3.3"
684 | rimraf "^2.4.3"
685 | sliced "1.0.1"
686 | split2 "^2.0.1"
687 |
688 | normalize-package-data@^2.3.2, normalize-package-data@^2.3.4:
689 | version "2.3.6"
690 | resolved "https://registry.yarnpkg.com/normalize-package-data/-/normalize-package-data-2.3.6.tgz#498fa420c96401f787402ba21e600def9f981fff"
691 | dependencies:
692 | hosted-git-info "^2.1.4"
693 | is-builtin-module "^1.0.0"
694 | semver "2 || 3 || 4 || 5"
695 | validate-npm-package-license "^3.0.1"
696 |
697 | nugget@^2.0.0:
698 | version "2.0.1"
699 | resolved "https://registry.yarnpkg.com/nugget/-/nugget-2.0.1.tgz#201095a487e1ad36081b3432fa3cada4f8d071b0"
700 | dependencies:
701 | debug "^2.1.3"
702 | minimist "^1.1.0"
703 | pretty-bytes "^1.0.2"
704 | progress-stream "^1.1.0"
705 | request "^2.45.0"
706 | single-line-log "^1.1.2"
707 | throttleit "0.0.2"
708 |
709 | number-is-nan@^1.0.0:
710 | version "1.0.1"
711 | resolved "https://registry.yarnpkg.com/number-is-nan/-/number-is-nan-1.0.1.tgz#097b602b53422a522c1afb8790318336941a011d"
712 |
713 | oauth-sign@~0.8.1:
714 | version "0.8.2"
715 | resolved "https://registry.yarnpkg.com/oauth-sign/-/oauth-sign-0.8.2.tgz#46a6ab7f0aead8deae9ec0565780b7d4efeb9d43"
716 |
717 | object-assign@^4.0.1:
718 | version "4.1.1"
719 | resolved "https://registry.yarnpkg.com/object-assign/-/object-assign-4.1.1.tgz#2109adc7965887cfc05cbbd442cac8bfbb360863"
720 |
721 | object-keys@~0.4.0:
722 | version "0.4.0"
723 | resolved "https://registry.yarnpkg.com/object-keys/-/object-keys-0.4.0.tgz#28a6aae7428dd2c3a92f3d95f21335dd204e0336"
724 |
725 | once@^1.3.0, once@^1.3.3:
726 | version "1.4.0"
727 | resolved "https://registry.yarnpkg.com/once/-/once-1.4.0.tgz#583b1aa775961d4b113ac17d9c50baef9dd76bd1"
728 | dependencies:
729 | wrappy "1"
730 |
731 | parse-json@^2.2.0:
732 | version "2.2.0"
733 | resolved "https://registry.yarnpkg.com/parse-json/-/parse-json-2.2.0.tgz#f480f40434ef80741f8469099f8dea18f55a4dc9"
734 | dependencies:
735 | error-ex "^1.2.0"
736 |
737 | path-exists@^2.0.0, path-exists@^2.1.0:
738 | version "2.1.0"
739 | resolved "https://registry.yarnpkg.com/path-exists/-/path-exists-2.1.0.tgz#0feb6c64f0fc518d9a754dd5efb62c7022761f4b"
740 | dependencies:
741 | pinkie-promise "^2.0.0"
742 |
743 | path-is-absolute@^1.0.0:
744 | version "1.0.1"
745 | resolved "https://registry.yarnpkg.com/path-is-absolute/-/path-is-absolute-1.0.1.tgz#174b9268735534ffbc7ace6bf53a5a9e1b5c5f5f"
746 |
747 | path-type@^1.0.0:
748 | version "1.1.0"
749 | resolved "https://registry.yarnpkg.com/path-type/-/path-type-1.1.0.tgz#59c44f7ee491da704da415da5a4070ba4f8fe441"
750 | dependencies:
751 | graceful-fs "^4.1.2"
752 | pify "^2.0.0"
753 | pinkie-promise "^2.0.0"
754 |
755 | pend@~1.2.0:
756 | version "1.2.0"
757 | resolved "https://registry.yarnpkg.com/pend/-/pend-1.2.0.tgz#7a57eb550a6783f9115331fcf4663d5c8e007a50"
758 |
759 | performance-now@^0.2.0:
760 | version "0.2.0"
761 | resolved "https://registry.yarnpkg.com/performance-now/-/performance-now-0.2.0.tgz#33ef30c5c77d4ea21c5a53869d91b56d8f2555e5"
762 |
763 | pify@^2.0.0:
764 | version "2.3.0"
765 | resolved "https://registry.yarnpkg.com/pify/-/pify-2.3.0.tgz#ed141a6ac043a849ea588498e7dca8b15330e90c"
766 |
767 | pinkie-promise@^2.0.0:
768 | version "2.0.1"
769 | resolved "https://registry.yarnpkg.com/pinkie-promise/-/pinkie-promise-2.0.1.tgz#2135d6dfa7a358c069ac9b178776288228450ffa"
770 | dependencies:
771 | pinkie "^2.0.0"
772 |
773 | pinkie@^2.0.0:
774 | version "2.0.4"
775 | resolved "https://registry.yarnpkg.com/pinkie/-/pinkie-2.0.4.tgz#72556b80cfa0d48a974e80e77248e80ed4f7f870"
776 |
777 | pngjs@^3.0.1:
778 | version "3.0.1"
779 | resolved "https://registry.yarnpkg.com/pngjs/-/pngjs-3.0.1.tgz#b15086ac1ac47298c8fd3f9cdf364fa9879c4db6"
780 |
781 | pretty-bytes@^1.0.2:
782 | version "1.0.4"
783 | resolved "https://registry.yarnpkg.com/pretty-bytes/-/pretty-bytes-1.0.4.tgz#0a22e8210609ad35542f8c8d5d2159aff0751c84"
784 | dependencies:
785 | get-stdin "^4.0.1"
786 | meow "^3.1.0"
787 |
788 | process-nextick-args@~1.0.6:
789 | version "1.0.7"
790 | resolved "https://registry.yarnpkg.com/process-nextick-args/-/process-nextick-args-1.0.7.tgz#150e20b756590ad3f91093f25a4f2ad8bff30ba3"
791 |
792 | progress-stream@^1.1.0:
793 | version "1.2.0"
794 | resolved "https://registry.yarnpkg.com/progress-stream/-/progress-stream-1.2.0.tgz#2cd3cfea33ba3a89c9c121ec3347abe9ab125f77"
795 | dependencies:
796 | speedometer "~0.1.2"
797 | through2 "~0.2.3"
798 |
799 | punycode@^1.4.1:
800 | version "1.4.1"
801 | resolved "https://registry.yarnpkg.com/punycode/-/punycode-1.4.1.tgz#c0d5a63b2718800ad8e1eb0fa5269c84dd41845e"
802 |
803 | qs@~6.4.0:
804 | version "6.4.0"
805 | resolved "https://registry.yarnpkg.com/qs/-/qs-6.4.0.tgz#13e26d28ad6b0ffaa91312cd3bf708ed351e7233"
806 |
807 | rc@^1.1.2:
808 | version "1.2.1"
809 | resolved "https://registry.yarnpkg.com/rc/-/rc-1.2.1.tgz#2e03e8e42ee450b8cb3dce65be1bf8974e1dfd95"
810 | dependencies:
811 | deep-extend "~0.4.0"
812 | ini "~1.3.0"
813 | minimist "^1.2.0"
814 | strip-json-comments "~2.0.1"
815 |
816 | read-pkg-up@^1.0.1:
817 | version "1.0.1"
818 | resolved "https://registry.yarnpkg.com/read-pkg-up/-/read-pkg-up-1.0.1.tgz#9d63c13276c065918d57f002a57f40a1b643fb02"
819 | dependencies:
820 | find-up "^1.0.0"
821 | read-pkg "^1.0.0"
822 |
823 | read-pkg@^1.0.0:
824 | version "1.1.0"
825 | resolved "https://registry.yarnpkg.com/read-pkg/-/read-pkg-1.1.0.tgz#f5ffaa5ecd29cb31c0474bca7d756b6bb29e3f28"
826 | dependencies:
827 | load-json-file "^1.0.0"
828 | normalize-package-data "^2.3.2"
829 | path-type "^1.0.0"
830 |
831 | readable-stream@^2.1.5:
832 | version "2.2.6"
833 | resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-2.2.6.tgz#8b43aed76e71483938d12a8d46c6cf1a00b1f816"
834 | dependencies:
835 | buffer-shims "^1.0.0"
836 | core-util-is "~1.0.0"
837 | inherits "~2.0.1"
838 | isarray "~1.0.0"
839 | process-nextick-args "~1.0.6"
840 | string_decoder "~0.10.x"
841 | util-deprecate "~1.0.1"
842 |
843 | readable-stream@~1.1.9:
844 | version "1.1.14"
845 | resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-1.1.14.tgz#7cf4c54ef648e3813084c636dd2079e166c081d9"
846 | dependencies:
847 | core-util-is "~1.0.0"
848 | inherits "~2.0.1"
849 | isarray "0.0.1"
850 | string_decoder "~0.10.x"
851 |
852 | readable-stream@~2.0.0:
853 | version "2.0.6"
854 | resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-2.0.6.tgz#8f90341e68a53ccc928788dacfcd11b36eb9b78e"
855 | dependencies:
856 | core-util-is "~1.0.0"
857 | inherits "~2.0.1"
858 | isarray "~1.0.0"
859 | process-nextick-args "~1.0.6"
860 | string_decoder "~0.10.x"
861 | util-deprecate "~1.0.1"
862 |
863 | redent@^1.0.0:
864 | version "1.0.0"
865 | resolved "https://registry.yarnpkg.com/redent/-/redent-1.0.0.tgz#cf916ab1fd5f1f16dfb20822dd6ec7f730c2afde"
866 | dependencies:
867 | indent-string "^2.1.0"
868 | strip-indent "^1.0.1"
869 |
870 | repeating@^2.0.0:
871 | version "2.0.1"
872 | resolved "https://registry.yarnpkg.com/repeating/-/repeating-2.0.1.tgz#5214c53a926d3552707527fbab415dbc08d06dda"
873 | dependencies:
874 | is-finite "^1.0.0"
875 |
876 | request@^2.45.0:
877 | version "2.81.0"
878 | resolved "https://registry.yarnpkg.com/request/-/request-2.81.0.tgz#c6928946a0e06c5f8d6f8a9333469ffda46298a0"
879 | dependencies:
880 | aws-sign2 "~0.6.0"
881 | aws4 "^1.2.1"
882 | caseless "~0.12.0"
883 | combined-stream "~1.0.5"
884 | extend "~3.0.0"
885 | forever-agent "~0.6.1"
886 | form-data "~2.1.1"
887 | har-validator "~4.2.1"
888 | hawk "~3.1.3"
889 | http-signature "~1.1.0"
890 | is-typedarray "~1.0.0"
891 | isstream "~0.1.2"
892 | json-stringify-safe "~5.0.1"
893 | mime-types "~2.1.7"
894 | oauth-sign "~0.8.1"
895 | performance-now "^0.2.0"
896 | qs "~6.4.0"
897 | safe-buffer "^5.0.1"
898 | stringstream "~0.0.4"
899 | tough-cookie "~2.3.0"
900 | tunnel-agent "^0.6.0"
901 | uuid "^3.0.0"
902 |
903 | rimraf@^2.2.8, rimraf@^2.4.3:
904 | version "2.6.1"
905 | resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-2.6.1.tgz#c2338ec643df7a1b7fe5c54fa86f57428a55f33d"
906 | dependencies:
907 | glob "^7.0.5"
908 |
909 | safe-buffer@^5.0.1:
910 | version "5.0.1"
911 | resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.0.1.tgz#d263ca54696cd8a306b5ca6551e92de57918fbe7"
912 |
913 | "semver@2 || 3 || 4 || 5", semver@^5.3.0:
914 | version "5.3.0"
915 | resolved "https://registry.yarnpkg.com/semver/-/semver-5.3.0.tgz#9b2ce5d3de02d17c6012ad326aa6b4d0cf54f94f"
916 |
917 | sigmund@~1.0.0:
918 | version "1.0.1"
919 | resolved "https://registry.yarnpkg.com/sigmund/-/sigmund-1.0.1.tgz#3ff21f198cad2175f9f3b781853fd94d0d19b590"
920 |
921 | signal-exit@^3.0.0:
922 | version "3.0.2"
923 | resolved "https://registry.yarnpkg.com/signal-exit/-/signal-exit-3.0.2.tgz#b5fdc08f1287ea1178628e415e25132b73646c6d"
924 |
925 | single-line-log@^1.1.2:
926 | version "1.1.2"
927 | resolved "https://registry.yarnpkg.com/single-line-log/-/single-line-log-1.1.2.tgz#c2f83f273a3e1a16edb0995661da0ed5ef033364"
928 | dependencies:
929 | string-width "^1.0.1"
930 |
931 | sliced@0.0.5:
932 | version "0.0.5"
933 | resolved "https://registry.yarnpkg.com/sliced/-/sliced-0.0.5.tgz#5edc044ca4eb6f7816d50ba2fc63e25d8fe4707f"
934 |
935 | sliced@1.0.1:
936 | version "1.0.1"
937 | resolved "https://registry.yarnpkg.com/sliced/-/sliced-1.0.1.tgz#0b3a662b5d04c3177b1926bea82b03f837a2ef41"
938 |
939 | sntp@1.x.x:
940 | version "1.0.9"
941 | resolved "https://registry.yarnpkg.com/sntp/-/sntp-1.0.9.tgz#6541184cc90aeea6c6e7b35e2659082443c66198"
942 | dependencies:
943 | hoek "2.x.x"
944 |
945 | spdx-correct@~1.0.0:
946 | version "1.0.2"
947 | resolved "https://registry.yarnpkg.com/spdx-correct/-/spdx-correct-1.0.2.tgz#4b3073d933ff51f3912f03ac5519498a4150db40"
948 | dependencies:
949 | spdx-license-ids "^1.0.2"
950 |
951 | spdx-expression-parse@~1.0.0:
952 | version "1.0.4"
953 | resolved "https://registry.yarnpkg.com/spdx-expression-parse/-/spdx-expression-parse-1.0.4.tgz#9bdf2f20e1f40ed447fbe273266191fced51626c"
954 |
955 | spdx-license-ids@^1.0.2:
956 | version "1.2.2"
957 | resolved "https://registry.yarnpkg.com/spdx-license-ids/-/spdx-license-ids-1.2.2.tgz#c9df7a3424594ade6bd11900d596696dc06bac57"
958 |
959 | speedometer@~0.1.2:
960 | version "0.1.4"
961 | resolved "https://registry.yarnpkg.com/speedometer/-/speedometer-0.1.4.tgz#9876dbd2a169d3115402d48e6ea6329c8816a50d"
962 |
963 | split2@^2.0.1:
964 | version "2.1.1"
965 | resolved "https://registry.yarnpkg.com/split2/-/split2-2.1.1.tgz#7a1f551e176a90ecd3345f7246a0cfe175ef4fd0"
966 | dependencies:
967 | through2 "^2.0.2"
968 |
969 | sprintf-js@^1.0.3:
970 | version "1.0.3"
971 | resolved "https://registry.yarnpkg.com/sprintf-js/-/sprintf-js-1.0.3.tgz#04e6926f662895354f3dd015203633b857297e2c"
972 |
973 | sshpk@^1.7.0:
974 | version "1.11.0"
975 | resolved "https://registry.yarnpkg.com/sshpk/-/sshpk-1.11.0.tgz#2d8d5ebb4a6fab28ffba37fa62a90f4a3ea59d77"
976 | dependencies:
977 | asn1 "~0.2.3"
978 | assert-plus "^1.0.0"
979 | dashdash "^1.12.0"
980 | getpass "^0.1.1"
981 | optionalDependencies:
982 | bcrypt-pbkdf "^1.0.0"
983 | ecc-jsbn "~0.1.1"
984 | jodid25519 "^1.0.0"
985 | jsbn "~0.1.0"
986 | tweetnacl "~0.14.0"
987 |
988 | string-width@^1.0.1:
989 | version "1.0.2"
990 | resolved "https://registry.yarnpkg.com/string-width/-/string-width-1.0.2.tgz#118bdf5b8cdc51a2a7e70d211e07e2b0b9b107d3"
991 | dependencies:
992 | code-point-at "^1.0.0"
993 | is-fullwidth-code-point "^1.0.0"
994 | strip-ansi "^3.0.0"
995 |
996 | string_decoder@~0.10.x:
997 | version "0.10.31"
998 | resolved "https://registry.yarnpkg.com/string_decoder/-/string_decoder-0.10.31.tgz#62e203bc41766c6c28c9fc84301dab1c5310fa94"
999 |
1000 | stringstream@~0.0.4:
1001 | version "0.0.5"
1002 | resolved "https://registry.yarnpkg.com/stringstream/-/stringstream-0.0.5.tgz#4e484cd4de5a0bbbee18e46307710a8a81621878"
1003 |
1004 | strip-ansi@^3.0.0:
1005 | version "3.0.1"
1006 | resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-3.0.1.tgz#6a385fb8853d952d5ff05d0e8aaf94278dc63dcf"
1007 | dependencies:
1008 | ansi-regex "^2.0.0"
1009 |
1010 | strip-bom@^2.0.0:
1011 | version "2.0.0"
1012 | resolved "https://registry.yarnpkg.com/strip-bom/-/strip-bom-2.0.0.tgz#6219a85616520491f35788bdbf1447a99c7e6b0e"
1013 | dependencies:
1014 | is-utf8 "^0.2.0"
1015 |
1016 | strip-indent@^1.0.1:
1017 | version "1.0.1"
1018 | resolved "https://registry.yarnpkg.com/strip-indent/-/strip-indent-1.0.1.tgz#0c7962a6adefa7bbd4ac366460a638552ae1a0a2"
1019 | dependencies:
1020 | get-stdin "^4.0.1"
1021 |
1022 | strip-json-comments@~2.0.1:
1023 | version "2.0.1"
1024 | resolved "https://registry.yarnpkg.com/strip-json-comments/-/strip-json-comments-2.0.1.tgz#3c531942e908c2697c0ec344858c286c7ca0a60a"
1025 |
1026 | sumchecker@^1.2.0:
1027 | version "1.3.1"
1028 | resolved "https://registry.yarnpkg.com/sumchecker/-/sumchecker-1.3.1.tgz#79bb3b4456dd04f18ebdbc0d703a1d1daec5105d"
1029 | dependencies:
1030 | debug "^2.2.0"
1031 | es6-promise "^4.0.5"
1032 |
1033 | supports-color@1.2.0:
1034 | version "1.2.0"
1035 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-1.2.0.tgz#ff1ed1e61169d06b3cf2d588e188b18d8847e17e"
1036 |
1037 | throttleit@0.0.2:
1038 | version "0.0.2"
1039 | resolved "https://registry.yarnpkg.com/throttleit/-/throttleit-0.0.2.tgz#cfedf88e60c00dd9697b61fdd2a8343a9b680eaf"
1040 |
1041 | through2@^2.0.2:
1042 | version "2.0.3"
1043 | resolved "https://registry.yarnpkg.com/through2/-/through2-2.0.3.tgz#0004569b37c7c74ba39c43f3ced78d1ad94140be"
1044 | dependencies:
1045 | readable-stream "^2.1.5"
1046 | xtend "~4.0.1"
1047 |
1048 | through2@~0.2.3:
1049 | version "0.2.3"
1050 | resolved "https://registry.yarnpkg.com/through2/-/through2-0.2.3.tgz#eb3284da4ea311b6cc8ace3653748a52abf25a3f"
1051 | dependencies:
1052 | readable-stream "~1.1.9"
1053 | xtend "~2.1.1"
1054 |
1055 | thunkify@^2.1.2:
1056 | version "2.1.2"
1057 | resolved "https://registry.yarnpkg.com/thunkify/-/thunkify-2.1.2.tgz#faa0e9d230c51acc95ca13a361ac05ca7e04553d"
1058 |
1059 | to-iso-string@0.0.2:
1060 | version "0.0.2"
1061 | resolved "https://registry.yarnpkg.com/to-iso-string/-/to-iso-string-0.0.2.tgz#4dc19e664dfccbe25bd8db508b00c6da158255d1"
1062 |
1063 | tough-cookie@~2.3.0:
1064 | version "2.3.2"
1065 | resolved "https://registry.yarnpkg.com/tough-cookie/-/tough-cookie-2.3.2.tgz#f081f76e4c85720e6c37a5faced737150d84072a"
1066 | dependencies:
1067 | punycode "^1.4.1"
1068 |
1069 | trim-newlines@^1.0.0:
1070 | version "1.0.0"
1071 | resolved "https://registry.yarnpkg.com/trim-newlines/-/trim-newlines-1.0.0.tgz#5887966bb582a4503a41eb524f7d35011815a613"
1072 |
1073 | tunnel-agent@^0.6.0:
1074 | version "0.6.0"
1075 | resolved "https://registry.yarnpkg.com/tunnel-agent/-/tunnel-agent-0.6.0.tgz#27a5dea06b36b04a0a9966774b290868f0fc40fd"
1076 | dependencies:
1077 | safe-buffer "^5.0.1"
1078 |
1079 | tweetnacl@^0.14.3, tweetnacl@~0.14.0:
1080 | version "0.14.5"
1081 | resolved "https://registry.yarnpkg.com/tweetnacl/-/tweetnacl-0.14.5.tgz#5ae68177f192d4456269d108afa93ff8743f4f64"
1082 |
1083 | type-detect@0.1.1:
1084 | version "0.1.1"
1085 | resolved "https://registry.yarnpkg.com/type-detect/-/type-detect-0.1.1.tgz#0ba5ec2a885640e470ea4e8505971900dac58822"
1086 |
1087 | typedarray@~0.0.5:
1088 | version "0.0.6"
1089 | resolved "https://registry.yarnpkg.com/typedarray/-/typedarray-0.0.6.tgz#867ac74e3864187b1d3d47d996a78ec5c8830777"
1090 |
1091 | util-deprecate@~1.0.1:
1092 | version "1.0.2"
1093 | resolved "https://registry.yarnpkg.com/util-deprecate/-/util-deprecate-1.0.2.tgz#450d4dc9fa70de732762fbd2d4a28981419a0ccf"
1094 |
1095 | uuid@^3.0.0:
1096 | version "3.0.1"
1097 | resolved "https://registry.yarnpkg.com/uuid/-/uuid-3.0.1.tgz#6544bba2dfda8c1cf17e629a3a305e2bb1fee6c1"
1098 |
1099 | validate-npm-package-license@^3.0.1:
1100 | version "3.0.1"
1101 | resolved "https://registry.yarnpkg.com/validate-npm-package-license/-/validate-npm-package-license-3.0.1.tgz#2804babe712ad3379459acfbe24746ab2c303fbc"
1102 | dependencies:
1103 | spdx-correct "~1.0.0"
1104 | spdx-expression-parse "~1.0.0"
1105 |
1106 | verror@1.3.6:
1107 | version "1.3.6"
1108 | resolved "https://registry.yarnpkg.com/verror/-/verror-1.3.6.tgz#cff5df12946d297d2baaefaa2689e25be01c005c"
1109 | dependencies:
1110 | extsprintf "1.0.2"
1111 |
1112 | vo@^1.0.3:
1113 | version "1.0.3"
1114 | resolved "https://registry.yarnpkg.com/vo/-/vo-1.0.3.tgz#0aa3c5fa1edd7d70c055edf8778001371d85c834"
1115 | dependencies:
1116 | foreach "^2.0.5"
1117 | sliced "0.0.5"
1118 | wrap-fn "^0.1.4"
1119 |
1120 | wrap-fn@^0.1.4:
1121 | version "0.1.5"
1122 | resolved "https://registry.yarnpkg.com/wrap-fn/-/wrap-fn-0.1.5.tgz#f21b6e41016ff4a7e31720dbc63a09016bdf9845"
1123 | dependencies:
1124 | co "3.1.0"
1125 |
1126 | wrappy@1:
1127 | version "1.0.2"
1128 | resolved "https://registry.yarnpkg.com/wrappy/-/wrappy-1.0.2.tgz#b5243d8f3ec1aa35f1364605bc0d1036e30ab69f"
1129 |
1130 | xtend@~2.1.1:
1131 | version "2.1.2"
1132 | resolved "https://registry.yarnpkg.com/xtend/-/xtend-2.1.2.tgz#6efecc2a4dad8e6962c4901b337ce7ba87b5d28b"
1133 | dependencies:
1134 | object-keys "~0.4.0"
1135 |
1136 | xtend@~4.0.1:
1137 | version "4.0.1"
1138 | resolved "https://registry.yarnpkg.com/xtend/-/xtend-4.0.1.tgz#a5c6d532be656e23db820efb943a1f04998d63af"
1139 |
1140 | yauzl@2.4.1:
1141 | version "2.4.1"
1142 | resolved "https://registry.yarnpkg.com/yauzl/-/yauzl-2.4.1.tgz#9528f442dab1b2284e58b4379bb194e22e0c4005"
1143 | dependencies:
1144 | fd-slicer "~1.0.1"
1145 |
--------------------------------------------------------------------------------