├── .editorconfig
├── .eslintrc.js
├── .gitignore
├── .travis.yml
├── README.md
├── index.js
├── lib
└── hash.js
├── package.json
├── reticle.min.js
├── spec
├── hash.spec.js
├── index.spec.js
└── support
│ └── jasmine.json
├── webpack.config.js
└── yarn.lock
/.editorconfig:
--------------------------------------------------------------------------------
1 | root = true
2 |
3 | # global file settings
4 | [*]
5 | end_of_line = lf
6 | insert_final_newline = true
7 | charset = utf-8
8 | indent_style = space
9 | indent_size = 2
10 | trim_trailing_whitespace = true
11 |
--------------------------------------------------------------------------------
/.eslintrc.js:
--------------------------------------------------------------------------------
1 | 'use strict';
2 |
3 | const eslint = exports;
4 |
5 | eslint.env = {
6 | browser: true,
7 | node: true,
8 | es6: true,
9 | commonjs: true,
10 | };
11 |
12 | eslint.extends = [
13 | 'eslint:recommended',
14 | 'llama',
15 | ];
16 |
17 | eslint.rules = {
18 | 'global-require': 'off',
19 | 'require-jsdoc': 'off',
20 | 'no-underscore-dangle': 'off',
21 | };
22 |
--------------------------------------------------------------------------------
/.gitignore:
--------------------------------------------------------------------------------
1 | node_modules
2 | .DS_Store
3 |
--------------------------------------------------------------------------------
/.travis.yml:
--------------------------------------------------------------------------------
1 | language: node_js
2 | node_js:
3 | - 4
4 | - 5
5 | - 6
6 | - 7
7 |
8 | script:
9 | - npm run test
10 | - npm run lint
11 |
--------------------------------------------------------------------------------
/README.md:
--------------------------------------------------------------------------------
1 | # Reticle
2 | Put a scope on gunDB.
3 |
4 | [](https://www.npmjs.com/package/reticle)[](https://travis-ci.org/PsychoLlama/Reticle)[](http://gitter.im/amark/gun)
5 |
6 | ## What it is
7 | > Reticle is a tool built for [gunDB](https://github.com/amark/gun)
8 |
9 | By default, gun's data is global. If you use the same key by accident on a different app, both datasets will merge into one frankensteinian nightmare. Reticle solves this by namespacing your keys under a hashed string, preventing otherwise gruesome conflicts from ever happening.
10 |
11 | ## How it works
12 | You can scope your databases under a name, like `Todo List`, and Reticle will produce a hashed string (`'7b3ozc'`) and automatically upgrade your context to use that new namespace.
13 |
14 | ### Including
15 | **Node.js**
16 |
17 | To use Reticle in node, `require('reticle')` in your app. Reticle is version agnostic when it comes to gunDB, and since you may be using multiple versions of gun with node, Reticle needs an explicit reference to the constructor you want to extend.
18 | ```javascript
19 | var Gun = require('gun')
20 |
21 | // reticle automatically upgrades gun
22 | require('reticle')
23 | ```
24 |
25 | **Browser**
26 |
27 | To use Reticle in the browser, you can include it as a script tag.
28 | ```html
29 |
30 | ```
31 | Since `Gun` is exported to the global namespace, Reticle knows what version you're using and can automatically attach itself.
32 |
33 |
34 | ## API
35 |
36 |
37 | Reticle exposes two methods through Gun...
38 |
39 | - one on the constructor: `Gun.scope`
40 | - one on each instance: `gun.scope`
41 |
42 | To set a scope for every gun instance you create, use the constructor method.
43 | ```javascript
44 | Gun.scope('Todo List')
45 |
46 | // both are scoped under "Todo List"
47 | var list = Gun().get('list')
48 | var items = Gun().get('list/items')
49 | ```
50 |
51 | To scope just one instance, use the instance method.
52 | ```javascript
53 | var gun = Gun().scope('Todo List').get('list/items');
54 | ```
55 |
56 | Once the scope has been set, it will remain the same until changed again.
57 |
58 | > Scope names are case sensitive
59 |
60 | ## Examples
61 | Using two instances without collision
62 | ```javascript
63 | var fleetPlayers, tracePlayers;
64 | fleetPlayers = Gun().scope('battlefleet').get('players')
65 | tracePlayers = Gun().scope('trace').get('players')
66 |
67 | fleetPlayers.put({
68 | 'Player 0': 'Bob'
69 | })
70 | tracePlayers.put({
71 | 'Player 0': 'Dave'
72 | })
73 | fleetPlayers.path('Player 0').val() // "Bob"
74 | tracePlayers.path('Player 0').val() // "Dave"
75 | ```
76 |
77 | ## Edge cases
78 | Reticle will try to convert input to a string so it can hash it. If the value it's given is a isn't a string, Reticle will try to convert it. If the value is falsy, gun will revert to it's global behavior. For example, if you call `.scope` with `null` or empty string `""`, **your namespace is global**. There is no prefix.
79 |
80 | Previous versions of gun have mixed support for the `uuid` option in the gun constructor. To be sure the UUIDs are scoped properly, the `Gun.text.random` function was overloaded. If you're using that function, you may notice the output being prepended with a scope.
81 |
82 | ## Support
83 | If you find any problems or know of a way to improve Reticle (or gun for that matter), send us a message on [Gitter](http://gitter.im/amark/gun). We're almost always on that channel.
84 |
--------------------------------------------------------------------------------
/index.js:
--------------------------------------------------------------------------------
1 | 'use strict';
2 |
3 | const hash = require('./lib/hash');
4 | const scope = '\u2316';
5 | let preset = '';
6 | let Gun;
7 |
8 | try {
9 | Gun = window.Gun;
10 | } catch (err) {
11 | Gun = require('gun/gun');
12 | }
13 |
14 | function find (chain, cb) {
15 | let val;
16 |
17 | if (!Gun.is(chain)) {
18 | return undefined;
19 | }
20 |
21 | while (Gun.is(chain)) {
22 | if ((val = cb(chain)) !== undefined) {
23 | return val;
24 | }
25 | if (chain === chain.back) {
26 | break;
27 | }
28 | chain = chain.back;
29 | }
30 |
31 | return undefined;
32 | }
33 |
34 | function findScope (gun) {
35 |
36 | let found = find(gun, function (chain) {
37 | return chain._[scope];
38 | });
39 |
40 | found = typeof found === 'string' ? found : gun.__[scope];
41 |
42 | return found || '';
43 | }
44 |
45 | function prefix (gun, name) {
46 |
47 | // if name is a string, prefix it with a scope
48 | if (typeof name === 'string') {
49 |
50 | // find the prefix
51 | const scope = findScope(gun);
52 | const match = new RegExp(`^${scope}`);
53 |
54 | // only prefix once
55 | if (!name.match(match)) {
56 | name = scope + name;
57 | }
58 |
59 | } else if (Gun.obj.is(name)) {
60 | if (!name['#']) {
61 | return name;
62 | }
63 | name['#'] = prefix(gun, name['#']);
64 | return name;
65 | }
66 |
67 | return name;
68 | }
69 |
70 |
71 | Gun.scope = function (name) {
72 | if (typeof name === 'string') {
73 | preset = hash(name);
74 | }
75 | return Gun;
76 | };
77 |
78 | // each new instance, set a starting scope
79 | Gun.on('opt').event(function (gun) {
80 | gun.__[scope] = gun.__[scope] || preset;
81 | });
82 |
83 | // add the `scope` method
84 | Gun.chain.scope = function (name) {
85 | const gun = this.chain();
86 |
87 | if (typeof name === 'string') {
88 |
89 | /*
90 | Hash the name and keep it as a string.
91 | This is used in `.get`.
92 | */
93 | gun._[scope] = hash(name);
94 | }
95 | if (name === null) {
96 | gun._[scope] = '';
97 | }
98 |
99 | return gun;
100 | };
101 |
102 |
103 | /*
104 | * wrap the `.key`
105 | * and `.get` methods
106 | * to prefix the keys
107 | */
108 |
109 | Gun.chain.get = (function () {
110 |
111 | // keep a reference to the real `get` method
112 | const get = Gun.chain.get;
113 |
114 | return function (name, cb, opt) {
115 |
116 | // apply a scope
117 | name = prefix(this, name);
118 |
119 | // invoke the original `get` method
120 | return get.call(this, name, cb, opt);
121 | };
122 | }());
123 |
124 | Gun.chain.key = (function () {
125 |
126 | // keep a reference to the original `key` method
127 | const key = Gun.chain.key;
128 |
129 | return function (name, cb, opt) {
130 |
131 | name = prefix(this, name);
132 |
133 | return key.call(this, name, cb, opt);
134 | };
135 | }());
136 |
137 | Gun.chain.put = (function () {
138 | const put = Gun.chain.put;
139 |
140 | return function () {
141 |
142 | Gun.text.random.scope = findScope(this);
143 | return put.apply(this, arguments);
144 | };
145 | }());
146 |
147 | Gun.text.random = (function () {
148 | const random = Gun.text.random;
149 |
150 | return function (length, chars) {
151 |
152 | const scope = Gun.text.random.scope;
153 | return scope + random.call(this, length, chars);
154 | };
155 | }());
156 |
157 | Gun.text.random.scope = '';
158 |
159 | module.exports = Gun;
160 |
--------------------------------------------------------------------------------
/lib/hash.js:
--------------------------------------------------------------------------------
1 | /* eslint-disable no-bitwise */
2 | 'use strict';
3 |
4 | /*
5 | A simple javascript hash function,
6 | shamelessly copied from:
7 |
8 | http://werxltd.com/wp/2010/05/13/
9 | javascript-implementation-of-javas-string-hashcode-method/
10 | */
11 |
12 | module.exports = function hash (string) {
13 |
14 | // basic validation
15 | if (!string) {
16 | return '';
17 | }
18 |
19 | // just making sure it's a string
20 | string = String(string);
21 |
22 | // the resulting hash
23 | let result = 0;
24 |
25 | // each letter...
26 | string.split('').forEach(function (letter) {
27 |
28 | /*
29 | find it's value, randomize it,
30 | and store it in the result.
31 | */
32 | const char = letter.charCodeAt(0);
33 | result = ((result << 5) - result) + char;
34 | result &= result;
35 |
36 | });
37 |
38 | return `${result.toString(36)}:`;
39 | };
40 |
--------------------------------------------------------------------------------
/package.json:
--------------------------------------------------------------------------------
1 | {
2 | "name": "reticle",
3 | "version": "0.3.0",
4 | "description": "Scope your gunDB apps",
5 | "main": "index.js",
6 | "scripts": {
7 | "test": "jasmine",
8 | "lint": "eslint lib/ spec/ index.js",
9 | "build": "webpack --watch"
10 | },
11 | "repository": {
12 | "type": "git",
13 | "url": "git+https://github.com/PsychoLlama/Reticle.git"
14 | },
15 | "keywords": [
16 | "gun",
17 | "gunDB",
18 | "scope",
19 | "namespace"
20 | ],
21 | "author": "Jesse Gibson (http://techllama.com)",
22 | "license": "(Zlib OR MIT OR Apache-2.0)",
23 | "devDependencies": {
24 | "eslint": "^3.12.2",
25 | "eslint-config-llama": "^3.0.0",
26 | "gun": "^0.3.93",
27 | "jasmine": "^2.4.1",
28 | "webpack": "^1.12.11"
29 | }
30 | }
31 |
--------------------------------------------------------------------------------
/reticle.min.js:
--------------------------------------------------------------------------------
1 | !function(n){function t(e){if(r[e])return r[e].exports;var i=r[e]={exports:{},id:e,loaded:!1};return n[e].call(i.exports,i,i.exports,t),i.loaded=!0,i.exports}var r={};return t.m=n,t.c=r,t.p="",t(0)}([function(n,t,r){"use strict";function e(n,t){var r;if(a.is(n))for(;a.is(n);){if(void 0!==(r=t(n)))return r;if(n===n.back)break;n=n.back}}function i(n){var t=e(n,function(n){return n._[f]});return t="string"==typeof t?t:n.__[f],t||""}function o(n,t){if("string"==typeof t){var r,e;e=i(n),r=new RegExp("^"+e),t.match(r)||(t=e+t)}else if(a.obj.is(t))return t["#"]?(t["#"]=o(n,t["#"]),t):t;return t}var u,c,a,f="⌖";c=r(1),u="";try{a=window.Gun}catch(s){a=r(!function(){var n=new Error('Cannot find module "gun/gun"');throw n.code="MODULE_NOT_FOUND",n}())}a.scope=function(n){return"string"==typeof n&&(u=c(n)),a},a.on("opt").event(function(n){n.__[f]=n.__[f]||u}),a.chain.scope=function(n){var t=this.chain();return"string"==typeof n&&(t._[f]=c(n)),null===n&&(t._[f]=""),t},a.chain.get=function(){var n=a.chain.get;return function(t,r,e){return t=o(this,t),n.call(this,t,r,e)}}(),a.chain.key=function(){var n=a.chain.key;return function(t,r,e){return t=o(this,t),n.call(this,t,r,e)}}(),a.chain.put=function(){var n=a.chain.put;return function(){return a.text.random.scope=i(this),n.apply(this,arguments)}}(),a.text.random=function(){var n=a.text.random;return function(t,r){var e=a.text.random.scope;return e+n.call(this,t,r)}}(),a.text.random.scope="",n.exports=a},function(n,t){"use strict";n.exports=function(n){if(!n)return"";n=String(n);var t=0;return n.split("").forEach(function(n){var r=n.charCodeAt(0);t=(t<<5)-t+r,t&=t}),t.toString(36)+":"}}]);
2 |
--------------------------------------------------------------------------------
/spec/hash.spec.js:
--------------------------------------------------------------------------------
1 | /* globals describe, it, expect, jasmine*/
2 | 'use strict';
3 |
4 | const hash = require('../lib/hash');
5 |
6 | describe('The string hasher', function () {
7 |
8 | it('should be a function', function () {
9 | expect(hash).toEqual(jasmine.any(Function));
10 | });
11 |
12 | it('should return a string', function () {
13 | expect(hash()).toEqual(jasmine.any(String));
14 | expect(hash('')).toEqual(jasmine.any(String));
15 | expect(hash('J')).toEqual(jasmine.any(String));
16 | });
17 |
18 | it('should return a unique value for different input', function () {
19 | expect(hash('1')).not.toBe(hash('2'));
20 | expect(hash('hi')).not.toBe(hash('bye'));
21 | });
22 |
23 | it('should be case and space sensitive', function () {
24 | expect(hash('HI')).not.toBe(hash('hi'));
25 | expect(hash('h i')).not.toBe(hash('hi'));
26 | expect(hash('hi')).toBe(hash('hi'));
27 | expect(hash('h i')).toBe(hash('h i'));
28 | expect(hash('HI')).toBe(hash('HI'));
29 | });
30 |
31 | it('should return the same value for the same input', function () {
32 | expect(hash('1')).toBe(hash('1'));
33 | expect(hash('2')).toBe(hash('2'));
34 | expect(hash('hi')).toBe(hash('hi'));
35 | expect(hash('bye')).toBe(hash('bye'));
36 | });
37 |
38 | it('should append a colon', function () {
39 | expect(hash('test').slice(-1)).toBe(':');
40 | });
41 |
42 | it('should not append a colon to empty input', function () {
43 | expect(hash().slice(-1)).not.toBe(':');
44 | });
45 |
46 | });
47 |
--------------------------------------------------------------------------------
/spec/index.spec.js:
--------------------------------------------------------------------------------
1 | /* globals describe, it, expect, jasmine*/
2 | 'use strict';
3 |
4 | const Gun = require('gun/gun');
5 | const gun = new Gun({ file: false });
6 | Gun.log.squelch = true;
7 |
8 | jasmine.DEFAULT_TIMEOUT_INTERVAL = 1000;
9 |
10 | describe('Reticle', function () {
11 |
12 | it('should return the Gun constructor', function () {
13 | const result = require('../index');
14 | expect(result).toBe(Gun);
15 | });
16 |
17 | it('should add a "scope" method to the gun constructor', function () {
18 | expect(Gun.scope).toEqual(jasmine.any(Function));
19 | });
20 |
21 | it('should add a "scope" method to the gun chain', function () {
22 | expect(Gun.chain.scope).toEqual(jasmine.any(Function));
23 | });
24 |
25 | it('should return the execution context', function () {
26 | expect(gun.scope('test') instanceof Gun).toBe(true);
27 | });
28 |
29 | it('should create a new chain', function () {
30 | expect(gun).not.toBe(gun.scope('new scope'));
31 | });
32 |
33 | it('should work from a chain context', function (done) {
34 | const scoped = gun.scope('app').get('hello');
35 | const unscoped = gun.get('hello').put({
36 | success: true,
37 | });
38 | scoped.get('hello').put({
39 | success: false,
40 | });
41 | unscoped.path('success').val(function (success) {
42 | expect(success).toBe(true);
43 | done();
44 | });
45 | });
46 |
47 | it('should not collide with other scopes', function (done) {
48 | const app1 = gun.scope('app 1').get('foo');
49 | const app2 = gun.scope('app 2').get('foo');
50 | app1.put({ data: true });
51 | app2.put({ data: false });
52 |
53 | app1.path('data').val(function (data) {
54 | expect(data).toBe(true);
55 | done();
56 | });
57 | });
58 |
59 | });
60 |
--------------------------------------------------------------------------------
/spec/support/jasmine.json:
--------------------------------------------------------------------------------
1 | {
2 | "spec_dir": "spec",
3 | "spec_files": [
4 | "**/*[sS]pec.js"
5 | ],
6 | "helpers": [
7 | "helpers/**/*.js"
8 | ]
9 | }
10 |
--------------------------------------------------------------------------------
/webpack.config.js:
--------------------------------------------------------------------------------
1 | var webpack = require("webpack");
2 |
3 | module.exports = {
4 |
5 | entry: "./index.js",
6 | output: {
7 | path: "./",
8 | filename: "reticle.min.js"
9 | },
10 | plugins: [
11 | new webpack.optimize.UglifyJsPlugin({
12 | minimize: true
13 | }),
14 | new webpack.IgnorePlugin(/^gun/)
15 | ]
16 | };
17 |
--------------------------------------------------------------------------------
/yarn.lock:
--------------------------------------------------------------------------------
1 | # THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY.
2 | # yarn lockfile v1
3 |
4 |
5 | abbrev@1:
6 | version "1.0.9"
7 | resolved "https://registry.yarnpkg.com/abbrev/-/abbrev-1.0.9.tgz#91b4792588a7738c25f35dd6f63752a2f8776135"
8 |
9 | acorn-jsx@^3.0.0:
10 | version "3.0.1"
11 | resolved "https://registry.yarnpkg.com/acorn-jsx/-/acorn-jsx-3.0.1.tgz#afdf9488fb1ecefc8348f6fb22f464e32a58b36b"
12 | dependencies:
13 | acorn "^3.0.4"
14 |
15 | acorn@^3.0.0, acorn@^3.0.4:
16 | version "3.3.0"
17 | resolved "https://registry.yarnpkg.com/acorn/-/acorn-3.3.0.tgz#45e37fb39e8da3f25baee3ff5369e2bb5f22017a"
18 |
19 | acorn@^4.0.1:
20 | version "4.0.3"
21 | resolved "https://registry.yarnpkg.com/acorn/-/acorn-4.0.3.tgz#1a3e850b428e73ba6b09d1cc527f5aaad4d03ef1"
22 |
23 | ajv-keywords@^1.0.0:
24 | version "1.2.0"
25 | resolved "https://registry.yarnpkg.com/ajv-keywords/-/ajv-keywords-1.2.0.tgz#676c4f087bfe1e8b12dca6fda2f3c74f417b099c"
26 |
27 | ajv@^4.7.0:
28 | version "4.10.0"
29 | resolved "https://registry.yarnpkg.com/ajv/-/ajv-4.10.0.tgz#7ae6169180eb199192a8b9a19fd0f47fc9ac8764"
30 | dependencies:
31 | co "^4.6.0"
32 | json-stable-stringify "^1.0.1"
33 |
34 | align-text@^0.1.1, align-text@^0.1.3:
35 | version "0.1.4"
36 | resolved "https://registry.yarnpkg.com/align-text/-/align-text-0.1.4.tgz#0cd90a561093f35d0a99256c22b7069433fad117"
37 | dependencies:
38 | kind-of "^3.0.2"
39 | longest "^1.0.1"
40 | repeat-string "^1.5.2"
41 |
42 | amdefine@>=0.0.4:
43 | version "1.0.1"
44 | resolved "https://registry.yarnpkg.com/amdefine/-/amdefine-1.0.1.tgz#4a5282ac164729e93619bcfd3ad151f817ce91f5"
45 |
46 | ansi-escapes@^1.1.0:
47 | version "1.4.0"
48 | resolved "https://registry.yarnpkg.com/ansi-escapes/-/ansi-escapes-1.4.0.tgz#d3a8a83b319aa67793662b13e761c7911422306e"
49 |
50 | ansi-regex@^2.0.0:
51 | version "2.0.0"
52 | resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-2.0.0.tgz#c5061b6e0ef8a81775e50f5d66151bf6bf371107"
53 |
54 | ansi-styles@^2.2.1:
55 | version "2.2.1"
56 | resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-2.2.1.tgz#b432dd3358b634cf75e1e4664368240533c1ddbe"
57 |
58 | anymatch@^1.3.0:
59 | version "1.3.0"
60 | resolved "https://registry.yarnpkg.com/anymatch/-/anymatch-1.3.0.tgz#a3e52fa39168c825ff57b0248126ce5a8ff95507"
61 | dependencies:
62 | arrify "^1.0.0"
63 | micromatch "^2.1.5"
64 |
65 | aproba@^1.0.3:
66 | version "1.0.4"
67 | resolved "https://registry.yarnpkg.com/aproba/-/aproba-1.0.4.tgz#2713680775e7614c8ba186c065d4e2e52d1072c0"
68 |
69 | are-we-there-yet@~1.1.2:
70 | version "1.1.2"
71 | resolved "https://registry.yarnpkg.com/are-we-there-yet/-/are-we-there-yet-1.1.2.tgz#80e470e95a084794fe1899262c5667c6e88de1b3"
72 | dependencies:
73 | delegates "^1.0.0"
74 | readable-stream "^2.0.0 || ^1.1.13"
75 |
76 | argparse@^1.0.7:
77 | version "1.0.9"
78 | resolved "https://registry.yarnpkg.com/argparse/-/argparse-1.0.9.tgz#73d83bc263f86e97f8cc4f6bae1b0e90a7d22c86"
79 | dependencies:
80 | sprintf-js "~1.0.2"
81 |
82 | arr-diff@^2.0.0:
83 | version "2.0.0"
84 | resolved "https://registry.yarnpkg.com/arr-diff/-/arr-diff-2.0.0.tgz#8f3b827f955a8bd669697e4a4256ac3ceae356cf"
85 | dependencies:
86 | arr-flatten "^1.0.1"
87 |
88 | arr-flatten@^1.0.1:
89 | version "1.0.1"
90 | resolved "https://registry.yarnpkg.com/arr-flatten/-/arr-flatten-1.0.1.tgz#e5ffe54d45e19f32f216e91eb99c8ce892bb604b"
91 |
92 | array-union@^1.0.1:
93 | version "1.0.2"
94 | resolved "https://registry.yarnpkg.com/array-union/-/array-union-1.0.2.tgz#9a34410e4f4e3da23dea375be5be70f24778ec39"
95 | dependencies:
96 | array-uniq "^1.0.1"
97 |
98 | array-uniq@^1.0.1:
99 | version "1.0.3"
100 | resolved "https://registry.yarnpkg.com/array-uniq/-/array-uniq-1.0.3.tgz#af6ac877a25cc7f74e058894753858dfdb24fdb6"
101 |
102 | array-unique@^0.2.1:
103 | version "0.2.1"
104 | resolved "https://registry.yarnpkg.com/array-unique/-/array-unique-0.2.1.tgz#a1d97ccafcbc2625cc70fadceb36a50c58b01a53"
105 |
106 | arrify@^1.0.0:
107 | version "1.0.1"
108 | resolved "https://registry.yarnpkg.com/arrify/-/arrify-1.0.1.tgz#898508da2226f380df904728456849c1501a4b0d"
109 |
110 | asn1@~0.2.3:
111 | version "0.2.3"
112 | resolved "https://registry.yarnpkg.com/asn1/-/asn1-0.2.3.tgz#dac8787713c9966849fc8180777ebe9c1ddf3b86"
113 |
114 | assert-plus@^0.2.0:
115 | version "0.2.0"
116 | resolved "https://registry.yarnpkg.com/assert-plus/-/assert-plus-0.2.0.tgz#d74e1b87e7affc0db8aadb7021f3fe48101ab234"
117 |
118 | assert-plus@^1.0.0:
119 | version "1.0.0"
120 | resolved "https://registry.yarnpkg.com/assert-plus/-/assert-plus-1.0.0.tgz#f12e0f3c5d77b0b1cdd9146942e4e96c1e4dd525"
121 |
122 | assert@^1.1.1:
123 | version "1.4.1"
124 | resolved "https://registry.yarnpkg.com/assert/-/assert-1.4.1.tgz#99912d591836b5a6f5b345c0f07eefc08fc65d91"
125 | dependencies:
126 | util "0.10.3"
127 |
128 | async-each@^1.0.0:
129 | version "1.0.1"
130 | resolved "https://registry.yarnpkg.com/async-each/-/async-each-1.0.1.tgz#19d386a1d9edc6e7c1c85d388aedbcc56d33602d"
131 |
132 | async@^0.9.0:
133 | version "0.9.2"
134 | resolved "https://registry.yarnpkg.com/async/-/async-0.9.2.tgz#aea74d5e61c1f899613bf64bda66d4c78f2fd17d"
135 |
136 | async@^1.3.0:
137 | version "1.5.2"
138 | resolved "https://registry.yarnpkg.com/async/-/async-1.5.2.tgz#ec6a61ae56480c0c3cb241c95618e20892f9672a"
139 |
140 | async@~0.2.6:
141 | version "0.2.10"
142 | resolved "https://registry.yarnpkg.com/async/-/async-0.2.10.tgz#b6bbe0b0674b9d719708ca38de8c237cb526c3d1"
143 |
144 | asynckit@^0.4.0:
145 | version "0.4.0"
146 | resolved "https://registry.yarnpkg.com/asynckit/-/asynckit-0.4.0.tgz#c79ed97f7f34cb8f2ba1bc9790bcc366474b4b79"
147 |
148 | aws-sdk@~>2.0.0:
149 | version "2.0.31"
150 | resolved "https://registry.yarnpkg.com/aws-sdk/-/aws-sdk-2.0.31.tgz#e72cf1fdc69015bd9fd2bdf3d3b88c16507d268e"
151 | dependencies:
152 | xml2js "0.2.6"
153 | xmlbuilder "0.4.2"
154 |
155 | aws-sign2@~0.6.0:
156 | version "0.6.0"
157 | resolved "https://registry.yarnpkg.com/aws-sign2/-/aws-sign2-0.6.0.tgz#14342dd38dbcc94d0e5b87d763cd63612c0e794f"
158 |
159 | aws4@^1.2.1:
160 | version "1.5.0"
161 | resolved "https://registry.yarnpkg.com/aws4/-/aws4-1.5.0.tgz#0a29ffb79c31c9e712eeb087e8e7a64b4a56d755"
162 |
163 | babel-code-frame@^6.16.0:
164 | version "6.20.0"
165 | resolved "https://registry.yarnpkg.com/babel-code-frame/-/babel-code-frame-6.20.0.tgz#b968f839090f9a8bc6d41938fb96cb84f7387b26"
166 | dependencies:
167 | chalk "^1.1.0"
168 | esutils "^2.0.2"
169 | js-tokens "^2.0.0"
170 |
171 | balanced-match@^0.4.1:
172 | version "0.4.2"
173 | resolved "https://registry.yarnpkg.com/balanced-match/-/balanced-match-0.4.2.tgz#cb3f3e3c732dc0f01ee70b403f302e61d7709838"
174 |
175 | base64-js@^1.0.2:
176 | version "1.2.0"
177 | resolved "https://registry.yarnpkg.com/base64-js/-/base64-js-1.2.0.tgz#a39992d723584811982be5e290bb6a53d86700f1"
178 |
179 | bcrypt-pbkdf@^1.0.0:
180 | version "1.0.0"
181 | resolved "https://registry.yarnpkg.com/bcrypt-pbkdf/-/bcrypt-pbkdf-1.0.0.tgz#3ca76b85241c7170bf7d9703e7b9aa74630040d4"
182 | dependencies:
183 | tweetnacl "^0.14.3"
184 |
185 | big.js@^3.1.3:
186 | version "3.1.3"
187 | resolved "https://registry.yarnpkg.com/big.js/-/big.js-3.1.3.tgz#4cada2193652eb3ca9ec8e55c9015669c9806978"
188 |
189 | binary-extensions@^1.0.0:
190 | version "1.8.0"
191 | resolved "https://registry.yarnpkg.com/binary-extensions/-/binary-extensions-1.8.0.tgz#48ec8d16df4377eae5fa5884682480af4d95c774"
192 |
193 | bindings@1.2.x, bindings@~1.2.1:
194 | version "1.2.1"
195 | resolved "https://registry.yarnpkg.com/bindings/-/bindings-1.2.1.tgz#14ad6113812d2d37d72e67b4cacb4bb726505f11"
196 |
197 | block-stream@*:
198 | version "0.0.9"
199 | resolved "https://registry.yarnpkg.com/block-stream/-/block-stream-0.0.9.tgz#13ebfe778a03205cfe03751481ebb4b3300c126a"
200 | dependencies:
201 | inherits "~2.0.0"
202 |
203 | boom@2.x.x:
204 | version "2.10.1"
205 | resolved "https://registry.yarnpkg.com/boom/-/boom-2.10.1.tgz#39c8918ceff5799f83f9492a848f625add0c766f"
206 | dependencies:
207 | hoek "2.x.x"
208 |
209 | brace-expansion@^1.0.0:
210 | version "1.1.6"
211 | resolved "https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-1.1.6.tgz#7197d7eaa9b87e648390ea61fc66c84427420df9"
212 | dependencies:
213 | balanced-match "^0.4.1"
214 | concat-map "0.0.1"
215 |
216 | braces@^1.8.2:
217 | version "1.8.5"
218 | resolved "https://registry.yarnpkg.com/braces/-/braces-1.8.5.tgz#ba77962e12dff969d6b76711e914b737857bf6a7"
219 | dependencies:
220 | expand-range "^1.8.1"
221 | preserve "^0.2.0"
222 | repeat-element "^1.1.2"
223 |
224 | browserify-aes@0.4.0:
225 | version "0.4.0"
226 | resolved "https://registry.yarnpkg.com/browserify-aes/-/browserify-aes-0.4.0.tgz#067149b668df31c4b58533e02d01e806d8608e2c"
227 | dependencies:
228 | inherits "^2.0.1"
229 |
230 | browserify-zlib@^0.1.4:
231 | version "0.1.4"
232 | resolved "https://registry.yarnpkg.com/browserify-zlib/-/browserify-zlib-0.1.4.tgz#bb35f8a519f600e0fa6b8485241c979d0141fb2d"
233 | dependencies:
234 | pako "~0.2.0"
235 |
236 | buffer-shims@^1.0.0:
237 | version "1.0.0"
238 | resolved "https://registry.yarnpkg.com/buffer-shims/-/buffer-shims-1.0.0.tgz#9978ce317388c649ad8793028c3477ef044a8b51"
239 |
240 | buffer@^4.9.0:
241 | version "4.9.1"
242 | resolved "https://registry.yarnpkg.com/buffer/-/buffer-4.9.1.tgz#6d1bb601b07a4efced97094132093027c95bc298"
243 | dependencies:
244 | base64-js "^1.0.2"
245 | ieee754 "^1.1.4"
246 | isarray "^1.0.0"
247 |
248 | bufferutil@1.2.x:
249 | version "1.2.1"
250 | resolved "https://registry.yarnpkg.com/bufferutil/-/bufferutil-1.2.1.tgz#37be5d36e1e06492221e68d474b1ac58e510cbd7"
251 | dependencies:
252 | bindings "1.2.x"
253 | nan "^2.0.5"
254 |
255 | builtin-status-codes@^2.0.0:
256 | version "2.0.0"
257 | resolved "https://registry.yarnpkg.com/builtin-status-codes/-/builtin-status-codes-2.0.0.tgz#6f22003baacf003ccd287afe6872151fddc58579"
258 |
259 | caller-path@^0.1.0:
260 | version "0.1.0"
261 | resolved "https://registry.yarnpkg.com/caller-path/-/caller-path-0.1.0.tgz#94085ef63581ecd3daa92444a8fe94e82577751f"
262 | dependencies:
263 | callsites "^0.2.0"
264 |
265 | callsites@^0.2.0:
266 | version "0.2.0"
267 | resolved "https://registry.yarnpkg.com/callsites/-/callsites-0.2.0.tgz#afab96262910a7f33c19a5775825c69f34e350ca"
268 |
269 | camelcase@^1.0.2:
270 | version "1.2.1"
271 | resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-1.2.1.tgz#9bb5304d2e0b56698b2c758b08a3eaa9daa58a39"
272 |
273 | caseless@~0.11.0:
274 | version "0.11.0"
275 | resolved "https://registry.yarnpkg.com/caseless/-/caseless-0.11.0.tgz#715b96ea9841593cc33067923f5ec60ebda4f7d7"
276 |
277 | center-align@^0.1.1:
278 | version "0.1.3"
279 | resolved "https://registry.yarnpkg.com/center-align/-/center-align-0.1.3.tgz#aa0d32629b6ee972200411cbd4461c907bc2b7ad"
280 | dependencies:
281 | align-text "^0.1.3"
282 | lazy-cache "^1.0.3"
283 |
284 | chalk@^1.0.0, chalk@^1.1.0, chalk@^1.1.1, chalk@^1.1.3:
285 | version "1.1.3"
286 | resolved "https://registry.yarnpkg.com/chalk/-/chalk-1.1.3.tgz#a8115c55e4a702fe4d150abd3872822a7e09fc98"
287 | dependencies:
288 | ansi-styles "^2.2.1"
289 | escape-string-regexp "^1.0.2"
290 | has-ansi "^2.0.0"
291 | strip-ansi "^3.0.0"
292 | supports-color "^2.0.0"
293 |
294 | chokidar@^1.0.0:
295 | version "1.6.1"
296 | resolved "https://registry.yarnpkg.com/chokidar/-/chokidar-1.6.1.tgz#2f4447ab5e96e50fb3d789fd90d4c72e0e4c70c2"
297 | dependencies:
298 | anymatch "^1.3.0"
299 | async-each "^1.0.0"
300 | glob-parent "^2.0.0"
301 | inherits "^2.0.1"
302 | is-binary-path "^1.0.0"
303 | is-glob "^2.0.0"
304 | path-is-absolute "^1.0.0"
305 | readdirp "^2.0.0"
306 | optionalDependencies:
307 | fsevents "^1.0.0"
308 |
309 | circular-json@^0.3.0:
310 | version "0.3.1"
311 | resolved "https://registry.yarnpkg.com/circular-json/-/circular-json-0.3.1.tgz#be8b36aefccde8b3ca7aa2d6afc07a37242c0d2d"
312 |
313 | cli-cursor@^1.0.1:
314 | version "1.0.2"
315 | resolved "https://registry.yarnpkg.com/cli-cursor/-/cli-cursor-1.0.2.tgz#64da3f7d56a54412e59794bd62dc35295e8f2987"
316 | dependencies:
317 | restore-cursor "^1.0.1"
318 |
319 | cli-width@^2.0.0:
320 | version "2.1.0"
321 | resolved "https://registry.yarnpkg.com/cli-width/-/cli-width-2.1.0.tgz#b234ca209b29ef66fc518d9b98d5847b00edf00a"
322 |
323 | cliui@^2.1.0:
324 | version "2.1.0"
325 | resolved "https://registry.yarnpkg.com/cliui/-/cliui-2.1.0.tgz#4b475760ff80264c762c3a1719032e91c7fea0d1"
326 | dependencies:
327 | center-align "^0.1.1"
328 | right-align "^0.1.1"
329 | wordwrap "0.0.2"
330 |
331 | clone@^1.0.2:
332 | version "1.0.2"
333 | resolved "https://registry.yarnpkg.com/clone/-/clone-1.0.2.tgz#260b7a99ebb1edfe247538175f783243cb19d149"
334 |
335 | co@^4.6.0:
336 | version "4.6.0"
337 | resolved "https://registry.yarnpkg.com/co/-/co-4.6.0.tgz#6ea6bdf3d853ae54ccb8e47bfa0bf3f9031fb184"
338 |
339 | code-point-at@^1.0.0:
340 | version "1.1.0"
341 | resolved "https://registry.yarnpkg.com/code-point-at/-/code-point-at-1.1.0.tgz#0d070b4d043a5bea33a2f1a40e2edb3d9a4ccf77"
342 |
343 | combined-stream@^1.0.5, combined-stream@~1.0.5:
344 | version "1.0.5"
345 | resolved "https://registry.yarnpkg.com/combined-stream/-/combined-stream-1.0.5.tgz#938370a57b4a51dea2c77c15d5c5fdf895164009"
346 | dependencies:
347 | delayed-stream "~1.0.0"
348 |
349 | commander@^2.9.0:
350 | version "2.9.0"
351 | resolved "https://registry.yarnpkg.com/commander/-/commander-2.9.0.tgz#9c99094176e12240cb22d6c5146098400fe0f7d4"
352 | dependencies:
353 | graceful-readlink ">= 1.0.0"
354 |
355 | concat-map@0.0.1:
356 | version "0.0.1"
357 | resolved "https://registry.yarnpkg.com/concat-map/-/concat-map-0.0.1.tgz#d8a96bd77fd68df7793a73036a3ba0d5405d477b"
358 |
359 | concat-stream@^1.4.6:
360 | version "1.5.2"
361 | resolved "https://registry.yarnpkg.com/concat-stream/-/concat-stream-1.5.2.tgz#708978624d856af41a5a741defdd261da752c266"
362 | dependencies:
363 | inherits "~2.0.1"
364 | readable-stream "~2.0.0"
365 | typedarray "~0.0.5"
366 |
367 | console-browserify@^1.1.0:
368 | version "1.1.0"
369 | resolved "https://registry.yarnpkg.com/console-browserify/-/console-browserify-1.1.0.tgz#f0241c45730a9fc6323b206dbf38edc741d0bb10"
370 | dependencies:
371 | date-now "^0.1.4"
372 |
373 | console-control-strings@^1.0.0, console-control-strings@~1.1.0:
374 | version "1.1.0"
375 | resolved "https://registry.yarnpkg.com/console-control-strings/-/console-control-strings-1.1.0.tgz#3d7cf4464db6446ea644bf4b39507f9851008e8e"
376 |
377 | constants-browserify@^1.0.0:
378 | version "1.0.0"
379 | resolved "https://registry.yarnpkg.com/constants-browserify/-/constants-browserify-1.0.0.tgz#c20b96d8c617748aaf1c16021760cd27fcb8cb75"
380 |
381 | core-util-is@~1.0.0:
382 | version "1.0.2"
383 | resolved "https://registry.yarnpkg.com/core-util-is/-/core-util-is-1.0.2.tgz#b5fd54220aa2bc5ab57aab7140c940754503c1a7"
384 |
385 | cryptiles@2.x.x:
386 | version "2.0.5"
387 | resolved "https://registry.yarnpkg.com/cryptiles/-/cryptiles-2.0.5.tgz#3bdfecdc608147c1c67202fa291e7dca59eaa3b8"
388 | dependencies:
389 | boom "2.x.x"
390 |
391 | crypto-browserify@3.3.0:
392 | version "3.3.0"
393 | resolved "https://registry.yarnpkg.com/crypto-browserify/-/crypto-browserify-3.3.0.tgz#b9fc75bb4a0ed61dcf1cd5dae96eb30c9c3e506c"
394 | dependencies:
395 | browserify-aes "0.4.0"
396 | pbkdf2-compat "2.0.1"
397 | ripemd160 "0.2.0"
398 | sha.js "2.2.6"
399 |
400 | d@^0.1.1, d@~0.1.1:
401 | version "0.1.1"
402 | resolved "https://registry.yarnpkg.com/d/-/d-0.1.1.tgz#da184c535d18d8ee7ba2aa229b914009fae11309"
403 | dependencies:
404 | es5-ext "~0.10.2"
405 |
406 | dashdash@^1.12.0:
407 | version "1.14.1"
408 | resolved "https://registry.yarnpkg.com/dashdash/-/dashdash-1.14.1.tgz#853cfa0f7cbe2fed5de20326b8dd581035f6e2f0"
409 | dependencies:
410 | assert-plus "^1.0.0"
411 |
412 | date-now@^0.1.4:
413 | version "0.1.4"
414 | resolved "https://registry.yarnpkg.com/date-now/-/date-now-0.1.4.tgz#eaf439fd4d4848ad74e5cc7dbef200672b9e345b"
415 |
416 | debug@^2.1.1, debug@~2.2.0:
417 | version "2.2.0"
418 | resolved "https://registry.yarnpkg.com/debug/-/debug-2.2.0.tgz#f87057e995b1a1f6ae6a4960664137bc56f039da"
419 | dependencies:
420 | ms "0.7.1"
421 |
422 | decamelize@^1.0.0:
423 | version "1.2.0"
424 | resolved "https://registry.yarnpkg.com/decamelize/-/decamelize-1.2.0.tgz#f6534d15148269b20352e7bee26f501f9a191290"
425 |
426 | deep-extend@~0.4.0:
427 | version "0.4.1"
428 | resolved "https://registry.yarnpkg.com/deep-extend/-/deep-extend-0.4.1.tgz#efe4113d08085f4e6f9687759810f807469e2253"
429 |
430 | deep-is@~0.1.3:
431 | version "0.1.3"
432 | resolved "https://registry.yarnpkg.com/deep-is/-/deep-is-0.1.3.tgz#b369d6fb5dbc13eecf524f91b070feedc357cf34"
433 |
434 | del@^2.0.2:
435 | version "2.2.2"
436 | resolved "https://registry.yarnpkg.com/del/-/del-2.2.2.tgz#c12c981d067846c84bcaf862cff930d907ffd1a8"
437 | dependencies:
438 | globby "^5.0.0"
439 | is-path-cwd "^1.0.0"
440 | is-path-in-cwd "^1.0.0"
441 | object-assign "^4.0.1"
442 | pify "^2.0.0"
443 | pinkie-promise "^2.0.0"
444 | rimraf "^2.2.8"
445 |
446 | delayed-stream@~1.0.0:
447 | version "1.0.0"
448 | resolved "https://registry.yarnpkg.com/delayed-stream/-/delayed-stream-1.0.0.tgz#df3ae199acadfb7d440aaae0b29e2272b24ec619"
449 |
450 | delegates@^1.0.0:
451 | version "1.0.0"
452 | resolved "https://registry.yarnpkg.com/delegates/-/delegates-1.0.0.tgz#84c6e159b81904fdca59a0ef44cd870d31250f9a"
453 |
454 | doctrine@^1.2.2:
455 | version "1.5.0"
456 | resolved "https://registry.yarnpkg.com/doctrine/-/doctrine-1.5.0.tgz#379dce730f6166f76cefa4e6707a159b02c5a6fa"
457 | dependencies:
458 | esutils "^2.0.2"
459 | isarray "^1.0.0"
460 |
461 | domain-browser@^1.1.1:
462 | version "1.1.7"
463 | resolved "https://registry.yarnpkg.com/domain-browser/-/domain-browser-1.1.7.tgz#867aa4b093faa05f1de08c06f4d7b21fdf8698bc"
464 |
465 | ecc-jsbn@~0.1.1:
466 | version "0.1.1"
467 | resolved "https://registry.yarnpkg.com/ecc-jsbn/-/ecc-jsbn-0.1.1.tgz#0fc73a9ed5f0d53c38193398523ef7e543777505"
468 | dependencies:
469 | jsbn "~0.1.0"
470 |
471 | emojis-list@^2.0.0:
472 | version "2.1.0"
473 | resolved "https://registry.yarnpkg.com/emojis-list/-/emojis-list-2.1.0.tgz#4daa4d9db00f9819880c79fa457ae5b09a1fd389"
474 |
475 | enhanced-resolve@~0.9.0:
476 | version "0.9.1"
477 | resolved "https://registry.yarnpkg.com/enhanced-resolve/-/enhanced-resolve-0.9.1.tgz#4d6e689b3725f86090927ccc86cd9f1635b89e2e"
478 | dependencies:
479 | graceful-fs "^4.1.2"
480 | memory-fs "^0.2.0"
481 | tapable "^0.1.8"
482 |
483 | errno@^0.1.3:
484 | version "0.1.4"
485 | resolved "https://registry.yarnpkg.com/errno/-/errno-0.1.4.tgz#b896e23a9e5e8ba33871fc996abd3635fc9a1c7d"
486 | dependencies:
487 | prr "~0.0.0"
488 |
489 | es5-ext@^0.10.7, es5-ext@^0.10.8, es5-ext@~0.10.11, es5-ext@~0.10.2, es5-ext@~0.10.7:
490 | version "0.10.12"
491 | resolved "https://registry.yarnpkg.com/es5-ext/-/es5-ext-0.10.12.tgz#aa84641d4db76b62abba5e45fd805ecbab140047"
492 | dependencies:
493 | es6-iterator "2"
494 | es6-symbol "~3.1"
495 |
496 | es6-iterator@2:
497 | version "2.0.0"
498 | resolved "https://registry.yarnpkg.com/es6-iterator/-/es6-iterator-2.0.0.tgz#bd968567d61635e33c0b80727613c9cb4b096bac"
499 | dependencies:
500 | d "^0.1.1"
501 | es5-ext "^0.10.7"
502 | es6-symbol "3"
503 |
504 | es6-map@^0.1.3:
505 | version "0.1.4"
506 | resolved "https://registry.yarnpkg.com/es6-map/-/es6-map-0.1.4.tgz#a34b147be224773a4d7da8072794cefa3632b897"
507 | dependencies:
508 | d "~0.1.1"
509 | es5-ext "~0.10.11"
510 | es6-iterator "2"
511 | es6-set "~0.1.3"
512 | es6-symbol "~3.1.0"
513 | event-emitter "~0.3.4"
514 |
515 | es6-set@~0.1.3:
516 | version "0.1.4"
517 | resolved "https://registry.yarnpkg.com/es6-set/-/es6-set-0.1.4.tgz#9516b6761c2964b92ff479456233a247dc707ce8"
518 | dependencies:
519 | d "~0.1.1"
520 | es5-ext "~0.10.11"
521 | es6-iterator "2"
522 | es6-symbol "3"
523 | event-emitter "~0.3.4"
524 |
525 | es6-symbol@3, es6-symbol@~3.1, es6-symbol@~3.1.0:
526 | version "3.1.0"
527 | resolved "https://registry.yarnpkg.com/es6-symbol/-/es6-symbol-3.1.0.tgz#94481c655e7a7cad82eba832d97d5433496d7ffa"
528 | dependencies:
529 | d "~0.1.1"
530 | es5-ext "~0.10.11"
531 |
532 | es6-weak-map@^2.0.1:
533 | version "2.0.1"
534 | resolved "https://registry.yarnpkg.com/es6-weak-map/-/es6-weak-map-2.0.1.tgz#0d2bbd8827eb5fb4ba8f97fbfea50d43db21ea81"
535 | dependencies:
536 | d "^0.1.1"
537 | es5-ext "^0.10.8"
538 | es6-iterator "2"
539 | es6-symbol "3"
540 |
541 | escape-string-regexp@^1.0.2, escape-string-regexp@^1.0.5:
542 | version "1.0.5"
543 | resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz#1b61c0562190a8dff6ae3bb2cf0200ca130b86d4"
544 |
545 | escope@^3.6.0:
546 | version "3.6.0"
547 | resolved "https://registry.yarnpkg.com/escope/-/escope-3.6.0.tgz#e01975e812781a163a6dadfdd80398dc64c889c3"
548 | dependencies:
549 | es6-map "^0.1.3"
550 | es6-weak-map "^2.0.1"
551 | esrecurse "^4.1.0"
552 | estraverse "^4.1.1"
553 |
554 | eslint-config-llama@^3.0.0:
555 | version "3.0.0"
556 | resolved "https://registry.yarnpkg.com/eslint-config-llama/-/eslint-config-llama-3.0.0.tgz#0eb5b4a18c0b77505ecbc6cbb4f833f1576b7f1f"
557 |
558 | eslint@^3.12.2:
559 | version "3.12.2"
560 | resolved "https://registry.yarnpkg.com/eslint/-/eslint-3.12.2.tgz#6be5a9aa29658252abd7f91e9132bab1f26f3c34"
561 | dependencies:
562 | babel-code-frame "^6.16.0"
563 | chalk "^1.1.3"
564 | concat-stream "^1.4.6"
565 | debug "^2.1.1"
566 | doctrine "^1.2.2"
567 | escope "^3.6.0"
568 | espree "^3.3.1"
569 | estraverse "^4.2.0"
570 | esutils "^2.0.2"
571 | file-entry-cache "^2.0.0"
572 | glob "^7.0.3"
573 | globals "^9.14.0"
574 | ignore "^3.2.0"
575 | imurmurhash "^0.1.4"
576 | inquirer "^0.12.0"
577 | is-my-json-valid "^2.10.0"
578 | is-resolvable "^1.0.0"
579 | js-yaml "^3.5.1"
580 | json-stable-stringify "^1.0.0"
581 | levn "^0.3.0"
582 | lodash "^4.0.0"
583 | mkdirp "^0.5.0"
584 | natural-compare "^1.4.0"
585 | optionator "^0.8.2"
586 | path-is-inside "^1.0.1"
587 | pluralize "^1.2.1"
588 | progress "^1.1.8"
589 | require-uncached "^1.0.2"
590 | shelljs "^0.7.5"
591 | strip-bom "^3.0.0"
592 | strip-json-comments "~1.0.1"
593 | table "^3.7.8"
594 | text-table "~0.2.0"
595 | user-home "^2.0.0"
596 |
597 | espree@^3.3.1:
598 | version "3.3.2"
599 | resolved "https://registry.yarnpkg.com/espree/-/espree-3.3.2.tgz#dbf3fadeb4ecb4d4778303e50103b3d36c88b89c"
600 | dependencies:
601 | acorn "^4.0.1"
602 | acorn-jsx "^3.0.0"
603 |
604 | esprima@^2.6.0:
605 | version "2.7.3"
606 | resolved "https://registry.yarnpkg.com/esprima/-/esprima-2.7.3.tgz#96e3b70d5779f6ad49cd032673d1c312767ba581"
607 |
608 | esrecurse@^4.1.0:
609 | version "4.1.0"
610 | resolved "https://registry.yarnpkg.com/esrecurse/-/esrecurse-4.1.0.tgz#4713b6536adf7f2ac4f327d559e7756bff648220"
611 | dependencies:
612 | estraverse "~4.1.0"
613 | object-assign "^4.0.1"
614 |
615 | estraverse@^4.1.1, estraverse@^4.2.0:
616 | version "4.2.0"
617 | resolved "https://registry.yarnpkg.com/estraverse/-/estraverse-4.2.0.tgz#0dee3fed31fcd469618ce7342099fc1afa0bdb13"
618 |
619 | estraverse@~4.1.0:
620 | version "4.1.1"
621 | resolved "https://registry.yarnpkg.com/estraverse/-/estraverse-4.1.1.tgz#f6caca728933a850ef90661d0e17982ba47111a2"
622 |
623 | esutils@^2.0.2:
624 | version "2.0.2"
625 | resolved "https://registry.yarnpkg.com/esutils/-/esutils-2.0.2.tgz#0abf4f1caa5bcb1f7a9d8acc6dea4faaa04bac9b"
626 |
627 | event-emitter@~0.3.4:
628 | version "0.3.4"
629 | resolved "https://registry.yarnpkg.com/event-emitter/-/event-emitter-0.3.4.tgz#8d63ddfb4cfe1fae3b32ca265c4c720222080bb5"
630 | dependencies:
631 | d "~0.1.1"
632 | es5-ext "~0.10.7"
633 |
634 | events@^1.0.0:
635 | version "1.1.1"
636 | resolved "https://registry.yarnpkg.com/events/-/events-1.1.1.tgz#9ebdb7635ad099c70dcc4c2a1f5004288e8bd924"
637 |
638 | exit-hook@^1.0.0:
639 | version "1.1.1"
640 | resolved "https://registry.yarnpkg.com/exit-hook/-/exit-hook-1.1.1.tgz#f05ca233b48c05d54fff07765df8507e95c02ff8"
641 |
642 | exit@^0.1.2:
643 | version "0.1.2"
644 | resolved "https://registry.yarnpkg.com/exit/-/exit-0.1.2.tgz#0632638f8d877cc82107d30a0fff1a17cba1cd0c"
645 |
646 | expand-brackets@^0.1.4:
647 | version "0.1.5"
648 | resolved "https://registry.yarnpkg.com/expand-brackets/-/expand-brackets-0.1.5.tgz#df07284e342a807cd733ac5af72411e581d1177b"
649 | dependencies:
650 | is-posix-bracket "^0.1.0"
651 |
652 | expand-range@^1.8.1:
653 | version "1.8.2"
654 | resolved "https://registry.yarnpkg.com/expand-range/-/expand-range-1.8.2.tgz#a299effd335fe2721ebae8e257ec79644fc85337"
655 | dependencies:
656 | fill-range "^2.1.0"
657 |
658 | extend@~3.0.0:
659 | version "3.0.0"
660 | resolved "https://registry.yarnpkg.com/extend/-/extend-3.0.0.tgz#5a474353b9f3353ddd8176dfd37b91c83a46f1d4"
661 |
662 | extglob@^0.3.1:
663 | version "0.3.2"
664 | resolved "https://registry.yarnpkg.com/extglob/-/extglob-0.3.2.tgz#2e18ff3d2f49ab2765cec9023f011daa8d8349a1"
665 | dependencies:
666 | is-extglob "^1.0.0"
667 |
668 | extsprintf@1.0.2:
669 | version "1.0.2"
670 | resolved "https://registry.yarnpkg.com/extsprintf/-/extsprintf-1.0.2.tgz#e1080e0658e300b06294990cc70e1502235fd550"
671 |
672 | fast-levenshtein@~2.0.4:
673 | version "2.0.5"
674 | resolved "https://registry.yarnpkg.com/fast-levenshtein/-/fast-levenshtein-2.0.5.tgz#bd33145744519ab1c36c3ee9f31f08e9079b67f2"
675 |
676 | figures@^1.3.5:
677 | version "1.7.0"
678 | resolved "https://registry.yarnpkg.com/figures/-/figures-1.7.0.tgz#cbe1e3affcf1cd44b80cadfed28dc793a9701d2e"
679 | dependencies:
680 | escape-string-regexp "^1.0.5"
681 | object-assign "^4.1.0"
682 |
683 | file-entry-cache@^2.0.0:
684 | version "2.0.0"
685 | resolved "https://registry.yarnpkg.com/file-entry-cache/-/file-entry-cache-2.0.0.tgz#c392990c3e684783d838b8c84a45d8a048458361"
686 | dependencies:
687 | flat-cache "^1.2.1"
688 | object-assign "^4.0.1"
689 |
690 | filename-regex@^2.0.0:
691 | version "2.0.0"
692 | resolved "https://registry.yarnpkg.com/filename-regex/-/filename-regex-2.0.0.tgz#996e3e80479b98b9897f15a8a58b3d084e926775"
693 |
694 | fill-range@^2.1.0:
695 | version "2.2.3"
696 | resolved "https://registry.yarnpkg.com/fill-range/-/fill-range-2.2.3.tgz#50b77dfd7e469bc7492470963699fe7a8485a723"
697 | dependencies:
698 | is-number "^2.1.0"
699 | isobject "^2.0.0"
700 | randomatic "^1.1.3"
701 | repeat-element "^1.1.2"
702 | repeat-string "^1.5.2"
703 |
704 | flat-cache@^1.2.1:
705 | version "1.2.1"
706 | resolved "https://registry.yarnpkg.com/flat-cache/-/flat-cache-1.2.1.tgz#6c837d6225a7de5659323740b36d5361f71691ff"
707 | dependencies:
708 | circular-json "^0.3.0"
709 | del "^2.0.2"
710 | graceful-fs "^4.1.2"
711 | write "^0.2.1"
712 |
713 | for-in@^0.1.5:
714 | version "0.1.6"
715 | resolved "https://registry.yarnpkg.com/for-in/-/for-in-0.1.6.tgz#c9f96e89bfad18a545af5ec3ed352a1d9e5b4dc8"
716 |
717 | for-own@^0.1.4:
718 | version "0.1.4"
719 | resolved "https://registry.yarnpkg.com/for-own/-/for-own-0.1.4.tgz#0149b41a39088c7515f51ebe1c1386d45f935072"
720 | dependencies:
721 | for-in "^0.1.5"
722 |
723 | forever-agent@~0.6.1:
724 | version "0.6.1"
725 | resolved "https://registry.yarnpkg.com/forever-agent/-/forever-agent-0.6.1.tgz#fbc71f0c41adeb37f96c577ad1ed42d8fdacca91"
726 |
727 | form-data@~2.1.1:
728 | version "2.1.2"
729 | resolved "https://registry.yarnpkg.com/form-data/-/form-data-2.1.2.tgz#89c3534008b97eada4cbb157d58f6f5df025eae4"
730 | dependencies:
731 | asynckit "^0.4.0"
732 | combined-stream "^1.0.5"
733 | mime-types "^2.1.12"
734 |
735 | formidable@~>1.0.15:
736 | version "1.0.17"
737 | resolved "https://registry.yarnpkg.com/formidable/-/formidable-1.0.17.tgz#ef5491490f9433b705faa77249c99029ae348559"
738 |
739 | fs.realpath@^1.0.0:
740 | version "1.0.0"
741 | resolved "https://registry.yarnpkg.com/fs.realpath/-/fs.realpath-1.0.0.tgz#1504ad2523158caa40db4a2787cb01411994ea4f"
742 |
743 | fsevents@^1.0.0:
744 | version "1.0.15"
745 | resolved "https://registry.yarnpkg.com/fsevents/-/fsevents-1.0.15.tgz#fa63f590f3c2ad91275e4972a6cea545fb0aae44"
746 | dependencies:
747 | nan "^2.3.0"
748 | node-pre-gyp "^0.6.29"
749 |
750 | fstream-ignore@~1.0.5:
751 | version "1.0.5"
752 | resolved "https://registry.yarnpkg.com/fstream-ignore/-/fstream-ignore-1.0.5.tgz#9c31dae34767018fe1d249b24dada67d092da105"
753 | dependencies:
754 | fstream "^1.0.0"
755 | inherits "2"
756 | minimatch "^3.0.0"
757 |
758 | fstream@^1.0.0, fstream@^1.0.2, fstream@~1.0.10:
759 | version "1.0.10"
760 | resolved "https://registry.yarnpkg.com/fstream/-/fstream-1.0.10.tgz#604e8a92fe26ffd9f6fae30399d4984e1ab22822"
761 | dependencies:
762 | graceful-fs "^4.1.2"
763 | inherits "~2.0.0"
764 | mkdirp ">=0.5 0"
765 | rimraf "2"
766 |
767 | gauge@~2.7.1:
768 | version "2.7.2"
769 | resolved "https://registry.yarnpkg.com/gauge/-/gauge-2.7.2.tgz#15cecc31b02d05345a5d6b0e171cdb3ad2307774"
770 | dependencies:
771 | aproba "^1.0.3"
772 | console-control-strings "^1.0.0"
773 | has-unicode "^2.0.0"
774 | object-assign "^4.1.0"
775 | signal-exit "^3.0.0"
776 | string-width "^1.0.1"
777 | strip-ansi "^3.0.1"
778 | supports-color "^0.2.0"
779 | wide-align "^1.1.0"
780 |
781 | generate-function@^2.0.0:
782 | version "2.0.0"
783 | resolved "https://registry.yarnpkg.com/generate-function/-/generate-function-2.0.0.tgz#6858fe7c0969b7d4e9093337647ac79f60dfbe74"
784 |
785 | generate-object-property@^1.1.0:
786 | version "1.2.0"
787 | resolved "https://registry.yarnpkg.com/generate-object-property/-/generate-object-property-1.2.0.tgz#9c0e1c40308ce804f4783618b937fa88f99d50d0"
788 | dependencies:
789 | is-property "^1.0.0"
790 |
791 | getpass@^0.1.1:
792 | version "0.1.6"
793 | resolved "https://registry.yarnpkg.com/getpass/-/getpass-0.1.6.tgz#283ffd9fc1256840875311c1b60e8c40187110e6"
794 | dependencies:
795 | assert-plus "^1.0.0"
796 |
797 | glob-base@^0.3.0:
798 | version "0.3.0"
799 | resolved "https://registry.yarnpkg.com/glob-base/-/glob-base-0.3.0.tgz#dbb164f6221b1c0b1ccf82aea328b497df0ea3c4"
800 | dependencies:
801 | glob-parent "^2.0.0"
802 | is-glob "^2.0.0"
803 |
804 | glob-parent@^2.0.0:
805 | version "2.0.0"
806 | resolved "https://registry.yarnpkg.com/glob-parent/-/glob-parent-2.0.0.tgz#81383d72db054fcccf5336daa902f182f6edbb28"
807 | dependencies:
808 | is-glob "^2.0.0"
809 |
810 | glob@^7.0.0, glob@^7.0.3, glob@^7.0.5, glob@^7.0.6:
811 | version "7.1.1"
812 | resolved "https://registry.yarnpkg.com/glob/-/glob-7.1.1.tgz#805211df04faaf1c63a3600306cdf5ade50b2ec8"
813 | dependencies:
814 | fs.realpath "^1.0.0"
815 | inflight "^1.0.4"
816 | inherits "2"
817 | minimatch "^3.0.2"
818 | once "^1.3.0"
819 | path-is-absolute "^1.0.0"
820 |
821 | globals@^9.14.0:
822 | version "9.14.0"
823 | resolved "https://registry.yarnpkg.com/globals/-/globals-9.14.0.tgz#8859936af0038741263053b39d0e76ca241e4034"
824 |
825 | globby@^5.0.0:
826 | version "5.0.0"
827 | resolved "https://registry.yarnpkg.com/globby/-/globby-5.0.0.tgz#ebd84667ca0dbb330b99bcfc68eac2bc54370e0d"
828 | dependencies:
829 | array-union "^1.0.1"
830 | arrify "^1.0.0"
831 | glob "^7.0.3"
832 | object-assign "^4.0.1"
833 | pify "^2.0.0"
834 | pinkie-promise "^2.0.0"
835 |
836 | graceful-fs@^4.1.2:
837 | version "4.1.11"
838 | resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.1.11.tgz#0e8bdfe4d1ddb8854d64e04ea7c00e2a026e5658"
839 |
840 | "graceful-readlink@>= 1.0.0":
841 | version "1.0.1"
842 | resolved "https://registry.yarnpkg.com/graceful-readlink/-/graceful-readlink-1.0.1.tgz#4cafad76bc62f02fa039b2f94e9a3dd3a391a725"
843 |
844 | gun@^0.2.5:
845 | version "0.2.5"
846 | resolved "https://registry.yarnpkg.com/gun/-/gun-0.2.5.tgz#16caa72bf49c9b479ce4958e438cdf2338179087"
847 | dependencies:
848 | aws-sdk "~>2.0.0"
849 | formidable "~>1.0.15"
850 | ws "~>0.8.0"
851 |
852 | har-validator@~2.0.6:
853 | version "2.0.6"
854 | resolved "https://registry.yarnpkg.com/har-validator/-/har-validator-2.0.6.tgz#cdcbc08188265ad119b6a5a7c8ab70eecfb5d27d"
855 | dependencies:
856 | chalk "^1.1.1"
857 | commander "^2.9.0"
858 | is-my-json-valid "^2.12.4"
859 | pinkie-promise "^2.0.0"
860 |
861 | has-ansi@^2.0.0:
862 | version "2.0.0"
863 | resolved "https://registry.yarnpkg.com/has-ansi/-/has-ansi-2.0.0.tgz#34f5049ce1ecdf2b0649af3ef24e45ed35416d91"
864 | dependencies:
865 | ansi-regex "^2.0.0"
866 |
867 | has-flag@^1.0.0:
868 | version "1.0.0"
869 | resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-1.0.0.tgz#9d9e793165ce017a00f00418c43f942a7b1d11fa"
870 |
871 | has-unicode@^2.0.0:
872 | version "2.0.1"
873 | resolved "https://registry.yarnpkg.com/has-unicode/-/has-unicode-2.0.1.tgz#e0e6fe6a28cf51138855e086d1691e771de2a8b9"
874 |
875 | hawk@~3.1.3:
876 | version "3.1.3"
877 | resolved "https://registry.yarnpkg.com/hawk/-/hawk-3.1.3.tgz#078444bd7c1640b0fe540d2c9b73d59678e8e1c4"
878 | dependencies:
879 | boom "2.x.x"
880 | cryptiles "2.x.x"
881 | hoek "2.x.x"
882 | sntp "1.x.x"
883 |
884 | hoek@2.x.x:
885 | version "2.16.3"
886 | resolved "https://registry.yarnpkg.com/hoek/-/hoek-2.16.3.tgz#20bb7403d3cea398e91dc4710a8ff1b8274a25ed"
887 |
888 | http-signature@~1.1.0:
889 | version "1.1.1"
890 | resolved "https://registry.yarnpkg.com/http-signature/-/http-signature-1.1.1.tgz#df72e267066cd0ac67fb76adf8e134a8fbcf91bf"
891 | dependencies:
892 | assert-plus "^0.2.0"
893 | jsprim "^1.2.2"
894 | sshpk "^1.7.0"
895 |
896 | https-browserify@0.0.1:
897 | version "0.0.1"
898 | resolved "https://registry.yarnpkg.com/https-browserify/-/https-browserify-0.0.1.tgz#3f91365cabe60b77ed0ebba24b454e3e09d95a82"
899 |
900 | ieee754@^1.1.4:
901 | version "1.1.8"
902 | resolved "https://registry.yarnpkg.com/ieee754/-/ieee754-1.1.8.tgz#be33d40ac10ef1926701f6f08a2d86fbfd1ad3e4"
903 |
904 | ignore@^3.2.0:
905 | version "3.2.0"
906 | resolved "https://registry.yarnpkg.com/ignore/-/ignore-3.2.0.tgz#8d88f03c3002a0ac52114db25d2c673b0bf1e435"
907 |
908 | imurmurhash@^0.1.4:
909 | version "0.1.4"
910 | resolved "https://registry.yarnpkg.com/imurmurhash/-/imurmurhash-0.1.4.tgz#9218b9b2b928a238b13dc4fb6b6d576f231453ea"
911 |
912 | indexof@0.0.1:
913 | version "0.0.1"
914 | resolved "https://registry.yarnpkg.com/indexof/-/indexof-0.0.1.tgz#82dc336d232b9062179d05ab3293a66059fd435d"
915 |
916 | inflight@^1.0.4:
917 | version "1.0.6"
918 | resolved "https://registry.yarnpkg.com/inflight/-/inflight-1.0.6.tgz#49bd6331d7d02d0c09bc910a1075ba8165b56df9"
919 | dependencies:
920 | once "^1.3.0"
921 | wrappy "1"
922 |
923 | inherits@2, inherits@^2.0.1, inherits@~2.0.0, inherits@~2.0.1:
924 | version "2.0.3"
925 | resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.3.tgz#633c2c83e3da42a502f52466022480f4208261de"
926 |
927 | inherits@2.0.1:
928 | version "2.0.1"
929 | resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.1.tgz#b17d08d326b4423e568eff719f91b0b1cbdf69f1"
930 |
931 | ini@~1.3.0:
932 | version "1.3.4"
933 | resolved "https://registry.yarnpkg.com/ini/-/ini-1.3.4.tgz#0537cb79daf59b59a1a517dff706c86ec039162e"
934 |
935 | inquirer@^0.12.0:
936 | version "0.12.0"
937 | resolved "https://registry.yarnpkg.com/inquirer/-/inquirer-0.12.0.tgz#1ef2bfd63504df0bc75785fff8c2c41df12f077e"
938 | dependencies:
939 | ansi-escapes "^1.1.0"
940 | ansi-regex "^2.0.0"
941 | chalk "^1.0.0"
942 | cli-cursor "^1.0.1"
943 | cli-width "^2.0.0"
944 | figures "^1.3.5"
945 | lodash "^4.3.0"
946 | readline2 "^1.0.1"
947 | run-async "^0.1.0"
948 | rx-lite "^3.1.2"
949 | string-width "^1.0.1"
950 | strip-ansi "^3.0.0"
951 | through "^2.3.6"
952 |
953 | interpret@^0.6.4:
954 | version "0.6.6"
955 | resolved "https://registry.yarnpkg.com/interpret/-/interpret-0.6.6.tgz#fecd7a18e7ce5ca6abfb953e1f86213a49f1625b"
956 |
957 | interpret@^1.0.0:
958 | version "1.0.1"
959 | resolved "https://registry.yarnpkg.com/interpret/-/interpret-1.0.1.tgz#d579fb7f693b858004947af39fa0db49f795602c"
960 |
961 | is-binary-path@^1.0.0:
962 | version "1.0.1"
963 | resolved "https://registry.yarnpkg.com/is-binary-path/-/is-binary-path-1.0.1.tgz#75f16642b480f187a711c814161fd3a4a7655898"
964 | dependencies:
965 | binary-extensions "^1.0.0"
966 |
967 | is-buffer@^1.0.2:
968 | version "1.1.4"
969 | resolved "https://registry.yarnpkg.com/is-buffer/-/is-buffer-1.1.4.tgz#cfc86ccd5dc5a52fa80489111c6920c457e2d98b"
970 |
971 | is-dotfile@^1.0.0:
972 | version "1.0.2"
973 | resolved "https://registry.yarnpkg.com/is-dotfile/-/is-dotfile-1.0.2.tgz#2c132383f39199f8edc268ca01b9b007d205cc4d"
974 |
975 | is-equal-shallow@^0.1.3:
976 | version "0.1.3"
977 | resolved "https://registry.yarnpkg.com/is-equal-shallow/-/is-equal-shallow-0.1.3.tgz#2238098fc221de0bcfa5d9eac4c45d638aa1c534"
978 | dependencies:
979 | is-primitive "^2.0.0"
980 |
981 | is-extendable@^0.1.1:
982 | version "0.1.1"
983 | resolved "https://registry.yarnpkg.com/is-extendable/-/is-extendable-0.1.1.tgz#62b110e289a471418e3ec36a617d472e301dfc89"
984 |
985 | is-extglob@^1.0.0:
986 | version "1.0.0"
987 | resolved "https://registry.yarnpkg.com/is-extglob/-/is-extglob-1.0.0.tgz#ac468177c4943405a092fc8f29760c6ffc6206c0"
988 |
989 | is-fullwidth-code-point@^1.0.0:
990 | version "1.0.0"
991 | resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-1.0.0.tgz#ef9e31386f031a7f0d643af82fde50c457ef00cb"
992 | dependencies:
993 | number-is-nan "^1.0.0"
994 |
995 | is-fullwidth-code-point@^2.0.0:
996 | version "2.0.0"
997 | resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz#a3b30a5c4f199183167aaab93beefae3ddfb654f"
998 |
999 | is-glob@^2.0.0, is-glob@^2.0.1:
1000 | version "2.0.1"
1001 | resolved "https://registry.yarnpkg.com/is-glob/-/is-glob-2.0.1.tgz#d096f926a3ded5600f3fdfd91198cb0888c2d863"
1002 | dependencies:
1003 | is-extglob "^1.0.0"
1004 |
1005 | is-my-json-valid@^2.10.0, is-my-json-valid@^2.12.4:
1006 | version "2.15.0"
1007 | resolved "https://registry.yarnpkg.com/is-my-json-valid/-/is-my-json-valid-2.15.0.tgz#936edda3ca3c211fd98f3b2d3e08da43f7b2915b"
1008 | dependencies:
1009 | generate-function "^2.0.0"
1010 | generate-object-property "^1.1.0"
1011 | jsonpointer "^4.0.0"
1012 | xtend "^4.0.0"
1013 |
1014 | is-number@^2.0.2, is-number@^2.1.0:
1015 | version "2.1.0"
1016 | resolved "https://registry.yarnpkg.com/is-number/-/is-number-2.1.0.tgz#01fcbbb393463a548f2f466cce16dece49db908f"
1017 | dependencies:
1018 | kind-of "^3.0.2"
1019 |
1020 | is-path-cwd@^1.0.0:
1021 | version "1.0.0"
1022 | resolved "https://registry.yarnpkg.com/is-path-cwd/-/is-path-cwd-1.0.0.tgz#d225ec23132e89edd38fda767472e62e65f1106d"
1023 |
1024 | is-path-in-cwd@^1.0.0:
1025 | version "1.0.0"
1026 | resolved "https://registry.yarnpkg.com/is-path-in-cwd/-/is-path-in-cwd-1.0.0.tgz#6477582b8214d602346094567003be8a9eac04dc"
1027 | dependencies:
1028 | is-path-inside "^1.0.0"
1029 |
1030 | is-path-inside@^1.0.0:
1031 | version "1.0.0"
1032 | resolved "https://registry.yarnpkg.com/is-path-inside/-/is-path-inside-1.0.0.tgz#fc06e5a1683fbda13de667aff717bbc10a48f37f"
1033 | dependencies:
1034 | path-is-inside "^1.0.1"
1035 |
1036 | is-posix-bracket@^0.1.0:
1037 | version "0.1.1"
1038 | resolved "http://registry.npmjs.org/is-posix-bracket/-/is-posix-bracket-0.1.1.tgz#3334dc79774368e92f016e6fbc0a88f5cd6e6bc4"
1039 |
1040 | is-primitive@^2.0.0:
1041 | version "2.0.0"
1042 | resolved "https://registry.yarnpkg.com/is-primitive/-/is-primitive-2.0.0.tgz#207bab91638499c07b2adf240a41a87210034575"
1043 |
1044 | is-property@^1.0.0:
1045 | version "1.0.2"
1046 | resolved "https://registry.yarnpkg.com/is-property/-/is-property-1.0.2.tgz#57fe1c4e48474edd65b09911f26b1cd4095dda84"
1047 |
1048 | is-resolvable@^1.0.0:
1049 | version "1.0.0"
1050 | resolved "https://registry.yarnpkg.com/is-resolvable/-/is-resolvable-1.0.0.tgz#8df57c61ea2e3c501408d100fb013cf8d6e0cc62"
1051 | dependencies:
1052 | tryit "^1.0.1"
1053 |
1054 | is-typedarray@~1.0.0:
1055 | version "1.0.0"
1056 | resolved "https://registry.yarnpkg.com/is-typedarray/-/is-typedarray-1.0.0.tgz#e479c80858df0c1b11ddda6940f96011fcda4a9a"
1057 |
1058 | isarray@1.0.0, isarray@^1.0.0, isarray@~1.0.0:
1059 | version "1.0.0"
1060 | resolved "https://registry.yarnpkg.com/isarray/-/isarray-1.0.0.tgz#bb935d48582cba168c06834957a54a3e07124f11"
1061 |
1062 | isobject@^2.0.0:
1063 | version "2.1.0"
1064 | resolved "https://registry.yarnpkg.com/isobject/-/isobject-2.1.0.tgz#f065561096a3f1da2ef46272f815c840d87e0c89"
1065 | dependencies:
1066 | isarray "1.0.0"
1067 |
1068 | isstream@~0.1.2:
1069 | version "0.1.2"
1070 | resolved "https://registry.yarnpkg.com/isstream/-/isstream-0.1.2.tgz#47e63f7af55afa6f92e1500e690eb8b8529c099a"
1071 |
1072 | jasmine-core@~2.5.2:
1073 | version "2.5.2"
1074 | resolved "https://registry.yarnpkg.com/jasmine-core/-/jasmine-core-2.5.2.tgz#6f61bd79061e27f43e6f9355e44b3c6cab6ff297"
1075 |
1076 | jasmine@^2.4.1:
1077 | version "2.5.2"
1078 | resolved "https://registry.yarnpkg.com/jasmine/-/jasmine-2.5.2.tgz#6283cef7085c095cc25d651e954df004f7e3e421"
1079 | dependencies:
1080 | exit "^0.1.2"
1081 | glob "^7.0.6"
1082 | jasmine-core "~2.5.2"
1083 |
1084 | jodid25519@^1.0.0:
1085 | version "1.0.2"
1086 | resolved "https://registry.yarnpkg.com/jodid25519/-/jodid25519-1.0.2.tgz#06d4912255093419477d425633606e0e90782967"
1087 | dependencies:
1088 | jsbn "~0.1.0"
1089 |
1090 | js-tokens@^2.0.0:
1091 | version "2.0.0"
1092 | resolved "https://registry.yarnpkg.com/js-tokens/-/js-tokens-2.0.0.tgz#79903f5563ee778cc1162e6dcf1a0027c97f9cb5"
1093 |
1094 | js-yaml@^3.5.1:
1095 | version "3.7.0"
1096 | resolved "https://registry.yarnpkg.com/js-yaml/-/js-yaml-3.7.0.tgz#5c967ddd837a9bfdca5f2de84253abe8a1c03b80"
1097 | dependencies:
1098 | argparse "^1.0.7"
1099 | esprima "^2.6.0"
1100 |
1101 | jsbn@~0.1.0:
1102 | version "0.1.0"
1103 | resolved "https://registry.yarnpkg.com/jsbn/-/jsbn-0.1.0.tgz#650987da0dd74f4ebf5a11377a2aa2d273e97dfd"
1104 |
1105 | json-schema@0.2.3:
1106 | version "0.2.3"
1107 | resolved "https://registry.yarnpkg.com/json-schema/-/json-schema-0.2.3.tgz#b480c892e59a2f05954ce727bd3f2a4e882f9e13"
1108 |
1109 | json-stable-stringify@^1.0.0, json-stable-stringify@^1.0.1:
1110 | version "1.0.1"
1111 | resolved "https://registry.yarnpkg.com/json-stable-stringify/-/json-stable-stringify-1.0.1.tgz#9a759d39c5f2ff503fd5300646ed445f88c4f9af"
1112 | dependencies:
1113 | jsonify "~0.0.0"
1114 |
1115 | json-stringify-safe@~5.0.1:
1116 | version "5.0.1"
1117 | resolved "https://registry.yarnpkg.com/json-stringify-safe/-/json-stringify-safe-5.0.1.tgz#1296a2d58fd45f19a0f6ce01d65701e2c735b6eb"
1118 |
1119 | json5@^0.5.0:
1120 | version "0.5.1"
1121 | resolved "https://registry.yarnpkg.com/json5/-/json5-0.5.1.tgz#1eade7acc012034ad84e2396767ead9fa5495821"
1122 |
1123 | jsonify@~0.0.0:
1124 | version "0.0.0"
1125 | resolved "https://registry.yarnpkg.com/jsonify/-/jsonify-0.0.0.tgz#2c74b6ee41d93ca51b7b5aaee8f503631d252a73"
1126 |
1127 | jsonpointer@^4.0.0:
1128 | version "4.0.0"
1129 | resolved "https://registry.yarnpkg.com/jsonpointer/-/jsonpointer-4.0.0.tgz#6661e161d2fc445f19f98430231343722e1fcbd5"
1130 |
1131 | jsprim@^1.2.2:
1132 | version "1.3.1"
1133 | resolved "https://registry.yarnpkg.com/jsprim/-/jsprim-1.3.1.tgz#2a7256f70412a29ee3670aaca625994c4dcff252"
1134 | dependencies:
1135 | extsprintf "1.0.2"
1136 | json-schema "0.2.3"
1137 | verror "1.3.6"
1138 |
1139 | kind-of@^3.0.2:
1140 | version "3.1.0"
1141 | resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-3.1.0.tgz#475d698a5e49ff5e53d14e3e732429dc8bf4cf47"
1142 | dependencies:
1143 | is-buffer "^1.0.2"
1144 |
1145 | lazy-cache@^1.0.3:
1146 | version "1.0.4"
1147 | resolved "https://registry.yarnpkg.com/lazy-cache/-/lazy-cache-1.0.4.tgz#a1d78fc3a50474cb80845d3b3b6e1da49a446e8e"
1148 |
1149 | levn@^0.3.0, levn@~0.3.0:
1150 | version "0.3.0"
1151 | resolved "https://registry.yarnpkg.com/levn/-/levn-0.3.0.tgz#3b09924edf9f083c0490fdd4c0bc4421e04764ee"
1152 | dependencies:
1153 | prelude-ls "~1.1.2"
1154 | type-check "~0.3.2"
1155 |
1156 | loader-utils@^0.2.11:
1157 | version "0.2.16"
1158 | resolved "https://registry.yarnpkg.com/loader-utils/-/loader-utils-0.2.16.tgz#f08632066ed8282835dff88dfb52704765adee6d"
1159 | dependencies:
1160 | big.js "^3.1.3"
1161 | emojis-list "^2.0.0"
1162 | json5 "^0.5.0"
1163 | object-assign "^4.0.1"
1164 |
1165 | lodash@^4.0.0, lodash@^4.3.0:
1166 | version "4.17.2"
1167 | resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.2.tgz#34a3055babe04ce42467b607d700072c7ff6bf42"
1168 |
1169 | longest@^1.0.1:
1170 | version "1.0.1"
1171 | resolved "https://registry.yarnpkg.com/longest/-/longest-1.0.1.tgz#30a0b2da38f73770e8294a0d22e6625ed77d0097"
1172 |
1173 | memory-fs@^0.2.0:
1174 | version "0.2.0"
1175 | resolved "https://registry.yarnpkg.com/memory-fs/-/memory-fs-0.2.0.tgz#f2bb25368bc121e391c2520de92969caee0a0290"
1176 |
1177 | memory-fs@~0.3.0:
1178 | version "0.3.0"
1179 | resolved "https://registry.yarnpkg.com/memory-fs/-/memory-fs-0.3.0.tgz#7bcc6b629e3a43e871d7e29aca6ae8a7f15cbb20"
1180 | dependencies:
1181 | errno "^0.1.3"
1182 | readable-stream "^2.0.1"
1183 |
1184 | micromatch@^2.1.5:
1185 | version "2.3.11"
1186 | resolved "https://registry.yarnpkg.com/micromatch/-/micromatch-2.3.11.tgz#86677c97d1720b363431d04d0d15293bd38c1565"
1187 | dependencies:
1188 | arr-diff "^2.0.0"
1189 | array-unique "^0.2.1"
1190 | braces "^1.8.2"
1191 | expand-brackets "^0.1.4"
1192 | extglob "^0.3.1"
1193 | filename-regex "^2.0.0"
1194 | is-extglob "^1.0.0"
1195 | is-glob "^2.0.1"
1196 | kind-of "^3.0.2"
1197 | normalize-path "^2.0.1"
1198 | object.omit "^2.0.0"
1199 | parse-glob "^3.0.4"
1200 | regex-cache "^0.4.2"
1201 |
1202 | mime-db@~1.25.0:
1203 | version "1.25.0"
1204 | resolved "https://registry.yarnpkg.com/mime-db/-/mime-db-1.25.0.tgz#c18dbd7c73a5dbf6f44a024dc0d165a1e7b1c392"
1205 |
1206 | mime-types@^2.1.12, mime-types@~2.1.7:
1207 | version "2.1.13"
1208 | resolved "https://registry.yarnpkg.com/mime-types/-/mime-types-2.1.13.tgz#e07aaa9c6c6b9a7ca3012c69003ad25a39e92a88"
1209 | dependencies:
1210 | mime-db "~1.25.0"
1211 |
1212 | minimatch@^3.0.0, minimatch@^3.0.2:
1213 | version "3.0.3"
1214 | resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-3.0.3.tgz#2a4e4090b96b2db06a9d7df01055a62a77c9b774"
1215 | dependencies:
1216 | brace-expansion "^1.0.0"
1217 |
1218 | minimist@0.0.8, minimist@~0.0.1:
1219 | version "0.0.8"
1220 | resolved "https://registry.yarnpkg.com/minimist/-/minimist-0.0.8.tgz#857fcabfc3397d2625b8228262e86aa7a011b05d"
1221 |
1222 | minimist@^1.2.0:
1223 | version "1.2.0"
1224 | resolved "https://registry.yarnpkg.com/minimist/-/minimist-1.2.0.tgz#a35008b20f41383eec1fb914f4cd5df79a264284"
1225 |
1226 | "mkdirp@>=0.5 0", mkdirp@^0.5.0, mkdirp@^0.5.1, mkdirp@~0.5.0, mkdirp@~0.5.1:
1227 | version "0.5.1"
1228 | resolved "https://registry.yarnpkg.com/mkdirp/-/mkdirp-0.5.1.tgz#30057438eac6cf7f8c4767f38648d6697d75c903"
1229 | dependencies:
1230 | minimist "0.0.8"
1231 |
1232 | ms@0.7.1:
1233 | version "0.7.1"
1234 | resolved "https://registry.yarnpkg.com/ms/-/ms-0.7.1.tgz#9cd13c03adbff25b65effde7ce864ee952017098"
1235 |
1236 | mute-stream@0.0.5:
1237 | version "0.0.5"
1238 | resolved "https://registry.yarnpkg.com/mute-stream/-/mute-stream-0.0.5.tgz#8fbfabb0a98a253d3184331f9e8deb7372fac6c0"
1239 |
1240 | nan@^2.0.5, nan@^2.3.0, nan@~2.4.0:
1241 | version "2.4.0"
1242 | resolved "https://registry.yarnpkg.com/nan/-/nan-2.4.0.tgz#fb3c59d45fe4effe215f0b890f8adf6eb32d2232"
1243 |
1244 | natural-compare@^1.4.0:
1245 | version "1.4.0"
1246 | resolved "https://registry.yarnpkg.com/natural-compare/-/natural-compare-1.4.0.tgz#4abebfeed7541f2c27acfb29bdbbd15c8d5ba4f7"
1247 |
1248 | node-libs-browser@^0.7.0:
1249 | version "0.7.0"
1250 | resolved "https://registry.yarnpkg.com/node-libs-browser/-/node-libs-browser-0.7.0.tgz#3e272c0819e308935e26674408d7af0e1491b83b"
1251 | dependencies:
1252 | assert "^1.1.1"
1253 | browserify-zlib "^0.1.4"
1254 | buffer "^4.9.0"
1255 | console-browserify "^1.1.0"
1256 | constants-browserify "^1.0.0"
1257 | crypto-browserify "3.3.0"
1258 | domain-browser "^1.1.1"
1259 | events "^1.0.0"
1260 | https-browserify "0.0.1"
1261 | os-browserify "^0.2.0"
1262 | path-browserify "0.0.0"
1263 | process "^0.11.0"
1264 | punycode "^1.2.4"
1265 | querystring-es3 "^0.2.0"
1266 | readable-stream "^2.0.5"
1267 | stream-browserify "^2.0.1"
1268 | stream-http "^2.3.1"
1269 | string_decoder "^0.10.25"
1270 | timers-browserify "^2.0.2"
1271 | tty-browserify "0.0.0"
1272 | url "^0.11.0"
1273 | util "^0.10.3"
1274 | vm-browserify "0.0.4"
1275 |
1276 | node-pre-gyp@^0.6.29:
1277 | version "0.6.32"
1278 | resolved "https://registry.yarnpkg.com/node-pre-gyp/-/node-pre-gyp-0.6.32.tgz#fc452b376e7319b3d255f5f34853ef6fd8fe1fd5"
1279 | dependencies:
1280 | mkdirp "~0.5.1"
1281 | nopt "~3.0.6"
1282 | npmlog "^4.0.1"
1283 | rc "~1.1.6"
1284 | request "^2.79.0"
1285 | rimraf "~2.5.4"
1286 | semver "~5.3.0"
1287 | tar "~2.2.1"
1288 | tar-pack "~3.3.0"
1289 |
1290 | nopt@~3.0.6:
1291 | version "3.0.6"
1292 | resolved "https://registry.yarnpkg.com/nopt/-/nopt-3.0.6.tgz#c6465dbf08abcd4db359317f79ac68a646b28ff9"
1293 | dependencies:
1294 | abbrev "1"
1295 |
1296 | normalize-path@^2.0.1:
1297 | version "2.0.1"
1298 | resolved "https://registry.yarnpkg.com/normalize-path/-/normalize-path-2.0.1.tgz#47886ac1662760d4261b7d979d241709d3ce3f7a"
1299 |
1300 | npmlog@^4.0.1:
1301 | version "4.0.2"
1302 | resolved "https://registry.yarnpkg.com/npmlog/-/npmlog-4.0.2.tgz#d03950e0e78ce1527ba26d2a7592e9348ac3e75f"
1303 | dependencies:
1304 | are-we-there-yet "~1.1.2"
1305 | console-control-strings "~1.1.0"
1306 | gauge "~2.7.1"
1307 | set-blocking "~2.0.0"
1308 |
1309 | number-is-nan@^1.0.0:
1310 | version "1.0.1"
1311 | resolved "https://registry.yarnpkg.com/number-is-nan/-/number-is-nan-1.0.1.tgz#097b602b53422a522c1afb8790318336941a011d"
1312 |
1313 | oauth-sign@~0.8.1:
1314 | version "0.8.2"
1315 | resolved "https://registry.yarnpkg.com/oauth-sign/-/oauth-sign-0.8.2.tgz#46a6ab7f0aead8deae9ec0565780b7d4efeb9d43"
1316 |
1317 | object-assign@^4.0.1, object-assign@^4.1.0:
1318 | version "4.1.0"
1319 | resolved "https://registry.yarnpkg.com/object-assign/-/object-assign-4.1.0.tgz#7a3b3d0e98063d43f4c03f2e8ae6cd51a86883a0"
1320 |
1321 | object.omit@^2.0.0:
1322 | version "2.0.1"
1323 | resolved "https://registry.yarnpkg.com/object.omit/-/object.omit-2.0.1.tgz#1a9c744829f39dbb858c76ca3579ae2a54ebd1fa"
1324 | dependencies:
1325 | for-own "^0.1.4"
1326 | is-extendable "^0.1.1"
1327 |
1328 | once@^1.3.0:
1329 | version "1.4.0"
1330 | resolved "https://registry.yarnpkg.com/once/-/once-1.4.0.tgz#583b1aa775961d4b113ac17d9c50baef9dd76bd1"
1331 | dependencies:
1332 | wrappy "1"
1333 |
1334 | once@~1.3.3:
1335 | version "1.3.3"
1336 | resolved "https://registry.yarnpkg.com/once/-/once-1.3.3.tgz#b2e261557ce4c314ec8304f3fa82663e4297ca20"
1337 | dependencies:
1338 | wrappy "1"
1339 |
1340 | onetime@^1.0.0:
1341 | version "1.1.0"
1342 | resolved "https://registry.yarnpkg.com/onetime/-/onetime-1.1.0.tgz#a1f7838f8314c516f05ecefcbc4ccfe04b4ed789"
1343 |
1344 | optimist@~0.6.0:
1345 | version "0.6.1"
1346 | resolved "https://registry.yarnpkg.com/optimist/-/optimist-0.6.1.tgz#da3ea74686fa21a19a111c326e90eb15a0196686"
1347 | dependencies:
1348 | minimist "~0.0.1"
1349 | wordwrap "~0.0.2"
1350 |
1351 | optionator@^0.8.2:
1352 | version "0.8.2"
1353 | resolved "https://registry.yarnpkg.com/optionator/-/optionator-0.8.2.tgz#364c5e409d3f4d6301d6c0b4c05bba50180aeb64"
1354 | dependencies:
1355 | deep-is "~0.1.3"
1356 | fast-levenshtein "~2.0.4"
1357 | levn "~0.3.0"
1358 | prelude-ls "~1.1.2"
1359 | type-check "~0.3.2"
1360 | wordwrap "~1.0.0"
1361 |
1362 | options@>=0.0.5:
1363 | version "0.0.6"
1364 | resolved "https://registry.yarnpkg.com/options/-/options-0.0.6.tgz#ec22d312806bb53e731773e7cdaefcf1c643128f"
1365 |
1366 | os-browserify@^0.2.0:
1367 | version "0.2.1"
1368 | resolved "https://registry.yarnpkg.com/os-browserify/-/os-browserify-0.2.1.tgz#63fc4ccee5d2d7763d26bbf8601078e6c2e0044f"
1369 |
1370 | os-homedir@^1.0.0:
1371 | version "1.0.2"
1372 | resolved "https://registry.yarnpkg.com/os-homedir/-/os-homedir-1.0.2.tgz#ffbc4988336e0e833de0c168c7ef152121aa7fb3"
1373 |
1374 | pako@~0.2.0:
1375 | version "0.2.9"
1376 | resolved "https://registry.yarnpkg.com/pako/-/pako-0.2.9.tgz#f3f7522f4ef782348da8161bad9ecfd51bf83a75"
1377 |
1378 | parse-glob@^3.0.4:
1379 | version "3.0.4"
1380 | resolved "https://registry.yarnpkg.com/parse-glob/-/parse-glob-3.0.4.tgz#b2c376cfb11f35513badd173ef0bb6e3a388391c"
1381 | dependencies:
1382 | glob-base "^0.3.0"
1383 | is-dotfile "^1.0.0"
1384 | is-extglob "^1.0.0"
1385 | is-glob "^2.0.0"
1386 |
1387 | path-browserify@0.0.0:
1388 | version "0.0.0"
1389 | resolved "https://registry.yarnpkg.com/path-browserify/-/path-browserify-0.0.0.tgz#a0b870729aae214005b7d5032ec2cbbb0fb4451a"
1390 |
1391 | path-is-absolute@^1.0.0:
1392 | version "1.0.1"
1393 | resolved "https://registry.yarnpkg.com/path-is-absolute/-/path-is-absolute-1.0.1.tgz#174b9268735534ffbc7ace6bf53a5a9e1b5c5f5f"
1394 |
1395 | path-is-inside@^1.0.1:
1396 | version "1.0.2"
1397 | resolved "https://registry.yarnpkg.com/path-is-inside/-/path-is-inside-1.0.2.tgz#365417dede44430d1c11af61027facf074bdfc53"
1398 |
1399 | pbkdf2-compat@2.0.1:
1400 | version "2.0.1"
1401 | resolved "https://registry.yarnpkg.com/pbkdf2-compat/-/pbkdf2-compat-2.0.1.tgz#b6e0c8fa99494d94e0511575802a59a5c142f288"
1402 |
1403 | pify@^2.0.0:
1404 | version "2.3.0"
1405 | resolved "https://registry.yarnpkg.com/pify/-/pify-2.3.0.tgz#ed141a6ac043a849ea588498e7dca8b15330e90c"
1406 |
1407 | pinkie-promise@^2.0.0:
1408 | version "2.0.1"
1409 | resolved "https://registry.yarnpkg.com/pinkie-promise/-/pinkie-promise-2.0.1.tgz#2135d6dfa7a358c069ac9b178776288228450ffa"
1410 | dependencies:
1411 | pinkie "^2.0.0"
1412 |
1413 | pinkie@^2.0.0:
1414 | version "2.0.4"
1415 | resolved "https://registry.yarnpkg.com/pinkie/-/pinkie-2.0.4.tgz#72556b80cfa0d48a974e80e77248e80ed4f7f870"
1416 |
1417 | pluralize@^1.2.1:
1418 | version "1.2.1"
1419 | resolved "https://registry.yarnpkg.com/pluralize/-/pluralize-1.2.1.tgz#d1a21483fd22bb41e58a12fa3421823140897c45"
1420 |
1421 | prelude-ls@~1.1.2:
1422 | version "1.1.2"
1423 | resolved "https://registry.yarnpkg.com/prelude-ls/-/prelude-ls-1.1.2.tgz#21932a549f5e52ffd9a827f570e04be62a97da54"
1424 |
1425 | preserve@^0.2.0:
1426 | version "0.2.0"
1427 | resolved "https://registry.yarnpkg.com/preserve/-/preserve-0.2.0.tgz#815ed1f6ebc65926f865b310c0713bcb3315ce4b"
1428 |
1429 | process-nextick-args@~1.0.6:
1430 | version "1.0.7"
1431 | resolved "https://registry.yarnpkg.com/process-nextick-args/-/process-nextick-args-1.0.7.tgz#150e20b756590ad3f91093f25a4f2ad8bff30ba3"
1432 |
1433 | process@^0.11.0:
1434 | version "0.11.9"
1435 | resolved "https://registry.yarnpkg.com/process/-/process-0.11.9.tgz#7bd5ad21aa6253e7da8682264f1e11d11c0318c1"
1436 |
1437 | progress@^1.1.8:
1438 | version "1.1.8"
1439 | resolved "https://registry.yarnpkg.com/progress/-/progress-1.1.8.tgz#e260c78f6161cdd9b0e56cc3e0a85de17c7a57be"
1440 |
1441 | prr@~0.0.0:
1442 | version "0.0.0"
1443 | resolved "https://registry.yarnpkg.com/prr/-/prr-0.0.0.tgz#1a84b85908325501411853d0081ee3fa86e2926a"
1444 |
1445 | punycode@1.3.2:
1446 | version "1.3.2"
1447 | resolved "https://registry.yarnpkg.com/punycode/-/punycode-1.3.2.tgz#9653a036fb7c1ee42342f2325cceefea3926c48d"
1448 |
1449 | punycode@^1.2.4, punycode@^1.4.1:
1450 | version "1.4.1"
1451 | resolved "https://registry.yarnpkg.com/punycode/-/punycode-1.4.1.tgz#c0d5a63b2718800ad8e1eb0fa5269c84dd41845e"
1452 |
1453 | qs@~6.3.0:
1454 | version "6.3.0"
1455 | resolved "https://registry.yarnpkg.com/qs/-/qs-6.3.0.tgz#f403b264f23bc01228c74131b407f18d5ea5d442"
1456 |
1457 | querystring-es3@^0.2.0:
1458 | version "0.2.1"
1459 | resolved "https://registry.yarnpkg.com/querystring-es3/-/querystring-es3-0.2.1.tgz#9ec61f79049875707d69414596fd907a4d711e73"
1460 |
1461 | querystring@0.2.0:
1462 | version "0.2.0"
1463 | resolved "https://registry.yarnpkg.com/querystring/-/querystring-0.2.0.tgz#b209849203bb25df820da756e747005878521620"
1464 |
1465 | randomatic@^1.1.3:
1466 | version "1.1.6"
1467 | resolved "https://registry.yarnpkg.com/randomatic/-/randomatic-1.1.6.tgz#110dcabff397e9dcff7c0789ccc0a49adf1ec5bb"
1468 | dependencies:
1469 | is-number "^2.0.2"
1470 | kind-of "^3.0.2"
1471 |
1472 | rc@~1.1.6:
1473 | version "1.1.6"
1474 | resolved "https://registry.yarnpkg.com/rc/-/rc-1.1.6.tgz#43651b76b6ae53b5c802f1151fa3fc3b059969c9"
1475 | dependencies:
1476 | deep-extend "~0.4.0"
1477 | ini "~1.3.0"
1478 | minimist "^1.2.0"
1479 | strip-json-comments "~1.0.4"
1480 |
1481 | "readable-stream@^2.0.0 || ^1.1.13", readable-stream@^2.0.1, readable-stream@^2.0.2, readable-stream@^2.0.5, readable-stream@^2.1.0:
1482 | version "2.2.2"
1483 | resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-2.2.2.tgz#a9e6fec3c7dda85f8bb1b3ba7028604556fc825e"
1484 | dependencies:
1485 | buffer-shims "^1.0.0"
1486 | core-util-is "~1.0.0"
1487 | inherits "~2.0.1"
1488 | isarray "~1.0.0"
1489 | process-nextick-args "~1.0.6"
1490 | string_decoder "~0.10.x"
1491 | util-deprecate "~1.0.1"
1492 |
1493 | readable-stream@~2.0.0:
1494 | version "2.0.6"
1495 | resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-2.0.6.tgz#8f90341e68a53ccc928788dacfcd11b36eb9b78e"
1496 | dependencies:
1497 | core-util-is "~1.0.0"
1498 | inherits "~2.0.1"
1499 | isarray "~1.0.0"
1500 | process-nextick-args "~1.0.6"
1501 | string_decoder "~0.10.x"
1502 | util-deprecate "~1.0.1"
1503 |
1504 | readable-stream@~2.1.4:
1505 | version "2.1.5"
1506 | resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-2.1.5.tgz#66fa8b720e1438b364681f2ad1a63c618448c9d0"
1507 | dependencies:
1508 | buffer-shims "^1.0.0"
1509 | core-util-is "~1.0.0"
1510 | inherits "~2.0.1"
1511 | isarray "~1.0.0"
1512 | process-nextick-args "~1.0.6"
1513 | string_decoder "~0.10.x"
1514 | util-deprecate "~1.0.1"
1515 |
1516 | readdirp@^2.0.0:
1517 | version "2.1.0"
1518 | resolved "https://registry.yarnpkg.com/readdirp/-/readdirp-2.1.0.tgz#4ed0ad060df3073300c48440373f72d1cc642d78"
1519 | dependencies:
1520 | graceful-fs "^4.1.2"
1521 | minimatch "^3.0.2"
1522 | readable-stream "^2.0.2"
1523 | set-immediate-shim "^1.0.1"
1524 |
1525 | readline2@^1.0.1:
1526 | version "1.0.1"
1527 | resolved "https://registry.yarnpkg.com/readline2/-/readline2-1.0.1.tgz#41059608ffc154757b715d9989d199ffbf372e35"
1528 | dependencies:
1529 | code-point-at "^1.0.0"
1530 | is-fullwidth-code-point "^1.0.0"
1531 | mute-stream "0.0.5"
1532 |
1533 | rechoir@^0.6.2:
1534 | version "0.6.2"
1535 | resolved "https://registry.yarnpkg.com/rechoir/-/rechoir-0.6.2.tgz#85204b54dba82d5742e28c96756ef43af50e3384"
1536 | dependencies:
1537 | resolve "^1.1.6"
1538 |
1539 | regex-cache@^0.4.2:
1540 | version "0.4.3"
1541 | resolved "https://registry.yarnpkg.com/regex-cache/-/regex-cache-0.4.3.tgz#9b1a6c35d4d0dfcef5711ae651e8e9d3d7114145"
1542 | dependencies:
1543 | is-equal-shallow "^0.1.3"
1544 | is-primitive "^2.0.0"
1545 |
1546 | repeat-element@^1.1.2:
1547 | version "1.1.2"
1548 | resolved "https://registry.yarnpkg.com/repeat-element/-/repeat-element-1.1.2.tgz#ef089a178d1483baae4d93eb98b4f9e4e11d990a"
1549 |
1550 | repeat-string@^1.5.2:
1551 | version "1.6.1"
1552 | resolved "https://registry.yarnpkg.com/repeat-string/-/repeat-string-1.6.1.tgz#8dcae470e1c88abc2d600fff4a776286da75e637"
1553 |
1554 | request@^2.79.0:
1555 | version "2.79.0"
1556 | resolved "https://registry.yarnpkg.com/request/-/request-2.79.0.tgz#4dfe5bf6be8b8cdc37fcf93e04b65577722710de"
1557 | dependencies:
1558 | aws-sign2 "~0.6.0"
1559 | aws4 "^1.2.1"
1560 | caseless "~0.11.0"
1561 | combined-stream "~1.0.5"
1562 | extend "~3.0.0"
1563 | forever-agent "~0.6.1"
1564 | form-data "~2.1.1"
1565 | har-validator "~2.0.6"
1566 | hawk "~3.1.3"
1567 | http-signature "~1.1.0"
1568 | is-typedarray "~1.0.0"
1569 | isstream "~0.1.2"
1570 | json-stringify-safe "~5.0.1"
1571 | mime-types "~2.1.7"
1572 | oauth-sign "~0.8.1"
1573 | qs "~6.3.0"
1574 | stringstream "~0.0.4"
1575 | tough-cookie "~2.3.0"
1576 | tunnel-agent "~0.4.1"
1577 | uuid "^3.0.0"
1578 |
1579 | require-uncached@^1.0.2:
1580 | version "1.0.3"
1581 | resolved "https://registry.yarnpkg.com/require-uncached/-/require-uncached-1.0.3.tgz#4e0d56d6c9662fd31e43011c4b95aa49955421d3"
1582 | dependencies:
1583 | caller-path "^0.1.0"
1584 | resolve-from "^1.0.0"
1585 |
1586 | resolve-from@^1.0.0:
1587 | version "1.0.1"
1588 | resolved "https://registry.yarnpkg.com/resolve-from/-/resolve-from-1.0.1.tgz#26cbfe935d1aeeeabb29bc3fe5aeb01e93d44226"
1589 |
1590 | resolve@^1.1.6:
1591 | version "1.2.0"
1592 | resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.2.0.tgz#9589c3f2f6149d1417a40becc1663db6ec6bc26c"
1593 |
1594 | restore-cursor@^1.0.1:
1595 | version "1.0.1"
1596 | resolved "https://registry.yarnpkg.com/restore-cursor/-/restore-cursor-1.0.1.tgz#34661f46886327fed2991479152252df92daa541"
1597 | dependencies:
1598 | exit-hook "^1.0.0"
1599 | onetime "^1.0.0"
1600 |
1601 | right-align@^0.1.1:
1602 | version "0.1.3"
1603 | resolved "https://registry.yarnpkg.com/right-align/-/right-align-0.1.3.tgz#61339b722fe6a3515689210d24e14c96148613ef"
1604 | dependencies:
1605 | align-text "^0.1.1"
1606 |
1607 | rimraf@2, rimraf@^2.2.8, rimraf@~2.5.1, rimraf@~2.5.4:
1608 | version "2.5.4"
1609 | resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-2.5.4.tgz#96800093cbf1a0c86bd95b4625467535c29dfa04"
1610 | dependencies:
1611 | glob "^7.0.5"
1612 |
1613 | ripemd160@0.2.0:
1614 | version "0.2.0"
1615 | resolved "https://registry.yarnpkg.com/ripemd160/-/ripemd160-0.2.0.tgz#2bf198bde167cacfa51c0a928e84b68bbe171fce"
1616 |
1617 | run-async@^0.1.0:
1618 | version "0.1.0"
1619 | resolved "https://registry.yarnpkg.com/run-async/-/run-async-0.1.0.tgz#c8ad4a5e110661e402a7d21b530e009f25f8e389"
1620 | dependencies:
1621 | once "^1.3.0"
1622 |
1623 | rx-lite@^3.1.2:
1624 | version "3.1.2"
1625 | resolved "https://registry.yarnpkg.com/rx-lite/-/rx-lite-3.1.2.tgz#19ce502ca572665f3b647b10939f97fd1615f102"
1626 |
1627 | sax@0.4.2:
1628 | version "0.4.2"
1629 | resolved "https://registry.yarnpkg.com/sax/-/sax-0.4.2.tgz#39f3b601733d6bec97105b242a2a40fd6978ac3c"
1630 |
1631 | semver@~5.3.0:
1632 | version "5.3.0"
1633 | resolved "https://registry.yarnpkg.com/semver/-/semver-5.3.0.tgz#9b2ce5d3de02d17c6012ad326aa6b4d0cf54f94f"
1634 |
1635 | set-blocking@~2.0.0:
1636 | version "2.0.0"
1637 | resolved "https://registry.yarnpkg.com/set-blocking/-/set-blocking-2.0.0.tgz#045f9782d011ae9a6803ddd382b24392b3d890f7"
1638 |
1639 | set-immediate-shim@^1.0.1:
1640 | version "1.0.1"
1641 | resolved "https://registry.yarnpkg.com/set-immediate-shim/-/set-immediate-shim-1.0.1.tgz#4b2b1b27eb808a9f8dcc481a58e5e56f599f3f61"
1642 |
1643 | setimmediate@^1.0.4:
1644 | version "1.0.5"
1645 | resolved "https://registry.yarnpkg.com/setimmediate/-/setimmediate-1.0.5.tgz#290cbb232e306942d7d7ea9b83732ab7856f8285"
1646 |
1647 | sha.js@2.2.6:
1648 | version "2.2.6"
1649 | resolved "https://registry.yarnpkg.com/sha.js/-/sha.js-2.2.6.tgz#17ddeddc5f722fb66501658895461977867315ba"
1650 |
1651 | shelljs@^0.7.5:
1652 | version "0.7.5"
1653 | resolved "https://registry.yarnpkg.com/shelljs/-/shelljs-0.7.5.tgz#2eef7a50a21e1ccf37da00df767ec69e30ad0675"
1654 | dependencies:
1655 | glob "^7.0.0"
1656 | interpret "^1.0.0"
1657 | rechoir "^0.6.2"
1658 |
1659 | signal-exit@^3.0.0:
1660 | version "3.0.2"
1661 | resolved "https://registry.yarnpkg.com/signal-exit/-/signal-exit-3.0.2.tgz#b5fdc08f1287ea1178628e415e25132b73646c6d"
1662 |
1663 | slice-ansi@0.0.4:
1664 | version "0.0.4"
1665 | resolved "https://registry.yarnpkg.com/slice-ansi/-/slice-ansi-0.0.4.tgz#edbf8903f66f7ce2f8eafd6ceed65e264c831b35"
1666 |
1667 | sntp@1.x.x:
1668 | version "1.0.9"
1669 | resolved "https://registry.yarnpkg.com/sntp/-/sntp-1.0.9.tgz#6541184cc90aeea6c6e7b35e2659082443c66198"
1670 | dependencies:
1671 | hoek "2.x.x"
1672 |
1673 | source-list-map@~0.1.7:
1674 | version "0.1.7"
1675 | resolved "https://registry.yarnpkg.com/source-list-map/-/source-list-map-0.1.7.tgz#d4b5ce2a46535c72c7e8527c71a77d250618172e"
1676 |
1677 | source-map@~0.4.1:
1678 | version "0.4.4"
1679 | resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.4.4.tgz#eba4f5da9c0dc999de68032d8b4f76173652036b"
1680 | dependencies:
1681 | amdefine ">=0.0.4"
1682 |
1683 | source-map@~0.5.1:
1684 | version "0.5.6"
1685 | resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.5.6.tgz#75ce38f52bf0733c5a7f0c118d81334a2bb5f412"
1686 |
1687 | sprintf-js@~1.0.2:
1688 | version "1.0.3"
1689 | resolved "https://registry.yarnpkg.com/sprintf-js/-/sprintf-js-1.0.3.tgz#04e6926f662895354f3dd015203633b857297e2c"
1690 |
1691 | sshpk@^1.7.0:
1692 | version "1.10.1"
1693 | resolved "https://registry.yarnpkg.com/sshpk/-/sshpk-1.10.1.tgz#30e1a5d329244974a1af61511339d595af6638b0"
1694 | dependencies:
1695 | asn1 "~0.2.3"
1696 | assert-plus "^1.0.0"
1697 | dashdash "^1.12.0"
1698 | getpass "^0.1.1"
1699 | optionalDependencies:
1700 | bcrypt-pbkdf "^1.0.0"
1701 | ecc-jsbn "~0.1.1"
1702 | jodid25519 "^1.0.0"
1703 | jsbn "~0.1.0"
1704 | tweetnacl "~0.14.0"
1705 |
1706 | stream-browserify@^2.0.1:
1707 | version "2.0.1"
1708 | resolved "https://registry.yarnpkg.com/stream-browserify/-/stream-browserify-2.0.1.tgz#66266ee5f9bdb9940a4e4514cafb43bb71e5c9db"
1709 | dependencies:
1710 | inherits "~2.0.1"
1711 | readable-stream "^2.0.2"
1712 |
1713 | stream-http@^2.3.1:
1714 | version "2.5.0"
1715 | resolved "https://registry.yarnpkg.com/stream-http/-/stream-http-2.5.0.tgz#585eee513217ed98fe199817e7313b6f772a6802"
1716 | dependencies:
1717 | builtin-status-codes "^2.0.0"
1718 | inherits "^2.0.1"
1719 | readable-stream "^2.1.0"
1720 | to-arraybuffer "^1.0.0"
1721 | xtend "^4.0.0"
1722 |
1723 | string-width@^1.0.1:
1724 | version "1.0.2"
1725 | resolved "https://registry.yarnpkg.com/string-width/-/string-width-1.0.2.tgz#118bdf5b8cdc51a2a7e70d211e07e2b0b9b107d3"
1726 | dependencies:
1727 | code-point-at "^1.0.0"
1728 | is-fullwidth-code-point "^1.0.0"
1729 | strip-ansi "^3.0.0"
1730 |
1731 | string-width@^2.0.0:
1732 | version "2.0.0"
1733 | resolved "https://registry.yarnpkg.com/string-width/-/string-width-2.0.0.tgz#635c5436cc72a6e0c387ceca278d4e2eec52687e"
1734 | dependencies:
1735 | is-fullwidth-code-point "^2.0.0"
1736 | strip-ansi "^3.0.0"
1737 |
1738 | string_decoder@^0.10.25, string_decoder@~0.10.x:
1739 | version "0.10.31"
1740 | resolved "https://registry.yarnpkg.com/string_decoder/-/string_decoder-0.10.31.tgz#62e203bc41766c6c28c9fc84301dab1c5310fa94"
1741 |
1742 | stringstream@~0.0.4:
1743 | version "0.0.5"
1744 | resolved "https://registry.yarnpkg.com/stringstream/-/stringstream-0.0.5.tgz#4e484cd4de5a0bbbee18e46307710a8a81621878"
1745 |
1746 | strip-ansi@^3.0.0, strip-ansi@^3.0.1:
1747 | version "3.0.1"
1748 | resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-3.0.1.tgz#6a385fb8853d952d5ff05d0e8aaf94278dc63dcf"
1749 | dependencies:
1750 | ansi-regex "^2.0.0"
1751 |
1752 | strip-bom@^3.0.0:
1753 | version "3.0.0"
1754 | resolved "https://registry.yarnpkg.com/strip-bom/-/strip-bom-3.0.0.tgz#2334c18e9c759f7bdd56fdef7e9ae3d588e68ed3"
1755 |
1756 | strip-json-comments@~1.0.1, strip-json-comments@~1.0.4:
1757 | version "1.0.4"
1758 | resolved "https://registry.yarnpkg.com/strip-json-comments/-/strip-json-comments-1.0.4.tgz#1e15fbcac97d3ee99bf2d73b4c656b082bbafb91"
1759 |
1760 | supports-color@^0.2.0:
1761 | version "0.2.0"
1762 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-0.2.0.tgz#d92de2694eb3f67323973d7ae3d8b55b4c22190a"
1763 |
1764 | supports-color@^2.0.0:
1765 | version "2.0.0"
1766 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-2.0.0.tgz#535d045ce6b6363fa40117084629995e9df324c7"
1767 |
1768 | supports-color@^3.1.0:
1769 | version "3.1.2"
1770 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-3.1.2.tgz#72a262894d9d408b956ca05ff37b2ed8a6e2a2d5"
1771 | dependencies:
1772 | has-flag "^1.0.0"
1773 |
1774 | table@^3.7.8:
1775 | version "3.8.3"
1776 | resolved "https://registry.yarnpkg.com/table/-/table-3.8.3.tgz#2bbc542f0fda9861a755d3947fefd8b3f513855f"
1777 | dependencies:
1778 | ajv "^4.7.0"
1779 | ajv-keywords "^1.0.0"
1780 | chalk "^1.1.1"
1781 | lodash "^4.0.0"
1782 | slice-ansi "0.0.4"
1783 | string-width "^2.0.0"
1784 |
1785 | tapable@^0.1.8, tapable@~0.1.8:
1786 | version "0.1.10"
1787 | resolved "https://registry.yarnpkg.com/tapable/-/tapable-0.1.10.tgz#29c35707c2b70e50d07482b5d202e8ed446dafd4"
1788 |
1789 | tar-pack@~3.3.0:
1790 | version "3.3.0"
1791 | resolved "https://registry.yarnpkg.com/tar-pack/-/tar-pack-3.3.0.tgz#30931816418f55afc4d21775afdd6720cee45dae"
1792 | dependencies:
1793 | debug "~2.2.0"
1794 | fstream "~1.0.10"
1795 | fstream-ignore "~1.0.5"
1796 | once "~1.3.3"
1797 | readable-stream "~2.1.4"
1798 | rimraf "~2.5.1"
1799 | tar "~2.2.1"
1800 | uid-number "~0.0.6"
1801 |
1802 | tar@~2.2.1:
1803 | version "2.2.1"
1804 | resolved "https://registry.yarnpkg.com/tar/-/tar-2.2.1.tgz#8e4d2a256c0e2185c6b18ad694aec968b83cb1d1"
1805 | dependencies:
1806 | block-stream "*"
1807 | fstream "^1.0.2"
1808 | inherits "2"
1809 |
1810 | text-table@~0.2.0:
1811 | version "0.2.0"
1812 | resolved "https://registry.yarnpkg.com/text-table/-/text-table-0.2.0.tgz#7f5ee823ae805207c00af2df4a84ec3fcfa570b4"
1813 |
1814 | through@^2.3.6:
1815 | version "2.3.8"
1816 | resolved "https://registry.yarnpkg.com/through/-/through-2.3.8.tgz#0dd4c9ffaabc357960b1b724115d7e0e86a2e1f5"
1817 |
1818 | timers-browserify@^2.0.2:
1819 | version "2.0.2"
1820 | resolved "https://registry.yarnpkg.com/timers-browserify/-/timers-browserify-2.0.2.tgz#ab4883cf597dcd50af211349a00fbca56ac86b86"
1821 | dependencies:
1822 | setimmediate "^1.0.4"
1823 |
1824 | to-arraybuffer@^1.0.0:
1825 | version "1.0.1"
1826 | resolved "https://registry.yarnpkg.com/to-arraybuffer/-/to-arraybuffer-1.0.1.tgz#7d229b1fcc637e466ca081180836a7aabff83f43"
1827 |
1828 | tough-cookie@~2.3.0:
1829 | version "2.3.2"
1830 | resolved "https://registry.yarnpkg.com/tough-cookie/-/tough-cookie-2.3.2.tgz#f081f76e4c85720e6c37a5faced737150d84072a"
1831 | dependencies:
1832 | punycode "^1.4.1"
1833 |
1834 | tryit@^1.0.1:
1835 | version "1.0.3"
1836 | resolved "https://registry.yarnpkg.com/tryit/-/tryit-1.0.3.tgz#393be730a9446fd1ead6da59a014308f36c289cb"
1837 |
1838 | tty-browserify@0.0.0:
1839 | version "0.0.0"
1840 | resolved "https://registry.yarnpkg.com/tty-browserify/-/tty-browserify-0.0.0.tgz#a157ba402da24e9bf957f9aa69d524eed42901a6"
1841 |
1842 | tunnel-agent@~0.4.1:
1843 | version "0.4.3"
1844 | resolved "https://registry.yarnpkg.com/tunnel-agent/-/tunnel-agent-0.4.3.tgz#6373db76909fe570e08d73583365ed828a74eeeb"
1845 |
1846 | tweetnacl@^0.14.3, tweetnacl@~0.14.0:
1847 | version "0.14.5"
1848 | resolved "https://registry.yarnpkg.com/tweetnacl/-/tweetnacl-0.14.5.tgz#5ae68177f192d4456269d108afa93ff8743f4f64"
1849 |
1850 | type-check@~0.3.2:
1851 | version "0.3.2"
1852 | resolved "https://registry.yarnpkg.com/type-check/-/type-check-0.3.2.tgz#5884cab512cf1d355e3fb784f30804b2b520db72"
1853 | dependencies:
1854 | prelude-ls "~1.1.2"
1855 |
1856 | typedarray@~0.0.5:
1857 | version "0.0.6"
1858 | resolved "https://registry.yarnpkg.com/typedarray/-/typedarray-0.0.6.tgz#867ac74e3864187b1d3d47d996a78ec5c8830777"
1859 |
1860 | uglify-js@~2.7.3:
1861 | version "2.7.5"
1862 | resolved "https://registry.yarnpkg.com/uglify-js/-/uglify-js-2.7.5.tgz#4612c0c7baaee2ba7c487de4904ae122079f2ca8"
1863 | dependencies:
1864 | async "~0.2.6"
1865 | source-map "~0.5.1"
1866 | uglify-to-browserify "~1.0.0"
1867 | yargs "~3.10.0"
1868 |
1869 | uglify-to-browserify@~1.0.0:
1870 | version "1.0.2"
1871 | resolved "https://registry.yarnpkg.com/uglify-to-browserify/-/uglify-to-browserify-1.0.2.tgz#6e0924d6bda6b5afe349e39a6d632850a0f882b7"
1872 |
1873 | uid-number@~0.0.6:
1874 | version "0.0.6"
1875 | resolved "https://registry.yarnpkg.com/uid-number/-/uid-number-0.0.6.tgz#0ea10e8035e8eb5b8e4449f06da1c730663baa81"
1876 |
1877 | ultron@1.0.x:
1878 | version "1.0.2"
1879 | resolved "https://registry.yarnpkg.com/ultron/-/ultron-1.0.2.tgz#ace116ab557cd197386a4e88f4685378c8b2e4fa"
1880 |
1881 | url@^0.11.0:
1882 | version "0.11.0"
1883 | resolved "https://registry.yarnpkg.com/url/-/url-0.11.0.tgz#3838e97cfc60521eb73c525a8e55bfdd9e2e28f1"
1884 | dependencies:
1885 | punycode "1.3.2"
1886 | querystring "0.2.0"
1887 |
1888 | user-home@^2.0.0:
1889 | version "2.0.0"
1890 | resolved "https://registry.yarnpkg.com/user-home/-/user-home-2.0.0.tgz#9c70bfd8169bc1dcbf48604e0f04b8b49cde9e9f"
1891 | dependencies:
1892 | os-homedir "^1.0.0"
1893 |
1894 | utf-8-validate@1.2.x:
1895 | version "1.2.2"
1896 | resolved "https://registry.yarnpkg.com/utf-8-validate/-/utf-8-validate-1.2.2.tgz#8bb871a4741e085c70487ca7acdbd7d6d36029eb"
1897 | dependencies:
1898 | bindings "~1.2.1"
1899 | nan "~2.4.0"
1900 |
1901 | util-deprecate@~1.0.1:
1902 | version "1.0.2"
1903 | resolved "https://registry.yarnpkg.com/util-deprecate/-/util-deprecate-1.0.2.tgz#450d4dc9fa70de732762fbd2d4a28981419a0ccf"
1904 |
1905 | util@0.10.3, util@^0.10.3:
1906 | version "0.10.3"
1907 | resolved "https://registry.yarnpkg.com/util/-/util-0.10.3.tgz#7afb1afe50805246489e3db7fe0ed379336ac0f9"
1908 | dependencies:
1909 | inherits "2.0.1"
1910 |
1911 | uuid@^3.0.0:
1912 | version "3.0.1"
1913 | resolved "https://registry.yarnpkg.com/uuid/-/uuid-3.0.1.tgz#6544bba2dfda8c1cf17e629a3a305e2bb1fee6c1"
1914 |
1915 | verror@1.3.6:
1916 | version "1.3.6"
1917 | resolved "https://registry.yarnpkg.com/verror/-/verror-1.3.6.tgz#cff5df12946d297d2baaefaa2689e25be01c005c"
1918 | dependencies:
1919 | extsprintf "1.0.2"
1920 |
1921 | vm-browserify@0.0.4:
1922 | version "0.0.4"
1923 | resolved "https://registry.yarnpkg.com/vm-browserify/-/vm-browserify-0.0.4.tgz#5d7ea45bbef9e4a6ff65f95438e0a87c357d5a73"
1924 | dependencies:
1925 | indexof "0.0.1"
1926 |
1927 | watchpack@^0.2.1:
1928 | version "0.2.9"
1929 | resolved "https://registry.yarnpkg.com/watchpack/-/watchpack-0.2.9.tgz#62eaa4ab5e5ba35fdfc018275626e3c0f5e3fb0b"
1930 | dependencies:
1931 | async "^0.9.0"
1932 | chokidar "^1.0.0"
1933 | graceful-fs "^4.1.2"
1934 |
1935 | webpack-core@~0.6.9:
1936 | version "0.6.9"
1937 | resolved "https://registry.yarnpkg.com/webpack-core/-/webpack-core-0.6.9.tgz#fc571588c8558da77be9efb6debdc5a3b172bdc2"
1938 | dependencies:
1939 | source-list-map "~0.1.7"
1940 | source-map "~0.4.1"
1941 |
1942 | webpack@^1.12.11:
1943 | version "1.14.0"
1944 | resolved "https://registry.yarnpkg.com/webpack/-/webpack-1.14.0.tgz#54f1ffb92051a328a5b2057d6ae33c289462c823"
1945 | dependencies:
1946 | acorn "^3.0.0"
1947 | async "^1.3.0"
1948 | clone "^1.0.2"
1949 | enhanced-resolve "~0.9.0"
1950 | interpret "^0.6.4"
1951 | loader-utils "^0.2.11"
1952 | memory-fs "~0.3.0"
1953 | mkdirp "~0.5.0"
1954 | node-libs-browser "^0.7.0"
1955 | optimist "~0.6.0"
1956 | supports-color "^3.1.0"
1957 | tapable "~0.1.8"
1958 | uglify-js "~2.7.3"
1959 | watchpack "^0.2.1"
1960 | webpack-core "~0.6.9"
1961 |
1962 | wide-align@^1.1.0:
1963 | version "1.1.0"
1964 | resolved "https://registry.yarnpkg.com/wide-align/-/wide-align-1.1.0.tgz#40edde802a71fea1f070da3e62dcda2e7add96ad"
1965 | dependencies:
1966 | string-width "^1.0.1"
1967 |
1968 | window-size@0.1.0:
1969 | version "0.1.0"
1970 | resolved "https://registry.yarnpkg.com/window-size/-/window-size-0.1.0.tgz#5438cd2ea93b202efa3a19fe8887aee7c94f9c9d"
1971 |
1972 | wordwrap@0.0.2:
1973 | version "0.0.2"
1974 | resolved "https://registry.yarnpkg.com/wordwrap/-/wordwrap-0.0.2.tgz#b79669bb42ecb409f83d583cad52ca17eaa1643f"
1975 |
1976 | wordwrap@~0.0.2:
1977 | version "0.0.3"
1978 | resolved "https://registry.yarnpkg.com/wordwrap/-/wordwrap-0.0.3.tgz#a3d5da6cd5c0bc0008d37234bbaf1bed63059107"
1979 |
1980 | wordwrap@~1.0.0:
1981 | version "1.0.0"
1982 | resolved "https://registry.yarnpkg.com/wordwrap/-/wordwrap-1.0.0.tgz#27584810891456a4171c8d0226441ade90cbcaeb"
1983 |
1984 | wrappy@1:
1985 | version "1.0.2"
1986 | resolved "https://registry.yarnpkg.com/wrappy/-/wrappy-1.0.2.tgz#b5243d8f3ec1aa35f1364605bc0d1036e30ab69f"
1987 |
1988 | write@^0.2.1:
1989 | version "0.2.1"
1990 | resolved "https://registry.yarnpkg.com/write/-/write-0.2.1.tgz#5fc03828e264cea3fe91455476f7a3c566cb0757"
1991 | dependencies:
1992 | mkdirp "^0.5.1"
1993 |
1994 | ws@~>0.8.0:
1995 | version "0.8.1"
1996 | resolved "https://registry.yarnpkg.com/ws/-/ws-0.8.1.tgz#6b65273b99193c5f067a4cf5809598f777e3b759"
1997 | dependencies:
1998 | options ">=0.0.5"
1999 | ultron "1.0.x"
2000 | optionalDependencies:
2001 | bufferutil "1.2.x"
2002 | utf-8-validate "1.2.x"
2003 |
2004 | xml2js@0.2.6:
2005 | version "0.2.6"
2006 | resolved "https://registry.yarnpkg.com/xml2js/-/xml2js-0.2.6.tgz#d209c4e4dda1fc9c452141ef41c077f5adfdf6c4"
2007 | dependencies:
2008 | sax "0.4.2"
2009 |
2010 | xmlbuilder@0.4.2:
2011 | version "0.4.2"
2012 | resolved "https://registry.yarnpkg.com/xmlbuilder/-/xmlbuilder-0.4.2.tgz#1776d65f3fdbad470a08d8604cdeb1c4e540ff83"
2013 |
2014 | xtend@^4.0.0:
2015 | version "4.0.1"
2016 | resolved "https://registry.yarnpkg.com/xtend/-/xtend-4.0.1.tgz#a5c6d532be656e23db820efb943a1f04998d63af"
2017 |
2018 | yargs@~3.10.0:
2019 | version "3.10.0"
2020 | resolved "https://registry.yarnpkg.com/yargs/-/yargs-3.10.0.tgz#f7ee7bd857dd7c1d2d38c0e74efbd681d1431fd1"
2021 | dependencies:
2022 | camelcase "^1.0.2"
2023 | cliui "^2.1.0"
2024 | decamelize "^1.0.0"
2025 | window-size "0.1.0"
2026 |
--------------------------------------------------------------------------------