├── .circleci
└── config.yml
├── .eslintrc
├── .github
├── CHANGELOG.md
├── CODE_OF_CONDUCT.md
├── CONTRIBUTING.md
├── ISSUE_TEMPLATE.md
└── PULL_REQUEST_TEMPLATE.md
├── .gitignore
├── LICENSE.md
├── MetaMaskConnector.js
├── README.md
├── RemoteMetaMaskProvider.js
├── client
├── index.css
├── index.html
└── index.js
├── docs
├── _Docs_Overview.md
├── doc.config.json
└── img
│ ├── nodeMetamask_fullColor.svg
│ ├── nodeMetamask_logomark_dark.svg
│ └── nodeMetamask_logomark_red.svg
├── index.js
├── package.json
└── yarn.lock
/.circleci/config.yml:
--------------------------------------------------------------------------------
1 | # Javascript Node CircleCI 2.0 configuration file
2 | #
3 | # Check https://circleci.com/docs/2.0/language-javascript/ for more details
4 | #
5 | version: 2
6 | jobs:
7 | build:
8 | docker:
9 | # specify the version you desire here
10 | - image: circleci/node:7.10
11 |
12 | # Specify service dependencies here if necessary
13 | # CircleCI maintains a library of pre-built images
14 | # documented at https://circleci.com/docs/2.0/circleci-images/
15 | # - image: circleci/mongo:3.4.4
16 |
17 | working_directory: ~/repo
18 |
19 | steps:
20 | - checkout
21 |
22 | # Download and cache dependencies
23 | - restore_cache:
24 | keys:
25 | - v1-dependencies-{{ checksum "package.json" }}
26 | # fallback to using the latest cache if no exact match is found
27 | - v1-dependencies-
28 |
29 | - run: yarn install
30 |
31 | - save_cache:
32 | paths:
33 | - node_modules
34 | key: v1-dependencies-{{ checksum "package.json" }}
35 |
36 | # run tests!
37 | - run: yarn test
38 |
39 |
40 |
--------------------------------------------------------------------------------
/.eslintrc:
--------------------------------------------------------------------------------
1 | {
2 | "extends": ["@colony/eslint-config-colony"],
3 | "settings": {
4 | "flowtype": {
5 | "onlyFilesWithFlowAnnotation": true
6 | }
7 | }
8 | }
9 |
--------------------------------------------------------------------------------
/.github/CHANGELOG.md:
--------------------------------------------------------------------------------
1 | ## node-metamask changelog
2 |
3 | ### [ [>](https://github.com/JoinColony/node-metamask/tree/v1.1.2) ] 1.1.2 / 29.03.2019
4 | * Fixes connection to MetaMask when privacy mode is enabled (thanks @monokh)
5 |
6 | ### [ [>](https://github.com/JoinColony/node-metamask/tree/v1.1.1) ] 1.1.1 / 23.08.2018
7 | * Adds `formatResult` method to ensure results are formatted to work with `ethers.js`
8 | * Fixes `MetaMaskConnector` to ensure the correct payload is sent to `RemoteMetaMaskProvider`
9 |
10 | ### [ [>](https://github.com/JoinColony/node-metamask/tree/v1.1.0) ] 1.1.0 / 11.08.2018
11 | * Adds support for Web3 0.x on the node side (thanks @frods)
12 | * Provides correct mapping of requests (also thanks @frods!)
13 | * Fixes typos in and adds some more JSON-RPC requests (eth_blockNumber, eth_getLogs, eth_getTransactionByHash), also by @frods :)
14 | * Add eslint checks (thanks @ryanchristo!)
15 | * Fixes some typos in readme (thanks to @hems)
16 |
17 | ### [ [>](https://github.com/JoinColony/node-metamask/tree/v1.0.2) ] 1.0.2 / 29.05.2018
18 | * Fix empty result error bug
19 |
20 | ### [ [>](https://github.com/JoinColony/node-metamask/tree/v1.0.1) ] 1.0.1 / 26.05.2018
21 | * Fix memory leak bug
22 |
23 | ### [ [>](https://github.com/JoinColony/node-metamask/tree/v1.0.0) ] 1.0.0 / 26.05.2018
24 | * Initial release
25 |
--------------------------------------------------------------------------------
/.github/CODE_OF_CONDUCT.md:
--------------------------------------------------------------------------------
1 | # Code of Conduct
2 |
3 | ## Our Pledge
4 |
5 | In the interest of fostering an open and welcoming environment, we as contributors and maintainers pledge to making participation in our project and our community a harassment-free experience for everyone, regardless of age, body size, disability, ethnicity, gender identity and expression, level of experience, nationality, personal appearance, race, religion, or sexual identity and orientation.
6 |
7 | ## Our Standards
8 |
9 | Examples of behavior that contributes to creating a positive environment include:
10 |
11 | * Using welcoming and inclusive language
12 | * Being respectful of differing viewpoints and experiences
13 | * Gracefully accepting constructive criticism
14 | * Focusing on what is best for the community
15 | * Showing empathy towards other community members
16 |
17 | Examples of unacceptable behavior by participants include:
18 |
19 | * The use of sexualized language or imagery and unwelcome sexual attention or advances
20 | * Trolling, insulting/derogatory comments, and personal or political attacks
21 | * Public or private harassment
22 | * Publishing others' private information, such as a physical or electronic address, without explicit permission
23 | * Other conduct which could reasonably be considered inappropriate in a professional setting
24 |
25 | ## Our Responsibilities
26 |
27 | Project maintainers are responsible for clarifying the standards of acceptable behavior and are expected to take appropriate and fair corrective action in response to any instances of unacceptable behavior.
28 |
29 | Project maintainers have the right and responsibility to remove, edit, or reject comments, commits, code, wiki edits, issues, and other contributions that are not aligned to this Code of Conduct, or to ban temporarily or permanently any contributor for other behaviors that they deem inappropriate, threatening, offensive, or harmful.
30 |
31 | ## Scope
32 |
33 | This Code of Conduct applies both within project spaces and in public spaces when an individual is representing the project or its community. Examples of representing a project or community include using an official project e-mail address, posting via an official social media account, or acting as an appointed representative at an online or offline event. Representation of a project may be further defined and clarified by project maintainers.
34 |
35 | ## Enforcement
36 |
37 | Instances of abusive, harassing, or otherwise unacceptable behavior may be reported by contacting the project team at [developers@colony.io](mailto:developers@colony.io). All complaints will be reviewed and investigated and will result in a response that is deemed necessary and appropriate to the circumstances. The project team is obligated to maintain confidentiality with regard to the reporter of an incident. Further details of specific enforcement policies may be posted separately.
38 |
39 | Project maintainers who do not follow or enforce the Code of Conduct in good faith may face temporary or permanent repercussions as determined by other members of the project's leadership.
40 |
41 | ## Attribution
42 |
43 | This Code of Conduct is adapted from the [Contributor Covenant][homepage], version 1.4, available at [https://contributor-covenant.org/version/1/4][version]
44 |
45 | [homepage]: https://contributor-covenant.org
46 | [version]: https://contributor-covenant.org/version/1/4/
47 |
--------------------------------------------------------------------------------
/.github/CONTRIBUTING.md:
--------------------------------------------------------------------------------
1 | # Contributing
2 |
3 | Please read [Code of Conduct](CODE_OF_CONDUCT.md) before contributing.
4 |
5 | ## Report Issues
6 |
7 | Report an issue using [GitHub Issues](https://github.com/JoinColony/node-metamask/issues). _Please fill out the template with as much detail as possible._
8 |
9 | ## GitHub Workflow
10 |
11 | - Fork the repository
12 |
13 | - Clone the forked repository into your working directory
14 |
15 | - Create a new branch using the following naming schema:
16 |
17 | - [fix/feature/...]/[issue-#]-[description-in-kebab-case]
18 |
19 | - For example, `feature/6-add-connect-rinkeby-example`
20 |
21 | - Commit your changes using the following guidelines:
22 |
23 | - In the commit message, the first line must be capitalized
24 |
25 | - Keep your branch up to date using `rebase` instead of `merge`
26 |
27 | - Push your new fix/feature branch to your forked repository
28 |
29 | - Create a pull request and fill out the pull request template
30 |
--------------------------------------------------------------------------------
/.github/ISSUE_TEMPLATE.md:
--------------------------------------------------------------------------------
1 | ## Description
2 |
3 | _Write a detailed description of the issue/feature/question._
4 |
5 | ## Steps to Reproduce
6 |
7 | _If you are reporting a bug, list the steps you took that led to the issue._
8 |
--------------------------------------------------------------------------------
/.github/PULL_REQUEST_TEMPLATE.md:
--------------------------------------------------------------------------------
1 | ## Description
2 |
3 | _Write a detailed description of the changes you made._
4 |
5 | ## Other Changes
6 |
7 | _List any minor changes you may have made during development._
8 |
9 | ## Checklist
10 |
11 | _List items that need to be completed before the request is merged._
12 |
13 | ## Scripts
14 |
15 | _List any added/updated scripts._
16 |
17 | **Added Scripts**:
18 |
19 | **Updated Scripts**:
20 |
21 | ## Dependencies
22 |
23 | _List any added/updated dependencies._
24 |
25 | **Added Dependencies**:
26 |
27 | **Updated Dependencies**:
28 |
29 | ## Related Issues
30 |
31 | _If the pull request is related to an issue, add a link to the issue here._
32 |
--------------------------------------------------------------------------------
/.gitignore:
--------------------------------------------------------------------------------
1 | node_modules
2 |
--------------------------------------------------------------------------------
/LICENSE.md:
--------------------------------------------------------------------------------
1 | MIT License
2 |
3 | Copyright (c) 2018 Collectively Intelligent Ltd.
4 |
5 | Permission is hereby granted, free of charge, to any person obtaining a copy
6 | of this software and associated documentation files (the "Software"), to deal
7 | in the Software without restriction, including without limitation the rights
8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9 | copies of the Software, and to permit persons to whom the Software is
10 | furnished to do so, subject to the following conditions:
11 |
12 | The above copyright notice and this permission notice shall be included in all
13 | copies or substantial portions of the Software.
14 |
15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21 | SOFTWARE.
22 |
--------------------------------------------------------------------------------
/MetaMaskConnector.js:
--------------------------------------------------------------------------------
1 | const path = require('path');
2 | const WebSocket = require('ws');
3 | const express = require('express');
4 |
5 | const RemoteMetaMaskProvider = require('./RemoteMetaMaskProvider');
6 |
7 | const DEFAULT_PORT = 3333;
8 |
9 | class MetaMaskConnector {
10 | constructor(options) {
11 | this.config = Object.assign({}, { port: DEFAULT_PORT }, options);
12 | }
13 |
14 | async start() {
15 | this._app = express();
16 | this._app.use(express.static(path.resolve(__dirname, 'client')));
17 | this._wss = await this._runServer();
18 | await this._initialize();
19 | }
20 |
21 | stop() {
22 | return new Promise(resolve => {
23 | this._wss.close(() => {
24 | this._server.close(() => {
25 | resolve(true);
26 | });
27 | });
28 | });
29 | }
30 |
31 | _runServer() {
32 | return new Promise((resolve, reject) => {
33 | this._server = this._app.listen(this.config.port, 'localhost', err => {
34 | if (err) return reject(err);
35 | return resolve(new WebSocket.Server({ server: this._server }));
36 | });
37 | });
38 | }
39 |
40 | _initialize() {
41 | return new Promise(resolve => {
42 | this._wss.on('connection', ws => {
43 | // Only allow one conection at a time
44 | if (this.ready()) {
45 | return ws.close();
46 | }
47 | ws.on('close', () => {
48 | delete this._ws;
49 | });
50 | this._ws = ws;
51 | if (this.config.onConnect) this.config.onConnect();
52 | return resolve();
53 | });
54 | });
55 | }
56 |
57 | ready() {
58 | return this._ws && this._ws.readyState === WebSocket.OPEN;
59 | }
60 |
61 | static handleMessage(msg) {
62 | let message;
63 | try {
64 | message = JSON.parse(msg);
65 | } catch (e) {
66 | throw new Error('Could not parse message from socket. Is it valid JSON?');
67 | }
68 | const { action, requestId, payload } = message;
69 | return this.handleAction(action, requestId, payload);
70 | }
71 |
72 | static handleAction(action, requestId, payload) {
73 | if (action === 'error') {
74 | throw new Error(payload);
75 | }
76 | return {
77 | responseAction: action,
78 | responseRequestId: requestId,
79 | responsePayload: payload,
80 | };
81 | }
82 |
83 | send(action, requestId, payload, requiredAction) {
84 | return new Promise(resolve => {
85 | const onMsg = msg => {
86 | const {
87 | responseAction,
88 | responseRequestId,
89 | responsePayload,
90 | } = this.constructor.handleMessage(msg.data);
91 | if (
92 | requiredAction === responseAction &&
93 | requestId === responseRequestId
94 | ) {
95 | this._ws.removeEventListener('message', onMsg);
96 | resolve({
97 | requestId: responseRequestId,
98 | result: responsePayload,
99 | });
100 | }
101 | };
102 | this._ws.addEventListener('message', onMsg);
103 | const msg = JSON.stringify({ action, requestId, payload });
104 | this._ws.send(msg);
105 | });
106 | }
107 |
108 | getProvider() {
109 | return new RemoteMetaMaskProvider(this);
110 | }
111 | }
112 |
113 | module.exports = MetaMaskConnector;
114 |
--------------------------------------------------------------------------------
/README.md:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
9 |
10 | # node-metamask
11 |
12 | Connect Node.js to MetaMask.
13 |
14 | "Why would I ever want to do that?" - Sometimes you might have scripts or libraries that run in Node and require signed transactions that you would like to use MetaMask for (instead of dealing with private keys). This tool functions as a web3 provider that can be used with pretty much any MetaMask instance remotely. Please, only use this package locally to prevent PITM attacks (if you're brave enough to try it on mainnet).
15 |
16 | Sounds crazy? It probably is. Also highly experimental. Please use with caution.
17 |
18 | ## Install
19 |
20 | ```
21 | yarn add node-metamask
22 | ```
23 |
24 | ## Usage
25 |
26 | ```js
27 |
28 | const MetaMaskConnector = require('node-metamask');
29 | const connector = new MetaMaskConnector({
30 | port: 3333, // this is the default port
31 | onConnect() { console.log('MetaMask client connected') }, // Function to run when MetaMask is connected (optional)
32 | });
33 |
34 | connector.start().then(() => {
35 | // Now go to http://localhost:3333 in your MetaMask enabled web browser.
36 | const web3 = new Web3(connector.getProvider());
37 | // Use web3 as you would normally do. Sign transactions in the browser.
38 | });
39 |
40 | ```
41 |
42 | When you're done with your MetaMask business, run the following code to clean up:
43 |
44 | ```js
45 |
46 | connector.stop();
47 |
48 | ```
49 |
50 | ## Disclaimer
51 |
52 | As I said, this is highly experimental. Tested only with web3 v1.0 (in node) and web3 0.20.3 (MetaMask, in the browser). Also it might not work with all functions supported by web3.
53 |
54 | ## Contribute
55 |
56 | Please report any bugs you find so we can improve this.
57 |
58 | - [Contributing](https://github.com/JoinColony/node-metamask/blob/master/.github/CONTRIBUTING.md)
59 |
--------------------------------------------------------------------------------
/RemoteMetaMaskProvider.js:
--------------------------------------------------------------------------------
1 | class RemoteMetaMaskProvider {
2 | constructor(connector) {
3 | this._connector = connector;
4 | this._callbacks = new Map();
5 | }
6 |
7 | // Generate a request id to track callbacks from async methods
8 | static generateRequestId() {
9 | const s4 = () =>
10 | Math.floor((1 + Math.random()) * 0x10000)
11 | .toString(16)
12 | .substring(1);
13 | return `${s4()}${s4()}-${s4()}-${s4()}-${s4()}-${s4()}${s4()}${s4()}`;
14 | }
15 |
16 | // Get the associated async method for the given sync method (MetaMask does
17 | // not work with sync methods)
18 | static getAsyncMethod(method) {
19 | const syncMethods = [
20 | 'version_node',
21 | 'version_network',
22 | 'version_ethereum',
23 | 'version_whisper',
24 | 'net_listening',
25 | 'net_peerCount',
26 | 'eth_syncing',
27 | 'eth_coinbase',
28 | 'eth_mining',
29 | 'eth_hashrate',
30 | 'eth_gasPrice',
31 | 'eth_accounts',
32 | 'eth_blockNumber',
33 | ];
34 |
35 | // Translate the defined sync methods
36 | const idx = syncMethods.indexOf(method);
37 | if (idx >= 0) {
38 | return syncMethods[idx].replace(
39 | /(.+)_([a-z])(.+)/,
40 | (str, p1, p2, p3) => `${p1}_get${p2.toUpperCase()}${p3}`,
41 | );
42 | }
43 |
44 | // Translate other sync methods
45 | const translateMethod = {
46 | net_version: 'version_getNetwork',
47 | eth_getLogs: 'eth_filter',
48 | eth_getTransactionByHash: 'eth_getTransaction',
49 | };
50 | if (Object.prototype.hasOwnProperty.call(translateMethod, method)) {
51 | return translateMethod[method];
52 | }
53 |
54 | return method;
55 | }
56 |
57 | // When connected to a remote network, the return values for "gasPrice" and
58 | // "value" are strings, so we will need to properly format them for ethers.
59 | // Ideally we would use the big number type from bn.js or bignumber.js but
60 | // ethers does not support any big number type other than it's own.
61 | static formatResult(_result) {
62 | const result = _result;
63 |
64 | // Format "gasPrice"
65 | if (result && typeof result.gasPrice === 'string') {
66 | result.gasPrice = parseInt(result.gasPrice, 10);
67 | }
68 |
69 | // Format "value"
70 | if (result && typeof result.value === 'string') {
71 | result.value = parseInt(result.value, 10);
72 | }
73 |
74 | // Format for "eth_filter"
75 | if (result && result.logIndex) return [result];
76 |
77 | return result;
78 | }
79 |
80 | // Define send method
81 | send(_payload, _callback) {
82 | if (!this._connector.ready()) {
83 | return _callback(
84 | new Error('Unable to send. Not connected to a MetaMask socket.'),
85 | );
86 | }
87 |
88 | // Because requests are handled across a WebSocket, their callbacks need to
89 | // be associated with an ID which is returned with the response.
90 | const requestId = this.constructor.generateRequestId();
91 |
92 | // Set the callback using the requestId
93 | this._callbacks.set(requestId, _callback);
94 |
95 | // Set the payload to allow reassignment
96 | const payload = _payload;
97 |
98 | // Get the async method (Metamask does not support sync methods)
99 | payload.method = this.constructor.getAsyncMethod(payload.method);
100 |
101 | return this._connector
102 | .send('execute', requestId, payload, 'executed')
103 | .then(({ requestId: responseRequestId, result }) => {
104 | // Exit if a response for this request was already handled
105 | if (!this._callbacks.has(responseRequestId)) return;
106 |
107 | // Get the request callback using the returned request id
108 | const requestCallback = this._callbacks.get(responseRequestId);
109 |
110 | // Throw error if send error
111 | if (result && result.error) {
112 | requestCallback(new Error(result.error));
113 | }
114 |
115 | // Format result to work with ethers
116 | const formattedResult = this.constructor.formatResult(result);
117 |
118 | // Handle request callback
119 | requestCallback(null, {
120 | id: payload.id,
121 | jsonrpc: '2.0',
122 | result: formattedResult,
123 | });
124 |
125 | // Delete the callback after the request has been handled
126 | this._callbacks.delete(responseRequestId);
127 | })
128 | .catch(err => _callback(err));
129 | }
130 |
131 | // Define async send method
132 | sendAsync(payload, callback) {
133 | this.send(payload, callback);
134 | }
135 | }
136 |
137 | module.exports = RemoteMetaMaskProvider;
138 |
--------------------------------------------------------------------------------
/client/index.css:
--------------------------------------------------------------------------------
1 | ul {
2 | list-style: none;
3 | margin: 0;
4 | padding: 2rem;
5 | }
6 |
7 | li {
8 | line-height: 1.5;
9 | padding: 1rem;
10 | word-break: break-all;
11 | }
12 |
--------------------------------------------------------------------------------
/client/index.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 | MetaMask Connector
8 |
9 |
10 |
11 |
12 |
13 |
14 |
--------------------------------------------------------------------------------
/client/index.js:
--------------------------------------------------------------------------------
1 | /* global document:true */
2 | /* global WebSocket:true */
3 | /* global web3:true */
4 | /* global window:true */
5 |
6 | (async w => {
7 | const addLog = msg => {
8 | const logEntry = document.createElement('li');
9 | logEntry.innerText = `${new Date().toString()}\n${msg}`;
10 | document.querySelector('#messages').appendChild(logEntry);
11 | };
12 |
13 | const checkUnlocked = async () => {
14 | if (w.ethereum) {
15 | await w.ethereum.enable(); // Ensure access to MetaMask
16 | }
17 | return new Promise((resolve, reject) => {
18 | web3.eth.getAccounts((err, accounts) => {
19 | if (err) return reject(err);
20 | return resolve(accounts && !!accounts[0]);
21 | });
22 | });
23 | };
24 |
25 | const execute = (requestId, method, params) =>
26 | new Promise((resolve, reject) => {
27 | const splitMethod = method.split('_');
28 | const scope = splitMethod[0];
29 | const functionName = splitMethod[1];
30 | params.push((err, result) => {
31 | if (err) {
32 | return reject(err);
33 | }
34 | addLog(
35 | `Request ID: ${requestId}
36 | Result from ${method}: ${JSON.stringify(result)}`,
37 | );
38 | return resolve(result);
39 | });
40 | try {
41 | web3[scope][functionName](...params);
42 | } catch (e) {
43 | reject(e);
44 | }
45 | });
46 |
47 | async function executeAction(requestId, { method, params }, reply) {
48 | let result;
49 | addLog(
50 | `Request ID: ${requestId}
51 | Calling ${method}: ${JSON.stringify(params)}`,
52 | );
53 | try {
54 | result = await execute(requestId, method, params);
55 | } catch (e) {
56 | return reply('executed', requestId, {
57 | error: e.message,
58 | });
59 | }
60 | return reply('executed', requestId, result);
61 | }
62 |
63 | if (!w.web3) {
64 | return addLog('MetaMask not found!');
65 | }
66 | if (!(await checkUnlocked())) {
67 | return addLog('Please unlock MetaMask first and then reload this page');
68 | }
69 | const socket = new WebSocket('ws://localhost:3333');
70 | const reply = (action, requestId, payload) =>
71 | socket.send(JSON.stringify({ action, requestId, payload }));
72 | socket.onmessage = msg => {
73 | let message;
74 | try {
75 | message = JSON.parse(msg.data);
76 | } catch (e) {
77 | return addLog(
78 | 'Could not parse websocket message. Is it a proper JSON command?',
79 | );
80 | }
81 | if (message.action === 'execute') {
82 | return executeAction(message.requestId, message.payload, reply);
83 | }
84 | return true;
85 | };
86 |
87 | return true;
88 | })(window);
89 |
--------------------------------------------------------------------------------
/docs/_Docs_Overview.md:
--------------------------------------------------------------------------------
1 | ---
2 | title: Overview
3 | section: Docs
4 | order: 1
5 | ---
6 |
7 | Connect Node.js to MetaMask.
8 |
9 | "Why would I ever want to do that?" - Sometimes you might have scripts or libraries that run in Node and require signed transactions that you would like to use MetaMask for (instead of dealing with private keys). This tool functions as a web3 provider that can be used with pretty much any MetaMask instance remotely. Please, only use this package locally to prevent PITM attacks (if you're brave enough to try it on mainnet).
10 |
11 | Sounds crazy? It probably is. Also highly experimental. Please use with caution.
12 |
13 | ## Install
14 |
15 | ```
16 | yarn add node-metamask
17 | ```
18 |
19 | ## Usage
20 |
21 | ```js
22 |
23 | const MetaMaskConnector = require('node-metamask');
24 | const connector = new MetaMaskConnector({
25 | port: 3333, // this is the default port
26 | onConnect() { console.log('MetaMask client connected') }, // Function to run when MetaMask is connected (optional)
27 | });
28 |
29 | connector.start().then(() => {
30 | // Now go to http://localhost:3333 in your MetaMask enabled web browser.
31 | const web3 = new Web3(connector.getProvider());
32 | // Use web3 as you would normally do. Sign transactions in the browser.
33 | });
34 |
35 | ```
36 |
37 | When you're done with your MetaMask business, run the following code to clean up:
38 |
39 | ```js
40 |
41 | connector.stop();
42 |
43 | ```
44 |
45 | ## Disclaimer
46 |
47 | As I said, this is highly experimental. Tested only with web3 v1.0 (in node) and web3 0.20.3 (MetaMask, in the browser). Also it might not work with all functions supported by web3.
48 |
49 | ## Contribute
50 |
51 | Please report any bugs you find so we can improve this.
52 |
53 | - [Contributing](https://github.com/JoinColony/node-metamask/blob/master/.github/CONTRIBUTING.md)
54 |
--------------------------------------------------------------------------------
/docs/doc.config.json:
--------------------------------------------------------------------------------
1 | {
2 | "logo": "img/nodeMetamask_fullColor.svg",
3 | "logoSmall": "img/nodeMetamask_logomark_red.svg",
4 | "sectionOrder": ["Docs"],
5 | "description": "A JavaScript library that functions as a Web3 provider connecting Node to MetaMask."
6 | }
7 |
--------------------------------------------------------------------------------
/docs/img/nodeMetamask_fullColor.svg:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 |
14 |
15 |
16 |
--------------------------------------------------------------------------------
/docs/img/nodeMetamask_logomark_dark.svg:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
--------------------------------------------------------------------------------
/docs/img/nodeMetamask_logomark_red.svg:
--------------------------------------------------------------------------------
1 |
2 |
4 |
5 |
--------------------------------------------------------------------------------
/index.js:
--------------------------------------------------------------------------------
1 | module.exports = require('./MetaMaskConnector');
2 |
--------------------------------------------------------------------------------
/package.json:
--------------------------------------------------------------------------------
1 | {
2 | "name": "node-metamask",
3 | "version": "1.1.2",
4 | "description": "🦊 Connect to MetaMask from node.js",
5 | "author": "Christian Maniewski ",
6 | "license": "MIT",
7 | "repository": {
8 | "type": "git",
9 | "url": "https://github.com/JoinColony/node-metamask.git"
10 | },
11 | "main": "index.js",
12 | "scripts": {
13 | "test": "eslint *.js"
14 | },
15 | "dependencies": {
16 | "express": "^4.16.3",
17 | "ws": "^5.2.0"
18 | },
19 | "devDependencies": {
20 | "@colony/eslint-config-colony": "^4.0.0",
21 | "babel-eslint": "^8.0.2",
22 | "eslint": "^4.17.0",
23 | "eslint-config-airbnb-base": "^12.1.0",
24 | "eslint-config-prettier": "^2.9.0",
25 | "eslint-import-resolver-jest": "^2.1.1",
26 | "eslint-plugin-flowtype": "^2.44.0",
27 | "eslint-plugin-import": "^2.8.0",
28 | "eslint-plugin-prettier": "^2.6.0",
29 | "prettier": "^1.10.2"
30 | }
31 | }
32 |
--------------------------------------------------------------------------------
/yarn.lock:
--------------------------------------------------------------------------------
1 | # THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY.
2 | # yarn lockfile v1
3 |
4 |
5 | "@babel/code-frame@7.0.0-beta.44":
6 | version "7.0.0-beta.44"
7 | resolved "https://registry.yarnpkg.com/@babel/code-frame/-/code-frame-7.0.0-beta.44.tgz#2a02643368de80916162be70865c97774f3adbd9"
8 | dependencies:
9 | "@babel/highlight" "7.0.0-beta.44"
10 |
11 | "@babel/generator@7.0.0-beta.44":
12 | version "7.0.0-beta.44"
13 | resolved "https://registry.yarnpkg.com/@babel/generator/-/generator-7.0.0-beta.44.tgz#c7e67b9b5284afcf69b309b50d7d37f3e5033d42"
14 | dependencies:
15 | "@babel/types" "7.0.0-beta.44"
16 | jsesc "^2.5.1"
17 | lodash "^4.2.0"
18 | source-map "^0.5.0"
19 | trim-right "^1.0.1"
20 |
21 | "@babel/helper-function-name@7.0.0-beta.44":
22 | version "7.0.0-beta.44"
23 | resolved "https://registry.yarnpkg.com/@babel/helper-function-name/-/helper-function-name-7.0.0-beta.44.tgz#e18552aaae2231100a6e485e03854bc3532d44dd"
24 | dependencies:
25 | "@babel/helper-get-function-arity" "7.0.0-beta.44"
26 | "@babel/template" "7.0.0-beta.44"
27 | "@babel/types" "7.0.0-beta.44"
28 |
29 | "@babel/helper-get-function-arity@7.0.0-beta.44":
30 | version "7.0.0-beta.44"
31 | resolved "https://registry.yarnpkg.com/@babel/helper-get-function-arity/-/helper-get-function-arity-7.0.0-beta.44.tgz#d03ca6dd2b9f7b0b1e6b32c56c72836140db3a15"
32 | dependencies:
33 | "@babel/types" "7.0.0-beta.44"
34 |
35 | "@babel/helper-split-export-declaration@7.0.0-beta.44":
36 | version "7.0.0-beta.44"
37 | resolved "https://registry.yarnpkg.com/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.0.0-beta.44.tgz#c0b351735e0fbcb3822c8ad8db4e583b05ebd9dc"
38 | dependencies:
39 | "@babel/types" "7.0.0-beta.44"
40 |
41 | "@babel/highlight@7.0.0-beta.44":
42 | version "7.0.0-beta.44"
43 | resolved "https://registry.yarnpkg.com/@babel/highlight/-/highlight-7.0.0-beta.44.tgz#18c94ce543916a80553edcdcf681890b200747d5"
44 | dependencies:
45 | chalk "^2.0.0"
46 | esutils "^2.0.2"
47 | js-tokens "^3.0.0"
48 |
49 | "@babel/template@7.0.0-beta.44":
50 | version "7.0.0-beta.44"
51 | resolved "https://registry.yarnpkg.com/@babel/template/-/template-7.0.0-beta.44.tgz#f8832f4fdcee5d59bf515e595fc5106c529b394f"
52 | dependencies:
53 | "@babel/code-frame" "7.0.0-beta.44"
54 | "@babel/types" "7.0.0-beta.44"
55 | babylon "7.0.0-beta.44"
56 | lodash "^4.2.0"
57 |
58 | "@babel/traverse@7.0.0-beta.44":
59 | version "7.0.0-beta.44"
60 | resolved "https://registry.yarnpkg.com/@babel/traverse/-/traverse-7.0.0-beta.44.tgz#a970a2c45477ad18017e2e465a0606feee0d2966"
61 | dependencies:
62 | "@babel/code-frame" "7.0.0-beta.44"
63 | "@babel/generator" "7.0.0-beta.44"
64 | "@babel/helper-function-name" "7.0.0-beta.44"
65 | "@babel/helper-split-export-declaration" "7.0.0-beta.44"
66 | "@babel/types" "7.0.0-beta.44"
67 | babylon "7.0.0-beta.44"
68 | debug "^3.1.0"
69 | globals "^11.1.0"
70 | invariant "^2.2.0"
71 | lodash "^4.2.0"
72 |
73 | "@babel/types@7.0.0-beta.44":
74 | version "7.0.0-beta.44"
75 | resolved "https://registry.yarnpkg.com/@babel/types/-/types-7.0.0-beta.44.tgz#6b1b164591f77dec0a0342aca995f2d046b3a757"
76 | dependencies:
77 | esutils "^2.0.2"
78 | lodash "^4.2.0"
79 | to-fast-properties "^2.0.0"
80 |
81 | "@colony/eslint-config-colony@^4.0.0":
82 | version "4.0.1"
83 | resolved "https://registry.yarnpkg.com/@colony/eslint-config-colony/-/eslint-config-colony-4.0.1.tgz#74495655bf461ef196edc262983c471b42cf2d75"
84 |
85 | accepts@~1.3.5:
86 | version "1.3.5"
87 | resolved "https://registry.yarnpkg.com/accepts/-/accepts-1.3.5.tgz#eb777df6011723a3b14e8a72c0805c8e86746bd2"
88 | dependencies:
89 | mime-types "~2.1.18"
90 | negotiator "0.6.1"
91 |
92 | acorn-jsx@^3.0.0:
93 | version "3.0.1"
94 | resolved "https://registry.yarnpkg.com/acorn-jsx/-/acorn-jsx-3.0.1.tgz#afdf9488fb1ecefc8348f6fb22f464e32a58b36b"
95 | dependencies:
96 | acorn "^3.0.4"
97 |
98 | acorn@^3.0.4:
99 | version "3.3.0"
100 | resolved "https://registry.yarnpkg.com/acorn/-/acorn-3.3.0.tgz#45e37fb39e8da3f25baee3ff5369e2bb5f22017a"
101 |
102 | acorn@^5.5.0:
103 | version "5.7.1"
104 | resolved "https://registry.yarnpkg.com/acorn/-/acorn-5.7.1.tgz#f095829297706a7c9776958c0afc8930a9b9d9d8"
105 |
106 | ajv-keywords@^2.1.0:
107 | version "2.1.1"
108 | resolved "https://registry.yarnpkg.com/ajv-keywords/-/ajv-keywords-2.1.1.tgz#617997fc5f60576894c435f940d819e135b80762"
109 |
110 | ajv@^5.2.3, ajv@^5.3.0:
111 | version "5.5.2"
112 | resolved "https://registry.yarnpkg.com/ajv/-/ajv-5.5.2.tgz#73b5eeca3fab653e3d3f9422b341ad42205dc965"
113 | dependencies:
114 | co "^4.6.0"
115 | fast-deep-equal "^1.0.0"
116 | fast-json-stable-stringify "^2.0.0"
117 | json-schema-traverse "^0.3.0"
118 |
119 | ansi-escapes@^3.0.0:
120 | version "3.1.0"
121 | resolved "https://registry.yarnpkg.com/ansi-escapes/-/ansi-escapes-3.1.0.tgz#f73207bb81207d75fd6c83f125af26eea378ca30"
122 |
123 | ansi-regex@^2.0.0:
124 | version "2.1.1"
125 | resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-2.1.1.tgz#c3b33ab5ee360d86e0e628f0468ae7ef27d654df"
126 |
127 | ansi-regex@^3.0.0:
128 | version "3.0.0"
129 | resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-3.0.0.tgz#ed0317c322064f79466c02966bddb605ab37d998"
130 |
131 | ansi-styles@^2.2.1:
132 | version "2.2.1"
133 | resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-2.2.1.tgz#b432dd3358b634cf75e1e4664368240533c1ddbe"
134 |
135 | ansi-styles@^3.2.1:
136 | version "3.2.1"
137 | resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-3.2.1.tgz#41fbb20243e50b12be0f04b8dedbf07520ce841d"
138 | dependencies:
139 | color-convert "^1.9.0"
140 |
141 | argparse@^1.0.7:
142 | version "1.0.10"
143 | resolved "https://registry.yarnpkg.com/argparse/-/argparse-1.0.10.tgz#bcd6791ea5ae09725e17e5ad988134cd40b3d911"
144 | dependencies:
145 | sprintf-js "~1.0.2"
146 |
147 | arr-diff@^4.0.0:
148 | version "4.0.0"
149 | resolved "https://registry.yarnpkg.com/arr-diff/-/arr-diff-4.0.0.tgz#d6461074febfec71e7e15235761a329a5dc7c520"
150 |
151 | arr-flatten@^1.1.0:
152 | version "1.1.0"
153 | resolved "https://registry.yarnpkg.com/arr-flatten/-/arr-flatten-1.1.0.tgz#36048bbff4e7b47e136644316c99669ea5ae91f1"
154 |
155 | arr-union@^3.1.0:
156 | version "3.1.0"
157 | resolved "https://registry.yarnpkg.com/arr-union/-/arr-union-3.1.0.tgz#e39b09aea9def866a8f206e288af63919bae39c4"
158 |
159 | array-flatten@1.1.1:
160 | version "1.1.1"
161 | resolved "https://registry.yarnpkg.com/array-flatten/-/array-flatten-1.1.1.tgz#9a5f699051b1e7073328f2a008968b64ea2955d2"
162 |
163 | array-union@^1.0.1:
164 | version "1.0.2"
165 | resolved "https://registry.yarnpkg.com/array-union/-/array-union-1.0.2.tgz#9a34410e4f4e3da23dea375be5be70f24778ec39"
166 | dependencies:
167 | array-uniq "^1.0.1"
168 |
169 | array-uniq@^1.0.1:
170 | version "1.0.3"
171 | resolved "https://registry.yarnpkg.com/array-uniq/-/array-uniq-1.0.3.tgz#af6ac877a25cc7f74e058894753858dfdb24fdb6"
172 |
173 | array-unique@^0.3.2:
174 | version "0.3.2"
175 | resolved "https://registry.yarnpkg.com/array-unique/-/array-unique-0.3.2.tgz#a894b75d4bc4f6cd679ef3244a9fd8f46ae2d428"
176 |
177 | arrify@^1.0.0:
178 | version "1.0.1"
179 | resolved "https://registry.yarnpkg.com/arrify/-/arrify-1.0.1.tgz#898508da2226f380df904728456849c1501a4b0d"
180 |
181 | assign-symbols@^1.0.0:
182 | version "1.0.0"
183 | resolved "https://registry.yarnpkg.com/assign-symbols/-/assign-symbols-1.0.0.tgz#59667f41fadd4f20ccbc2bb96b8d4f7f78ec0367"
184 |
185 | async-limiter@~1.0.0:
186 | version "1.0.0"
187 | resolved "https://registry.yarnpkg.com/async-limiter/-/async-limiter-1.0.0.tgz#78faed8c3d074ab81f22b4e985d79e8738f720f8"
188 |
189 | atob@^2.1.1:
190 | version "2.1.1"
191 | resolved "https://registry.yarnpkg.com/atob/-/atob-2.1.1.tgz#ae2d5a729477f289d60dd7f96a6314a22dd6c22a"
192 |
193 | babel-code-frame@^6.22.0:
194 | version "6.26.0"
195 | resolved "https://registry.yarnpkg.com/babel-code-frame/-/babel-code-frame-6.26.0.tgz#63fd43f7dc1e3bb7ce35947db8fe369a3f58c74b"
196 | dependencies:
197 | chalk "^1.1.3"
198 | esutils "^2.0.2"
199 | js-tokens "^3.0.2"
200 |
201 | babel-eslint@^8.0.2:
202 | version "8.2.6"
203 | resolved "https://registry.yarnpkg.com/babel-eslint/-/babel-eslint-8.2.6.tgz#6270d0c73205628067c0f7ae1693a9e797acefd9"
204 | dependencies:
205 | "@babel/code-frame" "7.0.0-beta.44"
206 | "@babel/traverse" "7.0.0-beta.44"
207 | "@babel/types" "7.0.0-beta.44"
208 | babylon "7.0.0-beta.44"
209 | eslint-scope "3.7.1"
210 | eslint-visitor-keys "^1.0.0"
211 |
212 | babylon@7.0.0-beta.44:
213 | version "7.0.0-beta.44"
214 | resolved "https://registry.yarnpkg.com/babylon/-/babylon-7.0.0-beta.44.tgz#89159e15e6e30c5096e22d738d8c0af8a0e8ca1d"
215 |
216 | balanced-match@^1.0.0:
217 | version "1.0.0"
218 | resolved "https://registry.yarnpkg.com/balanced-match/-/balanced-match-1.0.0.tgz#89b4d199ab2bee49de164ea02b89ce462d71b767"
219 |
220 | base@^0.11.1:
221 | version "0.11.2"
222 | resolved "https://registry.yarnpkg.com/base/-/base-0.11.2.tgz#7bde5ced145b6d551a90db87f83c558b4eb48a8f"
223 | dependencies:
224 | cache-base "^1.0.1"
225 | class-utils "^0.3.5"
226 | component-emitter "^1.2.1"
227 | define-property "^1.0.0"
228 | isobject "^3.0.1"
229 | mixin-deep "^1.2.0"
230 | pascalcase "^0.1.1"
231 |
232 | body-parser@1.18.2:
233 | version "1.18.2"
234 | resolved "https://registry.yarnpkg.com/body-parser/-/body-parser-1.18.2.tgz#87678a19d84b47d859b83199bd59bce222b10454"
235 | dependencies:
236 | bytes "3.0.0"
237 | content-type "~1.0.4"
238 | debug "2.6.9"
239 | depd "~1.1.1"
240 | http-errors "~1.6.2"
241 | iconv-lite "0.4.19"
242 | on-finished "~2.3.0"
243 | qs "6.5.1"
244 | raw-body "2.3.2"
245 | type-is "~1.6.15"
246 |
247 | brace-expansion@^1.1.7:
248 | version "1.1.11"
249 | resolved "https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-1.1.11.tgz#3c7fcbf529d87226f3d2f52b966ff5271eb441dd"
250 | dependencies:
251 | balanced-match "^1.0.0"
252 | concat-map "0.0.1"
253 |
254 | braces@^2.3.1:
255 | version "2.3.2"
256 | resolved "https://registry.yarnpkg.com/braces/-/braces-2.3.2.tgz#5979fd3f14cd531565e5fa2df1abfff1dfaee729"
257 | dependencies:
258 | arr-flatten "^1.1.0"
259 | array-unique "^0.3.2"
260 | extend-shallow "^2.0.1"
261 | fill-range "^4.0.0"
262 | isobject "^3.0.1"
263 | repeat-element "^1.1.2"
264 | snapdragon "^0.8.1"
265 | snapdragon-node "^2.0.1"
266 | split-string "^3.0.2"
267 | to-regex "^3.0.1"
268 |
269 | buffer-from@^1.0.0:
270 | version "1.1.1"
271 | resolved "https://registry.yarnpkg.com/buffer-from/-/buffer-from-1.1.1.tgz#32713bc028f75c02fdb710d7c7bcec1f2c6070ef"
272 |
273 | builtin-modules@^1.0.0:
274 | version "1.1.1"
275 | resolved "https://registry.yarnpkg.com/builtin-modules/-/builtin-modules-1.1.1.tgz#270f076c5a72c02f5b65a47df94c5fe3a278892f"
276 |
277 | bytes@3.0.0:
278 | version "3.0.0"
279 | resolved "https://registry.yarnpkg.com/bytes/-/bytes-3.0.0.tgz#d32815404d689699f85a4ea4fa8755dd13a96048"
280 |
281 | cache-base@^1.0.1:
282 | version "1.0.1"
283 | resolved "https://registry.yarnpkg.com/cache-base/-/cache-base-1.0.1.tgz#0a7f46416831c8b662ee36fe4e7c59d76f666ab2"
284 | dependencies:
285 | collection-visit "^1.0.0"
286 | component-emitter "^1.2.1"
287 | get-value "^2.0.6"
288 | has-value "^1.0.0"
289 | isobject "^3.0.1"
290 | set-value "^2.0.0"
291 | to-object-path "^0.3.0"
292 | union-value "^1.0.0"
293 | unset-value "^1.0.0"
294 |
295 | caller-path@^0.1.0:
296 | version "0.1.0"
297 | resolved "https://registry.yarnpkg.com/caller-path/-/caller-path-0.1.0.tgz#94085ef63581ecd3daa92444a8fe94e82577751f"
298 | dependencies:
299 | callsites "^0.2.0"
300 |
301 | callsites@^0.2.0:
302 | version "0.2.0"
303 | resolved "https://registry.yarnpkg.com/callsites/-/callsites-0.2.0.tgz#afab96262910a7f33c19a5775825c69f34e350ca"
304 |
305 | chalk@^1.1.3:
306 | version "1.1.3"
307 | resolved "https://registry.yarnpkg.com/chalk/-/chalk-1.1.3.tgz#a8115c55e4a702fe4d150abd3872822a7e09fc98"
308 | dependencies:
309 | ansi-styles "^2.2.1"
310 | escape-string-regexp "^1.0.2"
311 | has-ansi "^2.0.0"
312 | strip-ansi "^3.0.0"
313 | supports-color "^2.0.0"
314 |
315 | chalk@^2.0.0, chalk@^2.1.0:
316 | version "2.4.1"
317 | resolved "https://registry.yarnpkg.com/chalk/-/chalk-2.4.1.tgz#18c49ab16a037b6eb0152cc83e3471338215b66e"
318 | dependencies:
319 | ansi-styles "^3.2.1"
320 | escape-string-regexp "^1.0.5"
321 | supports-color "^5.3.0"
322 |
323 | chardet@^0.4.0:
324 | version "0.4.2"
325 | resolved "https://registry.yarnpkg.com/chardet/-/chardet-0.4.2.tgz#b5473b33dc97c424e5d98dc87d55d4d8a29c8bf2"
326 |
327 | circular-json@^0.3.1:
328 | version "0.3.3"
329 | resolved "https://registry.yarnpkg.com/circular-json/-/circular-json-0.3.3.tgz#815c99ea84f6809529d2f45791bdf82711352d66"
330 |
331 | class-utils@^0.3.5:
332 | version "0.3.6"
333 | resolved "https://registry.yarnpkg.com/class-utils/-/class-utils-0.3.6.tgz#f93369ae8b9a7ce02fd41faad0ca83033190c463"
334 | dependencies:
335 | arr-union "^3.1.0"
336 | define-property "^0.2.5"
337 | isobject "^3.0.0"
338 | static-extend "^0.1.1"
339 |
340 | cli-cursor@^2.1.0:
341 | version "2.1.0"
342 | resolved "https://registry.yarnpkg.com/cli-cursor/-/cli-cursor-2.1.0.tgz#b35dac376479facc3e94747d41d0d0f5238ffcb5"
343 | dependencies:
344 | restore-cursor "^2.0.0"
345 |
346 | cli-width@^2.0.0:
347 | version "2.2.0"
348 | resolved "https://registry.yarnpkg.com/cli-width/-/cli-width-2.2.0.tgz#ff19ede8a9a5e579324147b0c11f0fbcbabed639"
349 |
350 | co@^4.6.0:
351 | version "4.6.0"
352 | resolved "https://registry.yarnpkg.com/co/-/co-4.6.0.tgz#6ea6bdf3d853ae54ccb8e47bfa0bf3f9031fb184"
353 |
354 | collection-visit@^1.0.0:
355 | version "1.0.0"
356 | resolved "https://registry.yarnpkg.com/collection-visit/-/collection-visit-1.0.0.tgz#4bc0373c164bc3291b4d368c829cf1a80a59dca0"
357 | dependencies:
358 | map-visit "^1.0.0"
359 | object-visit "^1.0.0"
360 |
361 | color-convert@^1.9.0:
362 | version "1.9.2"
363 | resolved "https://registry.yarnpkg.com/color-convert/-/color-convert-1.9.2.tgz#49881b8fba67df12a96bdf3f56c0aab9e7913147"
364 | dependencies:
365 | color-name "1.1.1"
366 |
367 | color-name@1.1.1:
368 | version "1.1.1"
369 | resolved "https://registry.yarnpkg.com/color-name/-/color-name-1.1.1.tgz#4b1415304cf50028ea81643643bd82ea05803689"
370 |
371 | component-emitter@^1.2.1:
372 | version "1.2.1"
373 | resolved "https://registry.yarnpkg.com/component-emitter/-/component-emitter-1.2.1.tgz#137918d6d78283f7df7a6b7c5a63e140e69425e6"
374 |
375 | concat-map@0.0.1:
376 | version "0.0.1"
377 | resolved "https://registry.yarnpkg.com/concat-map/-/concat-map-0.0.1.tgz#d8a96bd77fd68df7793a73036a3ba0d5405d477b"
378 |
379 | concat-stream@^1.6.0:
380 | version "1.6.2"
381 | resolved "https://registry.yarnpkg.com/concat-stream/-/concat-stream-1.6.2.tgz#904bdf194cd3122fc675c77fc4ac3d4ff0fd1a34"
382 | dependencies:
383 | buffer-from "^1.0.0"
384 | inherits "^2.0.3"
385 | readable-stream "^2.2.2"
386 | typedarray "^0.0.6"
387 |
388 | contains-path@^0.1.0:
389 | version "0.1.0"
390 | resolved "https://registry.yarnpkg.com/contains-path/-/contains-path-0.1.0.tgz#fe8cf184ff6670b6baef01a9d4861a5cbec4120a"
391 |
392 | content-disposition@0.5.2:
393 | version "0.5.2"
394 | resolved "https://registry.yarnpkg.com/content-disposition/-/content-disposition-0.5.2.tgz#0cf68bb9ddf5f2be7961c3a85178cb85dba78cb4"
395 |
396 | content-type@~1.0.4:
397 | version "1.0.4"
398 | resolved "https://registry.yarnpkg.com/content-type/-/content-type-1.0.4.tgz#e138cc75e040c727b1966fe5e5f8c9aee256fe3b"
399 |
400 | cookie-signature@1.0.6:
401 | version "1.0.6"
402 | resolved "https://registry.yarnpkg.com/cookie-signature/-/cookie-signature-1.0.6.tgz#e303a882b342cc3ee8ca513a79999734dab3ae2c"
403 |
404 | cookie@0.3.1:
405 | version "0.3.1"
406 | resolved "https://registry.yarnpkg.com/cookie/-/cookie-0.3.1.tgz#e7e0a1f9ef43b4c8ba925c5c5a96e806d16873bb"
407 |
408 | copy-descriptor@^0.1.0:
409 | version "0.1.1"
410 | resolved "https://registry.yarnpkg.com/copy-descriptor/-/copy-descriptor-0.1.1.tgz#676f6eb3c39997c2ee1ac3a924fd6124748f578d"
411 |
412 | core-util-is@~1.0.0:
413 | version "1.0.2"
414 | resolved "https://registry.yarnpkg.com/core-util-is/-/core-util-is-1.0.2.tgz#b5fd54220aa2bc5ab57aab7140c940754503c1a7"
415 |
416 | cross-spawn@^5.1.0:
417 | version "5.1.0"
418 | resolved "https://registry.yarnpkg.com/cross-spawn/-/cross-spawn-5.1.0.tgz#e8bd0efee58fcff6f8f94510a0a554bbfa235449"
419 | dependencies:
420 | lru-cache "^4.0.1"
421 | shebang-command "^1.2.0"
422 | which "^1.2.9"
423 |
424 | debug@2.6.9, debug@^2.2.0, debug@^2.3.3, debug@^2.6.8, debug@^2.6.9:
425 | version "2.6.9"
426 | resolved "https://registry.yarnpkg.com/debug/-/debug-2.6.9.tgz#5d128515df134ff327e90a4c93f4e077a536341f"
427 | dependencies:
428 | ms "2.0.0"
429 |
430 | debug@^3.1.0:
431 | version "3.1.0"
432 | resolved "https://registry.yarnpkg.com/debug/-/debug-3.1.0.tgz#5bb5a0672628b64149566ba16819e61518c67261"
433 | dependencies:
434 | ms "2.0.0"
435 |
436 | decode-uri-component@^0.2.0:
437 | version "0.2.0"
438 | resolved "https://registry.yarnpkg.com/decode-uri-component/-/decode-uri-component-0.2.0.tgz#eb3913333458775cb84cd1a1fae062106bb87545"
439 |
440 | deep-is@~0.1.3:
441 | version "0.1.3"
442 | resolved "https://registry.yarnpkg.com/deep-is/-/deep-is-0.1.3.tgz#b369d6fb5dbc13eecf524f91b070feedc357cf34"
443 |
444 | define-property@^0.2.5:
445 | version "0.2.5"
446 | resolved "https://registry.yarnpkg.com/define-property/-/define-property-0.2.5.tgz#c35b1ef918ec3c990f9a5bc57be04aacec5c8116"
447 | dependencies:
448 | is-descriptor "^0.1.0"
449 |
450 | define-property@^1.0.0:
451 | version "1.0.0"
452 | resolved "https://registry.yarnpkg.com/define-property/-/define-property-1.0.0.tgz#769ebaaf3f4a63aad3af9e8d304c9bbe79bfb0e6"
453 | dependencies:
454 | is-descriptor "^1.0.0"
455 |
456 | define-property@^2.0.2:
457 | version "2.0.2"
458 | resolved "https://registry.yarnpkg.com/define-property/-/define-property-2.0.2.tgz#d459689e8d654ba77e02a817f8710d702cb16e9d"
459 | dependencies:
460 | is-descriptor "^1.0.2"
461 | isobject "^3.0.1"
462 |
463 | del@^2.0.2:
464 | version "2.2.2"
465 | resolved "https://registry.yarnpkg.com/del/-/del-2.2.2.tgz#c12c981d067846c84bcaf862cff930d907ffd1a8"
466 | dependencies:
467 | globby "^5.0.0"
468 | is-path-cwd "^1.0.0"
469 | is-path-in-cwd "^1.0.0"
470 | object-assign "^4.0.1"
471 | pify "^2.0.0"
472 | pinkie-promise "^2.0.0"
473 | rimraf "^2.2.8"
474 |
475 | depd@1.1.1:
476 | version "1.1.1"
477 | resolved "https://registry.yarnpkg.com/depd/-/depd-1.1.1.tgz#5783b4e1c459f06fa5ca27f991f3d06e7a310359"
478 |
479 | depd@~1.1.1, depd@~1.1.2:
480 | version "1.1.2"
481 | resolved "https://registry.yarnpkg.com/depd/-/depd-1.1.2.tgz#9bcd52e14c097763e749b274c4346ed2e560b5a9"
482 |
483 | destroy@~1.0.4:
484 | version "1.0.4"
485 | resolved "https://registry.yarnpkg.com/destroy/-/destroy-1.0.4.tgz#978857442c44749e4206613e37946205826abd80"
486 |
487 | doctrine@1.5.0:
488 | version "1.5.0"
489 | resolved "https://registry.yarnpkg.com/doctrine/-/doctrine-1.5.0.tgz#379dce730f6166f76cefa4e6707a159b02c5a6fa"
490 | dependencies:
491 | esutils "^2.0.2"
492 | isarray "^1.0.0"
493 |
494 | doctrine@^2.1.0:
495 | version "2.1.0"
496 | resolved "https://registry.yarnpkg.com/doctrine/-/doctrine-2.1.0.tgz#5cd01fc101621b42c4cd7f5d1a66243716d3f39d"
497 | dependencies:
498 | esutils "^2.0.2"
499 |
500 | ee-first@1.1.1:
501 | version "1.1.1"
502 | resolved "https://registry.yarnpkg.com/ee-first/-/ee-first-1.1.1.tgz#590c61156b0ae2f4f0255732a158b266bc56b21d"
503 |
504 | encodeurl@~1.0.2:
505 | version "1.0.2"
506 | resolved "https://registry.yarnpkg.com/encodeurl/-/encodeurl-1.0.2.tgz#ad3ff4c86ec2d029322f5a02c3a9a606c95b3f59"
507 |
508 | error-ex@^1.2.0:
509 | version "1.3.2"
510 | resolved "https://registry.yarnpkg.com/error-ex/-/error-ex-1.3.2.tgz#b4ac40648107fdcdcfae242f428bea8a14d4f1bf"
511 | dependencies:
512 | is-arrayish "^0.2.1"
513 |
514 | escape-html@~1.0.3:
515 | version "1.0.3"
516 | resolved "https://registry.yarnpkg.com/escape-html/-/escape-html-1.0.3.tgz#0258eae4d3d0c0974de1c169188ef0051d1d1988"
517 |
518 | escape-string-regexp@^1.0.2, escape-string-regexp@^1.0.5:
519 | version "1.0.5"
520 | resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz#1b61c0562190a8dff6ae3bb2cf0200ca130b86d4"
521 |
522 | eslint-config-airbnb-base@^12.1.0:
523 | version "12.1.0"
524 | resolved "https://registry.yarnpkg.com/eslint-config-airbnb-base/-/eslint-config-airbnb-base-12.1.0.tgz#386441e54a12ccd957b0a92564a4bafebd747944"
525 | dependencies:
526 | eslint-restricted-globals "^0.1.1"
527 |
528 | eslint-config-prettier@^2.9.0:
529 | version "2.9.0"
530 | resolved "https://registry.yarnpkg.com/eslint-config-prettier/-/eslint-config-prettier-2.9.0.tgz#5ecd65174d486c22dff389fe036febf502d468a3"
531 | dependencies:
532 | get-stdin "^5.0.1"
533 |
534 | eslint-import-resolver-jest@^2.1.1:
535 | version "2.1.1"
536 | resolved "https://registry.yarnpkg.com/eslint-import-resolver-jest/-/eslint-import-resolver-jest-2.1.1.tgz#78c1934e3b5b77283326f036e089cc3b9fae6346"
537 | dependencies:
538 | find-root "^1.0.0"
539 | micromatch "^3.1.6"
540 | resolve "^1.5.0"
541 |
542 | eslint-import-resolver-node@^0.3.1:
543 | version "0.3.2"
544 | resolved "https://registry.yarnpkg.com/eslint-import-resolver-node/-/eslint-import-resolver-node-0.3.2.tgz#58f15fb839b8d0576ca980413476aab2472db66a"
545 | dependencies:
546 | debug "^2.6.9"
547 | resolve "^1.5.0"
548 |
549 | eslint-module-utils@^2.2.0:
550 | version "2.2.0"
551 | resolved "https://registry.yarnpkg.com/eslint-module-utils/-/eslint-module-utils-2.2.0.tgz#b270362cd88b1a48ad308976ce7fa54e98411746"
552 | dependencies:
553 | debug "^2.6.8"
554 | pkg-dir "^1.0.0"
555 |
556 | eslint-plugin-flowtype@^2.44.0:
557 | version "2.50.0"
558 | resolved "https://registry.yarnpkg.com/eslint-plugin-flowtype/-/eslint-plugin-flowtype-2.50.0.tgz#953e262fa9b5d0fa76e178604892cf60dfb916da"
559 | dependencies:
560 | lodash "^4.17.10"
561 |
562 | eslint-plugin-import@^2.8.0:
563 | version "2.13.0"
564 | resolved "https://registry.yarnpkg.com/eslint-plugin-import/-/eslint-plugin-import-2.13.0.tgz#df24f241175e312d91662dc91ca84064caec14ed"
565 | dependencies:
566 | contains-path "^0.1.0"
567 | debug "^2.6.8"
568 | doctrine "1.5.0"
569 | eslint-import-resolver-node "^0.3.1"
570 | eslint-module-utils "^2.2.0"
571 | has "^1.0.1"
572 | lodash "^4.17.4"
573 | minimatch "^3.0.3"
574 | read-pkg-up "^2.0.0"
575 | resolve "^1.6.0"
576 |
577 | eslint-plugin-prettier@^2.6.0:
578 | version "2.6.2"
579 | resolved "https://registry.yarnpkg.com/eslint-plugin-prettier/-/eslint-plugin-prettier-2.6.2.tgz#71998c60aedfa2141f7bfcbf9d1c459bf98b4fad"
580 | dependencies:
581 | fast-diff "^1.1.1"
582 | jest-docblock "^21.0.0"
583 |
584 | eslint-restricted-globals@^0.1.1:
585 | version "0.1.1"
586 | resolved "https://registry.yarnpkg.com/eslint-restricted-globals/-/eslint-restricted-globals-0.1.1.tgz#35f0d5cbc64c2e3ed62e93b4b1a7af05ba7ed4d7"
587 |
588 | eslint-scope@3.7.1:
589 | version "3.7.1"
590 | resolved "https://registry.yarnpkg.com/eslint-scope/-/eslint-scope-3.7.1.tgz#3d63c3edfda02e06e01a452ad88caacc7cdcb6e8"
591 | dependencies:
592 | esrecurse "^4.1.0"
593 | estraverse "^4.1.1"
594 |
595 | eslint-scope@^3.7.1:
596 | version "3.7.3"
597 | resolved "https://registry.yarnpkg.com/eslint-scope/-/eslint-scope-3.7.3.tgz#bb507200d3d17f60247636160b4826284b108535"
598 | dependencies:
599 | esrecurse "^4.1.0"
600 | estraverse "^4.1.1"
601 |
602 | eslint-visitor-keys@^1.0.0:
603 | version "1.0.0"
604 | resolved "https://registry.yarnpkg.com/eslint-visitor-keys/-/eslint-visitor-keys-1.0.0.tgz#3f3180fb2e291017716acb4c9d6d5b5c34a6a81d"
605 |
606 | eslint@^4.17.0:
607 | version "4.19.1"
608 | resolved "https://registry.yarnpkg.com/eslint/-/eslint-4.19.1.tgz#32d1d653e1d90408854bfb296f076ec7e186a300"
609 | dependencies:
610 | ajv "^5.3.0"
611 | babel-code-frame "^6.22.0"
612 | chalk "^2.1.0"
613 | concat-stream "^1.6.0"
614 | cross-spawn "^5.1.0"
615 | debug "^3.1.0"
616 | doctrine "^2.1.0"
617 | eslint-scope "^3.7.1"
618 | eslint-visitor-keys "^1.0.0"
619 | espree "^3.5.4"
620 | esquery "^1.0.0"
621 | esutils "^2.0.2"
622 | file-entry-cache "^2.0.0"
623 | functional-red-black-tree "^1.0.1"
624 | glob "^7.1.2"
625 | globals "^11.0.1"
626 | ignore "^3.3.3"
627 | imurmurhash "^0.1.4"
628 | inquirer "^3.0.6"
629 | is-resolvable "^1.0.0"
630 | js-yaml "^3.9.1"
631 | json-stable-stringify-without-jsonify "^1.0.1"
632 | levn "^0.3.0"
633 | lodash "^4.17.4"
634 | minimatch "^3.0.2"
635 | mkdirp "^0.5.1"
636 | natural-compare "^1.4.0"
637 | optionator "^0.8.2"
638 | path-is-inside "^1.0.2"
639 | pluralize "^7.0.0"
640 | progress "^2.0.0"
641 | regexpp "^1.0.1"
642 | require-uncached "^1.0.3"
643 | semver "^5.3.0"
644 | strip-ansi "^4.0.0"
645 | strip-json-comments "~2.0.1"
646 | table "4.0.2"
647 | text-table "~0.2.0"
648 |
649 | espree@^3.5.4:
650 | version "3.5.4"
651 | resolved "https://registry.yarnpkg.com/espree/-/espree-3.5.4.tgz#b0f447187c8a8bed944b815a660bddf5deb5d1a7"
652 | dependencies:
653 | acorn "^5.5.0"
654 | acorn-jsx "^3.0.0"
655 |
656 | esprima@^4.0.0:
657 | version "4.0.1"
658 | resolved "https://registry.yarnpkg.com/esprima/-/esprima-4.0.1.tgz#13b04cdb3e6c5d19df91ab6987a8695619b0aa71"
659 |
660 | esquery@^1.0.0:
661 | version "1.0.1"
662 | resolved "https://registry.yarnpkg.com/esquery/-/esquery-1.0.1.tgz#406c51658b1f5991a5f9b62b1dc25b00e3e5c708"
663 | dependencies:
664 | estraverse "^4.0.0"
665 |
666 | esrecurse@^4.1.0:
667 | version "4.2.1"
668 | resolved "https://registry.yarnpkg.com/esrecurse/-/esrecurse-4.2.1.tgz#007a3b9fdbc2b3bb87e4879ea19c92fdbd3942cf"
669 | dependencies:
670 | estraverse "^4.1.0"
671 |
672 | estraverse@^4.0.0, estraverse@^4.1.0, estraverse@^4.1.1:
673 | version "4.2.0"
674 | resolved "https://registry.yarnpkg.com/estraverse/-/estraverse-4.2.0.tgz#0dee3fed31fcd469618ce7342099fc1afa0bdb13"
675 |
676 | esutils@^2.0.2:
677 | version "2.0.2"
678 | resolved "https://registry.yarnpkg.com/esutils/-/esutils-2.0.2.tgz#0abf4f1caa5bcb1f7a9d8acc6dea4faaa04bac9b"
679 |
680 | etag@~1.8.1:
681 | version "1.8.1"
682 | resolved "https://registry.yarnpkg.com/etag/-/etag-1.8.1.tgz#41ae2eeb65efa62268aebfea83ac7d79299b0887"
683 |
684 | expand-brackets@^2.1.4:
685 | version "2.1.4"
686 | resolved "https://registry.yarnpkg.com/expand-brackets/-/expand-brackets-2.1.4.tgz#b77735e315ce30f6b6eff0f83b04151a22449622"
687 | dependencies:
688 | debug "^2.3.3"
689 | define-property "^0.2.5"
690 | extend-shallow "^2.0.1"
691 | posix-character-classes "^0.1.0"
692 | regex-not "^1.0.0"
693 | snapdragon "^0.8.1"
694 | to-regex "^3.0.1"
695 |
696 | express@^4.16.3:
697 | version "4.16.3"
698 | resolved "https://registry.yarnpkg.com/express/-/express-4.16.3.tgz#6af8a502350db3246ecc4becf6b5a34d22f7ed53"
699 | dependencies:
700 | accepts "~1.3.5"
701 | array-flatten "1.1.1"
702 | body-parser "1.18.2"
703 | content-disposition "0.5.2"
704 | content-type "~1.0.4"
705 | cookie "0.3.1"
706 | cookie-signature "1.0.6"
707 | debug "2.6.9"
708 | depd "~1.1.2"
709 | encodeurl "~1.0.2"
710 | escape-html "~1.0.3"
711 | etag "~1.8.1"
712 | finalhandler "1.1.1"
713 | fresh "0.5.2"
714 | merge-descriptors "1.0.1"
715 | methods "~1.1.2"
716 | on-finished "~2.3.0"
717 | parseurl "~1.3.2"
718 | path-to-regexp "0.1.7"
719 | proxy-addr "~2.0.3"
720 | qs "6.5.1"
721 | range-parser "~1.2.0"
722 | safe-buffer "5.1.1"
723 | send "0.16.2"
724 | serve-static "1.13.2"
725 | setprototypeof "1.1.0"
726 | statuses "~1.4.0"
727 | type-is "~1.6.16"
728 | utils-merge "1.0.1"
729 | vary "~1.1.2"
730 |
731 | extend-shallow@^2.0.1:
732 | version "2.0.1"
733 | resolved "https://registry.yarnpkg.com/extend-shallow/-/extend-shallow-2.0.1.tgz#51af7d614ad9a9f610ea1bafbb989d6b1c56890f"
734 | dependencies:
735 | is-extendable "^0.1.0"
736 |
737 | extend-shallow@^3.0.0, extend-shallow@^3.0.2:
738 | version "3.0.2"
739 | resolved "https://registry.yarnpkg.com/extend-shallow/-/extend-shallow-3.0.2.tgz#26a71aaf073b39fb2127172746131c2704028db8"
740 | dependencies:
741 | assign-symbols "^1.0.0"
742 | is-extendable "^1.0.1"
743 |
744 | external-editor@^2.0.4:
745 | version "2.2.0"
746 | resolved "https://registry.yarnpkg.com/external-editor/-/external-editor-2.2.0.tgz#045511cfd8d133f3846673d1047c154e214ad3d5"
747 | dependencies:
748 | chardet "^0.4.0"
749 | iconv-lite "^0.4.17"
750 | tmp "^0.0.33"
751 |
752 | extglob@^2.0.4:
753 | version "2.0.4"
754 | resolved "https://registry.yarnpkg.com/extglob/-/extglob-2.0.4.tgz#ad00fe4dc612a9232e8718711dc5cb5ab0285543"
755 | dependencies:
756 | array-unique "^0.3.2"
757 | define-property "^1.0.0"
758 | expand-brackets "^2.1.4"
759 | extend-shallow "^2.0.1"
760 | fragment-cache "^0.2.1"
761 | regex-not "^1.0.0"
762 | snapdragon "^0.8.1"
763 | to-regex "^3.0.1"
764 |
765 | fast-deep-equal@^1.0.0:
766 | version "1.1.0"
767 | resolved "https://registry.yarnpkg.com/fast-deep-equal/-/fast-deep-equal-1.1.0.tgz#c053477817c86b51daa853c81e059b733d023614"
768 |
769 | fast-diff@^1.1.1:
770 | version "1.1.2"
771 | resolved "https://registry.yarnpkg.com/fast-diff/-/fast-diff-1.1.2.tgz#4b62c42b8e03de3f848460b639079920695d0154"
772 |
773 | fast-json-stable-stringify@^2.0.0:
774 | version "2.0.0"
775 | resolved "https://registry.yarnpkg.com/fast-json-stable-stringify/-/fast-json-stable-stringify-2.0.0.tgz#d5142c0caee6b1189f87d3a76111064f86c8bbf2"
776 |
777 | fast-levenshtein@~2.0.4:
778 | version "2.0.6"
779 | resolved "https://registry.yarnpkg.com/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz#3d8a5c66883a16a30ca8643e851f19baa7797917"
780 |
781 | figures@^2.0.0:
782 | version "2.0.0"
783 | resolved "https://registry.yarnpkg.com/figures/-/figures-2.0.0.tgz#3ab1a2d2a62c8bfb431a0c94cb797a2fce27c962"
784 | dependencies:
785 | escape-string-regexp "^1.0.5"
786 |
787 | file-entry-cache@^2.0.0:
788 | version "2.0.0"
789 | resolved "https://registry.yarnpkg.com/file-entry-cache/-/file-entry-cache-2.0.0.tgz#c392990c3e684783d838b8c84a45d8a048458361"
790 | dependencies:
791 | flat-cache "^1.2.1"
792 | object-assign "^4.0.1"
793 |
794 | fill-range@^4.0.0:
795 | version "4.0.0"
796 | resolved "https://registry.yarnpkg.com/fill-range/-/fill-range-4.0.0.tgz#d544811d428f98eb06a63dc402d2403c328c38f7"
797 | dependencies:
798 | extend-shallow "^2.0.1"
799 | is-number "^3.0.0"
800 | repeat-string "^1.6.1"
801 | to-regex-range "^2.1.0"
802 |
803 | finalhandler@1.1.1:
804 | version "1.1.1"
805 | resolved "https://registry.yarnpkg.com/finalhandler/-/finalhandler-1.1.1.tgz#eebf4ed840079c83f4249038c9d703008301b105"
806 | dependencies:
807 | debug "2.6.9"
808 | encodeurl "~1.0.2"
809 | escape-html "~1.0.3"
810 | on-finished "~2.3.0"
811 | parseurl "~1.3.2"
812 | statuses "~1.4.0"
813 | unpipe "~1.0.0"
814 |
815 | find-root@^1.0.0:
816 | version "1.1.0"
817 | resolved "https://registry.yarnpkg.com/find-root/-/find-root-1.1.0.tgz#abcfc8ba76f708c42a97b3d685b7e9450bfb9ce4"
818 |
819 | find-up@^1.0.0:
820 | version "1.1.2"
821 | resolved "https://registry.yarnpkg.com/find-up/-/find-up-1.1.2.tgz#6b2e9822b1a2ce0a60ab64d610eccad53cb24d0f"
822 | dependencies:
823 | path-exists "^2.0.0"
824 | pinkie-promise "^2.0.0"
825 |
826 | find-up@^2.0.0:
827 | version "2.1.0"
828 | resolved "https://registry.yarnpkg.com/find-up/-/find-up-2.1.0.tgz#45d1b7e506c717ddd482775a2b77920a3c0c57a7"
829 | dependencies:
830 | locate-path "^2.0.0"
831 |
832 | flat-cache@^1.2.1:
833 | version "1.3.0"
834 | resolved "https://registry.yarnpkg.com/flat-cache/-/flat-cache-1.3.0.tgz#d3030b32b38154f4e3b7e9c709f490f7ef97c481"
835 | dependencies:
836 | circular-json "^0.3.1"
837 | del "^2.0.2"
838 | graceful-fs "^4.1.2"
839 | write "^0.2.1"
840 |
841 | for-in@^1.0.2:
842 | version "1.0.2"
843 | resolved "https://registry.yarnpkg.com/for-in/-/for-in-1.0.2.tgz#81068d295a8142ec0ac726c6e2200c30fb6d5e80"
844 |
845 | forwarded@~0.1.2:
846 | version "0.1.2"
847 | resolved "https://registry.yarnpkg.com/forwarded/-/forwarded-0.1.2.tgz#98c23dab1175657b8c0573e8ceccd91b0ff18c84"
848 |
849 | fragment-cache@^0.2.1:
850 | version "0.2.1"
851 | resolved "https://registry.yarnpkg.com/fragment-cache/-/fragment-cache-0.2.1.tgz#4290fad27f13e89be7f33799c6bc5a0abfff0d19"
852 | dependencies:
853 | map-cache "^0.2.2"
854 |
855 | fresh@0.5.2:
856 | version "0.5.2"
857 | resolved "https://registry.yarnpkg.com/fresh/-/fresh-0.5.2.tgz#3d8cadd90d976569fa835ab1f8e4b23a105605a7"
858 |
859 | fs.realpath@^1.0.0:
860 | version "1.0.0"
861 | resolved "https://registry.yarnpkg.com/fs.realpath/-/fs.realpath-1.0.0.tgz#1504ad2523158caa40db4a2787cb01411994ea4f"
862 |
863 | function-bind@^1.1.1:
864 | version "1.1.1"
865 | resolved "https://registry.yarnpkg.com/function-bind/-/function-bind-1.1.1.tgz#a56899d3ea3c9bab874bb9773b7c5ede92f4895d"
866 |
867 | functional-red-black-tree@^1.0.1:
868 | version "1.0.1"
869 | resolved "https://registry.yarnpkg.com/functional-red-black-tree/-/functional-red-black-tree-1.0.1.tgz#1b0ab3bd553b2a0d6399d29c0e3ea0b252078327"
870 |
871 | get-stdin@^5.0.1:
872 | version "5.0.1"
873 | resolved "https://registry.yarnpkg.com/get-stdin/-/get-stdin-5.0.1.tgz#122e161591e21ff4c52530305693f20e6393a398"
874 |
875 | get-value@^2.0.3, get-value@^2.0.6:
876 | version "2.0.6"
877 | resolved "https://registry.yarnpkg.com/get-value/-/get-value-2.0.6.tgz#dc15ca1c672387ca76bd37ac0a395ba2042a2c28"
878 |
879 | glob@^7.0.3, glob@^7.0.5, glob@^7.1.2:
880 | version "7.1.2"
881 | resolved "https://registry.yarnpkg.com/glob/-/glob-7.1.2.tgz#c19c9df9a028702d678612384a6552404c636d15"
882 | dependencies:
883 | fs.realpath "^1.0.0"
884 | inflight "^1.0.4"
885 | inherits "2"
886 | minimatch "^3.0.4"
887 | once "^1.3.0"
888 | path-is-absolute "^1.0.0"
889 |
890 | globals@^11.0.1, globals@^11.1.0:
891 | version "11.7.0"
892 | resolved "https://registry.yarnpkg.com/globals/-/globals-11.7.0.tgz#a583faa43055b1aca771914bf68258e2fc125673"
893 |
894 | globby@^5.0.0:
895 | version "5.0.0"
896 | resolved "https://registry.yarnpkg.com/globby/-/globby-5.0.0.tgz#ebd84667ca0dbb330b99bcfc68eac2bc54370e0d"
897 | dependencies:
898 | array-union "^1.0.1"
899 | arrify "^1.0.0"
900 | glob "^7.0.3"
901 | object-assign "^4.0.1"
902 | pify "^2.0.0"
903 | pinkie-promise "^2.0.0"
904 |
905 | graceful-fs@^4.1.2:
906 | version "4.1.11"
907 | resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.1.11.tgz#0e8bdfe4d1ddb8854d64e04ea7c00e2a026e5658"
908 |
909 | has-ansi@^2.0.0:
910 | version "2.0.0"
911 | resolved "https://registry.yarnpkg.com/has-ansi/-/has-ansi-2.0.0.tgz#34f5049ce1ecdf2b0649af3ef24e45ed35416d91"
912 | dependencies:
913 | ansi-regex "^2.0.0"
914 |
915 | has-flag@^3.0.0:
916 | version "3.0.0"
917 | resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-3.0.0.tgz#b5d454dc2199ae225699f3467e5a07f3b955bafd"
918 |
919 | has-value@^0.3.1:
920 | version "0.3.1"
921 | resolved "https://registry.yarnpkg.com/has-value/-/has-value-0.3.1.tgz#7b1f58bada62ca827ec0a2078025654845995e1f"
922 | dependencies:
923 | get-value "^2.0.3"
924 | has-values "^0.1.4"
925 | isobject "^2.0.0"
926 |
927 | has-value@^1.0.0:
928 | version "1.0.0"
929 | resolved "https://registry.yarnpkg.com/has-value/-/has-value-1.0.0.tgz#18b281da585b1c5c51def24c930ed29a0be6b177"
930 | dependencies:
931 | get-value "^2.0.6"
932 | has-values "^1.0.0"
933 | isobject "^3.0.0"
934 |
935 | has-values@^0.1.4:
936 | version "0.1.4"
937 | resolved "https://registry.yarnpkg.com/has-values/-/has-values-0.1.4.tgz#6d61de95d91dfca9b9a02089ad384bff8f62b771"
938 |
939 | has-values@^1.0.0:
940 | version "1.0.0"
941 | resolved "https://registry.yarnpkg.com/has-values/-/has-values-1.0.0.tgz#95b0b63fec2146619a6fe57fe75628d5a39efe4f"
942 | dependencies:
943 | is-number "^3.0.0"
944 | kind-of "^4.0.0"
945 |
946 | has@^1.0.1:
947 | version "1.0.3"
948 | resolved "https://registry.yarnpkg.com/has/-/has-1.0.3.tgz#722d7cbfc1f6aa8241f16dd814e011e1f41e8796"
949 | dependencies:
950 | function-bind "^1.1.1"
951 |
952 | hosted-git-info@^2.1.4:
953 | version "2.7.1"
954 | resolved "https://registry.yarnpkg.com/hosted-git-info/-/hosted-git-info-2.7.1.tgz#97f236977bd6e125408930ff6de3eec6281ec047"
955 |
956 | http-errors@1.6.2:
957 | version "1.6.2"
958 | resolved "https://registry.yarnpkg.com/http-errors/-/http-errors-1.6.2.tgz#0a002cc85707192a7e7946ceedc11155f60ec736"
959 | dependencies:
960 | depd "1.1.1"
961 | inherits "2.0.3"
962 | setprototypeof "1.0.3"
963 | statuses ">= 1.3.1 < 2"
964 |
965 | http-errors@~1.6.2:
966 | version "1.6.3"
967 | resolved "https://registry.yarnpkg.com/http-errors/-/http-errors-1.6.3.tgz#8b55680bb4be283a0b5bf4ea2e38580be1d9320d"
968 | dependencies:
969 | depd "~1.1.2"
970 | inherits "2.0.3"
971 | setprototypeof "1.1.0"
972 | statuses ">= 1.4.0 < 2"
973 |
974 | iconv-lite@0.4.19:
975 | version "0.4.19"
976 | resolved "https://registry.yarnpkg.com/iconv-lite/-/iconv-lite-0.4.19.tgz#f7468f60135f5e5dad3399c0a81be9a1603a082b"
977 |
978 | iconv-lite@^0.4.17:
979 | version "0.4.23"
980 | resolved "https://registry.yarnpkg.com/iconv-lite/-/iconv-lite-0.4.23.tgz#297871f63be507adcfbfca715d0cd0eed84e9a63"
981 | dependencies:
982 | safer-buffer ">= 2.1.2 < 3"
983 |
984 | ignore@^3.3.3:
985 | version "3.3.10"
986 | resolved "https://registry.yarnpkg.com/ignore/-/ignore-3.3.10.tgz#0a97fb876986e8081c631160f8f9f389157f0043"
987 |
988 | imurmurhash@^0.1.4:
989 | version "0.1.4"
990 | resolved "https://registry.yarnpkg.com/imurmurhash/-/imurmurhash-0.1.4.tgz#9218b9b2b928a238b13dc4fb6b6d576f231453ea"
991 |
992 | inflight@^1.0.4:
993 | version "1.0.6"
994 | resolved "https://registry.yarnpkg.com/inflight/-/inflight-1.0.6.tgz#49bd6331d7d02d0c09bc910a1075ba8165b56df9"
995 | dependencies:
996 | once "^1.3.0"
997 | wrappy "1"
998 |
999 | inherits@2, inherits@2.0.3, inherits@^2.0.3, inherits@~2.0.3:
1000 | version "2.0.3"
1001 | resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.3.tgz#633c2c83e3da42a502f52466022480f4208261de"
1002 |
1003 | inquirer@^3.0.6:
1004 | version "3.3.0"
1005 | resolved "https://registry.yarnpkg.com/inquirer/-/inquirer-3.3.0.tgz#9dd2f2ad765dcab1ff0443b491442a20ba227dc9"
1006 | dependencies:
1007 | ansi-escapes "^3.0.0"
1008 | chalk "^2.0.0"
1009 | cli-cursor "^2.1.0"
1010 | cli-width "^2.0.0"
1011 | external-editor "^2.0.4"
1012 | figures "^2.0.0"
1013 | lodash "^4.3.0"
1014 | mute-stream "0.0.7"
1015 | run-async "^2.2.0"
1016 | rx-lite "^4.0.8"
1017 | rx-lite-aggregates "^4.0.8"
1018 | string-width "^2.1.0"
1019 | strip-ansi "^4.0.0"
1020 | through "^2.3.6"
1021 |
1022 | invariant@^2.2.0:
1023 | version "2.2.4"
1024 | resolved "https://registry.yarnpkg.com/invariant/-/invariant-2.2.4.tgz#610f3c92c9359ce1db616e538008d23ff35158e6"
1025 | dependencies:
1026 | loose-envify "^1.0.0"
1027 |
1028 | ipaddr.js@1.6.0:
1029 | version "1.6.0"
1030 | resolved "https://registry.yarnpkg.com/ipaddr.js/-/ipaddr.js-1.6.0.tgz#e3fa357b773da619f26e95f049d055c72796f86b"
1031 |
1032 | is-accessor-descriptor@^0.1.6:
1033 | version "0.1.6"
1034 | resolved "https://registry.yarnpkg.com/is-accessor-descriptor/-/is-accessor-descriptor-0.1.6.tgz#a9e12cb3ae8d876727eeef3843f8a0897b5c98d6"
1035 | dependencies:
1036 | kind-of "^3.0.2"
1037 |
1038 | is-accessor-descriptor@^1.0.0:
1039 | version "1.0.0"
1040 | resolved "https://registry.yarnpkg.com/is-accessor-descriptor/-/is-accessor-descriptor-1.0.0.tgz#169c2f6d3df1f992618072365c9b0ea1f6878656"
1041 | dependencies:
1042 | kind-of "^6.0.0"
1043 |
1044 | is-arrayish@^0.2.1:
1045 | version "0.2.1"
1046 | resolved "https://registry.yarnpkg.com/is-arrayish/-/is-arrayish-0.2.1.tgz#77c99840527aa8ecb1a8ba697b80645a7a926a9d"
1047 |
1048 | is-buffer@^1.1.5:
1049 | version "1.1.6"
1050 | resolved "https://registry.yarnpkg.com/is-buffer/-/is-buffer-1.1.6.tgz#efaa2ea9daa0d7ab2ea13a97b2b8ad51fefbe8be"
1051 |
1052 | is-builtin-module@^1.0.0:
1053 | version "1.0.0"
1054 | resolved "https://registry.yarnpkg.com/is-builtin-module/-/is-builtin-module-1.0.0.tgz#540572d34f7ac3119f8f76c30cbc1b1e037affbe"
1055 | dependencies:
1056 | builtin-modules "^1.0.0"
1057 |
1058 | is-data-descriptor@^0.1.4:
1059 | version "0.1.4"
1060 | resolved "https://registry.yarnpkg.com/is-data-descriptor/-/is-data-descriptor-0.1.4.tgz#0b5ee648388e2c860282e793f1856fec3f301b56"
1061 | dependencies:
1062 | kind-of "^3.0.2"
1063 |
1064 | is-data-descriptor@^1.0.0:
1065 | version "1.0.0"
1066 | resolved "https://registry.yarnpkg.com/is-data-descriptor/-/is-data-descriptor-1.0.0.tgz#d84876321d0e7add03990406abbbbd36ba9268c7"
1067 | dependencies:
1068 | kind-of "^6.0.0"
1069 |
1070 | is-descriptor@^0.1.0:
1071 | version "0.1.6"
1072 | resolved "https://registry.yarnpkg.com/is-descriptor/-/is-descriptor-0.1.6.tgz#366d8240dde487ca51823b1ab9f07a10a78251ca"
1073 | dependencies:
1074 | is-accessor-descriptor "^0.1.6"
1075 | is-data-descriptor "^0.1.4"
1076 | kind-of "^5.0.0"
1077 |
1078 | is-descriptor@^1.0.0, is-descriptor@^1.0.2:
1079 | version "1.0.2"
1080 | resolved "https://registry.yarnpkg.com/is-descriptor/-/is-descriptor-1.0.2.tgz#3b159746a66604b04f8c81524ba365c5f14d86ec"
1081 | dependencies:
1082 | is-accessor-descriptor "^1.0.0"
1083 | is-data-descriptor "^1.0.0"
1084 | kind-of "^6.0.2"
1085 |
1086 | is-extendable@^0.1.0, is-extendable@^0.1.1:
1087 | version "0.1.1"
1088 | resolved "https://registry.yarnpkg.com/is-extendable/-/is-extendable-0.1.1.tgz#62b110e289a471418e3ec36a617d472e301dfc89"
1089 |
1090 | is-extendable@^1.0.1:
1091 | version "1.0.1"
1092 | resolved "https://registry.yarnpkg.com/is-extendable/-/is-extendable-1.0.1.tgz#a7470f9e426733d81bd81e1155264e3a3507cab4"
1093 | dependencies:
1094 | is-plain-object "^2.0.4"
1095 |
1096 | is-fullwidth-code-point@^2.0.0:
1097 | version "2.0.0"
1098 | resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz#a3b30a5c4f199183167aaab93beefae3ddfb654f"
1099 |
1100 | is-number@^3.0.0:
1101 | version "3.0.0"
1102 | resolved "https://registry.yarnpkg.com/is-number/-/is-number-3.0.0.tgz#24fd6201a4782cf50561c810276afc7d12d71195"
1103 | dependencies:
1104 | kind-of "^3.0.2"
1105 |
1106 | is-path-cwd@^1.0.0:
1107 | version "1.0.0"
1108 | resolved "https://registry.yarnpkg.com/is-path-cwd/-/is-path-cwd-1.0.0.tgz#d225ec23132e89edd38fda767472e62e65f1106d"
1109 |
1110 | is-path-in-cwd@^1.0.0:
1111 | version "1.0.1"
1112 | resolved "https://registry.yarnpkg.com/is-path-in-cwd/-/is-path-in-cwd-1.0.1.tgz#5ac48b345ef675339bd6c7a48a912110b241cf52"
1113 | dependencies:
1114 | is-path-inside "^1.0.0"
1115 |
1116 | is-path-inside@^1.0.0:
1117 | version "1.0.1"
1118 | resolved "https://registry.yarnpkg.com/is-path-inside/-/is-path-inside-1.0.1.tgz#8ef5b7de50437a3fdca6b4e865ef7aa55cb48036"
1119 | dependencies:
1120 | path-is-inside "^1.0.1"
1121 |
1122 | is-plain-object@^2.0.1, is-plain-object@^2.0.3, is-plain-object@^2.0.4:
1123 | version "2.0.4"
1124 | resolved "https://registry.yarnpkg.com/is-plain-object/-/is-plain-object-2.0.4.tgz#2c163b3fafb1b606d9d17928f05c2a1c38e07677"
1125 | dependencies:
1126 | isobject "^3.0.1"
1127 |
1128 | is-promise@^2.1.0:
1129 | version "2.1.0"
1130 | resolved "https://registry.yarnpkg.com/is-promise/-/is-promise-2.1.0.tgz#79a2a9ece7f096e80f36d2b2f3bc16c1ff4bf3fa"
1131 |
1132 | is-resolvable@^1.0.0:
1133 | version "1.1.0"
1134 | resolved "https://registry.yarnpkg.com/is-resolvable/-/is-resolvable-1.1.0.tgz#fb18f87ce1feb925169c9a407c19318a3206ed88"
1135 |
1136 | is-windows@^1.0.2:
1137 | version "1.0.2"
1138 | resolved "https://registry.yarnpkg.com/is-windows/-/is-windows-1.0.2.tgz#d1850eb9791ecd18e6182ce12a30f396634bb19d"
1139 |
1140 | isarray@1.0.0, isarray@^1.0.0, isarray@~1.0.0:
1141 | version "1.0.0"
1142 | resolved "https://registry.yarnpkg.com/isarray/-/isarray-1.0.0.tgz#bb935d48582cba168c06834957a54a3e07124f11"
1143 |
1144 | isexe@^2.0.0:
1145 | version "2.0.0"
1146 | resolved "https://registry.yarnpkg.com/isexe/-/isexe-2.0.0.tgz#e8fbf374dc556ff8947a10dcb0572d633f2cfa10"
1147 |
1148 | isobject@^2.0.0:
1149 | version "2.1.0"
1150 | resolved "https://registry.yarnpkg.com/isobject/-/isobject-2.1.0.tgz#f065561096a3f1da2ef46272f815c840d87e0c89"
1151 | dependencies:
1152 | isarray "1.0.0"
1153 |
1154 | isobject@^3.0.0, isobject@^3.0.1:
1155 | version "3.0.1"
1156 | resolved "https://registry.yarnpkg.com/isobject/-/isobject-3.0.1.tgz#4e431e92b11a9731636aa1f9c8d1ccbcfdab78df"
1157 |
1158 | jest-docblock@^21.0.0:
1159 | version "21.2.0"
1160 | resolved "https://registry.yarnpkg.com/jest-docblock/-/jest-docblock-21.2.0.tgz#51529c3b30d5fd159da60c27ceedc195faf8d414"
1161 |
1162 | js-tokens@^3.0.0, js-tokens@^3.0.2:
1163 | version "3.0.2"
1164 | resolved "https://registry.yarnpkg.com/js-tokens/-/js-tokens-3.0.2.tgz#9866df395102130e38f7f996bceb65443209c25b"
1165 |
1166 | "js-tokens@^3.0.0 || ^4.0.0":
1167 | version "4.0.0"
1168 | resolved "https://registry.yarnpkg.com/js-tokens/-/js-tokens-4.0.0.tgz#19203fb59991df98e3a287050d4647cdeaf32499"
1169 |
1170 | js-yaml@^3.9.1:
1171 | version "3.12.0"
1172 | resolved "https://registry.yarnpkg.com/js-yaml/-/js-yaml-3.12.0.tgz#eaed656ec8344f10f527c6bfa1b6e2244de167d1"
1173 | dependencies:
1174 | argparse "^1.0.7"
1175 | esprima "^4.0.0"
1176 |
1177 | jsesc@^2.5.1:
1178 | version "2.5.1"
1179 | resolved "https://registry.yarnpkg.com/jsesc/-/jsesc-2.5.1.tgz#e421a2a8e20d6b0819df28908f782526b96dd1fe"
1180 |
1181 | json-schema-traverse@^0.3.0:
1182 | version "0.3.1"
1183 | resolved "https://registry.yarnpkg.com/json-schema-traverse/-/json-schema-traverse-0.3.1.tgz#349a6d44c53a51de89b40805c5d5e59b417d3340"
1184 |
1185 | json-stable-stringify-without-jsonify@^1.0.1:
1186 | version "1.0.1"
1187 | resolved "https://registry.yarnpkg.com/json-stable-stringify-without-jsonify/-/json-stable-stringify-without-jsonify-1.0.1.tgz#9db7b59496ad3f3cfef30a75142d2d930ad72651"
1188 |
1189 | kind-of@^3.0.2, kind-of@^3.0.3, kind-of@^3.2.0:
1190 | version "3.2.2"
1191 | resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-3.2.2.tgz#31ea21a734bab9bbb0f32466d893aea51e4a3c64"
1192 | dependencies:
1193 | is-buffer "^1.1.5"
1194 |
1195 | kind-of@^4.0.0:
1196 | version "4.0.0"
1197 | resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-4.0.0.tgz#20813df3d712928b207378691a45066fae72dd57"
1198 | dependencies:
1199 | is-buffer "^1.1.5"
1200 |
1201 | kind-of@^5.0.0:
1202 | version "5.1.0"
1203 | resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-5.1.0.tgz#729c91e2d857b7a419a1f9aa65685c4c33f5845d"
1204 |
1205 | kind-of@^6.0.0, kind-of@^6.0.2:
1206 | version "6.0.2"
1207 | resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-6.0.2.tgz#01146b36a6218e64e58f3a8d66de5d7fc6f6d051"
1208 |
1209 | levn@^0.3.0, levn@~0.3.0:
1210 | version "0.3.0"
1211 | resolved "https://registry.yarnpkg.com/levn/-/levn-0.3.0.tgz#3b09924edf9f083c0490fdd4c0bc4421e04764ee"
1212 | dependencies:
1213 | prelude-ls "~1.1.2"
1214 | type-check "~0.3.2"
1215 |
1216 | load-json-file@^2.0.0:
1217 | version "2.0.0"
1218 | resolved "https://registry.yarnpkg.com/load-json-file/-/load-json-file-2.0.0.tgz#7947e42149af80d696cbf797bcaabcfe1fe29ca8"
1219 | dependencies:
1220 | graceful-fs "^4.1.2"
1221 | parse-json "^2.2.0"
1222 | pify "^2.0.0"
1223 | strip-bom "^3.0.0"
1224 |
1225 | locate-path@^2.0.0:
1226 | version "2.0.0"
1227 | resolved "https://registry.yarnpkg.com/locate-path/-/locate-path-2.0.0.tgz#2b568b265eec944c6d9c0de9c3dbbbca0354cd8e"
1228 | dependencies:
1229 | p-locate "^2.0.0"
1230 | path-exists "^3.0.0"
1231 |
1232 | lodash@^4.17.10, lodash@^4.17.4, lodash@^4.2.0, lodash@^4.3.0:
1233 | version "4.17.10"
1234 | resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.10.tgz#1b7793cf7259ea38fb3661d4d38b3260af8ae4e7"
1235 |
1236 | loose-envify@^1.0.0:
1237 | version "1.4.0"
1238 | resolved "https://registry.yarnpkg.com/loose-envify/-/loose-envify-1.4.0.tgz#71ee51fa7be4caec1a63839f7e682d8132d30caf"
1239 | dependencies:
1240 | js-tokens "^3.0.0 || ^4.0.0"
1241 |
1242 | lru-cache@^4.0.1:
1243 | version "4.1.3"
1244 | resolved "https://registry.yarnpkg.com/lru-cache/-/lru-cache-4.1.3.tgz#a1175cf3496dfc8436c156c334b4955992bce69c"
1245 | dependencies:
1246 | pseudomap "^1.0.2"
1247 | yallist "^2.1.2"
1248 |
1249 | map-cache@^0.2.2:
1250 | version "0.2.2"
1251 | resolved "https://registry.yarnpkg.com/map-cache/-/map-cache-0.2.2.tgz#c32abd0bd6525d9b051645bb4f26ac5dc98a0dbf"
1252 |
1253 | map-visit@^1.0.0:
1254 | version "1.0.0"
1255 | resolved "https://registry.yarnpkg.com/map-visit/-/map-visit-1.0.0.tgz#ecdca8f13144e660f1b5bd41f12f3479d98dfb8f"
1256 | dependencies:
1257 | object-visit "^1.0.0"
1258 |
1259 | media-typer@0.3.0:
1260 | version "0.3.0"
1261 | resolved "https://registry.yarnpkg.com/media-typer/-/media-typer-0.3.0.tgz#8710d7af0aa626f8fffa1ce00168545263255748"
1262 |
1263 | merge-descriptors@1.0.1:
1264 | version "1.0.1"
1265 | resolved "https://registry.yarnpkg.com/merge-descriptors/-/merge-descriptors-1.0.1.tgz#b00aaa556dd8b44568150ec9d1b953f3f90cbb61"
1266 |
1267 | methods@~1.1.2:
1268 | version "1.1.2"
1269 | resolved "https://registry.yarnpkg.com/methods/-/methods-1.1.2.tgz#5529a4d67654134edcc5266656835b0f851afcee"
1270 |
1271 | micromatch@^3.1.6:
1272 | version "3.1.10"
1273 | resolved "https://registry.yarnpkg.com/micromatch/-/micromatch-3.1.10.tgz#70859bc95c9840952f359a068a3fc49f9ecfac23"
1274 | dependencies:
1275 | arr-diff "^4.0.0"
1276 | array-unique "^0.3.2"
1277 | braces "^2.3.1"
1278 | define-property "^2.0.2"
1279 | extend-shallow "^3.0.2"
1280 | extglob "^2.0.4"
1281 | fragment-cache "^0.2.1"
1282 | kind-of "^6.0.2"
1283 | nanomatch "^1.2.9"
1284 | object.pick "^1.3.0"
1285 | regex-not "^1.0.0"
1286 | snapdragon "^0.8.1"
1287 | to-regex "^3.0.2"
1288 |
1289 | mime-db@~1.33.0:
1290 | version "1.33.0"
1291 | resolved "https://registry.yarnpkg.com/mime-db/-/mime-db-1.33.0.tgz#a3492050a5cb9b63450541e39d9788d2272783db"
1292 |
1293 | mime-types@~2.1.18:
1294 | version "2.1.18"
1295 | resolved "https://registry.yarnpkg.com/mime-types/-/mime-types-2.1.18.tgz#6f323f60a83d11146f831ff11fd66e2fe5503bb8"
1296 | dependencies:
1297 | mime-db "~1.33.0"
1298 |
1299 | mime@1.4.1:
1300 | version "1.4.1"
1301 | resolved "https://registry.yarnpkg.com/mime/-/mime-1.4.1.tgz#121f9ebc49e3766f311a76e1fa1c8003c4b03aa6"
1302 |
1303 | mimic-fn@^1.0.0:
1304 | version "1.2.0"
1305 | resolved "https://registry.yarnpkg.com/mimic-fn/-/mimic-fn-1.2.0.tgz#820c86a39334640e99516928bd03fca88057d022"
1306 |
1307 | minimatch@^3.0.2, minimatch@^3.0.3, minimatch@^3.0.4:
1308 | version "3.0.4"
1309 | resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-3.0.4.tgz#5166e286457f03306064be5497e8dbb0c3d32083"
1310 | dependencies:
1311 | brace-expansion "^1.1.7"
1312 |
1313 | minimist@0.0.8:
1314 | version "0.0.8"
1315 | resolved "https://registry.yarnpkg.com/minimist/-/minimist-0.0.8.tgz#857fcabfc3397d2625b8228262e86aa7a011b05d"
1316 |
1317 | mixin-deep@^1.2.0:
1318 | version "1.3.1"
1319 | resolved "https://registry.yarnpkg.com/mixin-deep/-/mixin-deep-1.3.1.tgz#a49e7268dce1a0d9698e45326c5626df3543d0fe"
1320 | dependencies:
1321 | for-in "^1.0.2"
1322 | is-extendable "^1.0.1"
1323 |
1324 | mkdirp@^0.5.1:
1325 | version "0.5.1"
1326 | resolved "https://registry.yarnpkg.com/mkdirp/-/mkdirp-0.5.1.tgz#30057438eac6cf7f8c4767f38648d6697d75c903"
1327 | dependencies:
1328 | minimist "0.0.8"
1329 |
1330 | ms@2.0.0:
1331 | version "2.0.0"
1332 | resolved "https://registry.yarnpkg.com/ms/-/ms-2.0.0.tgz#5608aeadfc00be6c2901df5f9861788de0d597c8"
1333 |
1334 | mute-stream@0.0.7:
1335 | version "0.0.7"
1336 | resolved "https://registry.yarnpkg.com/mute-stream/-/mute-stream-0.0.7.tgz#3075ce93bc21b8fab43e1bc4da7e8115ed1e7bab"
1337 |
1338 | nanomatch@^1.2.9:
1339 | version "1.2.13"
1340 | resolved "https://registry.yarnpkg.com/nanomatch/-/nanomatch-1.2.13.tgz#b87a8aa4fc0de8fe6be88895b38983ff265bd119"
1341 | dependencies:
1342 | arr-diff "^4.0.0"
1343 | array-unique "^0.3.2"
1344 | define-property "^2.0.2"
1345 | extend-shallow "^3.0.2"
1346 | fragment-cache "^0.2.1"
1347 | is-windows "^1.0.2"
1348 | kind-of "^6.0.2"
1349 | object.pick "^1.3.0"
1350 | regex-not "^1.0.0"
1351 | snapdragon "^0.8.1"
1352 | to-regex "^3.0.1"
1353 |
1354 | natural-compare@^1.4.0:
1355 | version "1.4.0"
1356 | resolved "https://registry.yarnpkg.com/natural-compare/-/natural-compare-1.4.0.tgz#4abebfeed7541f2c27acfb29bdbbd15c8d5ba4f7"
1357 |
1358 | negotiator@0.6.1:
1359 | version "0.6.1"
1360 | resolved "https://registry.yarnpkg.com/negotiator/-/negotiator-0.6.1.tgz#2b327184e8992101177b28563fb5e7102acd0ca9"
1361 |
1362 | normalize-package-data@^2.3.2:
1363 | version "2.4.0"
1364 | resolved "https://registry.yarnpkg.com/normalize-package-data/-/normalize-package-data-2.4.0.tgz#12f95a307d58352075a04907b84ac8be98ac012f"
1365 | dependencies:
1366 | hosted-git-info "^2.1.4"
1367 | is-builtin-module "^1.0.0"
1368 | semver "2 || 3 || 4 || 5"
1369 | validate-npm-package-license "^3.0.1"
1370 |
1371 | object-assign@^4.0.1:
1372 | version "4.1.1"
1373 | resolved "https://registry.yarnpkg.com/object-assign/-/object-assign-4.1.1.tgz#2109adc7965887cfc05cbbd442cac8bfbb360863"
1374 |
1375 | object-copy@^0.1.0:
1376 | version "0.1.0"
1377 | resolved "https://registry.yarnpkg.com/object-copy/-/object-copy-0.1.0.tgz#7e7d858b781bd7c991a41ba975ed3812754e998c"
1378 | dependencies:
1379 | copy-descriptor "^0.1.0"
1380 | define-property "^0.2.5"
1381 | kind-of "^3.0.3"
1382 |
1383 | object-visit@^1.0.0:
1384 | version "1.0.1"
1385 | resolved "https://registry.yarnpkg.com/object-visit/-/object-visit-1.0.1.tgz#f79c4493af0c5377b59fe39d395e41042dd045bb"
1386 | dependencies:
1387 | isobject "^3.0.0"
1388 |
1389 | object.pick@^1.3.0:
1390 | version "1.3.0"
1391 | resolved "https://registry.yarnpkg.com/object.pick/-/object.pick-1.3.0.tgz#87a10ac4c1694bd2e1cbf53591a66141fb5dd747"
1392 | dependencies:
1393 | isobject "^3.0.1"
1394 |
1395 | on-finished@~2.3.0:
1396 | version "2.3.0"
1397 | resolved "https://registry.yarnpkg.com/on-finished/-/on-finished-2.3.0.tgz#20f1336481b083cd75337992a16971aa2d906947"
1398 | dependencies:
1399 | ee-first "1.1.1"
1400 |
1401 | once@^1.3.0:
1402 | version "1.4.0"
1403 | resolved "https://registry.yarnpkg.com/once/-/once-1.4.0.tgz#583b1aa775961d4b113ac17d9c50baef9dd76bd1"
1404 | dependencies:
1405 | wrappy "1"
1406 |
1407 | onetime@^2.0.0:
1408 | version "2.0.1"
1409 | resolved "https://registry.yarnpkg.com/onetime/-/onetime-2.0.1.tgz#067428230fd67443b2794b22bba528b6867962d4"
1410 | dependencies:
1411 | mimic-fn "^1.0.0"
1412 |
1413 | optionator@^0.8.2:
1414 | version "0.8.2"
1415 | resolved "https://registry.yarnpkg.com/optionator/-/optionator-0.8.2.tgz#364c5e409d3f4d6301d6c0b4c05bba50180aeb64"
1416 | dependencies:
1417 | deep-is "~0.1.3"
1418 | fast-levenshtein "~2.0.4"
1419 | levn "~0.3.0"
1420 | prelude-ls "~1.1.2"
1421 | type-check "~0.3.2"
1422 | wordwrap "~1.0.0"
1423 |
1424 | os-tmpdir@~1.0.2:
1425 | version "1.0.2"
1426 | resolved "https://registry.yarnpkg.com/os-tmpdir/-/os-tmpdir-1.0.2.tgz#bbe67406c79aa85c5cfec766fe5734555dfa1274"
1427 |
1428 | p-limit@^1.1.0:
1429 | version "1.3.0"
1430 | resolved "https://registry.yarnpkg.com/p-limit/-/p-limit-1.3.0.tgz#b86bd5f0c25690911c7590fcbfc2010d54b3ccb8"
1431 | dependencies:
1432 | p-try "^1.0.0"
1433 |
1434 | p-locate@^2.0.0:
1435 | version "2.0.0"
1436 | resolved "https://registry.yarnpkg.com/p-locate/-/p-locate-2.0.0.tgz#20a0103b222a70c8fd39cc2e580680f3dde5ec43"
1437 | dependencies:
1438 | p-limit "^1.1.0"
1439 |
1440 | p-try@^1.0.0:
1441 | version "1.0.0"
1442 | resolved "https://registry.yarnpkg.com/p-try/-/p-try-1.0.0.tgz#cbc79cdbaf8fd4228e13f621f2b1a237c1b207b3"
1443 |
1444 | parse-json@^2.2.0:
1445 | version "2.2.0"
1446 | resolved "https://registry.yarnpkg.com/parse-json/-/parse-json-2.2.0.tgz#f480f40434ef80741f8469099f8dea18f55a4dc9"
1447 | dependencies:
1448 | error-ex "^1.2.0"
1449 |
1450 | parseurl@~1.3.2:
1451 | version "1.3.2"
1452 | resolved "https://registry.yarnpkg.com/parseurl/-/parseurl-1.3.2.tgz#fc289d4ed8993119460c156253262cdc8de65bf3"
1453 |
1454 | pascalcase@^0.1.1:
1455 | version "0.1.1"
1456 | resolved "https://registry.yarnpkg.com/pascalcase/-/pascalcase-0.1.1.tgz#b363e55e8006ca6fe21784d2db22bd15d7917f14"
1457 |
1458 | path-exists@^2.0.0:
1459 | version "2.1.0"
1460 | resolved "https://registry.yarnpkg.com/path-exists/-/path-exists-2.1.0.tgz#0feb6c64f0fc518d9a754dd5efb62c7022761f4b"
1461 | dependencies:
1462 | pinkie-promise "^2.0.0"
1463 |
1464 | path-exists@^3.0.0:
1465 | version "3.0.0"
1466 | resolved "https://registry.yarnpkg.com/path-exists/-/path-exists-3.0.0.tgz#ce0ebeaa5f78cb18925ea7d810d7b59b010fd515"
1467 |
1468 | path-is-absolute@^1.0.0:
1469 | version "1.0.1"
1470 | resolved "https://registry.yarnpkg.com/path-is-absolute/-/path-is-absolute-1.0.1.tgz#174b9268735534ffbc7ace6bf53a5a9e1b5c5f5f"
1471 |
1472 | path-is-inside@^1.0.1, path-is-inside@^1.0.2:
1473 | version "1.0.2"
1474 | resolved "https://registry.yarnpkg.com/path-is-inside/-/path-is-inside-1.0.2.tgz#365417dede44430d1c11af61027facf074bdfc53"
1475 |
1476 | path-parse@^1.0.5:
1477 | version "1.0.6"
1478 | resolved "https://registry.yarnpkg.com/path-parse/-/path-parse-1.0.6.tgz#d62dbb5679405d72c4737ec58600e9ddcf06d24c"
1479 |
1480 | path-to-regexp@0.1.7:
1481 | version "0.1.7"
1482 | resolved "https://registry.yarnpkg.com/path-to-regexp/-/path-to-regexp-0.1.7.tgz#df604178005f522f15eb4490e7247a1bfaa67f8c"
1483 |
1484 | path-type@^2.0.0:
1485 | version "2.0.0"
1486 | resolved "https://registry.yarnpkg.com/path-type/-/path-type-2.0.0.tgz#f012ccb8415b7096fc2daa1054c3d72389594c73"
1487 | dependencies:
1488 | pify "^2.0.0"
1489 |
1490 | pify@^2.0.0:
1491 | version "2.3.0"
1492 | resolved "https://registry.yarnpkg.com/pify/-/pify-2.3.0.tgz#ed141a6ac043a849ea588498e7dca8b15330e90c"
1493 |
1494 | pinkie-promise@^2.0.0:
1495 | version "2.0.1"
1496 | resolved "https://registry.yarnpkg.com/pinkie-promise/-/pinkie-promise-2.0.1.tgz#2135d6dfa7a358c069ac9b178776288228450ffa"
1497 | dependencies:
1498 | pinkie "^2.0.0"
1499 |
1500 | pinkie@^2.0.0:
1501 | version "2.0.4"
1502 | resolved "https://registry.yarnpkg.com/pinkie/-/pinkie-2.0.4.tgz#72556b80cfa0d48a974e80e77248e80ed4f7f870"
1503 |
1504 | pkg-dir@^1.0.0:
1505 | version "1.0.0"
1506 | resolved "https://registry.yarnpkg.com/pkg-dir/-/pkg-dir-1.0.0.tgz#7a4b508a8d5bb2d629d447056ff4e9c9314cf3d4"
1507 | dependencies:
1508 | find-up "^1.0.0"
1509 |
1510 | pluralize@^7.0.0:
1511 | version "7.0.0"
1512 | resolved "https://registry.yarnpkg.com/pluralize/-/pluralize-7.0.0.tgz#298b89df8b93b0221dbf421ad2b1b1ea23fc6777"
1513 |
1514 | posix-character-classes@^0.1.0:
1515 | version "0.1.1"
1516 | resolved "https://registry.yarnpkg.com/posix-character-classes/-/posix-character-classes-0.1.1.tgz#01eac0fe3b5af71a2a6c02feabb8c1fef7e00eab"
1517 |
1518 | prelude-ls@~1.1.2:
1519 | version "1.1.2"
1520 | resolved "https://registry.yarnpkg.com/prelude-ls/-/prelude-ls-1.1.2.tgz#21932a549f5e52ffd9a827f570e04be62a97da54"
1521 |
1522 | prettier@^1.10.2:
1523 | version "1.14.2"
1524 | resolved "https://registry.yarnpkg.com/prettier/-/prettier-1.14.2.tgz#0ac1c6e1a90baa22a62925f41963c841983282f9"
1525 |
1526 | process-nextick-args@~2.0.0:
1527 | version "2.0.0"
1528 | resolved "https://registry.yarnpkg.com/process-nextick-args/-/process-nextick-args-2.0.0.tgz#a37d732f4271b4ab1ad070d35508e8290788ffaa"
1529 |
1530 | progress@^2.0.0:
1531 | version "2.0.0"
1532 | resolved "https://registry.yarnpkg.com/progress/-/progress-2.0.0.tgz#8a1be366bf8fc23db2bd23f10c6fe920b4389d1f"
1533 |
1534 | proxy-addr@~2.0.3:
1535 | version "2.0.3"
1536 | resolved "https://registry.yarnpkg.com/proxy-addr/-/proxy-addr-2.0.3.tgz#355f262505a621646b3130a728eb647e22055341"
1537 | dependencies:
1538 | forwarded "~0.1.2"
1539 | ipaddr.js "1.6.0"
1540 |
1541 | pseudomap@^1.0.2:
1542 | version "1.0.2"
1543 | resolved "https://registry.yarnpkg.com/pseudomap/-/pseudomap-1.0.2.tgz#f052a28da70e618917ef0a8ac34c1ae5a68286b3"
1544 |
1545 | qs@6.5.1:
1546 | version "6.5.1"
1547 | resolved "https://registry.yarnpkg.com/qs/-/qs-6.5.1.tgz#349cdf6eef89ec45c12d7d5eb3fc0c870343a6d8"
1548 |
1549 | range-parser@~1.2.0:
1550 | version "1.2.0"
1551 | resolved "https://registry.yarnpkg.com/range-parser/-/range-parser-1.2.0.tgz#f49be6b487894ddc40dcc94a322f611092e00d5e"
1552 |
1553 | raw-body@2.3.2:
1554 | version "2.3.2"
1555 | resolved "https://registry.yarnpkg.com/raw-body/-/raw-body-2.3.2.tgz#bcd60c77d3eb93cde0050295c3f379389bc88f89"
1556 | dependencies:
1557 | bytes "3.0.0"
1558 | http-errors "1.6.2"
1559 | iconv-lite "0.4.19"
1560 | unpipe "1.0.0"
1561 |
1562 | read-pkg-up@^2.0.0:
1563 | version "2.0.0"
1564 | resolved "https://registry.yarnpkg.com/read-pkg-up/-/read-pkg-up-2.0.0.tgz#6b72a8048984e0c41e79510fd5e9fa99b3b549be"
1565 | dependencies:
1566 | find-up "^2.0.0"
1567 | read-pkg "^2.0.0"
1568 |
1569 | read-pkg@^2.0.0:
1570 | version "2.0.0"
1571 | resolved "https://registry.yarnpkg.com/read-pkg/-/read-pkg-2.0.0.tgz#8ef1c0623c6a6db0dc6713c4bfac46332b2368f8"
1572 | dependencies:
1573 | load-json-file "^2.0.0"
1574 | normalize-package-data "^2.3.2"
1575 | path-type "^2.0.0"
1576 |
1577 | readable-stream@^2.2.2:
1578 | version "2.3.6"
1579 | resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-2.3.6.tgz#b11c27d88b8ff1fbe070643cf94b0c79ae1b0aaf"
1580 | dependencies:
1581 | core-util-is "~1.0.0"
1582 | inherits "~2.0.3"
1583 | isarray "~1.0.0"
1584 | process-nextick-args "~2.0.0"
1585 | safe-buffer "~5.1.1"
1586 | string_decoder "~1.1.1"
1587 | util-deprecate "~1.0.1"
1588 |
1589 | regex-not@^1.0.0, regex-not@^1.0.2:
1590 | version "1.0.2"
1591 | resolved "https://registry.yarnpkg.com/regex-not/-/regex-not-1.0.2.tgz#1f4ece27e00b0b65e0247a6810e6a85d83a5752c"
1592 | dependencies:
1593 | extend-shallow "^3.0.2"
1594 | safe-regex "^1.1.0"
1595 |
1596 | regexpp@^1.0.1:
1597 | version "1.1.0"
1598 | resolved "https://registry.yarnpkg.com/regexpp/-/regexpp-1.1.0.tgz#0e3516dd0b7904f413d2d4193dce4618c3a689ab"
1599 |
1600 | repeat-element@^1.1.2:
1601 | version "1.1.2"
1602 | resolved "https://registry.yarnpkg.com/repeat-element/-/repeat-element-1.1.2.tgz#ef089a178d1483baae4d93eb98b4f9e4e11d990a"
1603 |
1604 | repeat-string@^1.6.1:
1605 | version "1.6.1"
1606 | resolved "https://registry.yarnpkg.com/repeat-string/-/repeat-string-1.6.1.tgz#8dcae470e1c88abc2d600fff4a776286da75e637"
1607 |
1608 | require-uncached@^1.0.3:
1609 | version "1.0.3"
1610 | resolved "https://registry.yarnpkg.com/require-uncached/-/require-uncached-1.0.3.tgz#4e0d56d6c9662fd31e43011c4b95aa49955421d3"
1611 | dependencies:
1612 | caller-path "^0.1.0"
1613 | resolve-from "^1.0.0"
1614 |
1615 | resolve-from@^1.0.0:
1616 | version "1.0.1"
1617 | resolved "https://registry.yarnpkg.com/resolve-from/-/resolve-from-1.0.1.tgz#26cbfe935d1aeeeabb29bc3fe5aeb01e93d44226"
1618 |
1619 | resolve-url@^0.2.1:
1620 | version "0.2.1"
1621 | resolved "https://registry.yarnpkg.com/resolve-url/-/resolve-url-0.2.1.tgz#2c637fe77c893afd2a663fe21aa9080068e2052a"
1622 |
1623 | resolve@^1.5.0, resolve@^1.6.0:
1624 | version "1.8.1"
1625 | resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.8.1.tgz#82f1ec19a423ac1fbd080b0bab06ba36e84a7a26"
1626 | dependencies:
1627 | path-parse "^1.0.5"
1628 |
1629 | restore-cursor@^2.0.0:
1630 | version "2.0.0"
1631 | resolved "https://registry.yarnpkg.com/restore-cursor/-/restore-cursor-2.0.0.tgz#9f7ee287f82fd326d4fd162923d62129eee0dfaf"
1632 | dependencies:
1633 | onetime "^2.0.0"
1634 | signal-exit "^3.0.2"
1635 |
1636 | ret@~0.1.10:
1637 | version "0.1.15"
1638 | resolved "https://registry.yarnpkg.com/ret/-/ret-0.1.15.tgz#b8a4825d5bdb1fc3f6f53c2bc33f81388681c7bc"
1639 |
1640 | rimraf@^2.2.8:
1641 | version "2.6.2"
1642 | resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-2.6.2.tgz#2ed8150d24a16ea8651e6d6ef0f47c4158ce7a36"
1643 | dependencies:
1644 | glob "^7.0.5"
1645 |
1646 | run-async@^2.2.0:
1647 | version "2.3.0"
1648 | resolved "https://registry.yarnpkg.com/run-async/-/run-async-2.3.0.tgz#0371ab4ae0bdd720d4166d7dfda64ff7a445a6c0"
1649 | dependencies:
1650 | is-promise "^2.1.0"
1651 |
1652 | rx-lite-aggregates@^4.0.8:
1653 | version "4.0.8"
1654 | resolved "https://registry.yarnpkg.com/rx-lite-aggregates/-/rx-lite-aggregates-4.0.8.tgz#753b87a89a11c95467c4ac1626c4efc4e05c67be"
1655 | dependencies:
1656 | rx-lite "*"
1657 |
1658 | rx-lite@*, rx-lite@^4.0.8:
1659 | version "4.0.8"
1660 | resolved "https://registry.yarnpkg.com/rx-lite/-/rx-lite-4.0.8.tgz#0b1e11af8bc44836f04a6407e92da42467b79444"
1661 |
1662 | safe-buffer@5.1.1:
1663 | version "5.1.1"
1664 | resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.1.1.tgz#893312af69b2123def71f57889001671eeb2c853"
1665 |
1666 | safe-buffer@~5.1.0, safe-buffer@~5.1.1:
1667 | version "5.1.2"
1668 | resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.1.2.tgz#991ec69d296e0313747d59bdfd2b745c35f8828d"
1669 |
1670 | safe-regex@^1.1.0:
1671 | version "1.1.0"
1672 | resolved "https://registry.yarnpkg.com/safe-regex/-/safe-regex-1.1.0.tgz#40a3669f3b077d1e943d44629e157dd48023bf2e"
1673 | dependencies:
1674 | ret "~0.1.10"
1675 |
1676 | "safer-buffer@>= 2.1.2 < 3":
1677 | version "2.1.2"
1678 | resolved "https://registry.yarnpkg.com/safer-buffer/-/safer-buffer-2.1.2.tgz#44fa161b0187b9549dd84bb91802f9bd8385cd6a"
1679 |
1680 | "semver@2 || 3 || 4 || 5", semver@^5.3.0:
1681 | version "5.5.0"
1682 | resolved "https://registry.yarnpkg.com/semver/-/semver-5.5.0.tgz#dc4bbc7a6ca9d916dee5d43516f0092b58f7b8ab"
1683 |
1684 | send@0.16.2:
1685 | version "0.16.2"
1686 | resolved "https://registry.yarnpkg.com/send/-/send-0.16.2.tgz#6ecca1e0f8c156d141597559848df64730a6bbc1"
1687 | dependencies:
1688 | debug "2.6.9"
1689 | depd "~1.1.2"
1690 | destroy "~1.0.4"
1691 | encodeurl "~1.0.2"
1692 | escape-html "~1.0.3"
1693 | etag "~1.8.1"
1694 | fresh "0.5.2"
1695 | http-errors "~1.6.2"
1696 | mime "1.4.1"
1697 | ms "2.0.0"
1698 | on-finished "~2.3.0"
1699 | range-parser "~1.2.0"
1700 | statuses "~1.4.0"
1701 |
1702 | serve-static@1.13.2:
1703 | version "1.13.2"
1704 | resolved "https://registry.yarnpkg.com/serve-static/-/serve-static-1.13.2.tgz#095e8472fd5b46237db50ce486a43f4b86c6cec1"
1705 | dependencies:
1706 | encodeurl "~1.0.2"
1707 | escape-html "~1.0.3"
1708 | parseurl "~1.3.2"
1709 | send "0.16.2"
1710 |
1711 | set-value@^0.4.3:
1712 | version "0.4.3"
1713 | resolved "https://registry.yarnpkg.com/set-value/-/set-value-0.4.3.tgz#7db08f9d3d22dc7f78e53af3c3bf4666ecdfccf1"
1714 | dependencies:
1715 | extend-shallow "^2.0.1"
1716 | is-extendable "^0.1.1"
1717 | is-plain-object "^2.0.1"
1718 | to-object-path "^0.3.0"
1719 |
1720 | set-value@^2.0.0:
1721 | version "2.0.0"
1722 | resolved "https://registry.yarnpkg.com/set-value/-/set-value-2.0.0.tgz#71ae4a88f0feefbbf52d1ea604f3fb315ebb6274"
1723 | dependencies:
1724 | extend-shallow "^2.0.1"
1725 | is-extendable "^0.1.1"
1726 | is-plain-object "^2.0.3"
1727 | split-string "^3.0.1"
1728 |
1729 | setprototypeof@1.0.3:
1730 | version "1.0.3"
1731 | resolved "https://registry.yarnpkg.com/setprototypeof/-/setprototypeof-1.0.3.tgz#66567e37043eeb4f04d91bd658c0cbefb55b8e04"
1732 |
1733 | setprototypeof@1.1.0:
1734 | version "1.1.0"
1735 | resolved "https://registry.yarnpkg.com/setprototypeof/-/setprototypeof-1.1.0.tgz#d0bd85536887b6fe7c0d818cb962d9d91c54e656"
1736 |
1737 | shebang-command@^1.2.0:
1738 | version "1.2.0"
1739 | resolved "https://registry.yarnpkg.com/shebang-command/-/shebang-command-1.2.0.tgz#44aac65b695b03398968c39f363fee5deafdf1ea"
1740 | dependencies:
1741 | shebang-regex "^1.0.0"
1742 |
1743 | shebang-regex@^1.0.0:
1744 | version "1.0.0"
1745 | resolved "https://registry.yarnpkg.com/shebang-regex/-/shebang-regex-1.0.0.tgz#da42f49740c0b42db2ca9728571cb190c98efea3"
1746 |
1747 | signal-exit@^3.0.2:
1748 | version "3.0.2"
1749 | resolved "https://registry.yarnpkg.com/signal-exit/-/signal-exit-3.0.2.tgz#b5fdc08f1287ea1178628e415e25132b73646c6d"
1750 |
1751 | slice-ansi@1.0.0:
1752 | version "1.0.0"
1753 | resolved "https://registry.yarnpkg.com/slice-ansi/-/slice-ansi-1.0.0.tgz#044f1a49d8842ff307aad6b505ed178bd950134d"
1754 | dependencies:
1755 | is-fullwidth-code-point "^2.0.0"
1756 |
1757 | snapdragon-node@^2.0.1:
1758 | version "2.1.1"
1759 | resolved "https://registry.yarnpkg.com/snapdragon-node/-/snapdragon-node-2.1.1.tgz#6c175f86ff14bdb0724563e8f3c1b021a286853b"
1760 | dependencies:
1761 | define-property "^1.0.0"
1762 | isobject "^3.0.0"
1763 | snapdragon-util "^3.0.1"
1764 |
1765 | snapdragon-util@^3.0.1:
1766 | version "3.0.1"
1767 | resolved "https://registry.yarnpkg.com/snapdragon-util/-/snapdragon-util-3.0.1.tgz#f956479486f2acd79700693f6f7b805e45ab56e2"
1768 | dependencies:
1769 | kind-of "^3.2.0"
1770 |
1771 | snapdragon@^0.8.1:
1772 | version "0.8.2"
1773 | resolved "https://registry.yarnpkg.com/snapdragon/-/snapdragon-0.8.2.tgz#64922e7c565b0e14204ba1aa7d6964278d25182d"
1774 | dependencies:
1775 | base "^0.11.1"
1776 | debug "^2.2.0"
1777 | define-property "^0.2.5"
1778 | extend-shallow "^2.0.1"
1779 | map-cache "^0.2.2"
1780 | source-map "^0.5.6"
1781 | source-map-resolve "^0.5.0"
1782 | use "^3.1.0"
1783 |
1784 | source-map-resolve@^0.5.0:
1785 | version "0.5.2"
1786 | resolved "https://registry.yarnpkg.com/source-map-resolve/-/source-map-resolve-0.5.2.tgz#72e2cc34095543e43b2c62b2c4c10d4a9054f259"
1787 | dependencies:
1788 | atob "^2.1.1"
1789 | decode-uri-component "^0.2.0"
1790 | resolve-url "^0.2.1"
1791 | source-map-url "^0.4.0"
1792 | urix "^0.1.0"
1793 |
1794 | source-map-url@^0.4.0:
1795 | version "0.4.0"
1796 | resolved "https://registry.yarnpkg.com/source-map-url/-/source-map-url-0.4.0.tgz#3e935d7ddd73631b97659956d55128e87b5084a3"
1797 |
1798 | source-map@^0.5.0, source-map@^0.5.6:
1799 | version "0.5.7"
1800 | resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.5.7.tgz#8a039d2d1021d22d1ea14c80d8ea468ba2ef3fcc"
1801 |
1802 | spdx-correct@^3.0.0:
1803 | version "3.0.0"
1804 | resolved "https://registry.yarnpkg.com/spdx-correct/-/spdx-correct-3.0.0.tgz#05a5b4d7153a195bc92c3c425b69f3b2a9524c82"
1805 | dependencies:
1806 | spdx-expression-parse "^3.0.0"
1807 | spdx-license-ids "^3.0.0"
1808 |
1809 | spdx-exceptions@^2.1.0:
1810 | version "2.1.0"
1811 | resolved "https://registry.yarnpkg.com/spdx-exceptions/-/spdx-exceptions-2.1.0.tgz#2c7ae61056c714a5b9b9b2b2af7d311ef5c78fe9"
1812 |
1813 | spdx-expression-parse@^3.0.0:
1814 | version "3.0.0"
1815 | resolved "https://registry.yarnpkg.com/spdx-expression-parse/-/spdx-expression-parse-3.0.0.tgz#99e119b7a5da00e05491c9fa338b7904823b41d0"
1816 | dependencies:
1817 | spdx-exceptions "^2.1.0"
1818 | spdx-license-ids "^3.0.0"
1819 |
1820 | spdx-license-ids@^3.0.0:
1821 | version "3.0.0"
1822 | resolved "https://registry.yarnpkg.com/spdx-license-ids/-/spdx-license-ids-3.0.0.tgz#7a7cd28470cc6d3a1cfe6d66886f6bc430d3ac87"
1823 |
1824 | split-string@^3.0.1, split-string@^3.0.2:
1825 | version "3.1.0"
1826 | resolved "https://registry.yarnpkg.com/split-string/-/split-string-3.1.0.tgz#7cb09dda3a86585705c64b39a6466038682e8fe2"
1827 | dependencies:
1828 | extend-shallow "^3.0.0"
1829 |
1830 | sprintf-js@~1.0.2:
1831 | version "1.0.3"
1832 | resolved "https://registry.yarnpkg.com/sprintf-js/-/sprintf-js-1.0.3.tgz#04e6926f662895354f3dd015203633b857297e2c"
1833 |
1834 | static-extend@^0.1.1:
1835 | version "0.1.2"
1836 | resolved "https://registry.yarnpkg.com/static-extend/-/static-extend-0.1.2.tgz#60809c39cbff55337226fd5e0b520f341f1fb5c6"
1837 | dependencies:
1838 | define-property "^0.2.5"
1839 | object-copy "^0.1.0"
1840 |
1841 | "statuses@>= 1.3.1 < 2", "statuses@>= 1.4.0 < 2":
1842 | version "1.5.0"
1843 | resolved "https://registry.yarnpkg.com/statuses/-/statuses-1.5.0.tgz#161c7dac177659fd9811f43771fa99381478628c"
1844 |
1845 | statuses@~1.4.0:
1846 | version "1.4.0"
1847 | resolved "https://registry.yarnpkg.com/statuses/-/statuses-1.4.0.tgz#bb73d446da2796106efcc1b601a253d6c46bd087"
1848 |
1849 | string-width@^2.1.0, string-width@^2.1.1:
1850 | version "2.1.1"
1851 | resolved "https://registry.yarnpkg.com/string-width/-/string-width-2.1.1.tgz#ab93f27a8dc13d28cac815c462143a6d9012ae9e"
1852 | dependencies:
1853 | is-fullwidth-code-point "^2.0.0"
1854 | strip-ansi "^4.0.0"
1855 |
1856 | string_decoder@~1.1.1:
1857 | version "1.1.1"
1858 | resolved "https://registry.yarnpkg.com/string_decoder/-/string_decoder-1.1.1.tgz#9cf1611ba62685d7030ae9e4ba34149c3af03fc8"
1859 | dependencies:
1860 | safe-buffer "~5.1.0"
1861 |
1862 | strip-ansi@^3.0.0:
1863 | version "3.0.1"
1864 | resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-3.0.1.tgz#6a385fb8853d952d5ff05d0e8aaf94278dc63dcf"
1865 | dependencies:
1866 | ansi-regex "^2.0.0"
1867 |
1868 | strip-ansi@^4.0.0:
1869 | version "4.0.0"
1870 | resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-4.0.0.tgz#a8479022eb1ac368a871389b635262c505ee368f"
1871 | dependencies:
1872 | ansi-regex "^3.0.0"
1873 |
1874 | strip-bom@^3.0.0:
1875 | version "3.0.0"
1876 | resolved "https://registry.yarnpkg.com/strip-bom/-/strip-bom-3.0.0.tgz#2334c18e9c759f7bdd56fdef7e9ae3d588e68ed3"
1877 |
1878 | strip-json-comments@~2.0.1:
1879 | version "2.0.1"
1880 | resolved "https://registry.yarnpkg.com/strip-json-comments/-/strip-json-comments-2.0.1.tgz#3c531942e908c2697c0ec344858c286c7ca0a60a"
1881 |
1882 | supports-color@^2.0.0:
1883 | version "2.0.0"
1884 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-2.0.0.tgz#535d045ce6b6363fa40117084629995e9df324c7"
1885 |
1886 | supports-color@^5.3.0:
1887 | version "5.4.0"
1888 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-5.4.0.tgz#1c6b337402c2137605efe19f10fec390f6faab54"
1889 | dependencies:
1890 | has-flag "^3.0.0"
1891 |
1892 | table@4.0.2:
1893 | version "4.0.2"
1894 | resolved "https://registry.yarnpkg.com/table/-/table-4.0.2.tgz#a33447375391e766ad34d3486e6e2aedc84d2e36"
1895 | dependencies:
1896 | ajv "^5.2.3"
1897 | ajv-keywords "^2.1.0"
1898 | chalk "^2.1.0"
1899 | lodash "^4.17.4"
1900 | slice-ansi "1.0.0"
1901 | string-width "^2.1.1"
1902 |
1903 | text-table@~0.2.0:
1904 | version "0.2.0"
1905 | resolved "https://registry.yarnpkg.com/text-table/-/text-table-0.2.0.tgz#7f5ee823ae805207c00af2df4a84ec3fcfa570b4"
1906 |
1907 | through@^2.3.6:
1908 | version "2.3.8"
1909 | resolved "https://registry.yarnpkg.com/through/-/through-2.3.8.tgz#0dd4c9ffaabc357960b1b724115d7e0e86a2e1f5"
1910 |
1911 | tmp@^0.0.33:
1912 | version "0.0.33"
1913 | resolved "https://registry.yarnpkg.com/tmp/-/tmp-0.0.33.tgz#6d34335889768d21b2bcda0aa277ced3b1bfadf9"
1914 | dependencies:
1915 | os-tmpdir "~1.0.2"
1916 |
1917 | to-fast-properties@^2.0.0:
1918 | version "2.0.0"
1919 | resolved "https://registry.yarnpkg.com/to-fast-properties/-/to-fast-properties-2.0.0.tgz#dc5e698cbd079265bc73e0377681a4e4e83f616e"
1920 |
1921 | to-object-path@^0.3.0:
1922 | version "0.3.0"
1923 | resolved "https://registry.yarnpkg.com/to-object-path/-/to-object-path-0.3.0.tgz#297588b7b0e7e0ac08e04e672f85c1f4999e17af"
1924 | dependencies:
1925 | kind-of "^3.0.2"
1926 |
1927 | to-regex-range@^2.1.0:
1928 | version "2.1.1"
1929 | resolved "https://registry.yarnpkg.com/to-regex-range/-/to-regex-range-2.1.1.tgz#7c80c17b9dfebe599e27367e0d4dd5590141db38"
1930 | dependencies:
1931 | is-number "^3.0.0"
1932 | repeat-string "^1.6.1"
1933 |
1934 | to-regex@^3.0.1, to-regex@^3.0.2:
1935 | version "3.0.2"
1936 | resolved "https://registry.yarnpkg.com/to-regex/-/to-regex-3.0.2.tgz#13cfdd9b336552f30b51f33a8ae1b42a7a7599ce"
1937 | dependencies:
1938 | define-property "^2.0.2"
1939 | extend-shallow "^3.0.2"
1940 | regex-not "^1.0.2"
1941 | safe-regex "^1.1.0"
1942 |
1943 | trim-right@^1.0.1:
1944 | version "1.0.1"
1945 | resolved "https://registry.yarnpkg.com/trim-right/-/trim-right-1.0.1.tgz#cb2e1203067e0c8de1f614094b9fe45704ea6003"
1946 |
1947 | type-check@~0.3.2:
1948 | version "0.3.2"
1949 | resolved "https://registry.yarnpkg.com/type-check/-/type-check-0.3.2.tgz#5884cab512cf1d355e3fb784f30804b2b520db72"
1950 | dependencies:
1951 | prelude-ls "~1.1.2"
1952 |
1953 | type-is@~1.6.15, type-is@~1.6.16:
1954 | version "1.6.16"
1955 | resolved "https://registry.yarnpkg.com/type-is/-/type-is-1.6.16.tgz#f89ce341541c672b25ee7ae3c73dee3b2be50194"
1956 | dependencies:
1957 | media-typer "0.3.0"
1958 | mime-types "~2.1.18"
1959 |
1960 | typedarray@^0.0.6:
1961 | version "0.0.6"
1962 | resolved "https://registry.yarnpkg.com/typedarray/-/typedarray-0.0.6.tgz#867ac74e3864187b1d3d47d996a78ec5c8830777"
1963 |
1964 | union-value@^1.0.0:
1965 | version "1.0.0"
1966 | resolved "https://registry.yarnpkg.com/union-value/-/union-value-1.0.0.tgz#5c71c34cb5bad5dcebe3ea0cd08207ba5aa1aea4"
1967 | dependencies:
1968 | arr-union "^3.1.0"
1969 | get-value "^2.0.6"
1970 | is-extendable "^0.1.1"
1971 | set-value "^0.4.3"
1972 |
1973 | unpipe@1.0.0, unpipe@~1.0.0:
1974 | version "1.0.0"
1975 | resolved "https://registry.yarnpkg.com/unpipe/-/unpipe-1.0.0.tgz#b2bf4ee8514aae6165b4817829d21b2ef49904ec"
1976 |
1977 | unset-value@^1.0.0:
1978 | version "1.0.0"
1979 | resolved "https://registry.yarnpkg.com/unset-value/-/unset-value-1.0.0.tgz#8376873f7d2335179ffb1e6fc3a8ed0dfc8ab559"
1980 | dependencies:
1981 | has-value "^0.3.1"
1982 | isobject "^3.0.0"
1983 |
1984 | urix@^0.1.0:
1985 | version "0.1.0"
1986 | resolved "https://registry.yarnpkg.com/urix/-/urix-0.1.0.tgz#da937f7a62e21fec1fd18d49b35c2935067a6c72"
1987 |
1988 | use@^3.1.0:
1989 | version "3.1.1"
1990 | resolved "https://registry.yarnpkg.com/use/-/use-3.1.1.tgz#d50c8cac79a19fbc20f2911f56eb973f4e10070f"
1991 |
1992 | util-deprecate@~1.0.1:
1993 | version "1.0.2"
1994 | resolved "https://registry.yarnpkg.com/util-deprecate/-/util-deprecate-1.0.2.tgz#450d4dc9fa70de732762fbd2d4a28981419a0ccf"
1995 |
1996 | utils-merge@1.0.1:
1997 | version "1.0.1"
1998 | resolved "https://registry.yarnpkg.com/utils-merge/-/utils-merge-1.0.1.tgz#9f95710f50a267947b2ccc124741c1028427e713"
1999 |
2000 | validate-npm-package-license@^3.0.1:
2001 | version "3.0.4"
2002 | resolved "https://registry.yarnpkg.com/validate-npm-package-license/-/validate-npm-package-license-3.0.4.tgz#fc91f6b9c7ba15c857f4cb2c5defeec39d4f410a"
2003 | dependencies:
2004 | spdx-correct "^3.0.0"
2005 | spdx-expression-parse "^3.0.0"
2006 |
2007 | vary@~1.1.2:
2008 | version "1.1.2"
2009 | resolved "https://registry.yarnpkg.com/vary/-/vary-1.1.2.tgz#2299f02c6ded30d4a5961b0b9f74524a18f634fc"
2010 |
2011 | which@^1.2.9:
2012 | version "1.3.1"
2013 | resolved "https://registry.yarnpkg.com/which/-/which-1.3.1.tgz#a45043d54f5805316da8d62f9f50918d3da70b0a"
2014 | dependencies:
2015 | isexe "^2.0.0"
2016 |
2017 | wordwrap@~1.0.0:
2018 | version "1.0.0"
2019 | resolved "https://registry.yarnpkg.com/wordwrap/-/wordwrap-1.0.0.tgz#27584810891456a4171c8d0226441ade90cbcaeb"
2020 |
2021 | wrappy@1:
2022 | version "1.0.2"
2023 | resolved "https://registry.yarnpkg.com/wrappy/-/wrappy-1.0.2.tgz#b5243d8f3ec1aa35f1364605bc0d1036e30ab69f"
2024 |
2025 | write@^0.2.1:
2026 | version "0.2.1"
2027 | resolved "https://registry.yarnpkg.com/write/-/write-0.2.1.tgz#5fc03828e264cea3fe91455476f7a3c566cb0757"
2028 | dependencies:
2029 | mkdirp "^0.5.1"
2030 |
2031 | ws@^5.2.0:
2032 | version "5.2.0"
2033 | resolved "https://registry.yarnpkg.com/ws/-/ws-5.2.0.tgz#9fd95e3ac7c76f6ae8bcc868a0e3f11f1290c33e"
2034 | dependencies:
2035 | async-limiter "~1.0.0"
2036 |
2037 | yallist@^2.1.2:
2038 | version "2.1.2"
2039 | resolved "https://registry.yarnpkg.com/yallist/-/yallist-2.1.2.tgz#1c11f9218f076089a47dd512f93c6699a6a81d52"
2040 |
--------------------------------------------------------------------------------