learn_duplicate 0.0.5

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (42) hide show
  1. checksums.yaml +7 -0
  2. data/CONTRIBUTING.md +40 -0
  3. data/Gemfile +13 -0
  4. data/LICENSE.md +23 -0
  5. data/README.md +53 -0
  6. data/Rakefile +6 -0
  7. data/bin/learn_duplicate +4 -0
  8. data/lib/learn_duplicate.rb +152 -0
  9. data/lib/templates/javascript_lab_template/CONTRIBUTING.md +40 -0
  10. data/lib/templates/javascript_lab_template/LICENSE.md +23 -0
  11. data/lib/templates/javascript_lab_template/README.md +16 -0
  12. data/lib/templates/javascript_lab_template/index.html +12 -0
  13. data/lib/templates/javascript_lab_template/index.js +5 -0
  14. data/lib/templates/javascript_lab_template/package-lock.json +1854 -0
  15. data/lib/templates/javascript_lab_template/package.json +21 -0
  16. data/lib/templates/javascript_lab_template/test/helpers.js +20 -0
  17. data/lib/templates/javascript_lab_template/test/indexTest.js +23 -0
  18. data/lib/templates/react-lab-template/README.md +16 -0
  19. data/lib/templates/react-lab-template/package-lock.json +12333 -0
  20. data/lib/templates/react-lab-template/package.json +38 -0
  21. data/lib/templates/react-lab-template/public/index.html +41 -0
  22. data/lib/templates/react-lab-template/public/manifest.json +13 -0
  23. data/lib/templates/react-lab-template/src/App.css +5 -0
  24. data/lib/templates/react-lab-template/src/App.js +18 -0
  25. data/lib/templates/react-lab-template/src/components/Button.js +19 -0
  26. data/lib/templates/react-lab-template/src/components/ExampleComponent.js +15 -0
  27. data/lib/templates/react-lab-template/src/components/Greeting.js +15 -0
  28. data/lib/templates/react-lab-template/src/index.js +8 -0
  29. data/lib/templates/react-lab-template/test/index.test.js +64 -0
  30. data/lib/templates/react-lab-template/test/mocha.opts +4 -0
  31. data/lib/templates/readme_template/CONTRIBUTING.md +40 -0
  32. data/lib/templates/readme_template/LICENSE.md +23 -0
  33. data/lib/templates/readme_template/README.md +16 -0
  34. data/lib/templates/ruby_lab_template/CONTRIBUTING.md +40 -0
  35. data/lib/templates/ruby_lab_template/Gemfile +4 -0
  36. data/lib/templates/ruby_lab_template/Gemfile.lock +32 -0
  37. data/lib/templates/ruby_lab_template/LICENSE.md +23 -0
  38. data/lib/templates/ruby_lab_template/README.md +16 -0
  39. data/lib/templates/ruby_lab_template/lib/example.rb +13 -0
  40. data/lib/templates/ruby_lab_template/spec/example_spec.rb +37 -0
  41. data/lib/templates/ruby_lab_template/spec/spec_helper.rb +65 -0
  42. metadata +97 -0
