├── .eslintrc
├── .gitignore
├── CHANGELOG.md
├── CODE_OF_CONDUCT.md
├── CONTRIBUTING.md
├── LICENSE.md
├── README.md
├── keymaps
└── clickable-npm-scripts.json
├── lib
├── clickable-npm-scripts-view.js
└── clickable-npm-scripts.js
├── menus
└── clickable-npm-scripts.json
├── package.json
├── spec
├── clickable-npm-scripts-spec.js
└── clickable-npm-scripts-view-spec.js
├── styles
└── clickable-npm-scripts.less
└── yarn.lock
/.eslintrc:
--------------------------------------------------------------------------------
1 | {
2 | "env": {
3 | "browser": true,
4 | "node":true,
5 | "es6":true,
6 | "jest":true
7 | },
8 | "globals": {
9 | "require": true,
10 | "module":true,
11 | "window":true,
12 | "atom" : true
13 | },
14 | "extends": ["eslint:recommended"],
15 | "parser": "babel-eslint",
16 | "rules": {
17 | "semi": [2, "always"],
18 | "no-constant-condition":[2],
19 | "no-undef" : [2],
20 | "no-dupe-args":[2],
21 | "no-unreachable":[1],
22 | "no-cond-assign":[2],
23 | "no-dupe-keys":[1],
24 | "prefer-const":[1],
25 | "no-const-assign":[2],
26 | "no-duplicate-imports":[2],
27 | "no-useless-constructor":[1],
28 | "no-class-assign":[2],
29 | "no-confusing-arrow":[2],
30 | "constructor-super":[2],
31 | "prefer-spread":[1],
32 | "no-lonely-if":[1],
33 | "no-continue":[1],
34 | "no-redeclare":[0],
35 | "comma-dangle":[0],
36 | "no-extra-semi":[0],
37 | "no-console":[0],
38 | "no-mixed-spaces-and-tabs":[0],
39 | }
40 | }
41 |
--------------------------------------------------------------------------------
/.gitignore:
--------------------------------------------------------------------------------
1 | .DS_Store
2 | npm-debug.log
3 | node_modules
4 |
--------------------------------------------------------------------------------
/CHANGELOG.md:
--------------------------------------------------------------------------------
1 | ## 0.1.0 - First Release
2 | * Every feature added
3 | * Every bug fixed
4 |
--------------------------------------------------------------------------------
/CODE_OF_CONDUCT.md:
--------------------------------------------------------------------------------
1 | # Contributor Covenant 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 bhargavponnapalli.5@gmail.com. The project team will review and investigate all complaints, and will respond in a way that it deems 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 [http://contributor-covenant.org/version/1/4][version]
44 |
45 | [homepage]: http://contributor-covenant.org
46 | [version]: http://contributor-covenant.org/version/1/4/
47 |
--------------------------------------------------------------------------------
/CONTRIBUTING.md:
--------------------------------------------------------------------------------
1 |
Contributions are welcome!
2 |
--------------------------------------------------------------------------------
/LICENSE.md:
--------------------------------------------------------------------------------
1 | Copyright (c) 2017 Bhargav Ponnapalli
2 |
3 | Permission is hereby granted, free of charge, to any person obtaining
4 | a copy of this software and associated documentation files (the
5 | "Software"), to deal in the Software without restriction, including
6 | without limitation the rights to use, copy, modify, merge, publish,
7 | distribute, sublicense, and/or sell copies of the Software, and to
8 | permit persons to whom the Software is furnished to do so, subject to
9 | the following conditions:
10 |
11 | The above copyright notice and this permission notice shall be
12 | included in all copies or substantial portions of the Software.
13 |
14 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
15 | EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
16 | MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
17 | NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
18 | LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
19 | OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
20 | WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
21 |
--------------------------------------------------------------------------------
/README.md:
--------------------------------------------------------------------------------
1 | # clickable-npm-scripts package
2 |
3 | **Note** Depends [platformio-atom-ide-terminal](https://github.com/platformio/platformio-atom-ide-terminal) to run!
4 |
5 |
6 | Run npm scripts with a single click.
7 |
8 |
9 | 
10 |
11 | This plugin parses the nearest package.json and generates a UI for to run the script right from your editor. Please make sure you have platformio-atom-ide-terminal installed and activated to proceed.
12 |
13 |
14 |
15 | ## Installation
16 |
17 | ```bash
18 |
19 | apm install clickable-npm-scripts
20 |
21 | ```
22 |
23 | ### LICENSE
24 |
25 | MIT (c) Bhargav Ponnapalli 2017
26 |
--------------------------------------------------------------------------------
/keymaps/clickable-npm-scripts.json:
--------------------------------------------------------------------------------
1 | {
2 | "atom-workspace": {
3 | "ctrl-alt-o": "clickable-npm-scripts:toggle"
4 | }
5 | }
6 |
--------------------------------------------------------------------------------
/lib/clickable-npm-scripts-view.js:
--------------------------------------------------------------------------------
1 | 'use babel';
2 | import fs from 'fs';
3 | import readPkgUp from 'read-pkg-up';
4 | import $ from 'jquery';
5 | export default class ClickableNpmScriptsView {
6 |
7 | element = null;
8 | button = null;
9 | container = null;
10 |
11 | createElements(terminal, refresh){
12 | try{
13 | const path = atom.project.getPaths()[0];
14 | const {pkg, path: packagePath} = readPkgUp.sync({cwd : path});
15 |
16 | if(!pkg || !pkg.scripts || Object.keys(pkg.scripts).length == 0){
17 | return;
18 | }
19 | if(path){
20 | fs.unwatchFile(packagePath);
21 | fs.watchFile(packagePath, refresh);
22 | }
23 | const {scripts}= pkg;
24 | this.container = document.createElement('div');
25 | this.container.classList.add('select-list');
26 | this.element = document.createElement('ol');
27 | this.element.classList.add('list-group');
28 | this.button = document.createElement('div');
29 | this.button.classList.add('inline-block');
30 | this.button.innerHTML = 'Npm scripts';
31 | Object.keys(scripts).forEach(script=>{
32 | const _el = document.createElement('li');
33 | _el.innerHTML = `${script} : ${scripts[script]}`;
34 | _el.addEventListener('click',()=>{
35 | if(this.modal.visible){
36 | this.modal.hide();
37 | }
38 | try{
39 | terminal.run([`npm run ${script}`]);
40 | const terminalViews = terminal.getTerminalViews();
41 | terminalViews[terminalViews.length-1].statusIcon.innerHTML = ` ${script} `;
42 | }catch(err){
43 | console.error(err);
44 | atom.notifications.addFatalError('A Fatal error occurred', {
45 | description : 'Please make sure platformio-atom-ide-terminal is installed and is active',
46 | dismissable : true
47 | });
48 | }
49 |
50 | });
51 | this.element.appendChild(_el);
52 | });
53 | this.container.appendChild(this.element);
54 | this.modal = atom.workspace.addModalPanel({
55 | item : this.container,
56 | visible : false,
57 | priority : 25
58 | });
59 | this.button.addEventListener('click',(e)=>{
60 | e.stopPropagation();
61 | this.showModal();
62 | });
63 | return this.element;
64 | }catch(err){
65 |
66 | this.element = null;
67 | return this.element;
68 | }
69 | }
70 | // Returns an object that can be retrieved when package is activated
71 | serialize() {}
72 |
73 | showModal(){
74 | if(this.modal){
75 | this.modal.show();
76 | this.handler = (e)=>{
77 | e.stopPropagation();
78 | if(e.type ==='click' && !$.contains(this.modal.item,e.target)){
79 | return this.hideModal();
80 | }
81 | if(e.type==='keydown' && e.which === 27){
82 | //escape key
83 | return this.hideModal();
84 | }
85 | };
86 | $(document).on('click',this.handler);
87 | }
88 | }
89 | hideModal(){
90 | if(this.modal && this.modal.visible){
91 | this.modal.hide();
92 | if(this.handler){
93 | $(document).off('click',this.handler);
94 | this.handler = null;
95 | }
96 | }
97 | }
98 | toggle(){
99 | if(this.modal){
100 | if(this.modal.visible){
101 | this.hideModal();
102 | }else{
103 | this.showModal();
104 | }
105 | }
106 | }
107 | // Tear down any state and detach
108 | destroy() {
109 | if(!this.container){
110 | return;
111 | }
112 | this.container.remove();
113 | this.container = null;
114 | this.element = null;
115 | if(!this.button){
116 | return;
117 | }
118 | this.button.remove();
119 | }
120 | getContainer(){
121 | return this.container;
122 | }
123 | getElement() {
124 | return this.element;
125 | }
126 | getButton() {
127 | return this.button;
128 | }
129 |
130 | }
131 |
--------------------------------------------------------------------------------
/lib/clickable-npm-scripts.js:
--------------------------------------------------------------------------------
1 | 'use babel';
2 |
3 | import ClickableNpmScriptsView from './clickable-npm-scripts-view';
4 | import { CompositeDisposable } from 'atom';
5 |
6 | export default {
7 |
8 | clickableNpmScriptsView: null,
9 | tile: null,
10 | subscriptions: null,
11 |
12 | activate(state) {
13 | this.clickableNpmScriptsView = new ClickableNpmScriptsView(state.clickableNpmScriptsViewState);
14 | // Events subscribed to in atom's system can be easily cleaned up with a CompositeDisposable
15 | this.subscriptions = new CompositeDisposable();
16 |
17 | // Register command that toggles this view
18 | this.subscriptions.add(atom.commands.add('atom-workspace', {
19 | 'clickable-npm-scripts:toggle': () => this.toggle()
20 | }));
21 | // Register command that refreshs the package
22 | this.subscriptions.add(atom.commands.add('atom-workspace', {
23 | 'clickable-npm-scripts:refresh': () => this.refresh()
24 | }));
25 |
26 | if(!atom.project.getDirectories().length){
27 | atom.project.onDidChangePaths((paths) => this.onPathsChanged(paths));
28 | }
29 |
30 | },
31 |
32 | consumeStatusBar(statusBar){
33 | console.info('StatusBar linked',statusBar);
34 | this.statusBar = statusBar;
35 | if(this.terminal){
36 | this.start();
37 | }
38 | },
39 |
40 | start(){
41 | try{
42 | this.clickableNpmScriptsView.createElements(this.terminal, this.refresh.bind(this));
43 | const button = this.clickableNpmScriptsView.getButton();
44 | if(button){
45 | this.statusBar.addLeftTile({
46 | item : button
47 | });
48 | }
49 |
50 | }catch(err){
51 | console.error(err);
52 | atom.notifications.addFatalError('A Fatal error occurred', {
53 | description : err,
54 | dismissable : true
55 | });
56 | }
57 | },
58 | onPathsChanged(){
59 | this.refresh();
60 | },
61 |
62 | refresh(){
63 | try {
64 | this.deactivate();
65 | this.activate(this.serialize());
66 | console.log(this);
67 | if(this.statusBar){
68 | this.consumeStatusBar(this.statusBar);
69 | }
70 | }catch(err){
71 | console.error(err);
72 | atom.notifications.addFatalError('A Fatal error occurred', {
73 | description : err,
74 | dismissable : true
75 | });
76 | }
77 | },
78 |
79 | consumeRunInTerminal(terminal){
80 | console.info('Terminal linked',terminal);
81 | this.terminal = terminal;
82 | if(this.statusBar){
83 | this.start();
84 | }
85 | },
86 |
87 | deactivate() {
88 | //this.bottomPanel.destroy();
89 | this.subscriptions.dispose();
90 | this.clickableNpmScriptsView.destroy();
91 | },
92 |
93 | toggle(){
94 | this.clickableNpmScriptsView.toggle();
95 | },
96 |
97 | hide(){
98 | this.clickableNpmScriptsView.toggle();
99 | },
100 |
101 | serialize() {
102 | return {
103 | clickableNpmScriptsViewState: this.clickableNpmScriptsView.serialize()
104 | };
105 | },
106 |
107 | };
108 |
--------------------------------------------------------------------------------
/menus/clickable-npm-scripts.json:
--------------------------------------------------------------------------------
1 | {
2 | "context-menu": {
3 | "atom-text-editor": [
4 | {
5 | "label": "Show/hide npm scripts",
6 | "command": "clickable-npm-scripts:toggle"
7 | }
8 | ]
9 | },
10 | "menu": [
11 | {
12 | "label": "Packages",
13 | "submenu": [
14 | {
15 | "label": "clickable-npm-scripts",
16 | "submenu": [
17 | {
18 | "label": "Show/hide npm scripts",
19 | "command": "clickable-npm-scripts:toggle"
20 | }
21 | ]
22 | }
23 | ]
24 | }
25 | ]
26 | }
27 |
--------------------------------------------------------------------------------
/package.json:
--------------------------------------------------------------------------------
1 | {
2 | "name": "clickable-npm-scripts",
3 | "main": "./lib/clickable-npm-scripts",
4 | "version": "3.9.0",
5 | "description": "A short description of your package",
6 | "keywords": [],
7 | "repository": "https://github.com/bhargav175/clickable-npm-scripts",
8 | "license": "MIT",
9 | "engines": {
10 | "atom": ">=1.0.0 <2.0.0"
11 | },
12 | "dependencies": {
13 | "jquery": "^3.1.1",
14 | "read-pkg-up": "^2.0.0"
15 | },
16 | "consumedServices": {
17 | "status-bar": {
18 | "versions": {
19 | "^1.0.0": "consumeStatusBar"
20 | }
21 | },
22 | "runInTerminal": {
23 | "description": "Allow to run commands in terminal.",
24 | "versions": {
25 | "0.14.5": "consumeRunInTerminal"
26 | }
27 | }
28 | },
29 | "devDependencies": {
30 | "babel-eslint": "^7.1.1",
31 | "eslint": "^3.15.0"
32 | }
33 | }
34 |
--------------------------------------------------------------------------------
/spec/clickable-npm-scripts-spec.js:
--------------------------------------------------------------------------------
1 | 'use babel';
2 |
3 | import ClickableNpmScripts from '../lib/clickable-npm-scripts';
4 |
5 | // Use the command `window:run-package-specs` (cmd-alt-ctrl-p) to run specs.
6 | //
7 | // To run a specific `it` or `describe` block add an `f` to the front (e.g. `fit`
8 | // or `fdescribe`). Remove the `f` to unfocus the block.
9 |
10 | describe('ClickableNpmScripts', () => {
11 | let workspaceElement, activationPromise;
12 |
13 | beforeEach(() => {
14 | workspaceElement = atom.views.getView(atom.workspace);
15 | activationPromise = atom.packages.activatePackage('clickable-npm-scripts');
16 | });
17 |
18 | describe('when the clickable-npm-scripts:toggle event is triggered', () => {
19 | it('hides and shows the modal panel', () => {
20 | // Before the activation event the view is not on the DOM, and no panel
21 | // has been created
22 | expect(workspaceElement.querySelector('.clickable-npm-scripts')).not.toExist();
23 |
24 | // This is an activation event, triggering it will cause the package to be
25 | // activated.
26 | atom.commands.dispatch(workspaceElement, 'clickable-npm-scripts:toggle');
27 |
28 | waitsForPromise(() => {
29 | return activationPromise;
30 | });
31 |
32 | runs(() => {
33 | expect(workspaceElement.querySelector('.clickable-npm-scripts')).toExist();
34 |
35 | let clickableNpmScriptsElement = workspaceElement.querySelector('.clickable-npm-scripts');
36 | expect(clickableNpmScriptsElement).toExist();
37 |
38 | let clickableNpmScriptsPanel = atom.workspace.panelForItem(clickableNpmScriptsElement);
39 | expect(clickableNpmScriptsPanel.isVisible()).toBe(true);
40 | atom.commands.dispatch(workspaceElement, 'clickable-npm-scripts:toggle');
41 | expect(clickableNpmScriptsPanel.isVisible()).toBe(false);
42 | });
43 | });
44 |
45 | it('hides and shows the view', () => {
46 | // This test shows you an integration test testing at the view level.
47 |
48 | // Attaching the workspaceElement to the DOM is required to allow the
49 | // `toBeVisible()` matchers to work. Anything testing visibility or focus
50 | // requires that the workspaceElement is on the DOM. Tests that attach the
51 | // workspaceElement to the DOM are generally slower than those off DOM.
52 | jasmine.attachToDOM(workspaceElement);
53 |
54 | expect(workspaceElement.querySelector('.clickable-npm-scripts')).not.toExist();
55 |
56 | // This is an activation event, triggering it causes the package to be
57 | // activated.
58 | atom.commands.dispatch(workspaceElement, 'clickable-npm-scripts:toggle');
59 |
60 | waitsForPromise(() => {
61 | return activationPromise;
62 | });
63 |
64 | runs(() => {
65 | // Now we can test for view visibility
66 | let clickableNpmScriptsElement = workspaceElement.querySelector('.clickable-npm-scripts');
67 | expect(clickableNpmScriptsElement).toBeVisible();
68 | atom.commands.dispatch(workspaceElement, 'clickable-npm-scripts:toggle');
69 | expect(clickableNpmScriptsElement).not.toBeVisible();
70 | });
71 | });
72 | });
73 | });
74 |
--------------------------------------------------------------------------------
/spec/clickable-npm-scripts-view-spec.js:
--------------------------------------------------------------------------------
1 | 'use babel';
2 |
3 | import ClickableNpmScriptsView from '../lib/clickable-npm-scripts-view';
4 |
5 | describe('ClickableNpmScriptsView', () => {
6 | it('has one valid test', () => {
7 | expect('life').toBe('easy');
8 | });
9 | });
10 |
--------------------------------------------------------------------------------
/styles/clickable-npm-scripts.less:
--------------------------------------------------------------------------------
1 | // The ui-variables file is provided by base themes provided by Atom.
2 | //
3 | // See https://github.com/atom/atom-dark-ui/blob/master/styles/ui-variables.less
4 | // for a full listing of what's available.
5 | @import "ui-variables";
6 |
7 | .clickable-npm-scripts {
8 | }
9 |
--------------------------------------------------------------------------------
/yarn.lock:
--------------------------------------------------------------------------------
1 | # THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY.
2 | # yarn lockfile v1
3 | acorn-jsx@^3.0.0:
4 | version "3.0.1"
5 | resolved "https://registry.yarnpkg.com/acorn-jsx/-/acorn-jsx-3.0.1.tgz#afdf9488fb1ecefc8348f6fb22f464e32a58b36b"
6 | dependencies:
7 | acorn "^3.0.4"
8 |
9 | acorn@^3.0.4:
10 | version "3.3.0"
11 | resolved "https://registry.yarnpkg.com/acorn/-/acorn-3.3.0.tgz#45e37fb39e8da3f25baee3ff5369e2bb5f22017a"
12 |
13 | acorn@4.0.4:
14 | version "4.0.4"
15 | resolved "https://registry.yarnpkg.com/acorn/-/acorn-4.0.4.tgz#17a8d6a7a6c4ef538b814ec9abac2779293bf30a"
16 |
17 | ajv-keywords@^1.0.0:
18 | version "1.5.1"
19 | resolved "https://registry.yarnpkg.com/ajv-keywords/-/ajv-keywords-1.5.1.tgz#314dd0a4b3368fad3dfcdc54ede6171b886daf3c"
20 |
21 | ajv@^4.7.0:
22 | version "4.11.3"
23 | resolved "https://registry.yarnpkg.com/ajv/-/ajv-4.11.3.tgz#ce30bdb90d1254f762c75af915fb3a63e7183d22"
24 | dependencies:
25 | co "^4.6.0"
26 | json-stable-stringify "^1.0.1"
27 |
28 | ansi-escapes@^1.1.0:
29 | version "1.4.0"
30 | resolved "https://registry.yarnpkg.com/ansi-escapes/-/ansi-escapes-1.4.0.tgz#d3a8a83b319aa67793662b13e761c7911422306e"
31 |
32 | ansi-regex@^2.0.0:
33 | version "2.1.1"
34 | resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-2.1.1.tgz#c3b33ab5ee360d86e0e628f0468ae7ef27d654df"
35 |
36 | ansi-styles@^2.2.1:
37 | version "2.2.1"
38 | resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-2.2.1.tgz#b432dd3358b634cf75e1e4664368240533c1ddbe"
39 |
40 | argparse@^1.0.7:
41 | version "1.0.9"
42 | resolved "https://registry.yarnpkg.com/argparse/-/argparse-1.0.9.tgz#73d83bc263f86e97f8cc4f6bae1b0e90a7d22c86"
43 | dependencies:
44 | sprintf-js "~1.0.2"
45 |
46 | array-union@^1.0.1:
47 | version "1.0.2"
48 | resolved "https://registry.yarnpkg.com/array-union/-/array-union-1.0.2.tgz#9a34410e4f4e3da23dea375be5be70f24778ec39"
49 | dependencies:
50 | array-uniq "^1.0.1"
51 |
52 | array-uniq@^1.0.1:
53 | version "1.0.3"
54 | resolved "https://registry.yarnpkg.com/array-uniq/-/array-uniq-1.0.3.tgz#af6ac877a25cc7f74e058894753858dfdb24fdb6"
55 |
56 | arrify@^1.0.0:
57 | version "1.0.1"
58 | resolved "https://registry.yarnpkg.com/arrify/-/arrify-1.0.1.tgz#898508da2226f380df904728456849c1501a4b0d"
59 |
60 | babel-code-frame@^6.16.0, babel-code-frame@^6.22.0:
61 | version "6.22.0"
62 | resolved "https://registry.yarnpkg.com/babel-code-frame/-/babel-code-frame-6.22.0.tgz#027620bee567a88c32561574e7fd0801d33118e4"
63 | dependencies:
64 | chalk "^1.1.0"
65 | esutils "^2.0.2"
66 | js-tokens "^3.0.0"
67 |
68 | babel-eslint:
69 | version "7.1.1"
70 | resolved "https://registry.yarnpkg.com/babel-eslint/-/babel-eslint-7.1.1.tgz#8a6a884f085aa7060af69cfc77341c2f99370fb2"
71 | dependencies:
72 | babel-code-frame "^6.16.0"
73 | babel-traverse "^6.15.0"
74 | babel-types "^6.15.0"
75 | babylon "^6.13.0"
76 | lodash.pickby "^4.6.0"
77 |
78 | babel-messages@^6.23.0:
79 | version "6.23.0"
80 | resolved "https://registry.yarnpkg.com/babel-messages/-/babel-messages-6.23.0.tgz#f3cdf4703858035b2a2951c6ec5edf6c62f2630e"
81 | dependencies:
82 | babel-runtime "^6.22.0"
83 |
84 | babel-runtime@^6.22.0:
85 | version "6.23.0"
86 | resolved "https://registry.yarnpkg.com/babel-runtime/-/babel-runtime-6.23.0.tgz#0a9489f144de70efb3ce4300accdb329e2fc543b"
87 | dependencies:
88 | core-js "^2.4.0"
89 | regenerator-runtime "^0.10.0"
90 |
91 | babel-traverse@^6.15.0:
92 | version "6.23.1"
93 | resolved "https://registry.yarnpkg.com/babel-traverse/-/babel-traverse-6.23.1.tgz#d3cb59010ecd06a97d81310065f966b699e14f48"
94 | dependencies:
95 | babel-code-frame "^6.22.0"
96 | babel-messages "^6.23.0"
97 | babel-runtime "^6.22.0"
98 | babel-types "^6.23.0"
99 | babylon "^6.15.0"
100 | debug "^2.2.0"
101 | globals "^9.0.0"
102 | invariant "^2.2.0"
103 | lodash "^4.2.0"
104 |
105 | babel-types@^6.15.0, babel-types@^6.23.0:
106 | version "6.23.0"
107 | resolved "https://registry.yarnpkg.com/babel-types/-/babel-types-6.23.0.tgz#bb17179d7538bad38cd0c9e115d340f77e7e9acf"
108 | dependencies:
109 | babel-runtime "^6.22.0"
110 | esutils "^2.0.2"
111 | lodash "^4.2.0"
112 | to-fast-properties "^1.0.1"
113 |
114 | babylon@^6.13.0, babylon@^6.15.0:
115 | version "6.15.0"
116 | resolved "https://registry.yarnpkg.com/babylon/-/babylon-6.15.0.tgz#ba65cfa1a80e1759b0e89fb562e27dccae70348e"
117 |
118 | balanced-match@^0.4.1:
119 | version "0.4.2"
120 | resolved "https://registry.yarnpkg.com/balanced-match/-/balanced-match-0.4.2.tgz#cb3f3e3c732dc0f01ee70b403f302e61d7709838"
121 |
122 | brace-expansion@^1.0.0:
123 | version "1.1.6"
124 | resolved "https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-1.1.6.tgz#7197d7eaa9b87e648390ea61fc66c84427420df9"
125 | dependencies:
126 | balanced-match "^0.4.1"
127 | concat-map "0.0.1"
128 |
129 | buffer-shims@^1.0.0:
130 | version "1.0.0"
131 | resolved "https://registry.yarnpkg.com/buffer-shims/-/buffer-shims-1.0.0.tgz#9978ce317388c649ad8793028c3477ef044a8b51"
132 |
133 | builtin-modules@^1.0.0:
134 | version "1.1.1"
135 | resolved "https://registry.yarnpkg.com/builtin-modules/-/builtin-modules-1.1.1.tgz#270f076c5a72c02f5b65a47df94c5fe3a278892f"
136 |
137 | caller-path@^0.1.0:
138 | version "0.1.0"
139 | resolved "https://registry.yarnpkg.com/caller-path/-/caller-path-0.1.0.tgz#94085ef63581ecd3daa92444a8fe94e82577751f"
140 | dependencies:
141 | callsites "^0.2.0"
142 |
143 | callsites@^0.2.0:
144 | version "0.2.0"
145 | resolved "https://registry.yarnpkg.com/callsites/-/callsites-0.2.0.tgz#afab96262910a7f33c19a5775825c69f34e350ca"
146 |
147 | chalk@^1.0.0, chalk@^1.1.0, chalk@^1.1.1, chalk@^1.1.3:
148 | version "1.1.3"
149 | resolved "https://registry.yarnpkg.com/chalk/-/chalk-1.1.3.tgz#a8115c55e4a702fe4d150abd3872822a7e09fc98"
150 | dependencies:
151 | ansi-styles "^2.2.1"
152 | escape-string-regexp "^1.0.2"
153 | has-ansi "^2.0.0"
154 | strip-ansi "^3.0.0"
155 | supports-color "^2.0.0"
156 |
157 | circular-json@^0.3.1:
158 | version "0.3.1"
159 | resolved "https://registry.yarnpkg.com/circular-json/-/circular-json-0.3.1.tgz#be8b36aefccde8b3ca7aa2d6afc07a37242c0d2d"
160 |
161 | cli-cursor@^1.0.1:
162 | version "1.0.2"
163 | resolved "https://registry.yarnpkg.com/cli-cursor/-/cli-cursor-1.0.2.tgz#64da3f7d56a54412e59794bd62dc35295e8f2987"
164 | dependencies:
165 | restore-cursor "^1.0.1"
166 |
167 | cli-width@^2.0.0:
168 | version "2.1.0"
169 | resolved "https://registry.yarnpkg.com/cli-width/-/cli-width-2.1.0.tgz#b234ca209b29ef66fc518d9b98d5847b00edf00a"
170 |
171 | co@^4.6.0:
172 | version "4.6.0"
173 | resolved "https://registry.yarnpkg.com/co/-/co-4.6.0.tgz#6ea6bdf3d853ae54ccb8e47bfa0bf3f9031fb184"
174 |
175 | code-point-at@^1.0.0:
176 | version "1.1.0"
177 | resolved "https://registry.yarnpkg.com/code-point-at/-/code-point-at-1.1.0.tgz#0d070b4d043a5bea33a2f1a40e2edb3d9a4ccf77"
178 |
179 | concat-map@0.0.1:
180 | version "0.0.1"
181 | resolved "https://registry.yarnpkg.com/concat-map/-/concat-map-0.0.1.tgz#d8a96bd77fd68df7793a73036a3ba0d5405d477b"
182 |
183 | concat-stream@^1.4.6:
184 | version "1.6.0"
185 | resolved "https://registry.yarnpkg.com/concat-stream/-/concat-stream-1.6.0.tgz#0aac662fd52be78964d5532f694784e70110acf7"
186 | dependencies:
187 | inherits "^2.0.3"
188 | readable-stream "^2.2.2"
189 | typedarray "^0.0.6"
190 |
191 | core-js@^2.4.0:
192 | version "2.4.1"
193 | resolved "https://registry.yarnpkg.com/core-js/-/core-js-2.4.1.tgz#4de911e667b0eae9124e34254b53aea6fc618d3e"
194 |
195 | core-util-is@~1.0.0:
196 | version "1.0.2"
197 | resolved "https://registry.yarnpkg.com/core-util-is/-/core-util-is-1.0.2.tgz#b5fd54220aa2bc5ab57aab7140c940754503c1a7"
198 |
199 | d@^0.1.1, d@~0.1.1:
200 | version "0.1.1"
201 | resolved "https://registry.yarnpkg.com/d/-/d-0.1.1.tgz#da184c535d18d8ee7ba2aa229b914009fae11309"
202 | dependencies:
203 | es5-ext "~0.10.2"
204 |
205 | debug:
206 | version "2.6.0"
207 | resolved "https://registry.yarnpkg.com/debug/-/debug-2.6.0.tgz#bc596bcabe7617f11d9fa15361eded5608b8499b"
208 | dependencies:
209 | ms "0.7.2"
210 |
211 | debug@^2.1.1, debug@^2.2.0:
212 | version "2.6.1"
213 | resolved "https://registry.yarnpkg.com/debug/-/debug-2.6.1.tgz#79855090ba2c4e3115cc7d8769491d58f0491351"
214 | dependencies:
215 | ms "0.7.2"
216 |
217 | deep-is@~0.1.3:
218 | version "0.1.3"
219 | resolved "https://registry.yarnpkg.com/deep-is/-/deep-is-0.1.3.tgz#b369d6fb5dbc13eecf524f91b070feedc357cf34"
220 |
221 | del@^2.0.2:
222 | version "2.2.2"
223 | resolved "https://registry.yarnpkg.com/del/-/del-2.2.2.tgz#c12c981d067846c84bcaf862cff930d907ffd1a8"
224 | dependencies:
225 | globby "^5.0.0"
226 | is-path-cwd "^1.0.0"
227 | is-path-in-cwd "^1.0.0"
228 | object-assign "^4.0.1"
229 | pify "^2.0.0"
230 | pinkie-promise "^2.0.0"
231 | rimraf "^2.2.8"
232 |
233 | doctrine@^1.2.2:
234 | version "1.5.0"
235 | resolved "https://registry.yarnpkg.com/doctrine/-/doctrine-1.5.0.tgz#379dce730f6166f76cefa4e6707a159b02c5a6fa"
236 | dependencies:
237 | esutils "^2.0.2"
238 | isarray "^1.0.0"
239 |
240 | error-ex@^1.2.0:
241 | version "1.3.0"
242 | resolved "https://registry.yarnpkg.com/error-ex/-/error-ex-1.3.0.tgz#e67b43f3e82c96ea3a584ffee0b9fc3325d802d9"
243 | dependencies:
244 | is-arrayish "^0.2.1"
245 |
246 | es5-ext@^0.10.7, es5-ext@^0.10.8, es5-ext@~0.10.11, es5-ext@~0.10.2, es5-ext@~0.10.7:
247 | version "0.10.12"
248 | resolved "https://registry.yarnpkg.com/es5-ext/-/es5-ext-0.10.12.tgz#aa84641d4db76b62abba5e45fd805ecbab140047"
249 | dependencies:
250 | es6-iterator "2"
251 | es6-symbol "~3.1"
252 |
253 | es6-iterator@2:
254 | version "2.0.0"
255 | resolved "https://registry.yarnpkg.com/es6-iterator/-/es6-iterator-2.0.0.tgz#bd968567d61635e33c0b80727613c9cb4b096bac"
256 | dependencies:
257 | d "^0.1.1"
258 | es5-ext "^0.10.7"
259 | es6-symbol "3"
260 |
261 | es6-map@^0.1.3:
262 | version "0.1.4"
263 | resolved "https://registry.yarnpkg.com/es6-map/-/es6-map-0.1.4.tgz#a34b147be224773a4d7da8072794cefa3632b897"
264 | dependencies:
265 | d "~0.1.1"
266 | es5-ext "~0.10.11"
267 | es6-iterator "2"
268 | es6-set "~0.1.3"
269 | es6-symbol "~3.1.0"
270 | event-emitter "~0.3.4"
271 |
272 | es6-set@~0.1.3:
273 | version "0.1.4"
274 | resolved "https://registry.yarnpkg.com/es6-set/-/es6-set-0.1.4.tgz#9516b6761c2964b92ff479456233a247dc707ce8"
275 | dependencies:
276 | d "~0.1.1"
277 | es5-ext "~0.10.11"
278 | es6-iterator "2"
279 | es6-symbol "3"
280 | event-emitter "~0.3.4"
281 |
282 | es6-symbol@~3.1, es6-symbol@~3.1.0, es6-symbol@3:
283 | version "3.1.0"
284 | resolved "https://registry.yarnpkg.com/es6-symbol/-/es6-symbol-3.1.0.tgz#94481c655e7a7cad82eba832d97d5433496d7ffa"
285 | dependencies:
286 | d "~0.1.1"
287 | es5-ext "~0.10.11"
288 |
289 | es6-weak-map@^2.0.1:
290 | version "2.0.1"
291 | resolved "https://registry.yarnpkg.com/es6-weak-map/-/es6-weak-map-2.0.1.tgz#0d2bbd8827eb5fb4ba8f97fbfea50d43db21ea81"
292 | dependencies:
293 | d "^0.1.1"
294 | es5-ext "^0.10.8"
295 | es6-iterator "2"
296 | es6-symbol "3"
297 |
298 | escape-string-regexp@^1.0.2, escape-string-regexp@^1.0.5:
299 | version "1.0.5"
300 | resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz#1b61c0562190a8dff6ae3bb2cf0200ca130b86d4"
301 |
302 | escope@^3.6.0:
303 | version "3.6.0"
304 | resolved "https://registry.yarnpkg.com/escope/-/escope-3.6.0.tgz#e01975e812781a163a6dadfdd80398dc64c889c3"
305 | dependencies:
306 | es6-map "^0.1.3"
307 | es6-weak-map "^2.0.1"
308 | esrecurse "^4.1.0"
309 | estraverse "^4.1.1"
310 |
311 | eslint:
312 | version "3.15.0"
313 | resolved "https://registry.yarnpkg.com/eslint/-/eslint-3.15.0.tgz#bdcc6a6c5ffe08160e7b93c066695362a91e30f2"
314 | dependencies:
315 | babel-code-frame "^6.16.0"
316 | chalk "^1.1.3"
317 | concat-stream "^1.4.6"
318 | debug "^2.1.1"
319 | doctrine "^1.2.2"
320 | escope "^3.6.0"
321 | espree "^3.4.0"
322 | estraverse "^4.2.0"
323 | esutils "^2.0.2"
324 | file-entry-cache "^2.0.0"
325 | glob "^7.0.3"
326 | globals "^9.14.0"
327 | ignore "^3.2.0"
328 | imurmurhash "^0.1.4"
329 | inquirer "^0.12.0"
330 | is-my-json-valid "^2.10.0"
331 | is-resolvable "^1.0.0"
332 | js-yaml "^3.5.1"
333 | json-stable-stringify "^1.0.0"
334 | levn "^0.3.0"
335 | lodash "^4.0.0"
336 | mkdirp "^0.5.0"
337 | natural-compare "^1.4.0"
338 | optionator "^0.8.2"
339 | path-is-inside "^1.0.1"
340 | pluralize "^1.2.1"
341 | progress "^1.1.8"
342 | require-uncached "^1.0.2"
343 | shelljs "^0.7.5"
344 | strip-bom "^3.0.0"
345 | strip-json-comments "~2.0.1"
346 | table "^3.7.8"
347 | text-table "~0.2.0"
348 | user-home "^2.0.0"
349 |
350 | espree@^3.4.0:
351 | version "3.4.0"
352 | resolved "https://registry.yarnpkg.com/espree/-/espree-3.4.0.tgz#41656fa5628e042878025ef467e78f125cb86e1d"
353 | dependencies:
354 | acorn "4.0.4"
355 | acorn-jsx "^3.0.0"
356 |
357 | esprima@^3.1.1:
358 | version "3.1.3"
359 | resolved "https://registry.yarnpkg.com/esprima/-/esprima-3.1.3.tgz#fdca51cee6133895e3c88d535ce49dbff62a4633"
360 |
361 | esrecurse@^4.1.0:
362 | version "4.1.0"
363 | resolved "https://registry.yarnpkg.com/esrecurse/-/esrecurse-4.1.0.tgz#4713b6536adf7f2ac4f327d559e7756bff648220"
364 | dependencies:
365 | estraverse "~4.1.0"
366 | object-assign "^4.0.1"
367 |
368 | estraverse@^4.1.1, estraverse@^4.2.0:
369 | version "4.2.0"
370 | resolved "https://registry.yarnpkg.com/estraverse/-/estraverse-4.2.0.tgz#0dee3fed31fcd469618ce7342099fc1afa0bdb13"
371 |
372 | estraverse@~4.1.0:
373 | version "4.1.1"
374 | resolved "https://registry.yarnpkg.com/estraverse/-/estraverse-4.1.1.tgz#f6caca728933a850ef90661d0e17982ba47111a2"
375 |
376 | esutils@^2.0.2:
377 | version "2.0.2"
378 | resolved "https://registry.yarnpkg.com/esutils/-/esutils-2.0.2.tgz#0abf4f1caa5bcb1f7a9d8acc6dea4faaa04bac9b"
379 |
380 | event-emitter@~0.3.4:
381 | version "0.3.4"
382 | resolved "https://registry.yarnpkg.com/event-emitter/-/event-emitter-0.3.4.tgz#8d63ddfb4cfe1fae3b32ca265c4c720222080bb5"
383 | dependencies:
384 | d "~0.1.1"
385 | es5-ext "~0.10.7"
386 |
387 | exit-hook@^1.0.0:
388 | version "1.1.1"
389 | resolved "https://registry.yarnpkg.com/exit-hook/-/exit-hook-1.1.1.tgz#f05ca233b48c05d54fff07765df8507e95c02ff8"
390 |
391 | fast-levenshtein@~2.0.4:
392 | version "2.0.6"
393 | resolved "https://registry.yarnpkg.com/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz#3d8a5c66883a16a30ca8643e851f19baa7797917"
394 |
395 | figures@^1.3.5:
396 | version "1.7.0"
397 | resolved "https://registry.yarnpkg.com/figures/-/figures-1.7.0.tgz#cbe1e3affcf1cd44b80cadfed28dc793a9701d2e"
398 | dependencies:
399 | escape-string-regexp "^1.0.5"
400 | object-assign "^4.1.0"
401 |
402 | file-entry-cache@^2.0.0:
403 | version "2.0.0"
404 | resolved "https://registry.yarnpkg.com/file-entry-cache/-/file-entry-cache-2.0.0.tgz#c392990c3e684783d838b8c84a45d8a048458361"
405 | dependencies:
406 | flat-cache "^1.2.1"
407 | object-assign "^4.0.1"
408 |
409 | find-up@^2.0.0:
410 | version "2.1.0"
411 | resolved "https://registry.yarnpkg.com/find-up/-/find-up-2.1.0.tgz#45d1b7e506c717ddd482775a2b77920a3c0c57a7"
412 | dependencies:
413 | locate-path "^2.0.0"
414 |
415 | flat-cache@^1.2.1:
416 | version "1.2.2"
417 | resolved "https://registry.yarnpkg.com/flat-cache/-/flat-cache-1.2.2.tgz#fa86714e72c21db88601761ecf2f555d1abc6b96"
418 | dependencies:
419 | circular-json "^0.3.1"
420 | del "^2.0.2"
421 | graceful-fs "^4.1.2"
422 | write "^0.2.1"
423 |
424 | fs.realpath@^1.0.0:
425 | version "1.0.0"
426 | resolved "https://registry.yarnpkg.com/fs.realpath/-/fs.realpath-1.0.0.tgz#1504ad2523158caa40db4a2787cb01411994ea4f"
427 |
428 | generate-function@^2.0.0:
429 | version "2.0.0"
430 | resolved "https://registry.yarnpkg.com/generate-function/-/generate-function-2.0.0.tgz#6858fe7c0969b7d4e9093337647ac79f60dfbe74"
431 |
432 | generate-object-property@^1.1.0:
433 | version "1.2.0"
434 | resolved "https://registry.yarnpkg.com/generate-object-property/-/generate-object-property-1.2.0.tgz#9c0e1c40308ce804f4783618b937fa88f99d50d0"
435 | dependencies:
436 | is-property "^1.0.0"
437 |
438 | glob@^7.0.0, glob@^7.0.3, glob@^7.0.5:
439 | version "7.1.1"
440 | resolved "https://registry.yarnpkg.com/glob/-/glob-7.1.1.tgz#805211df04faaf1c63a3600306cdf5ade50b2ec8"
441 | dependencies:
442 | fs.realpath "^1.0.0"
443 | inflight "^1.0.4"
444 | inherits "2"
445 | minimatch "^3.0.2"
446 | once "^1.3.0"
447 | path-is-absolute "^1.0.0"
448 |
449 | globals@^9.0.0, globals@^9.14.0:
450 | version "9.16.0"
451 | resolved "https://registry.yarnpkg.com/globals/-/globals-9.16.0.tgz#63e903658171ec2d9f51b1d31de5e2b8dc01fb80"
452 |
453 | globby@^5.0.0:
454 | version "5.0.0"
455 | resolved "https://registry.yarnpkg.com/globby/-/globby-5.0.0.tgz#ebd84667ca0dbb330b99bcfc68eac2bc54370e0d"
456 | dependencies:
457 | array-union "^1.0.1"
458 | arrify "^1.0.0"
459 | glob "^7.0.3"
460 | object-assign "^4.0.1"
461 | pify "^2.0.0"
462 | pinkie-promise "^2.0.0"
463 |
464 | graceful-fs@^4.1.2:
465 | version "4.1.11"
466 | resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.1.11.tgz#0e8bdfe4d1ddb8854d64e04ea7c00e2a026e5658"
467 |
468 | has-ansi@^2.0.0:
469 | version "2.0.0"
470 | resolved "https://registry.yarnpkg.com/has-ansi/-/has-ansi-2.0.0.tgz#34f5049ce1ecdf2b0649af3ef24e45ed35416d91"
471 | dependencies:
472 | ansi-regex "^2.0.0"
473 |
474 | hosted-git-info@^2.1.4:
475 | version "2.2.0"
476 | resolved "https://registry.yarnpkg.com/hosted-git-info/-/hosted-git-info-2.2.0.tgz#7a0d097863d886c0fabbdcd37bf1758d8becf8a5"
477 |
478 | ignore@^3.2.0:
479 | version "3.2.2"
480 | resolved "https://registry.yarnpkg.com/ignore/-/ignore-3.2.2.tgz#1c51e1ef53bab6ddc15db4d9ac4ec139eceb3410"
481 |
482 | imurmurhash@^0.1.4:
483 | version "0.1.4"
484 | resolved "https://registry.yarnpkg.com/imurmurhash/-/imurmurhash-0.1.4.tgz#9218b9b2b928a238b13dc4fb6b6d576f231453ea"
485 |
486 | inflight@^1.0.4:
487 | version "1.0.6"
488 | resolved "https://registry.yarnpkg.com/inflight/-/inflight-1.0.6.tgz#49bd6331d7d02d0c09bc910a1075ba8165b56df9"
489 | dependencies:
490 | once "^1.3.0"
491 | wrappy "1"
492 |
493 | inherits@^2.0.3, inherits@~2.0.1, inherits@2:
494 | version "2.0.3"
495 | resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.3.tgz#633c2c83e3da42a502f52466022480f4208261de"
496 |
497 | inquirer@^0.12.0:
498 | version "0.12.0"
499 | resolved "https://registry.yarnpkg.com/inquirer/-/inquirer-0.12.0.tgz#1ef2bfd63504df0bc75785fff8c2c41df12f077e"
500 | dependencies:
501 | ansi-escapes "^1.1.0"
502 | ansi-regex "^2.0.0"
503 | chalk "^1.0.0"
504 | cli-cursor "^1.0.1"
505 | cli-width "^2.0.0"
506 | figures "^1.3.5"
507 | lodash "^4.3.0"
508 | readline2 "^1.0.1"
509 | run-async "^0.1.0"
510 | rx-lite "^3.1.2"
511 | string-width "^1.0.1"
512 | strip-ansi "^3.0.0"
513 | through "^2.3.6"
514 |
515 | interpret@^1.0.0:
516 | version "1.0.1"
517 | resolved "https://registry.yarnpkg.com/interpret/-/interpret-1.0.1.tgz#d579fb7f693b858004947af39fa0db49f795602c"
518 |
519 | invariant@^2.2.0:
520 | version "2.2.2"
521 | resolved "https://registry.yarnpkg.com/invariant/-/invariant-2.2.2.tgz#9e1f56ac0acdb6bf303306f338be3b204ae60360"
522 | dependencies:
523 | loose-envify "^1.0.0"
524 |
525 | is-arrayish@^0.2.1:
526 | version "0.2.1"
527 | resolved "https://registry.yarnpkg.com/is-arrayish/-/is-arrayish-0.2.1.tgz#77c99840527aa8ecb1a8ba697b80645a7a926a9d"
528 |
529 | is-builtin-module@^1.0.0:
530 | version "1.0.0"
531 | resolved "https://registry.yarnpkg.com/is-builtin-module/-/is-builtin-module-1.0.0.tgz#540572d34f7ac3119f8f76c30cbc1b1e037affbe"
532 | dependencies:
533 | builtin-modules "^1.0.0"
534 |
535 | is-fullwidth-code-point@^1.0.0:
536 | version "1.0.0"
537 | resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-1.0.0.tgz#ef9e31386f031a7f0d643af82fde50c457ef00cb"
538 | dependencies:
539 | number-is-nan "^1.0.0"
540 |
541 | is-fullwidth-code-point@^2.0.0:
542 | version "2.0.0"
543 | resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz#a3b30a5c4f199183167aaab93beefae3ddfb654f"
544 |
545 | is-my-json-valid@^2.10.0:
546 | version "2.15.0"
547 | resolved "https://registry.yarnpkg.com/is-my-json-valid/-/is-my-json-valid-2.15.0.tgz#936edda3ca3c211fd98f3b2d3e08da43f7b2915b"
548 | dependencies:
549 | generate-function "^2.0.0"
550 | generate-object-property "^1.1.0"
551 | jsonpointer "^4.0.0"
552 | xtend "^4.0.0"
553 |
554 | is-path-cwd@^1.0.0:
555 | version "1.0.0"
556 | resolved "https://registry.yarnpkg.com/is-path-cwd/-/is-path-cwd-1.0.0.tgz#d225ec23132e89edd38fda767472e62e65f1106d"
557 |
558 | is-path-in-cwd@^1.0.0:
559 | version "1.0.0"
560 | resolved "https://registry.yarnpkg.com/is-path-in-cwd/-/is-path-in-cwd-1.0.0.tgz#6477582b8214d602346094567003be8a9eac04dc"
561 | dependencies:
562 | is-path-inside "^1.0.0"
563 |
564 | is-path-inside@^1.0.0:
565 | version "1.0.0"
566 | resolved "https://registry.yarnpkg.com/is-path-inside/-/is-path-inside-1.0.0.tgz#fc06e5a1683fbda13de667aff717bbc10a48f37f"
567 | dependencies:
568 | path-is-inside "^1.0.1"
569 |
570 | is-property@^1.0.0:
571 | version "1.0.2"
572 | resolved "https://registry.yarnpkg.com/is-property/-/is-property-1.0.2.tgz#57fe1c4e48474edd65b09911f26b1cd4095dda84"
573 |
574 | is-resolvable@^1.0.0:
575 | version "1.0.0"
576 | resolved "https://registry.yarnpkg.com/is-resolvable/-/is-resolvable-1.0.0.tgz#8df57c61ea2e3c501408d100fb013cf8d6e0cc62"
577 | dependencies:
578 | tryit "^1.0.1"
579 |
580 | isarray@^1.0.0, isarray@~1.0.0:
581 | version "1.0.0"
582 | resolved "https://registry.yarnpkg.com/isarray/-/isarray-1.0.0.tgz#bb935d48582cba168c06834957a54a3e07124f11"
583 |
584 | jquery:
585 | version "3.1.1"
586 | resolved "https://registry.yarnpkg.com/jquery/-/jquery-3.1.1.tgz#347c1c21c7e004115e0a4da32cece041fad3c8a3"
587 |
588 | js-tokens@^3.0.0:
589 | version "3.0.1"
590 | resolved "https://registry.yarnpkg.com/js-tokens/-/js-tokens-3.0.1.tgz#08e9f132484a2c45a30907e9dc4d5567b7f114d7"
591 |
592 | js-yaml@^3.5.1:
593 | version "3.8.1"
594 | resolved "https://registry.yarnpkg.com/js-yaml/-/js-yaml-3.8.1.tgz#782ba50200be7b9e5a8537001b7804db3ad02628"
595 | dependencies:
596 | argparse "^1.0.7"
597 | esprima "^3.1.1"
598 |
599 | json-stable-stringify@^1.0.0, json-stable-stringify@^1.0.1:
600 | version "1.0.1"
601 | resolved "https://registry.yarnpkg.com/json-stable-stringify/-/json-stable-stringify-1.0.1.tgz#9a759d39c5f2ff503fd5300646ed445f88c4f9af"
602 | dependencies:
603 | jsonify "~0.0.0"
604 |
605 | jsonify@~0.0.0:
606 | version "0.0.0"
607 | resolved "https://registry.yarnpkg.com/jsonify/-/jsonify-0.0.0.tgz#2c74b6ee41d93ca51b7b5aaee8f503631d252a73"
608 |
609 | jsonpointer@^4.0.0:
610 | version "4.0.1"
611 | resolved "https://registry.yarnpkg.com/jsonpointer/-/jsonpointer-4.0.1.tgz#4fd92cb34e0e9db3c89c8622ecf51f9b978c6cb9"
612 |
613 | levn@^0.3.0, levn@~0.3.0:
614 | version "0.3.0"
615 | resolved "https://registry.yarnpkg.com/levn/-/levn-0.3.0.tgz#3b09924edf9f083c0490fdd4c0bc4421e04764ee"
616 | dependencies:
617 | prelude-ls "~1.1.2"
618 | type-check "~0.3.2"
619 |
620 | load-json-file@^2.0.0:
621 | version "2.0.0"
622 | resolved "https://registry.yarnpkg.com/load-json-file/-/load-json-file-2.0.0.tgz#7947e42149af80d696cbf797bcaabcfe1fe29ca8"
623 | dependencies:
624 | graceful-fs "^4.1.2"
625 | parse-json "^2.2.0"
626 | pify "^2.0.0"
627 | strip-bom "^3.0.0"
628 |
629 | locate-path@^2.0.0:
630 | version "2.0.0"
631 | resolved "https://registry.yarnpkg.com/locate-path/-/locate-path-2.0.0.tgz#2b568b265eec944c6d9c0de9c3dbbbca0354cd8e"
632 | dependencies:
633 | p-locate "^2.0.0"
634 | path-exists "^3.0.0"
635 |
636 | lodash.pickby@^4.6.0:
637 | version "4.6.0"
638 | resolved "https://registry.yarnpkg.com/lodash.pickby/-/lodash.pickby-4.6.0.tgz#7dea21d8c18d7703a27c704c15d3b84a67e33aff"
639 |
640 | lodash@^4.0.0, lodash@^4.2.0, lodash@^4.3.0:
641 | version "4.17.4"
642 | resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.4.tgz#78203a4d1c328ae1d86dca6460e369b57f4055ae"
643 |
644 | loose-envify@^1.0.0:
645 | version "1.3.1"
646 | resolved "https://registry.yarnpkg.com/loose-envify/-/loose-envify-1.3.1.tgz#d1a8ad33fa9ce0e713d65fdd0ac8b748d478c848"
647 | dependencies:
648 | js-tokens "^3.0.0"
649 |
650 | minimatch@^3.0.2:
651 | version "3.0.3"
652 | resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-3.0.3.tgz#2a4e4090b96b2db06a9d7df01055a62a77c9b774"
653 | dependencies:
654 | brace-expansion "^1.0.0"
655 |
656 | minimist@0.0.8:
657 | version "0.0.8"
658 | resolved "https://registry.yarnpkg.com/minimist/-/minimist-0.0.8.tgz#857fcabfc3397d2625b8228262e86aa7a011b05d"
659 |
660 | mkdirp@^0.5.0, mkdirp@^0.5.1:
661 | version "0.5.1"
662 | resolved "https://registry.yarnpkg.com/mkdirp/-/mkdirp-0.5.1.tgz#30057438eac6cf7f8c4767f38648d6697d75c903"
663 | dependencies:
664 | minimist "0.0.8"
665 |
666 | ms@0.7.2:
667 | version "0.7.2"
668 | resolved "https://registry.yarnpkg.com/ms/-/ms-0.7.2.tgz#ae25cf2512b3885a1d95d7f037868d8431124765"
669 |
670 | mute-stream@0.0.5:
671 | version "0.0.5"
672 | resolved "https://registry.yarnpkg.com/mute-stream/-/mute-stream-0.0.5.tgz#8fbfabb0a98a253d3184331f9e8deb7372fac6c0"
673 |
674 | natural-compare@^1.4.0:
675 | version "1.4.0"
676 | resolved "https://registry.yarnpkg.com/natural-compare/-/natural-compare-1.4.0.tgz#4abebfeed7541f2c27acfb29bdbbd15c8d5ba4f7"
677 |
678 | normalize-package-data@^2.3.2:
679 | version "2.3.5"
680 | resolved "https://registry.yarnpkg.com/normalize-package-data/-/normalize-package-data-2.3.5.tgz#8d924f142960e1777e7ffe170543631cc7cb02df"
681 | dependencies:
682 | hosted-git-info "^2.1.4"
683 | is-builtin-module "^1.0.0"
684 | semver "2 || 3 || 4 || 5"
685 | validate-npm-package-license "^3.0.1"
686 |
687 | number-is-nan@^1.0.0:
688 | version "1.0.1"
689 | resolved "https://registry.yarnpkg.com/number-is-nan/-/number-is-nan-1.0.1.tgz#097b602b53422a522c1afb8790318336941a011d"
690 |
691 | object-assign@^4.0.1, object-assign@^4.1.0:
692 | version "4.1.1"
693 | resolved "https://registry.yarnpkg.com/object-assign/-/object-assign-4.1.1.tgz#2109adc7965887cfc05cbbd442cac8bfbb360863"
694 |
695 | once@^1.3.0:
696 | version "1.4.0"
697 | resolved "https://registry.yarnpkg.com/once/-/once-1.4.0.tgz#583b1aa775961d4b113ac17d9c50baef9dd76bd1"
698 | dependencies:
699 | wrappy "1"
700 |
701 | onetime@^1.0.0:
702 | version "1.1.0"
703 | resolved "https://registry.yarnpkg.com/onetime/-/onetime-1.1.0.tgz#a1f7838f8314c516f05ecefcbc4ccfe04b4ed789"
704 |
705 | optionator@^0.8.2:
706 | version "0.8.2"
707 | resolved "https://registry.yarnpkg.com/optionator/-/optionator-0.8.2.tgz#364c5e409d3f4d6301d6c0b4c05bba50180aeb64"
708 | dependencies:
709 | deep-is "~0.1.3"
710 | fast-levenshtein "~2.0.4"
711 | levn "~0.3.0"
712 | prelude-ls "~1.1.2"
713 | type-check "~0.3.2"
714 | wordwrap "~1.0.0"
715 |
716 | os-homedir@^1.0.0:
717 | version "1.0.2"
718 | resolved "https://registry.yarnpkg.com/os-homedir/-/os-homedir-1.0.2.tgz#ffbc4988336e0e833de0c168c7ef152121aa7fb3"
719 |
720 | p-limit@^1.1.0:
721 | version "1.1.0"
722 | resolved "https://registry.yarnpkg.com/p-limit/-/p-limit-1.1.0.tgz#b07ff2d9a5d88bec806035895a2bab66a27988bc"
723 |
724 | p-locate@^2.0.0:
725 | version "2.0.0"
726 | resolved "https://registry.yarnpkg.com/p-locate/-/p-locate-2.0.0.tgz#20a0103b222a70c8fd39cc2e580680f3dde5ec43"
727 | dependencies:
728 | p-limit "^1.1.0"
729 |
730 | parse-json@^2.2.0:
731 | version "2.2.0"
732 | resolved "https://registry.yarnpkg.com/parse-json/-/parse-json-2.2.0.tgz#f480f40434ef80741f8469099f8dea18f55a4dc9"
733 | dependencies:
734 | error-ex "^1.2.0"
735 |
736 | path-exists@^3.0.0:
737 | version "3.0.0"
738 | resolved "https://registry.yarnpkg.com/path-exists/-/path-exists-3.0.0.tgz#ce0ebeaa5f78cb18925ea7d810d7b59b010fd515"
739 |
740 | path-is-absolute@^1.0.0:
741 | version "1.0.1"
742 | resolved "https://registry.yarnpkg.com/path-is-absolute/-/path-is-absolute-1.0.1.tgz#174b9268735534ffbc7ace6bf53a5a9e1b5c5f5f"
743 |
744 | path-is-inside@^1.0.1:
745 | version "1.0.2"
746 | resolved "https://registry.yarnpkg.com/path-is-inside/-/path-is-inside-1.0.2.tgz#365417dede44430d1c11af61027facf074bdfc53"
747 |
748 | path-type@^2.0.0:
749 | version "2.0.0"
750 | resolved "https://registry.yarnpkg.com/path-type/-/path-type-2.0.0.tgz#f012ccb8415b7096fc2daa1054c3d72389594c73"
751 | dependencies:
752 | pify "^2.0.0"
753 |
754 | pify@^2.0.0:
755 | version "2.3.0"
756 | resolved "https://registry.yarnpkg.com/pify/-/pify-2.3.0.tgz#ed141a6ac043a849ea588498e7dca8b15330e90c"
757 |
758 | pinkie-promise@^2.0.0:
759 | version "2.0.1"
760 | resolved "https://registry.yarnpkg.com/pinkie-promise/-/pinkie-promise-2.0.1.tgz#2135d6dfa7a358c069ac9b178776288228450ffa"
761 | dependencies:
762 | pinkie "^2.0.0"
763 |
764 | pinkie@^2.0.0:
765 | version "2.0.4"
766 | resolved "https://registry.yarnpkg.com/pinkie/-/pinkie-2.0.4.tgz#72556b80cfa0d48a974e80e77248e80ed4f7f870"
767 |
768 | pluralize@^1.2.1:
769 | version "1.2.1"
770 | resolved "https://registry.yarnpkg.com/pluralize/-/pluralize-1.2.1.tgz#d1a21483fd22bb41e58a12fa3421823140897c45"
771 |
772 | prelude-ls@~1.1.2:
773 | version "1.1.2"
774 | resolved "https://registry.yarnpkg.com/prelude-ls/-/prelude-ls-1.1.2.tgz#21932a549f5e52ffd9a827f570e04be62a97da54"
775 |
776 | process-nextick-args@~1.0.6:
777 | version "1.0.7"
778 | resolved "https://registry.yarnpkg.com/process-nextick-args/-/process-nextick-args-1.0.7.tgz#150e20b756590ad3f91093f25a4f2ad8bff30ba3"
779 |
780 | progress@^1.1.8:
781 | version "1.1.8"
782 | resolved "https://registry.yarnpkg.com/progress/-/progress-1.1.8.tgz#e260c78f6161cdd9b0e56cc3e0a85de17c7a57be"
783 |
784 | read-pkg-up:
785 | version "2.0.0"
786 | resolved "https://registry.yarnpkg.com/read-pkg-up/-/read-pkg-up-2.0.0.tgz#6b72a8048984e0c41e79510fd5e9fa99b3b549be"
787 | dependencies:
788 | find-up "^2.0.0"
789 | read-pkg "^2.0.0"
790 |
791 | read-pkg@^2.0.0:
792 | version "2.0.0"
793 | resolved "https://registry.yarnpkg.com/read-pkg/-/read-pkg-2.0.0.tgz#8ef1c0623c6a6db0dc6713c4bfac46332b2368f8"
794 | dependencies:
795 | load-json-file "^2.0.0"
796 | normalize-package-data "^2.3.2"
797 | path-type "^2.0.0"
798 |
799 | readable-stream@^2.2.2:
800 | version "2.2.2"
801 | resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-2.2.2.tgz#a9e6fec3c7dda85f8bb1b3ba7028604556fc825e"
802 | dependencies:
803 | buffer-shims "^1.0.0"
804 | core-util-is "~1.0.0"
805 | inherits "~2.0.1"
806 | isarray "~1.0.0"
807 | process-nextick-args "~1.0.6"
808 | string_decoder "~0.10.x"
809 | util-deprecate "~1.0.1"
810 |
811 | readline2@^1.0.1:
812 | version "1.0.1"
813 | resolved "https://registry.yarnpkg.com/readline2/-/readline2-1.0.1.tgz#41059608ffc154757b715d9989d199ffbf372e35"
814 | dependencies:
815 | code-point-at "^1.0.0"
816 | is-fullwidth-code-point "^1.0.0"
817 | mute-stream "0.0.5"
818 |
819 | rechoir@^0.6.2:
820 | version "0.6.2"
821 | resolved "https://registry.yarnpkg.com/rechoir/-/rechoir-0.6.2.tgz#85204b54dba82d5742e28c96756ef43af50e3384"
822 | dependencies:
823 | resolve "^1.1.6"
824 |
825 | regenerator-runtime@^0.10.0:
826 | version "0.10.1"
827 | resolved "https://registry.yarnpkg.com/regenerator-runtime/-/regenerator-runtime-0.10.1.tgz#257f41961ce44558b18f7814af48c17559f9faeb"
828 |
829 | require-uncached@^1.0.2:
830 | version "1.0.3"
831 | resolved "https://registry.yarnpkg.com/require-uncached/-/require-uncached-1.0.3.tgz#4e0d56d6c9662fd31e43011c4b95aa49955421d3"
832 | dependencies:
833 | caller-path "^0.1.0"
834 | resolve-from "^1.0.0"
835 |
836 | resolve-from@^1.0.0:
837 | version "1.0.1"
838 | resolved "https://registry.yarnpkg.com/resolve-from/-/resolve-from-1.0.1.tgz#26cbfe935d1aeeeabb29bc3fe5aeb01e93d44226"
839 |
840 | resolve@^1.1.6:
841 | version "1.2.0"
842 | resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.2.0.tgz#9589c3f2f6149d1417a40becc1663db6ec6bc26c"
843 |
844 | restore-cursor@^1.0.1:
845 | version "1.0.1"
846 | resolved "https://registry.yarnpkg.com/restore-cursor/-/restore-cursor-1.0.1.tgz#34661f46886327fed2991479152252df92daa541"
847 | dependencies:
848 | exit-hook "^1.0.0"
849 | onetime "^1.0.0"
850 |
851 | rimraf@^2.2.8:
852 | version "2.5.4"
853 | resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-2.5.4.tgz#96800093cbf1a0c86bd95b4625467535c29dfa04"
854 | dependencies:
855 | glob "^7.0.5"
856 |
857 | run-async@^0.1.0:
858 | version "0.1.0"
859 | resolved "https://registry.yarnpkg.com/run-async/-/run-async-0.1.0.tgz#c8ad4a5e110661e402a7d21b530e009f25f8e389"
860 | dependencies:
861 | once "^1.3.0"
862 |
863 | rx-lite@^3.1.2:
864 | version "3.1.2"
865 | resolved "https://registry.yarnpkg.com/rx-lite/-/rx-lite-3.1.2.tgz#19ce502ca572665f3b647b10939f97fd1615f102"
866 |
867 | "semver@2 || 3 || 4 || 5":
868 | version "5.3.0"
869 | resolved "https://registry.yarnpkg.com/semver/-/semver-5.3.0.tgz#9b2ce5d3de02d17c6012ad326aa6b4d0cf54f94f"
870 |
871 | shelljs@^0.7.5:
872 | version "0.7.6"
873 | resolved "https://registry.yarnpkg.com/shelljs/-/shelljs-0.7.6.tgz#379cccfb56b91c8601e4793356eb5382924de9ad"
874 | dependencies:
875 | glob "^7.0.0"
876 | interpret "^1.0.0"
877 | rechoir "^0.6.2"
878 |
879 | slice-ansi@0.0.4:
880 | version "0.0.4"
881 | resolved "https://registry.yarnpkg.com/slice-ansi/-/slice-ansi-0.0.4.tgz#edbf8903f66f7ce2f8eafd6ceed65e264c831b35"
882 |
883 | spdx-correct@~1.0.0:
884 | version "1.0.2"
885 | resolved "https://registry.yarnpkg.com/spdx-correct/-/spdx-correct-1.0.2.tgz#4b3073d933ff51f3912f03ac5519498a4150db40"
886 | dependencies:
887 | spdx-license-ids "^1.0.2"
888 |
889 | spdx-expression-parse@~1.0.0:
890 | version "1.0.4"
891 | resolved "https://registry.yarnpkg.com/spdx-expression-parse/-/spdx-expression-parse-1.0.4.tgz#9bdf2f20e1f40ed447fbe273266191fced51626c"
892 |
893 | spdx-license-ids@^1.0.2:
894 | version "1.2.2"
895 | resolved "https://registry.yarnpkg.com/spdx-license-ids/-/spdx-license-ids-1.2.2.tgz#c9df7a3424594ade6bd11900d596696dc06bac57"
896 |
897 | sprintf-js@~1.0.2:
898 | version "1.0.3"
899 | resolved "https://registry.yarnpkg.com/sprintf-js/-/sprintf-js-1.0.3.tgz#04e6926f662895354f3dd015203633b857297e2c"
900 |
901 | string_decoder@~0.10.x:
902 | version "0.10.31"
903 | resolved "https://registry.yarnpkg.com/string_decoder/-/string_decoder-0.10.31.tgz#62e203bc41766c6c28c9fc84301dab1c5310fa94"
904 |
905 | string-width@^1.0.1:
906 | version "1.0.2"
907 | resolved "https://registry.yarnpkg.com/string-width/-/string-width-1.0.2.tgz#118bdf5b8cdc51a2a7e70d211e07e2b0b9b107d3"
908 | dependencies:
909 | code-point-at "^1.0.0"
910 | is-fullwidth-code-point "^1.0.0"
911 | strip-ansi "^3.0.0"
912 |
913 | string-width@^2.0.0:
914 | version "2.0.0"
915 | resolved "https://registry.yarnpkg.com/string-width/-/string-width-2.0.0.tgz#635c5436cc72a6e0c387ceca278d4e2eec52687e"
916 | dependencies:
917 | is-fullwidth-code-point "^2.0.0"
918 | strip-ansi "^3.0.0"
919 |
920 | strip-ansi@^3.0.0:
921 | version "3.0.1"
922 | resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-3.0.1.tgz#6a385fb8853d952d5ff05d0e8aaf94278dc63dcf"
923 | dependencies:
924 | ansi-regex "^2.0.0"
925 |
926 | strip-bom@^3.0.0:
927 | version "3.0.0"
928 | resolved "https://registry.yarnpkg.com/strip-bom/-/strip-bom-3.0.0.tgz#2334c18e9c759f7bdd56fdef7e9ae3d588e68ed3"
929 |
930 | strip-json-comments@~2.0.1:
931 | version "2.0.1"
932 | resolved "https://registry.yarnpkg.com/strip-json-comments/-/strip-json-comments-2.0.1.tgz#3c531942e908c2697c0ec344858c286c7ca0a60a"
933 |
934 | supports-color@^2.0.0:
935 | version "2.0.0"
936 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-2.0.0.tgz#535d045ce6b6363fa40117084629995e9df324c7"
937 |
938 | table@^3.7.8:
939 | version "3.8.3"
940 | resolved "https://registry.yarnpkg.com/table/-/table-3.8.3.tgz#2bbc542f0fda9861a755d3947fefd8b3f513855f"
941 | dependencies:
942 | ajv "^4.7.0"
943 | ajv-keywords "^1.0.0"
944 | chalk "^1.1.1"
945 | lodash "^4.0.0"
946 | slice-ansi "0.0.4"
947 | string-width "^2.0.0"
948 |
949 | text-table@~0.2.0:
950 | version "0.2.0"
951 | resolved "https://registry.yarnpkg.com/text-table/-/text-table-0.2.0.tgz#7f5ee823ae805207c00af2df4a84ec3fcfa570b4"
952 |
953 | through@^2.3.6:
954 | version "2.3.8"
955 | resolved "https://registry.yarnpkg.com/through/-/through-2.3.8.tgz#0dd4c9ffaabc357960b1b724115d7e0e86a2e1f5"
956 |
957 | to-fast-properties@^1.0.1:
958 | version "1.0.2"
959 | resolved "https://registry.yarnpkg.com/to-fast-properties/-/to-fast-properties-1.0.2.tgz#f3f5c0c3ba7299a7ef99427e44633257ade43320"
960 |
961 | tryit@^1.0.1:
962 | version "1.0.3"
963 | resolved "https://registry.yarnpkg.com/tryit/-/tryit-1.0.3.tgz#393be730a9446fd1ead6da59a014308f36c289cb"
964 |
965 | type-check@~0.3.2:
966 | version "0.3.2"
967 | resolved "https://registry.yarnpkg.com/type-check/-/type-check-0.3.2.tgz#5884cab512cf1d355e3fb784f30804b2b520db72"
968 | dependencies:
969 | prelude-ls "~1.1.2"
970 |
971 | typedarray@^0.0.6:
972 | version "0.0.6"
973 | resolved "https://registry.yarnpkg.com/typedarray/-/typedarray-0.0.6.tgz#867ac74e3864187b1d3d47d996a78ec5c8830777"
974 |
975 | user-home@^2.0.0:
976 | version "2.0.0"
977 | resolved "https://registry.yarnpkg.com/user-home/-/user-home-2.0.0.tgz#9c70bfd8169bc1dcbf48604e0f04b8b49cde9e9f"
978 | dependencies:
979 | os-homedir "^1.0.0"
980 |
981 | util-deprecate@~1.0.1:
982 | version "1.0.2"
983 | resolved "https://registry.yarnpkg.com/util-deprecate/-/util-deprecate-1.0.2.tgz#450d4dc9fa70de732762fbd2d4a28981419a0ccf"
984 |
985 | validate-npm-package-license@^3.0.1:
986 | version "3.0.1"
987 | resolved "https://registry.yarnpkg.com/validate-npm-package-license/-/validate-npm-package-license-3.0.1.tgz#2804babe712ad3379459acfbe24746ab2c303fbc"
988 | dependencies:
989 | spdx-correct "~1.0.0"
990 | spdx-expression-parse "~1.0.0"
991 |
992 | wordwrap@~1.0.0:
993 | version "1.0.0"
994 | resolved "https://registry.yarnpkg.com/wordwrap/-/wordwrap-1.0.0.tgz#27584810891456a4171c8d0226441ade90cbcaeb"
995 |
996 | wrappy@1:
997 | version "1.0.2"
998 | resolved "https://registry.yarnpkg.com/wrappy/-/wrappy-1.0.2.tgz#b5243d8f3ec1aa35f1364605bc0d1036e30ab69f"
999 |
1000 | write@^0.2.1:
1001 | version "0.2.1"
1002 | resolved "https://registry.yarnpkg.com/write/-/write-0.2.1.tgz#5fc03828e264cea3fe91455476f7a3c566cb0757"
1003 | dependencies:
1004 | mkdirp "^0.5.1"
1005 |
1006 | xtend@^4.0.0:
1007 | version "4.0.1"
1008 | resolved "https://registry.yarnpkg.com/xtend/-/xtend-4.0.1.tgz#a5c6d532be656e23db820efb943a1f04998d63af"
1009 |
1010 |
--------------------------------------------------------------------------------