checksums.yaml ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA256:
3
+ metadata.gz: 398d6e2abe891a095ae2ebc7ed78db3f2548eb031f23d91aec4b91659aaa43b3
4
+ data.tar.gz: 3504454d76e535ca4620c5dfa972e40c4c7b595ce540b3540bd8fb42e8a74fbe
5
+ SHA512:
6
+ metadata.gz: 6e86f6092715ab6af116c7df540cdd56d6ad4d5a588abe187a7709c754e5bf400e94cc09e194cd5fba2aba2d4a6464e1214d78883755ec3713e46907f50d81b2
7
+ data.tar.gz: 882bd7627d03de0218e3c9b179fc7b8f1ea2c7523ae06db1067b9ed7577bcb0a7c9259644915f9350612a94449f9b308309829216d0f392a205810e903a86749
data/CONTRIBUTING.md ADDED
@@ -0,0 +1,40 @@
1
+ # Contributing to Learn.co Curriculum
2
+
3
+ We're really excited that you're about to contribute to the [open
4
+ curriculum](https://learn.co/content-license) on [Learn.co](https://learn.co).
5
+ If this is your first time contributing, please continue reading to learn how
6
+ to make the most meaningful and useful impact possible.
7
+
8
+ ## Raising an Issue to Encourage a Contribution
9
+
10
+ If you notice a problem with the curriculum that you believe needs improvement
11
+ but you're unable to make the change yourself, you should raise a Github issue
12
+ containing a clear description of the problem. Include relevant snippets of
13
+ the content and/or screenshots if applicable. Curriculum owners regularly review
14
+ issue lists and your issue will be prioritized and addressed as appropriate.
15
+
16
+ ## Submitting a Pull Request to Suggest an Improvement
17
+
18
+ If you see an opportunity for improvement and can make the change yourself go
19
+ ahead and use a typical git workflow to make it happen:
20
+
21
+ * Fork this curriculum repository
22
+ * Make the change on your fork, with descriptive commits in the standard format
23
+ * Open a Pull Request against this repo
24
+
25
+ A curriculum owner will review your change and approve or comment on it in due
26
+ course.
27
+
28
+ # Why Contribute?
29
+
30
+ Curriculum on Learn is publicly and freely available under Learn's
31
+ [Educational Content License](https://learn.co/content-license). By
32
+ embracing an open-source contribution model, our goal is for the curriculum
33
+ on Learn to become, in time, the best educational content the world has
34
+ ever seen.
35
+
36
+ We need help from the community of Learners to maintain and improve the
37
+ educational content. Everything from fixing typos, to correcting
38
+ out-dated information, to improving exposition, to adding better examples,
39
+ to fixing tests—all contributions to making the curriculum more effective are
40
+ welcome.
data/Gemfile ADDED
@@ -0,0 +1,13 @@
1
+ source "https://rubygems.org"
2
+
3
+ git_source(:github) {|repo_name| "https://github.com/#{repo_name}" }
4
+
5
+ ruby "2.6.1"
6
+
7
+ gem 'json'
8
+ gem 'odyssey'
9
+ gem 'awesome_print'
10
+ gem 'faraday'
11
+ gem 'uri'
12
+
13
+ # Specify your gem's dependencies in learn_create.gemspec
data/LICENSE.md ADDED
@@ -0,0 +1,23 @@
1
+ # Learn.co Educational Content License
2
+
3
+ Copyright (c) 2018 Flatiron School, Inc
4
+
5
+ The Flatiron School, Inc. owns this Educational Content. However, the Flatiron
6
+ School supports the development and availability of educational materials in
7
+ the public domain. Therefore, the Flatiron School grants Users of the Flatiron
8
+ Educational Content set forth in this repository certain rights to reuse, build
9
+ upon and share such Educational Content subject to the terms of the Educational
10
+ Content License set forth [here](http://learn.co/content-license)
11
+ (http://learn.co/content-license). You must read carefully the terms and
12
+ conditions contained in the Educational Content License as such terms govern
13
+ access to and use of the Educational Content.
14
+
15
+ Flatiron School is willing to allow you access to and use of the Educational
16
+ Content only on the condition that you accept all of the terms and conditions
17
+ contained in the Educational Content License set forth
18
+ [here](http://learn.co/content-license) (http://learn.co/content-license). By
19
+ accessing and/or using the Educational Content, you are agreeing to all of the
20
+ terms and conditions contained in the Educational Content License. If you do
21
+ not agree to any or all of the terms of the Educational Content License, you
22
+ are prohibited from accessing, reviewing or using in any way the Educational
23
+ Content.
data/README.md ADDED
@@ -0,0 +1,53 @@
1
+ # Learn Create
2
+
3
+ This gem is designed to aid in the creation of learn lessons.
4
+
5
+ ## Installation and Setup
6
+
7
+ Before using `learn_create`, you must install `hub`, GitHub's extended CLI API.
8
+
9
+ ```sh
10
+ $ brew install hub
11
+ ```
12
+
13
+ Once `hub` is installed, you'll need to get it configured before running
14
+ `learn_create`. The best way to do this is to use `hub` once to create a
15
+ repository on learn-co-curriculum. In the shell:
16
+
17
+ - Create a new, empty folder and `cd` into it
18
+ - `git init` to create an initial git repo
19
+ - Run `hub create learn-co-curriculum/<whatever name you've chosen>`
20
+ - You should be prompted to sign into GitHub
21
+ - **Note:** If you have set up two-factor identification on GitHub, when
22
+ prompted for your password, you have two options:
23
+ - If Github SMS' you a one-time password, use it!
24
+ - Otherwise, instead of using your normal password, you
25
+ need to enter a personal access token. You can create a token in your
26
+ GitHub settings page.
27
+ - If everything works as expected you should now have an empty `learn-co-curriculum` repo.
28
+ - Delete the repo. Everything should be set up now.
29
+
30
+ Install the `learn_create` gem:
31
+
32
+ ```sh
33
+ $ gem install learn_create
34
+ ```
35
+
36
+ ## Usage
37
+
38
+ To create a new learn repository, navigate to the folder where you'd like your
39
+ repo to be created locally. Type:
40
+
41
+ ```sh
42
+ learn_create
43
+ ```
44
+
45
+ Follow the command line prompts for setting up and naming your repository. The
46
+ repo will be created locally and pushed to GitHub. When finished, you can `cd`
47
+ into the local folder or open it on github to start working.
48
+
49
+ ## Resources
50
+
51
+ - [Hub]
52
+
53
+ [hub]: https://hub.github.com/hub.1.html
data/Rakefile ADDED
@@ -0,0 +1,6 @@
1
+ require "bundler/gem_tasks"
2
+ require "rspec/core/rake_task"
3
+
4
+ RSpec::Core::RakeTask.new(:spec)
5
+
6
+ task :default => :spec
@@ -0,0 +1,4 @@
1
+ #!/usr/bin/env ruby
2
+
3
+ require 'learn_duplicate'
4
+ LearnDuplicate.new
@@ -0,0 +1,152 @@
1
+ require 'require_all'
2
+ require 'faraday'
3
+ require 'uri'
4
+ require 'open3'
5
+ require 'pry'
6
+
7
+ class LearnDuplicate
8
+ def initialize()
9
+
10
+ @repo_name = ''
11
+ @old_repo = ''
12
+ @ssh_configured = check_ssh_config
13
+
14
+ puts 'Note: You must have write access to the learn-co-curriculum org on GitHub to use this tool'
15
+
16
+ loop do
17
+ puts 'What is the name of the repository you would like to copy? Paste exactly as is shown in the URL (i.e. advanced-hashes-hashketball)'
18
+ @old_repo = gets.strip
19
+
20
+ url = 'https://api.github.com/repos/learn-co-curriculum/' + @old_repo
21
+ encoded_url = URI.encode(url).slice(0, url.length)
22
+ check_existing = Faraday.get URI.parse(encoded_url)
23
+
24
+ if check_existing.body.include? '"Not Found"'
25
+ puts 'Provided repository name is not a valid learn-co-curriculum repository. Please try again.'
26
+ else
27
+ break
28
+ end
29
+ end
30
+
31
+ loop do
32
+ puts ''
33
+ puts 'Old repository: ' + @old_repo
34
+ puts 'What is the name of the repository you would like to create?'
35
+
36
+ @repo_name = gets.strip.gsub(/\s+/, '-').downcase
37
+ url = 'https://api.github.com/repos/learn-co-curriculum/' + @repo_name
38
+ encoded_url = URI.encode(url).slice(0, url.length)
39
+ check_existing = Faraday.get URI.parse(encoded_url)
40
+
41
+ break if check_existing.body.include? '"Not Found"'
42
+
43
+ puts 'A repository with that name already exists:'
44
+ puts 'https://github.com/learn-co-curriculum/' + @repo_name
45
+ puts ''
46
+ end
47
+
48
+
49
+
50
+ create_new_repo
51
+ puts ''
52
+ cd_into_and('echo "Repository created."')
53
+
54
+ end
55
+
56
+ private
57
+
58
+
59
+ def create_local_lesson(type = 'readme', language = nil)
60
+ if !language
61
+ puts "Creating #{type}..."
62
+ template_folder = "/templates/#{type}_template"
63
+ else
64
+ puts "Creating #{language} #{type}..."
65
+ template_folder = "/templates/#{language}_#{type}_template"
66
+ end
67
+
68
+ gem_template_location = File.dirname(__FILE__)
69
+ template_path = File.expand_path(gem_template_location) + template_folder
70
+
71
+ copy_template(template_path)
72
+ create_dot_learn_file(type, language)
73
+ create_dot_gitignore_file()
74
+ end
75
+
76
+
77
+ def cd_into_and(command)
78
+ "cd #{@repo_name} && #{command}"
79
+ end
80
+
81
+ def git_clone
82
+ cmd = "git clone https://github.com/learn-co-curriculum/#{@old_repo}"
83
+ `#{cmd}`
84
+ end
85
+
86
+ def rename_repo
87
+ cmd = "mv -f #{@old_repo} #{@repo_name}"
88
+ `#{cmd}`
89
+ end
90
+
91
+ # def git_init
92
+ # cmd = cd_into_and('git init')
93
+ # `#{cmd}`
94
+ # end
95
+ #
96
+ # def git_add
97
+ # cmd = cd_into_and('git add .')
98
+ # `#{cmd}`
99
+ # end
100
+ #
101
+ # def git_commit
102
+ # cmd = cd_into_and('git commit -m "automated initial commit"')
103
+ # `#{cmd}`
104
+ # end
105
+ #
106
+ def git_create
107
+ cmd = cd_into_and("hub create learn-co-curriculum/#{@repo_name}")
108
+ `#{cmd}`
109
+ end
110
+
111
+ def git_set_remote
112
+ remote = @ssh_configured ? "git@github.com:learn-co-curriculum/#{@repo_name}.git" : "https://github.com/learn-co-curriculum/#{@repo_name}"
113
+ cmd = cd_into_and("git remote set-url origin #{remote}")
114
+ `#{cmd}`
115
+ end
116
+
117
+ def git_push
118
+ cmd = cd_into_and('git push -u origin master')
119
+ `#{cmd}`
120
+ end
121
+
122
+ def check_ssh_config
123
+ result = Open3.capture2e('ssh -T git@github.com').first
124
+ result.include?("You've successfully authenticated")
125
+ end
126
+
127
+ def create_new_repo
128
+ # 'cd' doesn't work the way it would in the shell, must be used before every command
129
+ puts 'Cloning old repository'
130
+ git_clone
131
+ puts 'Renaming old repository with new name'
132
+ rename_repo
133
+ # puts ''
134
+ # puts 'Reinitializing'
135
+ # git_init
136
+ # puts ''
137
+ # puts 'Staging content for commit'
138
+ # git_add
139
+ # puts ''
140
+ # puts 'Creating initial commit'
141
+ # git_commit
142
+ puts ''
143
+ puts 'Creating new remote learn-co-curriculum repository'
144
+ git_create
145
+ puts ''
146
+ puts 'Setting new git remote'
147
+ git_set_remote
148
+ puts ''
149
+ puts 'Pushing to new remote'
150
+ git_push
151
+ end
152
+ end
@@ -0,0 +1,40 @@
1
+ # Contributing to Learn.co Curriculum
2
+
3
+ We're really excited that you're about to contribute to the [open
4
+ curriculum](https://learn.co/content-license) on [Learn.co](https://learn.co).
5
+ If this is your first time contributing, please continue reading to learn how
6
+ to make the most meaningful and useful impact possible.
7
+
8
+ ## Raising an Issue to Encourage a Contribution
9
+
10
+ If you notice a problem with the curriculum that you believe needs improvement
11
+ but you're unable to make the change yourself, you should raise a Github issue
12
+ containing a clear description of the problem. Include relevant snippets of
13
+ the content and/or screenshots if applicable. Curriculum owners regularly review
14
+ issue lists and your issue will be prioritized and addressed as appropriate.
15
+
16
+ ## Submitting a Pull Request to Suggest an Improvement
17
+
18
+ If you see an opportunity for improvement and can make the change yourself go
19
+ ahead and use a typical git workflow to make it happen:
20
+
21
+ * Fork this curriculum repository
22
+ * Make the change on your fork, with descriptive commits in the standard format
23
+ * Open a Pull Request against this repo
24
+
25
+ A curriculum owner will review your change and approve or comment on it in due
26
+ course.
27
+
28
+ # Why Contribute?
29
+
30
+ Curriculum on Learn is publicly and freely available under Learn's
31
+ [Educational Content License](https://learn.co/content-license). By
32
+ embracing an open-source contribution model, our goal is for the curriculum
33
+ on Learn to become, in time, the best educational content the world has
34
+ ever seen.
35
+
36
+ We need help from the community of Learners to maintain and improve the
37
+ educational content. Everything from fixing typos, to correcting
38
+ out-dated information, to improving exposition, to adding better examples,
39
+ to fixing tests—all contributions to making the curriculum more effective are
40
+ welcome.
@@ -0,0 +1,23 @@
1
+ # Learn.co Educational Content License
2
+
3
+ Copyright (c) 2018 Flatiron School, Inc
4
+
5
+ The Flatiron School, Inc. owns this Educational Content. However, the Flatiron
6
+ School supports the development and availability of educational materials in
7
+ the public domain. Therefore, the Flatiron School grants Users of the Flatiron
8
+ Educational Content set forth in this repository certain rights to reuse, build
9
+ upon and share such Educational Content subject to the terms of the Educational
10
+ Content License set forth [here](http://learn.co/content-license)
11
+ (http://learn.co/content-license). You must read carefully the terms and
12
+ conditions contained in the Educational Content License as such terms govern
13
+ access to and use of the Educational Content.
14
+
15
+ Flatiron School is willing to allow you access to and use of the Educational
16
+ Content only on the condition that you accept all of the terms and conditions
17
+ contained in the Educational Content License set forth
18
+ [here](http://learn.co/content-license) (http://learn.co/content-license). By
19
+ accessing and/or using the Educational Content, you are agreeing to all of the
20
+ terms and conditions contained in the Educational Content License. If you do
21
+ not agree to any or all of the terms of the Educational Content License, you
22
+ are prohibited from accessing, reviewing or using in any way the Educational
23
+ Content.
@@ -0,0 +1,16 @@
1
+ # Title
2
+
3
+ ## Learning Goals
4
+
5
+ -SWBAT 1
6
+ -SWBAT 2
7
+
8
+ ## Introduction
9
+
10
+ ## SWBAT 1
11
+
12
+ ## SWBAT 2
13
+
14
+ ## Conclusion
15
+
16
+ ## Resources
@@ -0,0 +1,12 @@
1
+ <!DOCTYPE html>
2
+ <html lang="en">
3
+ <head>
4
+ <meta charset="UTF-8">
5
+ <meta name="viewport" content="width=device-width, initial-scale=1.0">
6
+ <meta http-equiv="X-UA-Compatible" content="ie=edge">
7
+ <title>JavaScript Lab</title>
8
+ </head>
9
+ <body>
10
+ hello
11
+ </body>
12
+ </html>
@@ -0,0 +1,5 @@
1
+ const testVar = {}
2
+
3
+ function testFunc() {
4
+ return "hi"
5
+ }
@@ -0,0 +1,1854 @@
1
+ {
2
+ "name": "javascript-lab",
3
+ "version": "1.0.0",
4
+ "lockfileVersion": 1,
5
+ "requires": true,
6
+ "dependencies": {
7
+ "abab": {
8
+ "version": "1.0.4",
9
+ "resolved": "https://registry.npmjs.org/abab/-/abab-1.0.4.tgz",
10
+ "integrity": "sha1-X6rZwsB/YN12dw9xzwJbYqY8/U4=",
11
+ "dev": true
12
+ },
13
+ "acorn": {
14
+ "version": "2.7.0",
15
+ "resolved": "http://registry.npmjs.org/acorn/-/acorn-2.7.0.tgz",
16
+ "integrity": "sha1-q259nYhqrKiwhbwzEreaGYQz8Oc=",
17
+ "dev": true
18
+ },
19
+ "acorn-globals": {
20
+ "version": "1.0.9",
21
+ "resolved": "http://registry.npmjs.org/acorn-globals/-/acorn-globals-1.0.9.tgz",
22
+ "integrity": "sha1-VbtemGkVB7dFedBRNBMhfDgMVM8=",
23
+ "dev": true,
24
+ "requires": {
25
+ "acorn": "^2.1.0"
26
+ }
27
+ },
28
+ "ajv": {
29
+ "version": "5.5.2",
30
+ "resolved": "https://registry.npmjs.org/ajv/-/ajv-5.5.2.tgz",
31
+ "integrity": "sha1-c7Xuyj+rZT49P5Qis0GtQiBdyWU=",
32
+ "dev": true,
33
+ "requires": {
34
+ "co": "^4.6.0",
35
+ "fast-deep-equal": "^1.0.0",
36
+ "fast-json-stable-stringify": "^2.0.0",
37
+ "json-schema-traverse": "^0.3.0"
38
+ }
39
+ },
40
+ "ansi-regex": {
41
+ "version": "2.1.1",
42
+ "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-2.1.1.tgz",
43
+ "integrity": "sha1-w7M6te42DYbg5ijwRorn7yfWVN8=",
44
+ "dev": true
45
+ },
46
+ "ansi-styles": {
47
+ "version": "2.2.1",
48
+ "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-2.2.1.tgz",
49
+ "integrity": "sha1-tDLdM1i2NM914eRmQ2gkBTPB3b4=",
50
+ "dev": true
51
+ },
52
+ "array-equal": {
53
+ "version": "1.0.0",
54
+ "resolved": "https://registry.npmjs.org/array-equal/-/array-equal-1.0.0.tgz",
55
+ "integrity": "sha1-jCpe8kcv2ep0KwTHenUJO6J1fJM=",
56
+ "dev": true
57
+ },
58
+ "asn1": {
59
+ "version": "0.2.4",
60
+ "resolved": "https://registry.npmjs.org/asn1/-/asn1-0.2.4.tgz",
61
+ "integrity": "sha512-jxwzQpLQjSmWXgwaCZE9Nz+glAG01yF1QnWgbhGwHI5A6FRIEY6IVqtHhIepHqI7/kyEyQEagBC5mBEFlIYvdg==",
62
+ "dev": true,
63
+ "requires": {
64
+ "safer-buffer": "~2.1.0"
65
+ }
66
+ },
67
+ "assert-plus": {
68
+ "version": "1.0.0",
69
+ "resolved": "https://registry.npmjs.org/assert-plus/-/assert-plus-1.0.0.tgz",
70
+ "integrity": "sha1-8S4PPF13sLHN2RRpQuTpbB5N1SU=",
71
+ "dev": true
72
+ },
73
+ "assertion-error": {
74
+ "version": "1.1.0",
75
+ "resolved": "https://registry.npmjs.org/assertion-error/-/assertion-error-1.1.0.tgz",
76
+ "integrity": "sha512-jgsaNduz+ndvGyFt3uSuWqvy4lCnIJiovtouQN5JZHOKCS2QuhEdbcQHFhVksz2N2U9hXJo8odG7ETyWlEeuDw==",
77
+ "dev": true
78
+ },
79
+ "asynckit": {
80
+ "version": "0.4.0",
81
+ "resolved": "https://registry.npmjs.org/asynckit/-/asynckit-0.4.0.tgz",
82
+ "integrity": "sha1-x57Zf380y48robyXkLzDZkdLS3k=",
83
+ "dev": true
84
+ },
85
+ "aws-sign2": {
86
+ "version": "0.7.0",
87
+ "resolved": "https://registry.npmjs.org/aws-sign2/-/aws-sign2-0.7.0.tgz",
88
+ "integrity": "sha1-tG6JCTSpWR8tL2+G1+ap8bP+dqg=",
89
+ "dev": true
90
+ },
91
+ "aws4": {
92
+ "version": "1.8.0",
93
+ "resolved": "https://registry.npmjs.org/aws4/-/aws4-1.8.0.tgz",
94
+ "integrity": "sha512-ReZxvNHIOv88FlT7rxcXIIC0fPt4KZqZbOlivyWtXLt8ESx84zd3kMC6iK5jVeS2qt+g7ftS7ye4fi06X5rtRQ==",
95
+ "dev": true
96
+ },
97
+ "babel-code-frame": {
98
+ "version": "6.26.0",
99
+ "resolved": "https://registry.npmjs.org/babel-code-frame/-/babel-code-frame-6.26.0.tgz",
100
+ "integrity": "sha1-Y/1D99weO7fONZR9uP42mj9Yx0s=",
101
+ "dev": true,
102
+ "requires": {
103
+ "chalk": "^1.1.3",
104
+ "esutils": "^2.0.2",
105
+ "js-tokens": "^3.0.2"
106
+ }
107
+ },
108
+ "babel-core": {
109
+ "version": "6.26.3",
110
+ "resolved": "https://registry.npmjs.org/babel-core/-/babel-core-6.26.3.tgz",
111
+ "integrity": "sha512-6jyFLuDmeidKmUEb3NM+/yawG0M2bDZ9Z1qbZP59cyHLz8kYGKYwpJP0UwUKKUiTRNvxfLesJnTedqczP7cTDA==",
112
+ "dev": true,
113
+ "requires": {
114
+ "babel-code-frame": "^6.26.0",
115
+ "babel-generator": "^6.26.0",
116
+ "babel-helpers": "^6.24.1",
117
+ "babel-messages": "^6.23.0",
118
+ "babel-register": "^6.26.0",
119
+ "babel-runtime": "^6.26.0",
120
+ "babel-template": "^6.26.0",
121
+ "babel-traverse": "^6.26.0",
122
+ "babel-types": "^6.26.0",
123
+ "babylon": "^6.18.0",
124
+ "convert-source-map": "^1.5.1",
125
+ "debug": "^2.6.9",
126
+ "json5": "^0.5.1",
127
+ "lodash": "^4.17.4",
128
+ "minimatch": "^3.0.4",
129
+ "path-is-absolute": "^1.0.1",
130
+ "private": "^0.1.8",
131
+ "slash": "^1.0.0",
132
+ "source-map": "^0.5.7"
133
+ }
134
+ },
135
+ "babel-generator": {
136
+ "version": "6.26.1",
137
+ "resolved": "https://registry.npmjs.org/babel-generator/-/babel-generator-6.26.1.tgz",
138
+ "integrity": "sha512-HyfwY6ApZj7BYTcJURpM5tznulaBvyio7/0d4zFOeMPUmfxkCjHocCuoLa2SAGzBI8AREcH3eP3758F672DppA==",
139
+ "dev": true,
140
+ "requires": {
141
+ "babel-messages": "^6.23.0",
142
+ "babel-runtime": "^6.26.0",
143
+ "babel-types": "^6.26.0",
144
+ "detect-indent": "^4.0.0",
145
+ "jsesc": "^1.3.0",
146
+ "lodash": "^4.17.4",
147
+ "source-map": "^0.5.7",
148
+ "trim-right": "^1.0.1"
149
+ }
150
+ },
151
+ "babel-helper-builder-binary-assignment-operator-visitor": {
152
+ "version": "6.24.1",
153
+ "resolved": "https://registry.npmjs.org/babel-helper-builder-binary-assignment-operator-visitor/-/babel-helper-builder-binary-assignment-operator-visitor-6.24.1.tgz",
154
+ "integrity": "sha1-zORReto1b0IgvK6KAsKzRvmlZmQ=",
155
+ "dev": true,
156
+ "requires": {
157
+ "babel-helper-explode-assignable-expression": "^6.24.1",
158
+ "babel-runtime": "^6.22.0",
159
+ "babel-types": "^6.24.1"
160
+ }
161
+ },
162
+ "babel-helper-call-delegate": {
163
+ "version": "6.24.1",
164
+ "resolved": "https://registry.npmjs.org/babel-helper-call-delegate/-/babel-helper-call-delegate-6.24.1.tgz",
165
+ "integrity": "sha1-7Oaqzdx25Bw0YfiL/Fdb0Nqi340=",
166
+ "dev": true,
167
+ "requires": {
168
+ "babel-helper-hoist-variables": "^6.24.1",
169
+ "babel-runtime": "^6.22.0",
170
+ "babel-traverse": "^6.24.1",
171
+ "babel-types": "^6.24.1"
172
+ }
173
+ },
174
+ "babel-helper-define-map": {
175
+ "version": "6.26.0",
176
+ "resolved": "https://registry.npmjs.org/babel-helper-define-map/-/babel-helper-define-map-6.26.0.tgz",
177
+ "integrity": "sha1-pfVtq0GiX5fstJjH66ypgZ+Vvl8=",
178
+ "dev": true,
179
+ "requires": {
180
+ "babel-helper-function-name": "^6.24.1",
181
+ "babel-runtime": "^6.26.0",
182
+ "babel-types": "^6.26.0",
183
+ "lodash": "^4.17.4"
184
+ }
185
+ },
186
+ "babel-helper-explode-assignable-expression": {
187
+ "version": "6.24.1",
188
+ "resolved": "https://registry.npmjs.org/babel-helper-explode-assignable-expression/-/babel-helper-explode-assignable-expression-6.24.1.tgz",
189
+ "integrity": "sha1-8luCz33BBDPFX3BZLVdGQArCLKo=",
190
+ "dev": true,
191
+ "requires": {
192
+ "babel-runtime": "^6.22.0",
193
+ "babel-traverse": "^6.24.1",
194
+ "babel-types": "^6.24.1"
195
+ }
196
+ },
197
+ "babel-helper-function-name": {
198
+ "version": "6.24.1",
199
+ "resolved": "https://registry.npmjs.org/babel-helper-function-name/-/babel-helper-function-name-6.24.1.tgz",
200
+ "integrity": "sha1-00dbjAPtmCQqJbSDUasYOZ01gKk=",
201
+ "dev": true,
202
+ "requires": {
203
+ "babel-helper-get-function-arity": "^6.24.1",
204
+ "babel-runtime": "^6.22.0",
205
+ "babel-template": "^6.24.1",
206
+ "babel-traverse": "^6.24.1",
207
+ "babel-types": "^6.24.1"
208
+ }
209
+ },
210
+ "babel-helper-get-function-arity": {
211
+ "version": "6.24.1",
212
+ "resolved": "https://registry.npmjs.org/babel-helper-get-function-arity/-/babel-helper-get-function-arity-6.24.1.tgz",
213
+ "integrity": "sha1-j3eCqpNAfEHTqlCQj4mwMbG2hT0=",
214
+ "dev": true,
215
+ "requires": {
216
+ "babel-runtime": "^6.22.0",
217
+ "babel-types": "^6.24.1"
218
+ }
219
+ },
220
+ "babel-helper-hoist-variables": {
221
+ "version": "6.24.1",
222
+ "resolved": "https://registry.npmjs.org/babel-helper-hoist-variables/-/babel-helper-hoist-variables-6.24.1.tgz",
223
+ "integrity": "sha1-HssnaJydJVE+rbyZFKc/VAi+enY=",
224
+ "dev": true,
225
+ "requires": {
226
+ "babel-runtime": "^6.22.0",
227
+ "babel-types": "^6.24.1"
228
+ }
229
+ },
230
+ "babel-helper-optimise-call-expression": {
231
+ "version": "6.24.1",
232
+ "resolved": "https://registry.npmjs.org/babel-helper-optimise-call-expression/-/babel-helper-optimise-call-expression-6.24.1.tgz",
233
+ "integrity": "sha1-96E0J7qfc/j0+pk8VKl4gtEkQlc=",
234
+ "dev": true,
235
+ "requires": {
236
+ "babel-runtime": "^6.22.0",
237
+ "babel-types": "^6.24.1"
238
+ }
239
+ },
240
+ "babel-helper-regex": {
241
+ "version": "6.26.0",
242
+ "resolved": "https://registry.npmjs.org/babel-helper-regex/-/babel-helper-regex-6.26.0.tgz",
243
+ "integrity": "sha1-MlxZ+QL4LyS3T6zu0DY5VPZJXnI=",
244
+ "dev": true,
245
+ "requires": {
246
+ "babel-runtime": "^6.26.0",
247
+ "babel-types": "^6.26.0",
248
+ "lodash": "^4.17.4"
249
+ }
250
+ },
251
+ "babel-helper-remap-async-to-generator": {
252
+ "version": "6.24.1",
253
+ "resolved": "https://registry.npmjs.org/babel-helper-remap-async-to-generator/-/babel-helper-remap-async-to-generator-6.24.1.tgz",
254
+ "integrity": "sha1-XsWBgnrXI/7N04HxySg5BnbkVRs=",
255
+ "dev": true,
256
+ "requires": {
257
+ "babel-helper-function-name": "^6.24.1",
258
+ "babel-runtime": "^6.22.0",
259
+ "babel-template": "^6.24.1",
260
+ "babel-traverse": "^6.24.1",
261
+ "babel-types": "^6.24.1"
262
+ }
263
+ },
264
+ "babel-helper-replace-supers": {
265
+ "version": "6.24.1",
266
+ "resolved": "https://registry.npmjs.org/babel-helper-replace-supers/-/babel-helper-replace-supers-6.24.1.tgz",
267
+ "integrity": "sha1-v22/5Dk40XNpohPKiov3S2qQqxo=",
268
+ "dev": true,
269
+ "requires": {
270
+ "babel-helper-optimise-call-expression": "^6.24.1",
271
+ "babel-messages": "^6.23.0",
272
+ "babel-runtime": "^6.22.0",
273
+ "babel-template": "^6.24.1",
274
+ "babel-traverse": "^6.24.1",
275
+ "babel-types": "^6.24.1"
276
+ }
277
+ },
278
+ "babel-helpers": {
279
+ "version": "6.24.1",
280
+ "resolved": "https://registry.npmjs.org/babel-helpers/-/babel-helpers-6.24.1.tgz",
281
+ "integrity": "sha1-NHHenK7DiOXIUOWX5Yom3fN2ArI=",
282
+ "dev": true,
283
+ "requires": {
284
+ "babel-runtime": "^6.22.0",
285
+ "babel-template": "^6.24.1"
286
+ }
287
+ },
288
+ "babel-messages": {
289
+ "version": "6.23.0",
290
+ "resolved": "https://registry.npmjs.org/babel-messages/-/babel-messages-6.23.0.tgz",
291
+ "integrity": "sha1-8830cDhYA1sqKVHG7F7fbGLyYw4=",
292
+ "dev": true,
293
+ "requires": {
294
+ "babel-runtime": "^6.22.0"
295
+ }
296
+ },
297
+ "babel-plugin-check-es2015-constants": {
298
+ "version": "6.22.0",
299
+ "resolved": "https://registry.npmjs.org/babel-plugin-check-es2015-constants/-/babel-plugin-check-es2015-constants-6.22.0.tgz",
300
+ "integrity": "sha1-NRV7EBQm/S/9PaP3XH0ekYNbv4o=",
301
+ "dev": true,
302
+ "requires": {
303
+ "babel-runtime": "^6.22.0"
304
+ }
305
+ },
306
+ "babel-plugin-syntax-async-functions": {
307
+ "version": "6.13.0",
308
+ "resolved": "http://registry.npmjs.org/babel-plugin-syntax-async-functions/-/babel-plugin-syntax-async-functions-6.13.0.tgz",
309
+ "integrity": "sha1-ytnK0RkbWtY0vzCuCHI5HgZHvpU=",
310
+ "dev": true
311
+ },
312
+ "babel-plugin-syntax-exponentiation-operator": {
313
+ "version": "6.13.0",
314
+ "resolved": "http://registry.npmjs.org/babel-plugin-syntax-exponentiation-operator/-/babel-plugin-syntax-exponentiation-operator-6.13.0.tgz",
315
+ "integrity": "sha1-nufoM3KQ2pUoggGmpX9BcDF4MN4=",
316
+ "dev": true
317
+ },
318
+ "babel-plugin-syntax-trailing-function-commas": {
319
+ "version": "6.22.0",
320
+ "resolved": "https://registry.npmjs.org/babel-plugin-syntax-trailing-function-commas/-/babel-plugin-syntax-trailing-function-commas-6.22.0.tgz",
321
+ "integrity": "sha1-ugNgk3+NBuQBgKQ/4NVhb/9TLPM=",
322
+ "dev": true
323
+ },
324
+ "babel-plugin-transform-async-to-generator": {
325
+ "version": "6.24.1",
326
+ "resolved": "https://registry.npmjs.org/babel-plugin-transform-async-to-generator/-/babel-plugin-transform-async-to-generator-6.24.1.tgz",
327
+ "integrity": "sha1-ZTbjeK/2yx1VF6wOQOs+n8jQh2E=",
328
+ "dev": true,
329
+ "requires": {
330
+ "babel-helper-remap-async-to-generator": "^6.24.1",
331
+ "babel-plugin-syntax-async-functions": "^6.8.0",
332
+ "babel-runtime": "^6.22.0"
333
+ }
334
+ },
335
+ "babel-plugin-transform-es2015-arrow-functions": {
336
+ "version": "6.22.0",
337
+ "resolved": "https://registry.npmjs.org/babel-plugin-transform-es2015-arrow-functions/-/babel-plugin-transform-es2015-arrow-functions-6.22.0.tgz",
338
+ "integrity": "sha1-RSaSy3EdX3ncf4XkQM5BufJE0iE=",
339
+ "dev": true,
340
+ "requires": {
341
+ "babel-runtime": "^6.22.0"
342
+ }
343
+ },
344
+ "babel-plugin-transform-es2015-block-scoped-functions": {
345
+ "version": "6.22.0",
346
+ "resolved": "https://registry.npmjs.org/babel-plugin-transform-es2015-block-scoped-functions/-/babel-plugin-transform-es2015-block-scoped-functions-6.22.0.tgz",
347
+ "integrity": "sha1-u8UbSflk1wy42OC5ToICRs46YUE=",
348
+ "dev": true,
349
+ "requires": {
350
+ "babel-runtime": "^6.22.0"
351
+ }
352
+ },
353
+ "babel-plugin-transform-es2015-block-scoping": {
354
+ "version": "6.26.0",
355
+ "resolved": "https://registry.npmjs.org/babel-plugin-transform-es2015-block-scoping/-/babel-plugin-transform-es2015-block-scoping-6.26.0.tgz",
356
+ "integrity": "sha1-1w9SmcEwjQXBL0Y4E7CgnnOxiV8=",
357
+ "dev": true,
358
+ "requires": {
359
+ "babel-runtime": "^6.26.0",
360
+ "babel-template": "^6.26.0",
361
+ "babel-traverse": "^6.26.0",
362
+ "babel-types": "^6.26.0",
363
+ "lodash": "^4.17.4"
364
+ }
365
+ },
366
+ "babel-plugin-transform-es2015-classes": {
367
+ "version": "6.24.1",
368
+ "resolved": "https://registry.npmjs.org/babel-plugin-transform-es2015-classes/-/babel-plugin-transform-es2015-classes-6.24.1.tgz",
369
+ "integrity": "sha1-WkxYpQyclGHlZLSyo7+ryXolhNs=",
370
+ "dev": true,
371
+ "requires": {
372
+ "babel-helper-define-map": "^6.24.1",
373
+ "babel-helper-function-name": "^6.24.1",
374
+ "babel-helper-optimise-call-expression": "^6.24.1",
375
+ "babel-helper-replace-supers": "^6.24.1",
376
+ "babel-messages": "^6.23.0",
377
+ "babel-runtime": "^6.22.0",
378
+ "babel-template": "^6.24.1",
379
+ "babel-traverse": "^6.24.1",
380
+ "babel-types": "^6.24.1"
381
+ }
382
+ },
383
+ "babel-plugin-transform-es2015-computed-properties": {
384
+ "version": "6.24.1",
385
+ "resolved": "https://registry.npmjs.org/babel-plugin-transform-es2015-computed-properties/-/babel-plugin-transform-es2015-computed-properties-6.24.1.tgz",
386
+ "integrity": "sha1-b+Ko0WiV1WNPTNmZttNICjCBWbM=",
387
+ "dev": true,
388
+ "requires": {
389
+ "babel-runtime": "^6.22.0",
390
+ "babel-template": "^6.24.1"
391
+ }
392
+ },
393
+ "babel-plugin-transform-es2015-destructuring": {
394
+ "version": "6.23.0",
395
+ "resolved": "https://registry.npmjs.org/babel-plugin-transform-es2015-destructuring/-/babel-plugin-transform-es2015-destructuring-6.23.0.tgz",
396
+ "integrity": "sha1-mXux8auWf2gtKwh2/jWNYOdlxW0=",
397
+ "dev": true,
398
+ "requires": {
399
+ "babel-runtime": "^6.22.0"
400
+ }
401
+ },
402
+ "babel-plugin-transform-es2015-duplicate-keys": {
403
+ "version": "6.24.1",
404
+ "resolved": "https://registry.npmjs.org/babel-plugin-transform-es2015-duplicate-keys/-/babel-plugin-transform-es2015-duplicate-keys-6.24.1.tgz",
405
+ "integrity": "sha1-c+s9MQypaePvnskcU3QabxV2Qj4=",
406
+ "dev": true,
407
+ "requires": {
408
+ "babel-runtime": "^6.22.0",
409
+ "babel-types": "^6.24.1"
410
+ }
411
+ },
412
+ "babel-plugin-transform-es2015-for-of": {
413
+ "version": "6.23.0",
414
+ "resolved": "https://registry.npmjs.org/babel-plugin-transform-es2015-for-of/-/babel-plugin-transform-es2015-for-of-6.23.0.tgz",
415
+ "integrity": "sha1-9HyVsrYT3x0+zC/bdXNiPHUkhpE=",
416
+ "dev": true,
417
+ "requires": {
418
+ "babel-runtime": "^6.22.0"
419
+ }
420
+ },
421
+ "babel-plugin-transform-es2015-function-name": {
422
+ "version": "6.24.1",
423
+ "resolved": "https://registry.npmjs.org/babel-plugin-transform-es2015-function-name/-/babel-plugin-transform-es2015-function-name-6.24.1.tgz",
424
+ "integrity": "sha1-g0yJhTvDaxrw86TF26qU/Y6sqos=",
425
+ "dev": true,
426
+ "requires": {
427
+ "babel-helper-function-name": "^6.24.1",
428
+ "babel-runtime": "^6.22.0",
429
+ "babel-types": "^6.24.1"
430
+ }
431
+ },
432
+ "babel-plugin-transform-es2015-literals": {
433
+ "version": "6.22.0",
434
+ "resolved": "https://registry.npmjs.org/babel-plugin-transform-es2015-literals/-/babel-plugin-transform-es2015-literals-6.22.0.tgz",
435
+ "integrity": "sha1-T1SgLWzWbPkVKAAZox0xklN3yi4=",
436
+ "dev": true,
437
+ "requires": {
438
+ "babel-runtime": "^6.22.0"
439
+ }
440
+ },
441
+ "babel-plugin-transform-es2015-modules-amd": {
442
+ "version": "6.24.1",
443
+ "resolved": "https://registry.npmjs.org/babel-plugin-transform-es2015-modules-amd/-/babel-plugin-transform-es2015-modules-amd-6.24.1.tgz",
444
+ "integrity": "sha1-Oz5UAXI5hC1tGcMBHEvS8AoA0VQ=",
445
+ "dev": true,
446
+ "requires": {
447
+ "babel-plugin-transform-es2015-modules-commonjs": "^6.24.1",
448
+ "babel-runtime": "^6.22.0",
449
+ "babel-template": "^6.24.1"
450
+ }
451
+ },
452
+ "babel-plugin-transform-es2015-modules-commonjs": {
453
+ "version": "6.26.2",
454
+ "resolved": "https://registry.npmjs.org/babel-plugin-transform-es2015-modules-commonjs/-/babel-plugin-transform-es2015-modules-commonjs-6.26.2.tgz",
455
+ "integrity": "sha512-CV9ROOHEdrjcwhIaJNBGMBCodN+1cfkwtM1SbUHmvyy35KGT7fohbpOxkE2uLz1o6odKK2Ck/tz47z+VqQfi9Q==",
456
+ "dev": true,
457
+ "requires": {
458
+ "babel-plugin-transform-strict-mode": "^6.24.1",
459
+ "babel-runtime": "^6.26.0",
460
+ "babel-template": "^6.26.0",
461
+ "babel-types": "^6.26.0"
462
+ }
463
+ },
464
+ "babel-plugin-transform-es2015-modules-systemjs": {
465
+ "version": "6.24.1",
466
+ "resolved": "https://registry.npmjs.org/babel-plugin-transform-es2015-modules-systemjs/-/babel-plugin-transform-es2015-modules-systemjs-6.24.1.tgz",
467
+ "integrity": "sha1-/4mhQrkRmpBhlfXxBuzzBdlAfSM=",
468
+ "dev": true,
469
+ "requires": {
470
+ "babel-helper-hoist-variables": "^6.24.1",
471
+ "babel-runtime": "^6.22.0",
472
+ "babel-template": "^6.24.1"
473
+ }
474
+ },
475
+ "babel-plugin-transform-es2015-modules-umd": {
476
+ "version": "6.24.1",
477
+ "resolved": "https://registry.npmjs.org/babel-plugin-transform-es2015-modules-umd/-/babel-plugin-transform-es2015-modules-umd-6.24.1.tgz",
478
+ "integrity": "sha1-rJl+YoXNGO1hdq22B9YCNErThGg=",
479
+ "dev": true,
480
+ "requires": {
481
+ "babel-plugin-transform-es2015-modules-amd": "^6.24.1",
482
+ "babel-runtime": "^6.22.0",
483
+ "babel-template": "^6.24.1"
484
+ }
485
+ },
486
+ "babel-plugin-transform-es2015-object-super": {
487
+ "version": "6.24.1",
488
+ "resolved": "https://registry.npmjs.org/babel-plugin-transform-es2015-object-super/-/babel-plugin-transform-es2015-object-super-6.24.1.tgz",
489
+ "integrity": "sha1-JM72muIcuDp/hgPa0CH1cusnj40=",
490
+ "dev": true,
491
+ "requires": {
492
+ "babel-helper-replace-supers": "^6.24.1",
493
+ "babel-runtime": "^6.22.0"
494
+ }
495
+ },
496
+ "babel-plugin-transform-es2015-parameters": {
497
+ "version": "6.24.1",
498
+ "resolved": "https://registry.npmjs.org/babel-plugin-transform-es2015-parameters/-/babel-plugin-transform-es2015-parameters-6.24.1.tgz",
499
+ "integrity": "sha1-V6w1GrScrxSpfNE7CfZv3wpiXys=",
500
+ "dev": true,
501
+ "requires": {
502
+ "babel-helper-call-delegate": "^6.24.1",
503
+ "babel-helper-get-function-arity": "^6.24.1",
504
+ "babel-runtime": "^6.22.0",
505
+ "babel-template": "^6.24.1",
506
+ "babel-traverse": "^6.24.1",
507
+ "babel-types": "^6.24.1"
508
+ }
509
+ },
510
+ "babel-plugin-transform-es2015-shorthand-properties": {
511
+ "version": "6.24.1",
512
+ "resolved": "https://registry.npmjs.org/babel-plugin-transform-es2015-shorthand-properties/-/babel-plugin-transform-es2015-shorthand-properties-6.24.1.tgz",
513
+ "integrity": "sha1-JPh11nIch2YbvZmkYi5R8U3jiqA=",
514
+ "dev": true,
515
+ "requires": {
516
+ "babel-runtime": "^6.22.0",
517
+ "babel-types": "^6.24.1"
518
+ }
519
+ },
520
+ "babel-plugin-transform-es2015-spread": {
521
+ "version": "6.22.0",
522
+ "resolved": "https://registry.npmjs.org/babel-plugin-transform-es2015-spread/-/babel-plugin-transform-es2015-spread-6.22.0.tgz",
523
+ "integrity": "sha1-1taKmfia7cRTbIGlQujdnxdG+NE=",
524
+ "dev": true,
525
+ "requires": {
526
+ "babel-runtime": "^6.22.0"
527
+ }
528
+ },
529
+ "babel-plugin-transform-es2015-sticky-regex": {
530
+ "version": "6.24.1",
531
+ "resolved": "https://registry.npmjs.org/babel-plugin-transform-es2015-sticky-regex/-/babel-plugin-transform-es2015-sticky-regex-6.24.1.tgz",
532
+ "integrity": "sha1-AMHNsaynERLN8M9hJsLta0V8zbw=",
533
+ "dev": true,
534
+ "requires": {
535
+ "babel-helper-regex": "^6.24.1",
536
+ "babel-runtime": "^6.22.0",
537
+ "babel-types": "^6.24.1"
538
+ }
539
+ },
540
+ "babel-plugin-transform-es2015-template-literals": {
541
+ "version": "6.22.0",
542
+ "resolved": "https://registry.npmjs.org/babel-plugin-transform-es2015-template-literals/-/babel-plugin-transform-es2015-template-literals-6.22.0.tgz",
543
+ "integrity": "sha1-qEs0UPfp+PH2g51taH2oS7EjbY0=",
544
+ "dev": true,
545
+ "requires": {
546
+ "babel-runtime": "^6.22.0"
547
+ }
548
+ },
549
+ "babel-plugin-transform-es2015-typeof-symbol": {
550
+ "version": "6.23.0",
551
+ "resolved": "https://registry.npmjs.org/babel-plugin-transform-es2015-typeof-symbol/-/babel-plugin-transform-es2015-typeof-symbol-6.23.0.tgz",
552
+ "integrity": "sha1-3sCfHN3/lLUqxz1QXITfWdzOs3I=",
553
+ "dev": true,
554
+ "requires": {
555
+ "babel-runtime": "^6.22.0"
556
+ }
557
+ },
558
+ "babel-plugin-transform-es2015-unicode-regex": {
559
+ "version": "6.24.1",
560
+ "resolved": "https://registry.npmjs.org/babel-plugin-transform-es2015-unicode-regex/-/babel-plugin-transform-es2015-unicode-regex-6.24.1.tgz",
561
+ "integrity": "sha1-04sS9C6nMj9yk4fxinxa4frrNek=",
562
+ "dev": true,
563
+ "requires": {
564
+ "babel-helper-regex": "^6.24.1",
565
+ "babel-runtime": "^6.22.0",
566
+ "regexpu-core": "^2.0.0"
567
+ }
568
+ },
569
+ "babel-plugin-transform-exponentiation-operator": {
570
+ "version": "6.24.1",
571
+ "resolved": "https://registry.npmjs.org/babel-plugin-transform-exponentiation-operator/-/babel-plugin-transform-exponentiation-operator-6.24.1.tgz",
572
+ "integrity": "sha1-KrDJx/MJj6SJB3cruBP+QejeOg4=",
573
+ "dev": true,
574
+ "requires": {
575
+ "babel-helper-builder-binary-assignment-operator-visitor": "^6.24.1",
576
+ "babel-plugin-syntax-exponentiation-operator": "^6.8.0",
577
+ "babel-runtime": "^6.22.0"
578
+ }
579
+ },
580
+ "babel-plugin-transform-regenerator": {
581
+ "version": "6.26.0",
582
+ "resolved": "https://registry.npmjs.org/babel-plugin-transform-regenerator/-/babel-plugin-transform-regenerator-6.26.0.tgz",
583
+ "integrity": "sha1-4HA2lvveJ/Cj78rPi03KL3s6jy8=",
584
+ "dev": true,
585
+ "requires": {
586
+ "regenerator-transform": "^0.10.0"
587
+ }
588
+ },
589
+ "babel-plugin-transform-strict-mode": {
590
+ "version": "6.24.1",
591
+ "resolved": "https://registry.npmjs.org/babel-plugin-transform-strict-mode/-/babel-plugin-transform-strict-mode-6.24.1.tgz",
592
+ "integrity": "sha1-1fr3qleKZbvlkc9e2uBKDGcCB1g=",
593
+ "dev": true,
594
+ "requires": {
595
+ "babel-runtime": "^6.22.0",
596
+ "babel-types": "^6.24.1"
597
+ }
598
+ },
599
+ "babel-preset-env": {
600
+ "version": "1.7.0",
601
+ "resolved": "https://registry.npmjs.org/babel-preset-env/-/babel-preset-env-1.7.0.tgz",
602
+ "integrity": "sha512-9OR2afuKDneX2/q2EurSftUYM0xGu4O2D9adAhVfADDhrYDaxXV0rBbevVYoY9n6nyX1PmQW/0jtpJvUNr9CHg==",
603
+ "dev": true,
604
+ "requires": {
605
+ "babel-plugin-check-es2015-constants": "^6.22.0",
606
+ "babel-plugin-syntax-trailing-function-commas": "^6.22.0",
607
+ "babel-plugin-transform-async-to-generator": "^6.22.0",
608
+ "babel-plugin-transform-es2015-arrow-functions": "^6.22.0",
609
+ "babel-plugin-transform-es2015-block-scoped-functions": "^6.22.0",
610
+ "babel-plugin-transform-es2015-block-scoping": "^6.23.0",
611
+ "babel-plugin-transform-es2015-classes": "^6.23.0",
612
+ "babel-plugin-transform-es2015-computed-properties": "^6.22.0",
613
+ "babel-plugin-transform-es2015-destructuring": "^6.23.0",
614
+ "babel-plugin-transform-es2015-duplicate-keys": "^6.22.0",
615
+ "babel-plugin-transform-es2015-for-of": "^6.23.0",
616
+ "babel-plugin-transform-es2015-function-name": "^6.22.0",
617
+ "babel-plugin-transform-es2015-literals": "^6.22.0",
618
+ "babel-plugin-transform-es2015-modules-amd": "^6.22.0",
619
+ "babel-plugin-transform-es2015-modules-commonjs": "^6.23.0",
620
+ "babel-plugin-transform-es2015-modules-systemjs": "^6.23.0",
621
+ "babel-plugin-transform-es2015-modules-umd": "^6.23.0",
622
+ "babel-plugin-transform-es2015-object-super": "^6.22.0",
623
+ "babel-plugin-transform-es2015-parameters": "^6.23.0",
624
+ "babel-plugin-transform-es2015-shorthand-properties": "^6.22.0",
625
+ "babel-plugin-transform-es2015-spread": "^6.22.0",
626
+ "babel-plugin-transform-es2015-sticky-regex": "^6.22.0",
627
+ "babel-plugin-transform-es2015-template-literals": "^6.22.0",
628
+ "babel-plugin-transform-es2015-typeof-symbol": "^6.23.0",
629
+ "babel-plugin-transform-es2015-unicode-regex": "^6.22.0",
630
+ "babel-plugin-transform-exponentiation-operator": "^6.22.0",
631
+ "babel-plugin-transform-regenerator": "^6.22.0",
632
+ "browserslist": "^3.2.6",
633
+ "invariant": "^2.2.2",
634
+ "semver": "^5.3.0"
635
+ }
636
+ },
637
+ "babel-register": {
638
+ "version": "6.26.0",
639
+ "resolved": "https://registry.npmjs.org/babel-register/-/babel-register-6.26.0.tgz",
640
+ "integrity": "sha1-btAhFz4vy0htestFxgCahW9kcHE=",
641
+ "dev": true,
642
+ "requires": {
643
+ "babel-core": "^6.26.0",
644
+ "babel-runtime": "^6.26.0",
645
+ "core-js": "^2.5.0",
646
+ "home-or-tmp": "^2.0.0",
647
+ "lodash": "^4.17.4",
648
+ "mkdirp": "^0.5.1",
649
+ "source-map-support": "^0.4.15"
650
+ }
651
+ },
652
+ "babel-runtime": {
653
+ "version": "6.26.0",
654
+ "resolved": "https://registry.npmjs.org/babel-runtime/-/babel-runtime-6.26.0.tgz",
655
+ "integrity": "sha1-llxwWGaOgrVde/4E/yM3vItWR/4=",
656
+ "dev": true,
657
+ "requires": {
658
+ "core-js": "^2.4.0",
659
+ "regenerator-runtime": "^0.11.0"
660
+ }
661
+ },
662
+ "babel-template": {
663
+ "version": "6.26.0",
664
+ "resolved": "https://registry.npmjs.org/babel-template/-/babel-template-6.26.0.tgz",
665
+ "integrity": "sha1-3gPi0WOWsGn0bdn/+FIfsaDjXgI=",
666
+ "dev": true,
667
+ "requires": {
668
+ "babel-runtime": "^6.26.0",
669
+ "babel-traverse": "^6.26.0",
670
+ "babel-types": "^6.26.0",
671
+ "babylon": "^6.18.0",
672
+ "lodash": "^4.17.4"
673
+ }
674
+ },
675
+ "babel-traverse": {
676
+ "version": "6.26.0",
677
+ "resolved": "https://registry.npmjs.org/babel-traverse/-/babel-traverse-6.26.0.tgz",
678
+ "integrity": "sha1-RqnL1+3MYsjlwGTi0tjQ9ANXZu4=",
679
+ "dev": true,
680
+ "requires": {
681
+ "babel-code-frame": "^6.26.0",
682
+ "babel-messages": "^6.23.0",
683
+ "babel-runtime": "^6.26.0",
684
+ "babel-types": "^6.26.0",
685
+ "babylon": "^6.18.0",
686
+ "debug": "^2.6.8",
687
+ "globals": "^9.18.0",
688
+ "invariant": "^2.2.2",
689
+ "lodash": "^4.17.4"
690
+ }
691
+ },
692
+ "babel-types": {
693
+ "version": "6.26.0",
694
+ "resolved": "https://registry.npmjs.org/babel-types/-/babel-types-6.26.0.tgz",
695
+ "integrity": "sha1-o7Bz+Uq0nrb6Vc1lInozQ4BjJJc=",
696
+ "dev": true,
697
+ "requires": {
698
+ "babel-runtime": "^6.26.0",
699
+ "esutils": "^2.0.2",
700
+ "lodash": "^4.17.4",
701
+ "to-fast-properties": "^1.0.3"
702
+ }
703
+ },
704
+ "babylon": {
705
+ "version": "6.18.0",
706
+ "resolved": "https://registry.npmjs.org/babylon/-/babylon-6.18.0.tgz",
707
+ "integrity": "sha512-q/UEjfGJ2Cm3oKV71DJz9d25TPnq5rhBVL2Q4fA5wcC3jcrdn7+SssEybFIxwAvvP+YCsCYNKughoF33GxgycQ==",
708
+ "dev": true
709
+ },
710
+ "balanced-match": {
711
+ "version": "1.0.0",
712
+ "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.0.tgz",
713
+ "integrity": "sha1-ibTRmasr7kneFk6gK4nORi1xt2c=",
714
+ "dev": true
715
+ },
716
+ "bcrypt-pbkdf": {
717
+ "version": "1.0.2",
718
+ "resolved": "https://registry.npmjs.org/bcrypt-pbkdf/-/bcrypt-pbkdf-1.0.2.tgz",
719
+ "integrity": "sha1-pDAdOJtqQ/m2f/PKEaP2Y342Dp4=",
720
+ "dev": true,
721
+ "requires": {
722
+ "tweetnacl": "^0.14.3"
723
+ }
724
+ },
725
+ "brace-expansion": {
726
+ "version": "1.1.11",
727
+ "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz",
728
+ "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==",
729
+ "dev": true,
730
+ "requires": {
731
+ "balanced-match": "^1.0.0",
732
+ "concat-map": "0.0.1"
733
+ }
734
+ },
735
+ "browser-stdout": {
736
+ "version": "1.3.1",
737
+ "resolved": "https://registry.npmjs.org/browser-stdout/-/browser-stdout-1.3.1.tgz",
738
+ "integrity": "sha512-qhAVI1+Av2X7qelOfAIYwXONood6XlZE/fXaBSmW/T5SzLAmCgzi+eiWE7fUvbHaeNBQH13UftjpXxsfLkMpgw==",
739
+ "dev": true
740
+ },
741
+ "browserslist": {
742
+ "version": "3.2.8",
743
+ "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-3.2.8.tgz",
744
+ "integrity": "sha512-WHVocJYavUwVgVViC0ORikPHQquXwVh939TaelZ4WDqpWgTX/FsGhl/+P4qBUAGcRvtOgDgC+xftNWWp2RUTAQ==",
745
+ "dev": true,
746
+ "requires": {
747
+ "caniuse-lite": "^1.0.30000844",
748
+ "electron-to-chromium": "^1.3.47"
749
+ }
750
+ },
751
+ "caniuse-lite": {
752
+ "version": "1.0.30000890",
753
+ "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30000890.tgz",
754
+ "integrity": "sha512-4NI3s4Y6ROm+SgZN5sLUG4k7nVWQnedis3c/RWkynV5G6cHSY7+a8fwFyn2yoBDE3E6VswhTNNwR3PvzGqlTkg==",
755
+ "dev": true
756
+ },
757
+ "caseless": {
758
+ "version": "0.12.0",
759
+ "resolved": "https://registry.npmjs.org/caseless/-/caseless-0.12.0.tgz",
760
+ "integrity": "sha1-G2gcIf+EAzyCZUMJBolCDRhxUdw=",
761
+ "dev": true
762
+ },
763
+ "chai": {
764
+ "version": "4.1.2",
765
+ "resolved": "https://registry.npmjs.org/chai/-/chai-4.1.2.tgz",
766
+ "integrity": "sha1-D2RYS6ZC8PKs4oBiefTwbKI61zw=",
767
+ "dev": true,
768
+ "requires": {
769
+ "assertion-error": "^1.0.1",
770
+ "check-error": "^1.0.1",
771
+ "deep-eql": "^3.0.0",
772
+ "get-func-name": "^2.0.0",
773
+ "pathval": "^1.0.0",
774
+ "type-detect": "^4.0.0"
775
+ }
776
+ },
777
+ "chalk": {
778
+ "version": "1.1.3",
779
+ "resolved": "http://registry.npmjs.org/chalk/-/chalk-1.1.3.tgz",
780
+ "integrity": "sha1-qBFcVeSnAv5NFQq9OHKCKn4J/Jg=",
781
+ "dev": true,
782
+ "requires": {
783
+ "ansi-styles": "^2.2.1",
784
+ "escape-string-regexp": "^1.0.2",
785
+ "has-ansi": "^2.0.0",
786
+ "strip-ansi": "^3.0.0",
787
+ "supports-color": "^2.0.0"
788
+ }
789
+ },
790
+ "check-error": {
791
+ "version": "1.0.2",
792
+ "resolved": "https://registry.npmjs.org/check-error/-/check-error-1.0.2.tgz",
793
+ "integrity": "sha1-V00xLt2Iu13YkS6Sht1sCu1KrII=",
794
+ "dev": true
795
+ },
796
+ "co": {
797
+ "version": "4.6.0",
798
+ "resolved": "https://registry.npmjs.org/co/-/co-4.6.0.tgz",
799
+ "integrity": "sha1-bqa989hTrlTMuOR7+gvz+QMfsYQ=",
800
+ "dev": true
801
+ },
802
+ "combined-stream": {
803
+ "version": "1.0.7",
804
+ "resolved": "https://registry.npmjs.org/combined-stream/-/combined-stream-1.0.7.tgz",
805
+ "integrity": "sha512-brWl9y6vOB1xYPZcpZde3N9zDByXTosAeMDo4p1wzo6UMOX4vumB+TP1RZ76sfE6Md68Q0NJSrE/gbezd4Ul+w==",
806
+ "dev": true,
807
+ "requires": {
808
+ "delayed-stream": "~1.0.0"
809
+ }
810
+ },
811
+ "commander": {
812
+ "version": "2.15.1",
813
+ "resolved": "http://registry.npmjs.org/commander/-/commander-2.15.1.tgz",
814
+ "integrity": "sha512-VlfT9F3V0v+jr4yxPc5gg9s62/fIVWsd2Bk2iD435um1NlGMYdVCq+MjcXnhYq2icNOizHr1kK+5TI6H0Hy0ag==",
815
+ "dev": true
816
+ },
817
+ "concat-map": {
818
+ "version": "0.0.1",
819
+ "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz",
820
+ "integrity": "sha1-2Klr13/Wjfd5OnMDajug1UBdR3s=",
821
+ "dev": true
822
+ },
823
+ "convert-source-map": {
824
+ "version": "1.6.0",
825
+ "resolved": "https://registry.npmjs.org/convert-source-map/-/convert-source-map-1.6.0.tgz",
826
+ "integrity": "sha512-eFu7XigvxdZ1ETfbgPBohgyQ/Z++C0eEhTor0qRwBw9unw+L0/6V8wkSuGgzdThkiS5lSpdptOQPD8Ak40a+7A==",
827
+ "dev": true,
828
+ "requires": {
829
+ "safe-buffer": "~5.1.1"
830
+ }
831
+ },
832
+ "core-js": {
833
+ "version": "2.5.7",
834
+ "resolved": "https://registry.npmjs.org/core-js/-/core-js-2.5.7.tgz",
835
+ "integrity": "sha512-RszJCAxg/PP6uzXVXL6BsxSXx/B05oJAQ2vkJRjyjrEcNVycaqOmNb5OTxZPE3xa5gwZduqza6L9JOCenh/Ecw==",
836
+ "dev": true
837
+ },
838
+ "core-util-is": {
839
+ "version": "1.0.2",
840
+ "resolved": "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.2.tgz",
841
+ "integrity": "sha1-tf1UIgqivFq1eqtxQMlAdUUDwac=",
842
+ "dev": true
843
+ },
844
+ "cssom": {
845
+ "version": "0.3.4",
846
+ "resolved": "https://registry.npmjs.org/cssom/-/cssom-0.3.4.tgz",
847
+ "integrity": "sha512-+7prCSORpXNeR4/fUP3rL+TzqtiFfhMvTd7uEqMdgPvLPt4+uzFUeufx5RHjGTACCargg/DiEt/moMQmvnfkog==",
848
+ "dev": true
849
+ },
850
+ "cssstyle": {
851
+ "version": "0.2.37",
852
+ "resolved": "https://registry.npmjs.org/cssstyle/-/cssstyle-0.2.37.tgz",
853
+ "integrity": "sha1-VBCXI0yyUTyDzu06zdwn/yeYfVQ=",
854
+ "dev": true,
855
+ "requires": {
856
+ "cssom": "0.3.x"
857
+ }
858
+ },
859
+ "dashdash": {
860
+ "version": "1.14.1",
861
+ "resolved": "https://registry.npmjs.org/dashdash/-/dashdash-1.14.1.tgz",
862
+ "integrity": "sha1-hTz6D3y+L+1d4gMmuN1YEDX24vA=",
863
+ "dev": true,
864
+ "requires": {
865
+ "assert-plus": "^1.0.0"
866
+ }
867
+ },
868
+ "debug": {
869
+ "version": "2.6.9",
870
+ "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz",
871
+ "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==",
872
+ "dev": true,
873
+ "requires": {
874
+ "ms": "2.0.0"
875
+ }
876
+ },
877
+ "deep-eql": {
878
+ "version": "3.0.1",
879
+ "resolved": "https://registry.npmjs.org/deep-eql/-/deep-eql-3.0.1.tgz",
880
+ "integrity": "sha512-+QeIQyN5ZuO+3Uk5DYh6/1eKO0m0YmJFGNmFHGACpf1ClL1nmlV/p4gNgbl2pJGxgXb4faqo6UE+M5ACEMyVcw==",
881
+ "dev": true,
882
+ "requires": {
883
+ "type-detect": "^4.0.0"
884
+ }
885
+ },
886
+ "deep-is": {
887
+ "version": "0.1.3",
888
+ "resolved": "https://registry.npmjs.org/deep-is/-/deep-is-0.1.3.tgz",
889
+ "integrity": "sha1-s2nW+128E+7PUk+RsHD+7cNXzzQ=",
890
+ "dev": true
891
+ },
892
+ "delayed-stream": {
893
+ "version": "1.0.0",
894
+ "resolved": "https://registry.npmjs.org/delayed-stream/-/delayed-stream-1.0.0.tgz",
895
+ "integrity": "sha1-3zrhmayt+31ECqrgsp4icrJOxhk=",
896
+ "dev": true
897
+ },
898
+ "detect-indent": {
899
+ "version": "4.0.0",
900
+ "resolved": "https://registry.npmjs.org/detect-indent/-/detect-indent-4.0.0.tgz",
901
+ "integrity": "sha1-920GQ1LN9Docts5hnE7jqUdd4gg=",
902
+ "dev": true,
903
+ "requires": {
904
+ "repeating": "^2.0.0"
905
+ }
906
+ },
907
+ "diff": {
908
+ "version": "3.5.0",
909
+ "resolved": "https://registry.npmjs.org/diff/-/diff-3.5.0.tgz",
910
+ "integrity": "sha512-A46qtFgd+g7pDZinpnwiRJtxbC1hpgf0uzP3iG89scHk0AUC7A1TGxf5OiiOUv/JMZR8GOt8hL900hV0bOy5xA==",
911
+ "dev": true
912
+ },
913
+ "ecc-jsbn": {
914
+ "version": "0.1.2",
915
+ "resolved": "https://registry.npmjs.org/ecc-jsbn/-/ecc-jsbn-0.1.2.tgz",
916
+ "integrity": "sha1-OoOpBOVDUyh4dMVkt1SThoSamMk=",
917
+ "dev": true,
918
+ "requires": {
919
+ "jsbn": "~0.1.0",
920
+ "safer-buffer": "^2.1.0"
921
+ }
922
+ },
923
+ "electron-to-chromium": {
924
+ "version": "1.3.78",
925
+ "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.3.78.tgz",
926
+ "integrity": "sha512-p4D/5iX08c3LNep5bWn/X3dFmec1K9le6O43lgRsO/vYKBTH2smWDMDfkGlPtERFcLVkI8xdKW5EokBZODh1xg==",
927
+ "dev": true
928
+ },
929
+ "escape-string-regexp": {
930
+ "version": "1.0.5",
931
+ "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz",
932
+ "integrity": "sha1-G2HAViGQqN/2rjuyzwIAyhMLhtQ=",
933
+ "dev": true
934
+ },
935
+ "escodegen": {
936
+ "version": "1.11.0",
937
+ "resolved": "https://registry.npmjs.org/escodegen/-/escodegen-1.11.0.tgz",
938
+ "integrity": "sha512-IeMV45ReixHS53K/OmfKAIztN/igDHzTJUhZM3k1jMhIZWjk45SMwAtBsEXiJp3vSPmTcu6CXn7mDvFHRN66fw==",
939
+ "dev": true,
940
+ "requires": {
941
+ "esprima": "^3.1.3",
942
+ "estraverse": "^4.2.0",
943
+ "esutils": "^2.0.2",
944
+ "optionator": "^0.8.1",
945
+ "source-map": "~0.6.1"
946
+ },
947
+ "dependencies": {
948
+ "source-map": {
949
+ "version": "0.6.1",
950
+ "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz",
951
+ "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==",
952
+ "dev": true,
953
+ "optional": true
954
+ }
955
+ }
956
+ },
957
+ "esprima": {
958
+ "version": "3.1.3",
959
+ "resolved": "https://registry.npmjs.org/esprima/-/esprima-3.1.3.tgz",
960
+ "integrity": "sha1-/cpRzuYTOJXjyI1TXOSdv/YqRjM=",
961
+ "dev": true
962
+ },
963
+ "estraverse": {
964
+ "version": "4.2.0",
965
+ "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-4.2.0.tgz",
966
+ "integrity": "sha1-De4/7TH81GlhjOc0IJn8GvoL2xM=",
967
+ "dev": true
968
+ },
969
+ "esutils": {
970
+ "version": "2.0.2",
971
+ "resolved": "https://registry.npmjs.org/esutils/-/esutils-2.0.2.tgz",
972
+ "integrity": "sha1-Cr9PHKpbyx96nYrMbepPqqBLrJs=",
973
+ "dev": true
974
+ },
975
+ "extend": {
976
+ "version": "3.0.2",
977
+ "resolved": "https://registry.npmjs.org/extend/-/extend-3.0.2.tgz",
978
+ "integrity": "sha512-fjquC59cD7CyW6urNXK0FBufkZcoiGG80wTuPujX590cB5Ttln20E2UB4S/WARVqhXffZl2LNgS+gQdPIIim/g==",
979
+ "dev": true
980
+ },
981
+ "extsprintf": {
982
+ "version": "1.3.0",
983
+ "resolved": "https://registry.npmjs.org/extsprintf/-/extsprintf-1.3.0.tgz",
984
+ "integrity": "sha1-lpGEQOMEGnpBT4xS48V06zw+HgU=",
985
+ "dev": true
986
+ },
987
+ "fast-deep-equal": {
988
+ "version": "1.1.0",
989
+ "resolved": "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-1.1.0.tgz",
990
+ "integrity": "sha1-wFNHeBfIa1HaqFPIHgWbcz0CNhQ=",
991
+ "dev": true
992
+ },
993
+ "fast-json-stable-stringify": {
994
+ "version": "2.0.0",
995
+ "resolved": "https://registry.npmjs.org/fast-json-stable-stringify/-/fast-json-stable-stringify-2.0.0.tgz",
996
+ "integrity": "sha1-1RQsDK7msRifh9OnYREGT4bIu/I=",
997
+ "dev": true
998
+ },
999
+ "fast-levenshtein": {
1000
+ "version": "2.0.6",
1001
+ "resolved": "https://registry.npmjs.org/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz",
1002
+ "integrity": "sha1-PYpcZog6FqMMqGQ+hR8Zuqd5eRc=",
1003
+ "dev": true
1004
+ },
1005
+ "file-match": {
1006
+ "version": "1.0.2",
1007
+ "resolved": "https://registry.npmjs.org/file-match/-/file-match-1.0.2.tgz",
1008
+ "integrity": "sha1-ycrSZdLIrfOoFHWw30dYWQafrvc=",
1009
+ "dev": true,
1010
+ "requires": {
1011
+ "utils-extend": "^1.0.6"
1012
+ }
1013
+ },
1014
+ "file-system": {
1015
+ "version": "2.2.2",
1016
+ "resolved": "https://registry.npmjs.org/file-system/-/file-system-2.2.2.tgz",
1017
+ "integrity": "sha1-fWWDPjojR9zZVqgTxncVPtPt2Yc=",
1018
+ "dev": true,
1019
+ "requires": {
1020
+ "file-match": "^1.0.1",
1021
+ "utils-extend": "^1.0.4"
1022
+ }
1023
+ },
1024
+ "forever-agent": {
1025
+ "version": "0.6.1",
1026
+ "resolved": "https://registry.npmjs.org/forever-agent/-/forever-agent-0.6.1.tgz",
1027
+ "integrity": "sha1-+8cfDEGt6zf5bFd60e1C2P2sypE=",
1028
+ "dev": true
1029
+ },
1030
+ "form-data": {
1031
+ "version": "2.3.2",
1032
+ "resolved": "https://registry.npmjs.org/form-data/-/form-data-2.3.2.tgz",
1033
+ "integrity": "sha1-SXBJi+YEwgwAXU9cI67NIda0kJk=",
1034
+ "dev": true,
1035
+ "requires": {
1036
+ "asynckit": "^0.4.0",
1037
+ "combined-stream": "1.0.6",
1038
+ "mime-types": "^2.1.12"
1039
+ },
1040
+ "dependencies": {
1041
+ "combined-stream": {
1042
+ "version": "1.0.6",
1043
+ "resolved": "http://registry.npmjs.org/combined-stream/-/combined-stream-1.0.6.tgz",
1044
+ "integrity": "sha1-cj599ugBrFYTETp+RFqbactjKBg=",
1045
+ "dev": true,
1046
+ "requires": {
1047
+ "delayed-stream": "~1.0.0"
1048
+ }
1049
+ }
1050
+ }
1051
+ },
1052
+ "fs.realpath": {
1053
+ "version": "1.0.0",
1054
+ "resolved": "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz",
1055
+ "integrity": "sha1-FQStJSMVjKpA20onh8sBQRmU6k8=",
1056
+ "dev": true
1057
+ },
1058
+ "get-func-name": {
1059
+ "version": "2.0.0",
1060
+ "resolved": "https://registry.npmjs.org/get-func-name/-/get-func-name-2.0.0.tgz",
1061
+ "integrity": "sha1-6td0q+5y4gQJQzoGY2YCPdaIekE=",
1062
+ "dev": true
1063
+ },
1064
+ "getpass": {
1065
+ "version": "0.1.7",
1066
+ "resolved": "https://registry.npmjs.org/getpass/-/getpass-0.1.7.tgz",
1067
+ "integrity": "sha1-Xv+OPmhNVprkyysSgmBOi6YhSfo=",
1068
+ "dev": true,
1069
+ "requires": {
1070
+ "assert-plus": "^1.0.0"
1071
+ }
1072
+ },
1073
+ "glob": {
1074
+ "version": "7.1.2",
1075
+ "resolved": "https://registry.npmjs.org/glob/-/glob-7.1.2.tgz",
1076
+ "integrity": "sha512-MJTUg1kjuLeQCJ+ccE4Vpa6kKVXkPYJ2mOCQyUuKLcLQsdrMCpBPUi8qVE6+YuaJkozeA9NusTAw3hLr8Xe5EQ==",
1077
+ "dev": true,
1078
+ "requires": {
1079
+ "fs.realpath": "^1.0.0",
1080
+ "inflight": "^1.0.4",
1081
+ "inherits": "2",
1082
+ "minimatch": "^3.0.4",
1083
+ "once": "^1.3.0",
1084
+ "path-is-absolute": "^1.0.0"
1085
+ }
1086
+ },
1087
+ "globals": {
1088
+ "version": "9.18.0",
1089
+ "resolved": "https://registry.npmjs.org/globals/-/globals-9.18.0.tgz",
1090
+ "integrity": "sha512-S0nG3CLEQiY/ILxqtztTWH/3iRRdyBLw6KMDxnKMchrtbj2OFmehVh0WUCfW3DUrIgx/qFrJPICrq4Z4sTR9UQ==",
1091
+ "dev": true
1092
+ },
1093
+ "growl": {
1094
+ "version": "1.10.5",
1095
+ "resolved": "https://registry.npmjs.org/growl/-/growl-1.10.5.tgz",
1096
+ "integrity": "sha512-qBr4OuELkhPenW6goKVXiv47US3clb3/IbuWF9KNKEijAy9oeHxU9IgzjvJhHkUzhaj7rOUD7+YGWqUjLp5oSA==",
1097
+ "dev": true
1098
+ },
1099
+ "har-schema": {
1100
+ "version": "2.0.0",
1101
+ "resolved": "https://registry.npmjs.org/har-schema/-/har-schema-2.0.0.tgz",
1102
+ "integrity": "sha1-qUwiJOvKwEeCoNkDVSHyRzW37JI=",
1103
+ "dev": true
1104
+ },
1105
+ "har-validator": {
1106
+ "version": "5.1.0",
1107
+ "resolved": "https://registry.npmjs.org/har-validator/-/har-validator-5.1.0.tgz",
1108
+ "integrity": "sha512-+qnmNjI4OfH2ipQ9VQOw23bBd/ibtfbVdK2fYbY4acTDqKTW/YDp9McimZdDbG8iV9fZizUqQMD5xvriB146TA==",
1109
+ "dev": true,
1110
+ "requires": {
1111
+ "ajv": "^5.3.0",
1112
+ "har-schema": "^2.0.0"
1113
+ }
1114
+ },
1115
+ "has-ansi": {
1116
+ "version": "2.0.0",
1117
+ "resolved": "https://registry.npmjs.org/has-ansi/-/has-ansi-2.0.0.tgz",
1118
+ "integrity": "sha1-NPUEnOHs3ysGSa8+8k5F7TVBbZE=",
1119
+ "dev": true,
1120
+ "requires": {
1121
+ "ansi-regex": "^2.0.0"
1122
+ }
1123
+ },
1124
+ "has-flag": {
1125
+ "version": "3.0.0",
1126
+ "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz",
1127
+ "integrity": "sha1-tdRU3CGZriJWmfNGfloH87lVuv0=",
1128
+ "dev": true
1129
+ },
1130
+ "he": {
1131
+ "version": "1.1.1",
1132
+ "resolved": "https://registry.npmjs.org/he/-/he-1.1.1.tgz",
1133
+ "integrity": "sha1-k0EP0hsAlzUVH4howvJx80J+I/0=",
1134
+ "dev": true
1135
+ },
1136
+ "home-or-tmp": {
1137
+ "version": "2.0.0",
1138
+ "resolved": "https://registry.npmjs.org/home-or-tmp/-/home-or-tmp-2.0.0.tgz",
1139
+ "integrity": "sha1-42w/LSyufXRqhX440Y1fMqeILbg=",
1140
+ "dev": true,
1141
+ "requires": {
1142
+ "os-homedir": "^1.0.0",
1143
+ "os-tmpdir": "^1.0.1"
1144
+ }
1145
+ },
1146
+ "http-signature": {
1147
+ "version": "1.2.0",
1148
+ "resolved": "https://registry.npmjs.org/http-signature/-/http-signature-1.2.0.tgz",
1149
+ "integrity": "sha1-muzZJRFHcvPZW2WmCruPfBj7rOE=",
1150
+ "dev": true,
1151
+ "requires": {
1152
+ "assert-plus": "^1.0.0",
1153
+ "jsprim": "^1.2.2",
1154
+ "sshpk": "^1.7.0"
1155
+ }
1156
+ },
1157
+ "iconv-lite": {
1158
+ "version": "0.4.24",
1159
+ "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.24.tgz",
1160
+ "integrity": "sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA==",
1161
+ "dev": true,
1162
+ "requires": {
1163
+ "safer-buffer": ">= 2.1.2 < 3"
1164
+ }
1165
+ },
1166
+ "inflight": {
1167
+ "version": "1.0.6",
1168
+ "resolved": "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz",
1169
+ "integrity": "sha1-Sb1jMdfQLQwJvJEKEHW6gWW1bfk=",
1170
+ "dev": true,
1171
+ "requires": {
1172
+ "once": "^1.3.0",
1173
+ "wrappy": "1"
1174
+ }
1175
+ },
1176
+ "inherits": {
1177
+ "version": "2.0.3",
1178
+ "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.3.tgz",
1179
+ "integrity": "sha1-Yzwsg+PaQqUC9SRmAiSA9CCCYd4=",
1180
+ "dev": true
1181
+ },
1182
+ "invariant": {
1183
+ "version": "2.2.4",
1184
+ "resolved": "https://registry.npmjs.org/invariant/-/invariant-2.2.4.tgz",
1185
+ "integrity": "sha512-phJfQVBuaJM5raOpJjSfkiD6BpbCE4Ns//LaXl6wGYtUBY83nWS6Rf9tXm2e8VaK60JEjYldbPif/A2B1C2gNA==",
1186
+ "dev": true,
1187
+ "requires": {
1188
+ "loose-envify": "^1.0.0"
1189
+ }
1190
+ },
1191
+ "is-finite": {
1192
+ "version": "1.0.2",
1193
+ "resolved": "https://registry.npmjs.org/is-finite/-/is-finite-1.0.2.tgz",
1194
+ "integrity": "sha1-zGZ3aVYCvlUO8R6LSqYwU0K20Ko=",
1195
+ "dev": true,
1196
+ "requires": {
1197
+ "number-is-nan": "^1.0.0"
1198
+ }
1199
+ },
1200
+ "is-string": {
1201
+ "version": "1.0.4",
1202
+ "resolved": "https://registry.npmjs.org/is-string/-/is-string-1.0.4.tgz",
1203
+ "integrity": "sha1-zDqbaYV9Yh6WNyWiTK7shzuCbmQ=",
1204
+ "dev": true
1205
+ },
1206
+ "is-typedarray": {
1207
+ "version": "1.0.0",
1208
+ "resolved": "https://registry.npmjs.org/is-typedarray/-/is-typedarray-1.0.0.tgz",
1209
+ "integrity": "sha1-5HnICFjfDBsR3dppQPlgEfzaSpo=",
1210
+ "dev": true
1211
+ },
1212
+ "isstream": {
1213
+ "version": "0.1.2",
1214
+ "resolved": "https://registry.npmjs.org/isstream/-/isstream-0.1.2.tgz",
1215
+ "integrity": "sha1-R+Y/evVa+m+S4VAOaQ64uFKcCZo=",
1216
+ "dev": true
1217
+ },
1218
+ "js-tokens": {
1219
+ "version": "3.0.2",
1220
+ "resolved": "https://registry.npmjs.org/js-tokens/-/js-tokens-3.0.2.tgz",
1221
+ "integrity": "sha1-mGbfOVECEw449/mWvOtlRDIJwls=",
1222
+ "dev": true
1223
+ },
1224
+ "jsbn": {
1225
+ "version": "0.1.1",
1226
+ "resolved": "https://registry.npmjs.org/jsbn/-/jsbn-0.1.1.tgz",
1227
+ "integrity": "sha1-peZUwuWi3rXyAdls77yoDA7y9RM=",
1228
+ "dev": true
1229
+ },
1230
+ "jsdom": {
1231
+ "version": "9.2.1",
1232
+ "resolved": "http://registry.npmjs.org/jsdom/-/jsdom-9.2.1.tgz",
1233
+ "integrity": "sha1-Bhy8zG5WPRRJP2U6+S6tw8DTmRA=",
1234
+ "dev": true,
1235
+ "requires": {
1236
+ "abab": "^1.0.0",
1237
+ "acorn": "^2.4.0",
1238
+ "acorn-globals": "^1.0.4",
1239
+ "array-equal": "^1.0.0",
1240
+ "cssom": ">= 0.3.0 < 0.4.0",
1241
+ "cssstyle": ">= 0.2.36 < 0.3.0",
1242
+ "escodegen": "^1.6.1",
1243
+ "iconv-lite": "^0.4.13",
1244
+ "nwmatcher": ">= 1.3.7 < 2.0.0",
1245
+ "parse5": "^1.5.1",
1246
+ "request": "^2.55.0",
1247
+ "sax": "^1.1.4",
1248
+ "symbol-tree": ">= 3.1.0 < 4.0.0",
1249
+ "tough-cookie": "^2.2.0",
1250
+ "webidl-conversions": "^3.0.1",
1251
+ "whatwg-url": "^3.0.0",
1252
+ "xml-name-validator": ">= 2.0.1 < 3.0.0"
1253
+ }
1254
+ },
1255
+ "jsesc": {
1256
+ "version": "1.3.0",
1257
+ "resolved": "https://registry.npmjs.org/jsesc/-/jsesc-1.3.0.tgz",
1258
+ "integrity": "sha1-RsP+yMGJKxKwgz25vHYiF226s0s=",
1259
+ "dev": true
1260
+ },
1261
+ "json-schema": {
1262
+ "version": "0.2.3",
1263
+ "resolved": "https://registry.npmjs.org/json-schema/-/json-schema-0.2.3.tgz",
1264
+ "integrity": "sha1-tIDIkuWaLwWVTOcnvT8qTogvnhM=",
1265
+ "dev": true
1266
+ },
1267
+ "json-schema-traverse": {
1268
+ "version": "0.3.1",
1269
+ "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.3.1.tgz",
1270
+ "integrity": "sha1-NJptRMU6Ud6JtAgFxdXlm0F9M0A=",
1271
+ "dev": true
1272
+ },
1273
+ "json-stringify-safe": {
1274
+ "version": "5.0.1",
1275
+ "resolved": "https://registry.npmjs.org/json-stringify-safe/-/json-stringify-safe-5.0.1.tgz",
1276
+ "integrity": "sha1-Epai1Y/UXxmg9s4B1lcB4sc1tus=",
1277
+ "dev": true
1278
+ },
1279
+ "json5": {
1280
+ "version": "0.5.1",
1281
+ "resolved": "http://registry.npmjs.org/json5/-/json5-0.5.1.tgz",
1282
+ "integrity": "sha1-Hq3nrMASA0rYTiOWdn6tn6VJWCE=",
1283
+ "dev": true
1284
+ },
1285
+ "jsprim": {
1286
+ "version": "1.4.1",
1287
+ "resolved": "https://registry.npmjs.org/jsprim/-/jsprim-1.4.1.tgz",
1288
+ "integrity": "sha1-MT5mvB5cwG5Di8G3SZwuXFastqI=",
1289
+ "dev": true,
1290
+ "requires": {
1291
+ "assert-plus": "1.0.0",
1292
+ "extsprintf": "1.3.0",
1293
+ "json-schema": "0.2.3",
1294
+ "verror": "1.10.0"
1295
+ }
1296
+ },
1297
+ "levn": {
1298
+ "version": "0.3.0",
1299
+ "resolved": "https://registry.npmjs.org/levn/-/levn-0.3.0.tgz",
1300
+ "integrity": "sha1-OwmSTt+fCDwEkP3UwLxEIeBHZO4=",
1301
+ "dev": true,
1302
+ "requires": {
1303
+ "prelude-ls": "~1.1.2",
1304
+ "type-check": "~0.3.2"
1305
+ }
1306
+ },
1307
+ "lodash": {
1308
+ "version": "4.17.11",
1309
+ "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.11.tgz",
1310
+ "integrity": "sha512-cQKh8igo5QUhZ7lg38DYWAxMvjSAKG0A8wGSVimP07SIUEK2UO+arSRKbRZWtelMtN5V0Hkwh5ryOto/SshYIg==",
1311
+ "dev": true
1312
+ },
1313
+ "lodash.once": {
1314
+ "version": "4.1.1",
1315
+ "resolved": "https://registry.npmjs.org/lodash.once/-/lodash.once-4.1.1.tgz",
1316
+ "integrity": "sha1-DdOXEhPHxW34gJd9UEyI+0cal6w=",
1317
+ "dev": true
1318
+ },
1319
+ "loose-envify": {
1320
+ "version": "1.4.0",
1321
+ "resolved": "https://registry.npmjs.org/loose-envify/-/loose-envify-1.4.0.tgz",
1322
+ "integrity": "sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q==",
1323
+ "dev": true,
1324
+ "requires": {
1325
+ "js-tokens": "^3.0.0 || ^4.0.0"
1326
+ }
1327
+ },
1328
+ "mime-db": {
1329
+ "version": "1.36.0",
1330
+ "resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.36.0.tgz",
1331
+ "integrity": "sha512-L+xvyD9MkoYMXb1jAmzI/lWYAxAMCPvIBSWur0PZ5nOf5euahRLVqH//FKW9mWp2lkqUgYiXPgkzfMUFi4zVDw==",
1332
+ "dev": true
1333
+ },
1334
+ "mime-types": {
1335
+ "version": "2.1.20",
1336
+ "resolved": "https://registry.npmjs.org/mime-types/-/mime-types-2.1.20.tgz",
1337
+ "integrity": "sha512-HrkrPaP9vGuWbLK1B1FfgAkbqNjIuy4eHlIYnFi7kamZyLLrGlo2mpcx0bBmNpKqBtYtAfGbodDddIgddSJC2A==",
1338
+ "dev": true,
1339
+ "requires": {
1340
+ "mime-db": "~1.36.0"
1341
+ }
1342
+ },
1343
+ "minimatch": {
1344
+ "version": "3.0.4",
1345
+ "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.0.4.tgz",
1346
+ "integrity": "sha512-yJHVQEhyqPLUTgt9B83PXu6W3rx4MvvHvSUvToogpwoGDOUQ+yDrR0HRot+yOCdCO7u4hX3pWft6kWBBcqh0UA==",
1347
+ "dev": true,
1348
+ "requires": {
1349
+ "brace-expansion": "^1.1.7"
1350
+ }
1351
+ },
1352
+ "minimist": {
1353
+ "version": "0.0.8",
1354
+ "resolved": "http://registry.npmjs.org/minimist/-/minimist-0.0.8.tgz",
1355
+ "integrity": "sha1-hX/Kv8M5fSYluCKCYuhqp6ARsF0=",
1356
+ "dev": true
1357
+ },
1358
+ "mkdirp": {
1359
+ "version": "0.5.1",
1360
+ "resolved": "http://registry.npmjs.org/mkdirp/-/mkdirp-0.5.1.tgz",
1361
+ "integrity": "sha1-MAV0OOrGz3+MR2fzhkjWaX11yQM=",
1362
+ "dev": true,
1363
+ "requires": {
1364
+ "minimist": "0.0.8"
1365
+ }
1366
+ },
1367
+ "mocha": {
1368
+ "version": "5.2.0",
1369
+ "resolved": "https://registry.npmjs.org/mocha/-/mocha-5.2.0.tgz",
1370
+ "integrity": "sha512-2IUgKDhc3J7Uug+FxMXuqIyYzH7gJjXECKe/w43IGgQHTSj3InJi+yAA7T24L9bQMRKiUEHxEX37G5JpVUGLcQ==",
1371
+ "dev": true,
1372
+ "requires": {
1373
+ "browser-stdout": "1.3.1",
1374
+ "commander": "2.15.1",
1375
+ "debug": "3.1.0",
1376
+ "diff": "3.5.0",
1377
+ "escape-string-regexp": "1.0.5",
1378
+ "glob": "7.1.2",
1379
+ "growl": "1.10.5",
1380
+ "he": "1.1.1",
1381
+ "minimatch": "3.0.4",
1382
+ "mkdirp": "0.5.1",
1383
+ "supports-color": "5.4.0"
1384
+ },
1385
+ "dependencies": {
1386
+ "debug": {
1387
+ "version": "3.1.0",
1388
+ "resolved": "https://registry.npmjs.org/debug/-/debug-3.1.0.tgz",
1389
+ "integrity": "sha512-OX8XqP7/1a9cqkxYw2yXss15f26NKWBpDXQd0/uK/KPqdQhxbPa994hnzjcE2VqQpDslf55723cKPUOGSmMY3g==",
1390
+ "dev": true,
1391
+ "requires": {
1392
+ "ms": "2.0.0"
1393
+ }
1394
+ },
1395
+ "supports-color": {
1396
+ "version": "5.4.0",
1397
+ "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.4.0.tgz",
1398
+ "integrity": "sha512-zjaXglF5nnWpsq470jSv6P9DwPvgLkuapYmfDm3JWOm0vkNTVF2tI4UrN2r6jH1qM/uc/WtxYY1hYoA2dOKj5w==",
1399
+ "dev": true,
1400
+ "requires": {
1401
+ "has-flag": "^3.0.0"
1402
+ }
1403
+ }
1404
+ }
1405
+ },
1406
+ "mocha-jsdom": {
1407
+ "version": "1.1.0",
1408
+ "resolved": "https://registry.npmjs.org/mocha-jsdom/-/mocha-jsdom-1.1.0.tgz",
1409
+ "integrity": "sha1-4VdvvQYBzInTWKIToOVYXRt8egE=",
1410
+ "dev": true
1411
+ },
1412
+ "mocha-multi": {
1413
+ "version": "1.0.1",
1414
+ "resolved": "https://registry.npmjs.org/mocha-multi/-/mocha-multi-1.0.1.tgz",
1415
+ "integrity": "sha512-vRgUzz4MejdCd4kR8fgJXvbRIpPi+F8xFPebA9Tn6/f00ljra2ZPuI+6yJmYaprNc+vO3sjLPrbxJhdhHQb7mg==",
1416
+ "dev": true,
1417
+ "requires": {
1418
+ "debug": "^3.1.0",
1419
+ "is-string": "^1.0.4",
1420
+ "lodash.once": "^4.1.1",
1421
+ "mkdirp": "^0.5.1",
1422
+ "object-assign": "^4.1.1"
1423
+ },
1424
+ "dependencies": {
1425
+ "debug": {
1426
+ "version": "3.2.6",
1427
+ "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.6.tgz",
1428
+ "integrity": "sha512-mel+jf7nrtEl5Pn1Qx46zARXKDpBbvzezse7p7LqINmdoIk8PYP5SySaxEmYv6TZ0JyEKA1hsCId6DIhgITtWQ==",
1429
+ "dev": true,
1430
+ "requires": {
1431
+ "ms": "^2.1.1"
1432
+ }
1433
+ },
1434
+ "ms": {
1435
+ "version": "2.1.1",
1436
+ "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.1.tgz",
1437
+ "integrity": "sha512-tgp+dl5cGk28utYktBsrFqA7HKgrhgPsg6Z/EfhWI4gl1Hwq8B/GmY/0oXZ6nF8hDVesS/FpnYaD/kOWhYQvyg==",
1438
+ "dev": true
1439
+ }
1440
+ }
1441
+ },
1442
+ "ms": {
1443
+ "version": "2.0.0",
1444
+ "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz",
1445
+ "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=",
1446
+ "dev": true
1447
+ },
1448
+ "number-is-nan": {
1449
+ "version": "1.0.1",
1450
+ "resolved": "https://registry.npmjs.org/number-is-nan/-/number-is-nan-1.0.1.tgz",
1451
+ "integrity": "sha1-CXtgK1NCKlIsGvuHkDGDNpQaAR0=",
1452
+ "dev": true
1453
+ },
1454
+ "nwmatcher": {
1455
+ "version": "1.4.4",
1456
+ "resolved": "https://registry.npmjs.org/nwmatcher/-/nwmatcher-1.4.4.tgz",
1457
+ "integrity": "sha512-3iuY4N5dhgMpCUrOVnuAdGrgxVqV2cJpM+XNccjR2DKOB1RUP0aA+wGXEiNziG/UKboFyGBIoKOaNlJxx8bciQ==",
1458
+ "dev": true
1459
+ },
1460
+ "oauth-sign": {
1461
+ "version": "0.9.0",
1462
+ "resolved": "https://registry.npmjs.org/oauth-sign/-/oauth-sign-0.9.0.tgz",
1463
+ "integrity": "sha512-fexhUFFPTGV8ybAtSIGbV6gOkSv8UtRbDBnAyLQw4QPKkgNlsH2ByPGtMUqdWkos6YCRmAqViwgZrJc/mRDzZQ==",
1464
+ "dev": true
1465
+ },
1466
+ "object-assign": {
1467
+ "version": "4.1.1",
1468
+ "resolved": "https://registry.npmjs.org/object-assign/-/object-assign-4.1.1.tgz",
1469
+ "integrity": "sha1-IQmtx5ZYh8/AXLvUQsrIv7s2CGM=",
1470
+ "dev": true
1471
+ },
1472
+ "once": {
1473
+ "version": "1.4.0",
1474
+ "resolved": "https://registry.npmjs.org/once/-/once-1.4.0.tgz",
1475
+ "integrity": "sha1-WDsap3WWHUsROsF9nFC6753Xa9E=",
1476
+ "dev": true,
1477
+ "requires": {
1478
+ "wrappy": "1"
1479
+ }
1480
+ },
1481
+ "optionator": {
1482
+ "version": "0.8.2",
1483
+ "resolved": "https://registry.npmjs.org/optionator/-/optionator-0.8.2.tgz",
1484
+ "integrity": "sha1-NkxeQJ0/TWMB1sC0wFu6UBgK62Q=",
1485
+ "dev": true,
1486
+ "requires": {
1487
+ "deep-is": "~0.1.3",
1488
+ "fast-levenshtein": "~2.0.4",
1489
+ "levn": "~0.3.0",
1490
+ "prelude-ls": "~1.1.2",
1491
+ "type-check": "~0.3.2",
1492
+ "wordwrap": "~1.0.0"
1493
+ }
1494
+ },
1495
+ "os-homedir": {
1496
+ "version": "1.0.2",
1497
+ "resolved": "https://registry.npmjs.org/os-homedir/-/os-homedir-1.0.2.tgz",
1498
+ "integrity": "sha1-/7xJiDNuDoM94MFox+8VISGqf7M=",
1499
+ "dev": true
1500
+ },
1501
+ "os-tmpdir": {
1502
+ "version": "1.0.2",
1503
+ "resolved": "https://registry.npmjs.org/os-tmpdir/-/os-tmpdir-1.0.2.tgz",
1504
+ "integrity": "sha1-u+Z0BseaqFxc/sdm/lc0VV36EnQ=",
1505
+ "dev": true
1506
+ },
1507
+ "parse5": {
1508
+ "version": "1.5.1",
1509
+ "resolved": "https://registry.npmjs.org/parse5/-/parse5-1.5.1.tgz",
1510
+ "integrity": "sha1-m387DeMr543CQBsXVzzK8Pb1nZQ=",
1511
+ "dev": true
1512
+ },
1513
+ "path-is-absolute": {
1514
+ "version": "1.0.1",
1515
+ "resolved": "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz",
1516
+ "integrity": "sha1-F0uSaHNVNP+8es5r9TpanhtcX18=",
1517
+ "dev": true
1518
+ },
1519
+ "pathval": {
1520
+ "version": "1.1.0",
1521
+ "resolved": "https://registry.npmjs.org/pathval/-/pathval-1.1.0.tgz",
1522
+ "integrity": "sha1-uULm1L3mUwBe9rcTYd74cn0GReA=",
1523
+ "dev": true
1524
+ },
1525
+ "performance-now": {
1526
+ "version": "2.1.0",
1527
+ "resolved": "https://registry.npmjs.org/performance-now/-/performance-now-2.1.0.tgz",
1528
+ "integrity": "sha1-Ywn04OX6kT7BxpMHrjZLSzd8nns=",
1529
+ "dev": true
1530
+ },
1531
+ "prelude-ls": {
1532
+ "version": "1.1.2",
1533
+ "resolved": "https://registry.npmjs.org/prelude-ls/-/prelude-ls-1.1.2.tgz",
1534
+ "integrity": "sha1-IZMqVJ9eUv/ZqCf1cOBL5iqX2lQ=",
1535
+ "dev": true
1536
+ },
1537
+ "private": {
1538
+ "version": "0.1.8",
1539
+ "resolved": "https://registry.npmjs.org/private/-/private-0.1.8.tgz",
1540
+ "integrity": "sha512-VvivMrbvd2nKkiG38qjULzlc+4Vx4wm/whI9pQD35YrARNnhxeiRktSOhSukRLFNlzg6Br/cJPet5J/u19r/mg==",
1541
+ "dev": true
1542
+ },
1543
+ "psl": {
1544
+ "version": "1.1.29",
1545
+ "resolved": "https://registry.npmjs.org/psl/-/psl-1.1.29.tgz",
1546
+ "integrity": "sha512-AeUmQ0oLN02flVHXWh9sSJF7mcdFq0ppid/JkErufc3hGIV/AMa8Fo9VgDo/cT2jFdOWoFvHp90qqBH54W+gjQ==",
1547
+ "dev": true
1548
+ },
1549
+ "punycode": {
1550
+ "version": "1.4.1",
1551
+ "resolved": "https://registry.npmjs.org/punycode/-/punycode-1.4.1.tgz",
1552
+ "integrity": "sha1-wNWmOycYgArY4esPpSachN1BhF4=",
1553
+ "dev": true
1554
+ },
1555
+ "qs": {
1556
+ "version": "6.5.2",
1557
+ "resolved": "https://registry.npmjs.org/qs/-/qs-6.5.2.tgz",
1558
+ "integrity": "sha512-N5ZAX4/LxJmF+7wN74pUD6qAh9/wnvdQcjq9TZjevvXzSUo7bfmw91saqMjzGS2xq91/odN2dW/WOl7qQHNDGA==",
1559
+ "dev": true
1560
+ },
1561
+ "regenerate": {
1562
+ "version": "1.4.0",
1563
+ "resolved": "https://registry.npmjs.org/regenerate/-/regenerate-1.4.0.tgz",
1564
+ "integrity": "sha512-1G6jJVDWrt0rK99kBjvEtziZNCICAuvIPkSiUFIQxVP06RCVpq3dmDo2oi6ABpYaDYaTRr67BEhL8r1wgEZZKg==",
1565
+ "dev": true
1566
+ },
1567
+ "regenerator-runtime": {
1568
+ "version": "0.11.1",
1569
+ "resolved": "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.11.1.tgz",
1570
+ "integrity": "sha512-MguG95oij0fC3QV3URf4V2SDYGJhJnJGqvIIgdECeODCT98wSWDAJ94SSuVpYQUoTcGUIL6L4yNB7j1DFFHSBg==",
1571
+ "dev": true
1572
+ },
1573
+ "regenerator-transform": {
1574
+ "version": "0.10.1",
1575
+ "resolved": "https://registry.npmjs.org/regenerator-transform/-/regenerator-transform-0.10.1.tgz",
1576
+ "integrity": "sha512-PJepbvDbuK1xgIgnau7Y90cwaAmO/LCLMI2mPvaXq2heGMR3aWW5/BQvYrhJ8jgmQjXewXvBjzfqKcVOmhjZ6Q==",
1577
+ "dev": true,
1578
+ "requires": {
1579
+ "babel-runtime": "^6.18.0",
1580
+ "babel-types": "^6.19.0",
1581
+ "private": "^0.1.6"
1582
+ }
1583
+ },
1584
+ "regexpu-core": {
1585
+ "version": "2.0.0",
1586
+ "resolved": "https://registry.npmjs.org/regexpu-core/-/regexpu-core-2.0.0.tgz",
1587
+ "integrity": "sha1-SdA4g3uNz4v6W5pCE5k45uoq4kA=",
1588
+ "dev": true,
1589
+ "requires": {
1590
+ "regenerate": "^1.2.1",
1591
+ "regjsgen": "^0.2.0",
1592
+ "regjsparser": "^0.1.4"
1593
+ }
1594
+ },
1595
+ "regjsgen": {
1596
+ "version": "0.2.0",
1597
+ "resolved": "https://registry.npmjs.org/regjsgen/-/regjsgen-0.2.0.tgz",
1598
+ "integrity": "sha1-bAFq3qxVT3WCP+N6wFuS1aTtsfc=",
1599
+ "dev": true
1600
+ },
1601
+ "regjsparser": {
1602
+ "version": "0.1.5",
1603
+ "resolved": "https://registry.npmjs.org/regjsparser/-/regjsparser-0.1.5.tgz",
1604
+ "integrity": "sha1-fuj4Tcb6eS0/0K4ijSS9lJ6tIFw=",
1605
+ "dev": true,
1606
+ "requires": {
1607
+ "jsesc": "~0.5.0"
1608
+ },
1609
+ "dependencies": {
1610
+ "jsesc": {
1611
+ "version": "0.5.0",
1612
+ "resolved": "https://registry.npmjs.org/jsesc/-/jsesc-0.5.0.tgz",
1613
+ "integrity": "sha1-597mbjXW/Bb3EP6R1c9p9w8IkR0=",
1614
+ "dev": true
1615
+ }
1616
+ }
1617
+ },
1618
+ "repeating": {
1619
+ "version": "2.0.1",
1620
+ "resolved": "https://registry.npmjs.org/repeating/-/repeating-2.0.1.tgz",
1621
+ "integrity": "sha1-UhTFOpJtNVJwdSf7q0FdvAjQbdo=",
1622
+ "dev": true,
1623
+ "requires": {
1624
+ "is-finite": "^1.0.0"
1625
+ }
1626
+ },
1627
+ "request": {
1628
+ "version": "2.88.0",
1629
+ "resolved": "https://registry.npmjs.org/request/-/request-2.88.0.tgz",
1630
+ "integrity": "sha512-NAqBSrijGLZdM0WZNsInLJpkJokL72XYjUpnB0iwsRgxh7dB6COrHnTBNwN0E+lHDAJzu7kLAkDeY08z2/A0hg==",
1631
+ "dev": true,
1632
+ "requires": {
1633
+ "aws-sign2": "~0.7.0",
1634
+ "aws4": "^1.8.0",
1635
+ "caseless": "~0.12.0",
1636
+ "combined-stream": "~1.0.6",
1637
+ "extend": "~3.0.2",
1638
+ "forever-agent": "~0.6.1",
1639
+ "form-data": "~2.3.2",
1640
+ "har-validator": "~5.1.0",
1641
+ "http-signature": "~1.2.0",
1642
+ "is-typedarray": "~1.0.0",
1643
+ "isstream": "~0.1.2",
1644
+ "json-stringify-safe": "~5.0.1",
1645
+ "mime-types": "~2.1.19",
1646
+ "oauth-sign": "~0.9.0",
1647
+ "performance-now": "^2.1.0",
1648
+ "qs": "~6.5.2",
1649
+ "safe-buffer": "^5.1.2",
1650
+ "tough-cookie": "~2.4.3",
1651
+ "tunnel-agent": "^0.6.0",
1652
+ "uuid": "^3.3.2"
1653
+ }
1654
+ },
1655
+ "safe-buffer": {
1656
+ "version": "5.1.2",
1657
+ "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz",
1658
+ "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==",
1659
+ "dev": true
1660
+ },
1661
+ "safer-buffer": {
1662
+ "version": "2.1.2",
1663
+ "resolved": "https://registry.npmjs.org/safer-buffer/-/safer-buffer-2.1.2.tgz",
1664
+ "integrity": "sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==",
1665
+ "dev": true
1666
+ },
1667
+ "sax": {
1668
+ "version": "1.2.4",
1669
+ "resolved": "https://registry.npmjs.org/sax/-/sax-1.2.4.tgz",
1670
+ "integrity": "sha512-NqVDv9TpANUjFm0N8uM5GxL36UgKi9/atZw+x7YFnQ8ckwFGKrl4xX4yWtrey3UJm5nP1kUbnYgLopqWNSRhWw==",
1671
+ "dev": true
1672
+ },
1673
+ "semver": {
1674
+ "version": "5.6.0",
1675
+ "resolved": "https://registry.npmjs.org/semver/-/semver-5.6.0.tgz",
1676
+ "integrity": "sha512-RS9R6R35NYgQn++fkDWaOmqGoj4Ek9gGs+DPxNUZKuwE183xjJroKvyo1IzVFeXvUrvmALy6FWD5xrdJT25gMg==",
1677
+ "dev": true
1678
+ },
1679
+ "slash": {
1680
+ "version": "1.0.0",
1681
+ "resolved": "https://registry.npmjs.org/slash/-/slash-1.0.0.tgz",
1682
+ "integrity": "sha1-xB8vbDn8FtHNF61LXYlhFK5HDVU=",
1683
+ "dev": true
1684
+ },
1685
+ "source-map": {
1686
+ "version": "0.5.7",
1687
+ "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.5.7.tgz",
1688
+ "integrity": "sha1-igOdLRAh0i0eoUyA2OpGi6LvP8w=",
1689
+ "dev": true
1690
+ },
1691
+ "source-map-support": {
1692
+ "version": "0.4.18",
1693
+ "resolved": "https://registry.npmjs.org/source-map-support/-/source-map-support-0.4.18.tgz",
1694
+ "integrity": "sha512-try0/JqxPLF9nOjvSta7tVondkP5dwgyLDjVoyMDlmjugT2lRZ1OfsrYTkCd2hkDnJTKRbO/Rl3orm8vlsUzbA==",
1695
+ "dev": true,
1696
+ "requires": {
1697
+ "source-map": "^0.5.6"
1698
+ }
1699
+ },
1700
+ "sshpk": {
1701
+ "version": "1.15.1",
1702
+ "resolved": "https://registry.npmjs.org/sshpk/-/sshpk-1.15.1.tgz",
1703
+ "integrity": "sha512-mSdgNUaidk+dRU5MhYtN9zebdzF2iG0cNPWy8HG+W8y+fT1JnSkh0fzzpjOa0L7P8i1Rscz38t0h4gPcKz43xA==",
1704
+ "dev": true,
1705
+ "requires": {
1706
+ "asn1": "~0.2.3",
1707
+ "assert-plus": "^1.0.0",
1708
+ "bcrypt-pbkdf": "^1.0.0",
1709
+ "dashdash": "^1.12.0",
1710
+ "ecc-jsbn": "~0.1.1",
1711
+ "getpass": "^0.1.1",
1712
+ "jsbn": "~0.1.0",
1713
+ "safer-buffer": "^2.0.2",
1714
+ "tweetnacl": "~0.14.0"
1715
+ }
1716
+ },
1717
+ "strip-ansi": {
1718
+ "version": "3.0.1",
1719
+ "resolved": "http://registry.npmjs.org/strip-ansi/-/strip-ansi-3.0.1.tgz",
1720
+ "integrity": "sha1-ajhfuIU9lS1f8F0Oiq+UJ43GPc8=",
1721
+ "dev": true,
1722
+ "requires": {
1723
+ "ansi-regex": "^2.0.0"
1724
+ }
1725
+ },
1726
+ "supports-color": {
1727
+ "version": "2.0.0",
1728
+ "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-2.0.0.tgz",
1729
+ "integrity": "sha1-U10EXOa2Nj+kARcIRimZXp3zJMc=",
1730
+ "dev": true
1731
+ },
1732
+ "symbol-tree": {
1733
+ "version": "3.2.2",
1734
+ "resolved": "https://registry.npmjs.org/symbol-tree/-/symbol-tree-3.2.2.tgz",
1735
+ "integrity": "sha1-rifbOPZgp64uHDt9G8KQgZuFGeY=",
1736
+ "dev": true
1737
+ },
1738
+ "to-fast-properties": {
1739
+ "version": "1.0.3",
1740
+ "resolved": "https://registry.npmjs.org/to-fast-properties/-/to-fast-properties-1.0.3.tgz",
1741
+ "integrity": "sha1-uDVx+k2MJbguIxsG46MFXeTKGkc=",
1742
+ "dev": true
1743
+ },
1744
+ "tough-cookie": {
1745
+ "version": "2.4.3",
1746
+ "resolved": "https://registry.npmjs.org/tough-cookie/-/tough-cookie-2.4.3.tgz",
1747
+ "integrity": "sha512-Q5srk/4vDM54WJsJio3XNn6K2sCG+CQ8G5Wz6bZhRZoAe/+TxjWB/GlFAnYEbkYVlON9FMk/fE3h2RLpPXo4lQ==",
1748
+ "dev": true,
1749
+ "requires": {
1750
+ "psl": "^1.1.24",
1751
+ "punycode": "^1.4.1"
1752
+ }
1753
+ },
1754
+ "tr46": {
1755
+ "version": "0.0.3",
1756
+ "resolved": "https://registry.npmjs.org/tr46/-/tr46-0.0.3.tgz",
1757
+ "integrity": "sha1-gYT9NH2snNwYWZLzpmIuFLnZq2o=",
1758
+ "dev": true
1759
+ },
1760
+ "trim-right": {
1761
+ "version": "1.0.1",
1762
+ "resolved": "https://registry.npmjs.org/trim-right/-/trim-right-1.0.1.tgz",
1763
+ "integrity": "sha1-yy4SAwZ+DI3h9hQJS5/kVwTqYAM=",
1764
+ "dev": true
1765
+ },
1766
+ "tunnel-agent": {
1767
+ "version": "0.6.0",
1768
+ "resolved": "https://registry.npmjs.org/tunnel-agent/-/tunnel-agent-0.6.0.tgz",
1769
+ "integrity": "sha1-J6XeoGs2sEoKmWZ3SykIaPD8QP0=",
1770
+ "dev": true,
1771
+ "requires": {
1772
+ "safe-buffer": "^5.0.1"
1773
+ }
1774
+ },
1775
+ "tweetnacl": {
1776
+ "version": "0.14.5",
1777
+ "resolved": "https://registry.npmjs.org/tweetnacl/-/tweetnacl-0.14.5.tgz",
1778
+ "integrity": "sha1-WuaBd/GS1EViadEIr6k/+HQ/T2Q=",
1779
+ "dev": true
1780
+ },
1781
+ "type-check": {
1782
+ "version": "0.3.2",
1783
+ "resolved": "https://registry.npmjs.org/type-check/-/type-check-0.3.2.tgz",
1784
+ "integrity": "sha1-WITKtRLPHTVeP7eE8wgEsrUg23I=",
1785
+ "dev": true,
1786
+ "requires": {
1787
+ "prelude-ls": "~1.1.2"
1788
+ }
1789
+ },
1790
+ "type-detect": {
1791
+ "version": "4.0.8",
1792
+ "resolved": "https://registry.npmjs.org/type-detect/-/type-detect-4.0.8.tgz",
1793
+ "integrity": "sha512-0fr/mIH1dlO+x7TlcMy+bIDqKPsw/70tVyeHW787goQjhmqaZe10uwLujubK9q9Lg6Fiho1KUKDYz0Z7k7g5/g==",
1794
+ "dev": true
1795
+ },
1796
+ "utils-extend": {
1797
+ "version": "1.0.8",
1798
+ "resolved": "https://registry.npmjs.org/utils-extend/-/utils-extend-1.0.8.tgz",
1799
+ "integrity": "sha1-zP17ZFQPjpDuIe7Fd2nQZRyril8=",
1800
+ "dev": true
1801
+ },
1802
+ "uuid": {
1803
+ "version": "3.3.2",
1804
+ "resolved": "https://registry.npmjs.org/uuid/-/uuid-3.3.2.tgz",
1805
+ "integrity": "sha512-yXJmeNaw3DnnKAOKJE51sL/ZaYfWJRl1pK9dr19YFCu0ObS231AB1/LbqTKRAQ5kw8A90rA6fr4riOUpTZvQZA==",
1806
+ "dev": true
1807
+ },
1808
+ "verror": {
1809
+ "version": "1.10.0",
1810
+ "resolved": "https://registry.npmjs.org/verror/-/verror-1.10.0.tgz",
1811
+ "integrity": "sha1-OhBcoXBTr1XW4nDB+CiGguGNpAA=",
1812
+ "dev": true,
1813
+ "requires": {
1814
+ "assert-plus": "^1.0.0",
1815
+ "core-util-is": "1.0.2",
1816
+ "extsprintf": "^1.2.0"
1817
+ }
1818
+ },
1819
+ "webidl-conversions": {
1820
+ "version": "3.0.1",
1821
+ "resolved": "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-3.0.1.tgz",
1822
+ "integrity": "sha1-JFNCdeKnvGvnvIZhHMFq4KVlSHE=",
1823
+ "dev": true
1824
+ },
1825
+ "whatwg-url": {
1826
+ "version": "3.1.0",
1827
+ "resolved": "https://registry.npmjs.org/whatwg-url/-/whatwg-url-3.1.0.tgz",
1828
+ "integrity": "sha1-e9yuSQ+SGu9kUftnOexrvY6Qe/Y=",
1829
+ "dev": true,
1830
+ "requires": {
1831
+ "tr46": "~0.0.3",
1832
+ "webidl-conversions": "^3.0.0"
1833
+ }
1834
+ },
1835
+ "wordwrap": {
1836
+ "version": "1.0.0",
1837
+ "resolved": "https://registry.npmjs.org/wordwrap/-/wordwrap-1.0.0.tgz",
1838
+ "integrity": "sha1-J1hIEIkUVqQXHI0CJkQa3pDLyus=",
1839
+ "dev": true
1840
+ },
1841
+ "wrappy": {
1842
+ "version": "1.0.2",
1843
+ "resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz",
1844
+ "integrity": "sha1-tSQ9jz7BqjXxNkYFvA0QNuMKtp8=",
1845
+ "dev": true
1846
+ },
1847
+ "xml-name-validator": {
1848
+ "version": "2.0.1",
1849
+ "resolved": "https://registry.npmjs.org/xml-name-validator/-/xml-name-validator-2.0.1.tgz",
1850
+ "integrity": "sha1-TYuPHszTQZqjYgYb7O9RXh5VljU=",
1851
+ "dev": true
1852
+ }
1853
+ }
1854
+ }