https://github.com/ultcombo/ultcombo.github.io
UltCombo's GitHub page
https://github.com/ultcombo/ultcombo.github.io
Last synced: 6 months ago
JSON representation
UltCombo's GitHub page
- Host: GitHub
- URL: https://github.com/ultcombo/ultcombo.github.io
- Owner: UltCombo
- License: mit
- Created: 2012-09-14T11:16:30.000Z (almost 14 years ago)
- Default Branch: master
- Last Pushed: 2019-04-07T00:31:37.000Z (about 7 years ago)
- Last Synced: 2024-10-18T13:56:08.156Z (over 1 year ago)
- Language: HTML
- Homepage: https://ultcombo.js.org/
- Size: 3.35 MB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Ultβs home  
Welcome to my homepage! πβοΈ
This is an offline capable, fully optimized Progressive Web App (PWA) showcasing my work.
## Guidelines
The application must be accessible, both to humans and machines. It must support all platforms, devices and assistive technologies.
The application must present content marked in accordance with [HTML](https://html.spec.whatwg.org/multipage/), [WAI-ARIA](https://www.w3.org/TR/wai-aria/) and [RDFa](https://www.w3.org/TR/html-rdfa/)/[Microdata](https://html.spec.whatwg.org/multipage/microdata.html) semantics.
The application must employ responsive design, progressive enhancement, favor functionality and user experience, and never hijack common user interactions and expectations.
Transitions and animations must be clear, simple, and coherent. They should ease state transitions and guide user focus. They should never feel slow, confusing or get in the way of the user. The [Material Motion](https://material.io/guidelines/motion/material-motion.html) guideline is a good reference.
Use [Lighthouse](https://developers.google.com/web/tools/lighthouse/) to audit the applicationβs performance, accessibility and whether it follows the best practices for modern web development. Periodically run audits to prevent regressions and strive to improve the results. It is recommended to use the Lighthouse [Chrome extension](https://chrome.google.com/webstore/detail/lighthouse/blipmdconlkpinefehnmjammfjpmpbjk) or [command line tool](https://www.npmjs.com/package/lighthouse#using-the-node-cli), as the version bundled with Chrome DevTools is often outdated and missing newer tests and bugfixes.
The code style must be consistent. Note that the code is automatically formatted with [Prettier](https://prettier.io/) when committing changes, therefore developers should not have to worry about formatting code manually.
## Development
- Install Node.js 8+ and [Yarn](https://yarnpkg.com/).
- Clone the repository and install dependencies with `yarn install`.
- Run `yarn run dev` to start the development server with live reloading.
- The source code resides in the `src` directory; the root directory contains compiled resources deployed to the GitHub Pages site.
- The repository has a precommit hook to lint and compile resources optimized for production deployment.
## Scripts
- `yarn run dev`: starts development server with live reloading.
- `yarn run build`: generates a full build of the site for debugging purposes.
- `NODE_ENV=production yarn run build`: generates a full build of the site optimized for production deployment.
- `yarn run lint`: lints code for possible errors and code style issues.
- `yarn run lint --fix`: lints code for possible errors and code style issues, automatically fixing as many issues as possible.
- `yarn run lint-fonts`: utility to detect faux web fonts or mismatches. Must have development server running.
- `yarn run precommit`: lints staged files and builds the site for production deployment. This script is automatically run when commiting to the repository.
- `yarn run -s license-checker`: get licenses from all dependencies.
## Roadmap
- [x] Add offline and install capabilities through Service Workers with the [Workbox](https://developers.google.com/web/tools/workbox/) toolset.
- [x] Optimize, bundle and minify HTML, CSS and JavaScript resources through [Webpack](https://webpack.js.org/).
- [x] Enforce linting and [Prettier](https://prettier.io/) code style through [ESLint](https://eslint.org/).
- [x] Add `precommit` hook to automatically lint and build the site through [lint-staged](https://github.com/okonet/lint-staged) and [Husky](https://github.com/typicode/husky).
- [x] Polyfill missing browser features as needed through [Polyfill.io](https://polyfill.io/v2/docs/).
- [x] Preload critical resources and preconnect to external APIs.
- [x] [Defer](https://developer.mozilla.org/en-US/docs/Web/HTML/Element/script#attr-defer) loading scripts.
- [ ] Inline [critical](https://github.com/addyosmani/critical) CSS and defer non-critical styles.
- [x] Avoid render-blocking web fonts through the [`font-display` property](https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display).
- [x] Optimize raster images for different displays (Retina).
- [x] Generate and optimize app icons for all platforms through [RealFaviconGenerator](https://realfavicongenerator.net/).
- [x] Add social meta tags ([Open Graph](http://ogp.me/), [Twitter Cards](https://developer.twitter.com/en/docs/tweets/optimize-with-cards/overview/abouts-cards)).
- [x] Track user interaction with [Google Analytics](https://www.google.com/analytics/).
- [x] Lint HTML with the [Nu Html Checker (v.Nu)](https://validator.github.io/validator/).
- [ ] Enforce CSS code style (with [stylelint](https://stylelint.io/) or [Prettier](https://prettier.io/)?).
- [x] Lint web font usage to prevent browsers from synthesizing sub-par typefaces through [faux-pas](https://github.com/filamentgroup/faux-pas).
- [ ] Add API testing (with [AVA](https://github.com/avajs/ava)?).
- [ ] Create [Docker](https://www.docker.com/) image to ease development setup.
- [ ] Add CI to lint, run API tests and [Lighthouse](https://developers.google.com/web/tools/lighthouse/) audits on pull requests.
- [ ] Subset fonts through [glyphhanger](https://github.com/filamentgroup/glyphhanger). This is probably not worth doing for Google Fonts as they already have generic subsetting and clients would miss cache hits. Also, this is not working properly for variable fonts currently.
- [x] Document guidelines, development instructions, scripts and roadmap.
## License
The application is licensed under the [MIT License](LICENSE).
The application makes use of Assistive Technology (AT) supporting code from [HTML5 Boilerplate](https://github.com/h5bp/html5-boilerplate), licensed under the MIT License.
The application embeds the GradeGX font created by [Adam Twardoch](https://twitter.com/adamtwar), licensed under the SIL Open Font License (OFL).
The application embeds a modified version of the [Termynal](https://github.com/ines/termynal) library by [Ines Montani](https://twitter.com/_inesmontani), licensed under the MIT License.
Dependenciesβ licenses
```
ββ abbrev@1.1.0
β ββ licenses: ISC
β ββ repository: https://github.com/isaacs/abbrev-js
β ββ publisher: Isaac Z. Schlueter
β ββ email: i@izs.me
β ββ path: ./node_modules/fsevents/node_modules/abbrev
β ββ licenseFile: ./node_modules/fsevents/node_modules/abbrev/LICENSE
ββ abbrev@1.1.1
β ββ licenses: ISC
β ββ repository: https://github.com/isaacs/abbrev-js
β ββ publisher: Isaac Z. Schlueter
β ββ email: i@izs.me
β ββ path: ./node_modules/abbrev
β ββ licenseFile: ./node_modules/abbrev/LICENSE
ββ accepts@1.3.3
β ββ licenses: MIT
β ββ repository: https://github.com/jshttp/accepts
β ββ path: ./node_modules/engine.io/node_modules/accepts
β ββ licenseFile: ./node_modules/engine.io/node_modules/accepts/LICENSE
ββ accepts@1.3.4
β ββ licenses: MIT
β ββ repository: https://github.com/jshttp/accepts
β ββ path: ./node_modules/accepts
β ββ licenseFile: ./node_modules/accepts/LICENSE
ββ acorn-dynamic-import@2.0.2
β ββ licenses: MIT
β ββ repository: https://github.com/kesne/acorn-dynamic-import
β ββ publisher: Jordan Gensler
β ββ email: jordangens@gmail.com
β ββ path: ./node_modules/acorn-dynamic-import
β ββ licenseFile: ./node_modules/acorn-dynamic-import/LICENSE
ββ acorn-jsx@3.0.1
β ββ licenses: MIT
β ββ repository: https://github.com/RReverser/acorn-jsx
β ββ path: ./node_modules/acorn-jsx
β ββ licenseFile: ./node_modules/acorn-jsx/LICENSE
ββ acorn@1.2.2
β ββ licenses: MIT
β ββ repository: https://github.com/marijnh/acorn
β ββ path: ./node_modules/falafel/node_modules/acorn
β ββ licenseFile: ./node_modules/falafel/node_modules/acorn/LICENSE
ββ acorn@3.3.0
β ββ licenses: MIT
β ββ repository: https://github.com/ternjs/acorn
β ββ path: ./node_modules/acorn-jsx/node_modules/acorn
β ββ licenseFile: ./node_modules/acorn-jsx/node_modules/acorn/LICENSE
ββ acorn@4.0.13
β ββ licenses: MIT
β ββ repository: https://github.com/ternjs/acorn
β ββ path: ./node_modules/acorn-dynamic-import/node_modules/acorn
β ββ licenseFile: ./node_modules/acorn-dynamic-import/node_modules/acorn/LICENSE
ββ acorn@5.2.1
β ββ licenses: MIT
β ββ repository: https://github.com/ternjs/acorn
β ββ path: ./node_modules/acorn
β ββ licenseFile: ./node_modules/acorn/LICENSE
ββ after@0.8.1
β ββ licenses: MIT*
β ββ repository: https://github.com/Raynos/after
β ββ publisher: Raynos
β ββ email: raynos2@gmail.com
β ββ path: ./node_modules/after
β ββ licenseFile: ./node_modules/after/LICENCE
ββ ajv-keywords@2.1.1
β ββ licenses: MIT
β ββ repository: https://github.com/epoberezkin/ajv-keywords
β ββ publisher: Evgeny Poberezkin
β ββ path: ./node_modules/ajv-keywords
β ββ licenseFile: ./node_modules/ajv-keywords/LICENSE
ββ ajv@4.11.8
β ββ licenses: MIT
β ββ repository: https://github.com/epoberezkin/ajv
β ββ publisher: Evgeny Poberezkin
β ββ path: ./node_modules/har-validator/node_modules/ajv
β ββ licenseFile: ./node_modules/har-validator/node_modules/ajv/LICENSE
ββ ajv@5.5.2
β ββ licenses: MIT
β ββ repository: https://github.com/epoberezkin/ajv
β ββ publisher: Evgeny Poberezkin
β ββ path: ./node_modules/ajv
β ββ licenseFile: ./node_modules/ajv/LICENSE
ββ align-text@0.1.4
β ββ licenses: MIT
β ββ repository: https://github.com/jonschlinkert/align-text
β ββ publisher: Jon Schlinkert
β ββ url: https://github.com/jonschlinkert
β ββ path: ./node_modules/align-text
β ββ licenseFile: ./node_modules/align-text/LICENSE
ββ alphanum-sort@1.0.2
β ββ licenses: MIT
β ββ repository: https://github.com/TrySound/alphanum-sort
β ββ publisher: Bogdan Chadkin
β ββ email: trysound@yandex.ru
β ββ path: ./node_modules/alphanum-sort
β ββ licenseFile: ./node_modules/alphanum-sort/LICENSE
ββ amdefine@1.0.1
β ββ licenses: BSD-3-Clause OR MIT
β ββ repository: https://github.com/jrburke/amdefine
β ββ publisher: James Burke
β ββ email: jrburke@gmail.com
β ββ url: http://github.com/jrburke
β ββ path: ./node_modules/amdefine
β ββ licenseFile: ./node_modules/amdefine/LICENSE
ββ ansi-align@2.0.0
β ββ licenses: ISC
β ββ repository: https://github.com/nexdrew/ansi-align
β ββ publisher: nexdrew
β ββ path: ./node_modules/ansi-align
β ββ licenseFile: ./node_modules/ansi-align/LICENSE
ββ ansi-escape-sequences@4.0.0
β ββ licenses: MIT
β ββ repository: https://github.com/75lb/ansi-escape-sequences
β ββ publisher: Lloyd Brookes
β ββ email: 75pound@gmail.com
β ββ path: ./node_modules/ansi-escape-sequences
β ββ licenseFile: ./node_modules/ansi-escape-sequences/LICENSE
ββ ansi-escapes@1.4.0
β ββ licenses: MIT
β ββ repository: https://github.com/sindresorhus/ansi-escapes
β ββ publisher: Sindre Sorhus
β ββ email: sindresorhus@gmail.com
β ββ url: sindresorhus.com
β ββ path: ./node_modules/log-update/node_modules/ansi-escapes
β ββ licenseFile: ./node_modules/log-update/node_modules/ansi-escapes/license
ββ ansi-escapes@3.0.0
β ββ licenses: MIT
β ββ repository: https://github.com/sindresorhus/ansi-escapes
β ββ publisher: Sindre Sorhus
β ββ email: sindresorhus@gmail.com
β ββ url: sindresorhus.com
β ββ path: ./node_modules/ansi-escapes
β ββ licenseFile: ./node_modules/ansi-escapes/license
ββ ansi-regex@0.2.1
β ββ licenses: MIT
β ββ repository: https://github.com/sindresorhus/ansi-regex
β ββ publisher: Sindre Sorhus
β ββ email: sindresorhus@gmail.com
β ββ url: http://sindresorhus.com
β ββ path: ./node_modules/ansi-regex
β ββ licenseFile: ./node_modules/ansi-regex/readme.md
ββ ansi-regex@2.1.1
β ββ licenses: MIT
β ββ repository: https://github.com/chalk/ansi-regex
β ββ publisher: Sindre Sorhus
β ββ email: sindresorhus@gmail.com
β ββ url: sindresorhus.com
β ββ path: ./node_modules/has-ansi/node_modules/ansi-regex
β ββ licenseFile: ./node_modules/has-ansi/node_modules/ansi-regex/license
ββ ansi-regex@3.0.0
β ββ licenses: MIT
β ββ repository: https://github.com/chalk/ansi-regex
β ββ publisher: Sindre Sorhus
β ββ email: sindresorhus@gmail.com
β ββ url: sindresorhus.com
β ββ path: ./node_modules/ansi-align/node_modules/ansi-regex
β ββ licenseFile: ./node_modules/ansi-align/node_modules/ansi-regex/license
ββ ansi-styles@1.1.0
β ββ licenses: MIT
β ββ repository: https://github.com/sindresorhus/ansi-styles
β ββ publisher: Sindre Sorhus
β ββ email: sindresorhus@gmail.com
β ββ url: http://sindresorhus.com
β ββ path: ./node_modules/license-checker/node_modules/ansi-styles
β ββ licenseFile: ./node_modules/license-checker/node_modules/ansi-styles/readme.md
ββ ansi-styles@2.2.1
β ββ licenses: MIT
β ββ repository: https://github.com/chalk/ansi-styles
β ββ publisher: Sindre Sorhus
β ββ email: sindresorhus@gmail.com
β ββ url: sindresorhus.com
β ββ path: ./node_modules/chalk/node_modules/ansi-styles
β ββ licenseFile: ./node_modules/chalk/node_modules/ansi-styles/license
ββ ansi-styles@3.2.0
β ββ licenses: MIT
β ββ repository: https://github.com/chalk/ansi-styles
β ββ publisher: Sindre Sorhus
β ββ email: sindresorhus@gmail.com
β ββ url: sindresorhus.com
β ββ path: ./node_modules/ansi-styles
β ββ licenseFile: ./node_modules/ansi-styles/license
ββ any-observable@0.2.0
β ββ licenses: MIT
β ββ repository: https://github.com/sindresorhus/any-observable
β ββ publisher: Sindre Sorhus
β ββ email: sindresorhus@gmail.com
β ββ url: sindresorhus.com
β ββ path: ./node_modules/any-observable
β ββ licenseFile: ./node_modules/any-observable/license
ββ anymatch@1.3.2
β ββ licenses: ISC
β ββ repository: https://github.com/es128/anymatch
β ββ publisher: Elan Shanker
β ββ url: http://github.com/es128
β ββ path: ./node_modules/anymatch
β ββ licenseFile: ./node_modules/anymatch/LICENSE
ββ app-root-path@2.0.1
β ββ licenses: MIT
β ββ repository: https://github.com/inxilpro/node-app-root-path
β ββ publisher: Chris Morrell
β ββ email: http://cmorrell.com
β ββ path: ./node_modules/app-root-path
β ββ licenseFile: ./node_modules/app-root-path/LICENSE
ββ aproba@1.1.1
β ββ licenses: ISC
β ββ repository: https://github.com/iarna/aproba
β ββ publisher: Rebecca Turner
β ββ email: me@re-becca.org
β ββ path: ./node_modules/fsevents/node_modules/aproba
β ββ licenseFile: ./node_modules/fsevents/node_modules/aproba/LICENSE
ββ aproba@1.2.0
β ββ licenses: ISC
β ββ repository: https://github.com/iarna/aproba
β ββ publisher: Rebecca Turner
β ββ email: me@re-becca.org
β ββ path: ./node_modules/aproba
β ββ licenseFile: ./node_modules/aproba/LICENSE
ββ are-we-there-yet@1.1.4
β ββ licenses: ISC
β ββ repository: https://github.com/iarna/are-we-there-yet
β ββ publisher: Rebecca Turner
β ββ url: http://re-becca.org
β ββ path: ./node_modules/are-we-there-yet
β ββ licenseFile: ./node_modules/are-we-there-yet/LICENSE
ββ argparse@1.0.9
β ββ licenses: MIT
β ββ repository: https://github.com/nodeca/argparse
β ββ path: ./node_modules/argparse
β ββ licenseFile: ./node_modules/argparse/LICENSE
ββ arr-diff@2.0.0
β ββ licenses: MIT
β ββ repository: https://github.com/jonschlinkert/arr-diff
β ββ publisher: Jon Schlinkert
β ββ url: https://github.com/jonschlinkert
β ββ path: ./node_modules/arr-diff
β ββ licenseFile: ./node_modules/arr-diff/LICENSE
ββ arr-flatten@1.1.0
β ββ licenses: MIT
β ββ repository: https://github.com/jonschlinkert/arr-flatten
β ββ publisher: Jon Schlinkert
β ββ url: https://github.com/jonschlinkert
β ββ path: ./node_modules/arr-flatten
β ββ licenseFile: ./node_modules/arr-flatten/LICENSE
ββ array-back@1.0.4
β ββ licenses: MIT
β ββ repository: https://github.com/75lb/array-back
β ββ publisher: Lloyd Brookes
β ββ email: 75pound@gmail.com
β ββ path: ./node_modules/find-replace/node_modules/array-back
β ββ licenseFile: ./node_modules/find-replace/node_modules/array-back/LICENSE
ββ array-back@2.0.0
β ββ licenses: MIT
β ββ repository: https://github.com/75lb/array-back
β ββ publisher: Lloyd Brookes
β ββ email: 75pound@gmail.com
β ββ path: ./node_modules/array-back
β ββ licenseFile: ./node_modules/array-back/LICENSE
ββ array-find-index@1.0.2
β ββ licenses: MIT
β ββ repository: https://github.com/sindresorhus/array-find-index
β ββ publisher: Sindre Sorhus
β ββ email: sindresorhus@gmail.com
β ββ url: sindresorhus.com
β ββ path: ./node_modules/array-find-index
β ββ licenseFile: ./node_modules/array-find-index/license
ββ array-union@1.0.2
β ββ licenses: MIT
β ββ repository: https://github.com/sindresorhus/array-union
β ββ publisher: Sindre Sorhus
β ββ email: sindresorhus@gmail.com
β ββ url: sindresorhus.com
β ββ path: ./node_modules/array-union
β ββ licenseFile: ./node_modules/array-union/license
ββ array-uniq@1.0.3
β ββ licenses: MIT
β ββ repository: https://github.com/sindresorhus/array-uniq
β ββ publisher: Sindre Sorhus
β ββ email: sindresorhus@gmail.com
β ββ url: sindresorhus.com
β ββ path: ./node_modules/array-uniq
β ββ licenseFile: ./node_modules/array-uniq/license
ββ array-unique@0.2.1
β ββ licenses: MIT
β ββ repository: https://github.com/jonschlinkert/array-unique
β ββ publisher: Jon Schlinkert
β ββ url: https://github.com/jonschlinkert
β ββ path: ./node_modules/array-unique
β ββ licenseFile: ./node_modules/array-unique/LICENSE
ββ arraybuffer.slice@0.0.6
β ββ licenses: MIT*
β ββ repository: https://github.com/rase-/arraybuffer.slice
β ββ path: ./node_modules/arraybuffer.slice
β ββ licenseFile: ./node_modules/arraybuffer.slice/README.md
ββ arrify@1.0.1
β ββ licenses: MIT
β ββ repository: https://github.com/sindresorhus/arrify
β ββ publisher: Sindre Sorhus
β ββ email: sindresorhus@gmail.com
β ββ url: sindresorhus.com
β ββ path: ./node_modules/arrify
β ββ licenseFile: ./node_modules/arrify/license
ββ as-array@2.0.0
β ββ licenses: MIT
β ββ repository: https://github.com/scottcorgan/as-array
β ββ publisher: Scott Corgan
β ββ path: ./node_modules/as-array
β ββ licenseFile: ./node_modules/as-array/README.md
ββ asap@2.0.6
β ββ licenses: MIT
β ββ repository: https://github.com/kriskowal/asap
β ββ path: ./node_modules/asap
β ββ licenseFile: ./node_modules/asap/LICENSE.md
ββ asn1.js@4.9.2
β ββ licenses: MIT
β ββ repository: https://github.com/indutny/asn1.js
β ββ publisher: Fedor Indutny
β ββ path: ./node_modules/asn1.js
β ββ licenseFile: ./node_modules/asn1.js/README.md
ββ asn1@0.2.3
β ββ licenses: MIT
β ββ repository: https://github.com/mcavage/node-asn1
β ββ publisher: Mark Cavage
β ββ email: mcavage@gmail.com
β ββ path: ./node_modules/asn1
β ββ licenseFile: ./node_modules/asn1/LICENSE
ββ assert-plus@0.2.0
β ββ licenses: MIT
β ββ repository: https://github.com/mcavage/node-assert-plus
β ββ publisher: Mark Cavage
β ββ email: mcavage@gmail.com
β ββ path: ./node_modules/http-signature/node_modules/assert-plus
β ββ licenseFile: ./node_modules/http-signature/node_modules/assert-plus/README.md
ββ assert-plus@1.0.0
β ββ licenses: MIT
β ββ repository: https://github.com/mcavage/node-assert-plus
β ββ publisher: Mark Cavage
β ββ email: mcavage@gmail.com
β ββ path: ./node_modules/assert-plus
β ββ licenseFile: ./node_modules/assert-plus/README.md
ββ assert@1.4.1
β ββ licenses: MIT
β ββ repository: https://github.com/defunctzombie/commonjs-assert
β ββ path: ./node_modules/assert
β ββ licenseFile: ./node_modules/assert/LICENSE
ββ ast-types@0.8.15
β ββ licenses: MIT
β ββ repository: https://github.com/benjamn/ast-types
β ββ publisher: Ben Newman
β ββ email: bn@cs.stanford.edu
β ββ path: ./node_modules/unreachable-branch-transform/node_modules/ast-types
β ββ licenseFile: ./node_modules/unreachable-branch-transform/node_modules/ast-types/LICENSE
ββ ast-types@0.9.6
β ββ licenses: MIT
β ββ repository: https://github.com/benjamn/ast-types
β ββ publisher: Ben Newman
β ββ email: bn@cs.stanford.edu
β ββ path: ./node_modules/ast-types
β ββ licenseFile: ./node_modules/ast-types/LICENSE
ββ async-each-series@0.1.1
β ββ licenses: MIT
β ββ repository: https://github.com/jb55/async-each-series
β ββ publisher: jb55
β ββ path: ./node_modules/async-each-series
β ββ licenseFile: ./node_modules/async-each-series/Readme.md
ββ async-each@1.0.1
β ββ licenses: MIT
β ββ repository: https://github.com/paulmillr/async-each
β ββ publisher: Paul Miller
β ββ url: http://paulmillr.com/
β ββ path: ./node_modules/async-each
β ββ licenseFile: ./node_modules/async-each/README.md
ββ async@0.2.10
β ββ licenses: MIT
β ββ repository: https://github.com/caolan/async
β ββ publisher: Caolan McMahon
β ββ path: ./node_modules/string-replace-webpack-plugin/node_modules/async
β ββ licenseFile: ./node_modules/string-replace-webpack-plugin/node_modules/async/LICENSE
ββ async@1.5.2
β ββ licenses: MIT
β ββ repository: https://github.com/caolan/async
β ββ publisher: Caolan McMahon
β ββ path: ./node_modules/portscanner/node_modules/async
β ββ licenseFile: ./node_modules/portscanner/node_modules/async/LICENSE
ββ async@2.6.0
β ββ licenses: MIT
β ββ repository: https://github.com/caolan/async
β ββ publisher: Caolan McMahon
β ββ path: ./node_modules/async
β ββ licenseFile: ./node_modules/async/LICENSE
ββ asynckit@0.4.0
β ββ licenses: MIT
β ββ repository: https://github.com/alexindigo/asynckit
β ββ publisher: Alex Indigo
β ββ email: iam@alexindigo.com
β ββ path: ./node_modules/asynckit
β ββ licenseFile: ./node_modules/asynckit/LICENSE
ββ autoprefixer@6.7.7
β ββ licenses: MIT
β ββ repository: https://github.com/postcss/autoprefixer
β ββ publisher: Andrey Sitnik
β ββ email: andrey@sitnik.ru
β ββ path: ./node_modules/autoprefixer
β ββ licenseFile: ./node_modules/autoprefixer/LICENSE
ββ aws-sign2@0.6.0
β ββ licenses: Apache-2.0
β ββ repository: https://github.com/mikeal/aws-sign
β ββ publisher: Mikeal Rogers
β ββ email: mikeal.rogers@gmail.com
β ββ url: http://www.futurealoof.com
β ββ path: ./node_modules/aws-sign2
β ββ licenseFile: ./node_modules/aws-sign2/LICENSE
ββ aws4@1.6.0
β ββ licenses: MIT
β ββ repository: https://github.com/mhart/aws4
β ββ publisher: Michael Hart
β ββ email: michael.hart.au@gmail.com
β ββ url: http://github.com/mhart
β ββ path: ./node_modules/aws4
β ββ licenseFile: ./node_modules/aws4/LICENSE
ββ axe-core@2.2.0
β ββ licenses: MPL-2.0
β ββ repository: https://github.com/dequelabs/axe-core
β ββ path: ./node_modules/axe-core
β ββ licenseFile: ./node_modules/axe-core/LICENSE
ββ babar@0.0.3
β ββ licenses: MIT
β ββ repository: https://github.com/stephan83/babar
β ββ publisher: Stephan Florquin
β ββ path: ./node_modules/babar
β ββ licenseFile: ./node_modules/babar/LICENSE
ββ babel-code-frame@6.26.0
β ββ licenses: MIT
β ββ repository: https://github.com/babel/babel/tree/master/packages/babel-code-frame
β ββ publisher: Sebastian McKenzie
β ββ email: sebmck@gmail.com
β ββ path: ./node_modules/babel-code-frame
β ββ licenseFile: ./node_modules/babel-code-frame/README.md
ββ babel-core@6.26.0
β ββ licenses: MIT
β ββ repository: https://github.com/babel/babel/tree/master/packages/babel-core
β ββ publisher: Sebastian McKenzie
β ββ email: sebmck@gmail.com
β ββ path: ./node_modules/babel-core
β ββ licenseFile: ./node_modules/babel-core/README.md
ββ babel-generator@6.26.0
β ββ licenses: MIT
β ββ repository: https://github.com/babel/babel/tree/master/packages/babel-generator
β ββ publisher: Sebastian McKenzie
β ββ email: sebmck@gmail.com
β ββ path: ./node_modules/babel-generator
β ββ licenseFile: ./node_modules/babel-generator/README.md
ββ babel-helper-evaluate-path@0.2.0
β ββ licenses: MIT
β ββ repository: https://github.com/babel/minify/tree/master/packages/babel-helper-evaluate-path
β ββ publisher: boopathi
β ββ path: ./node_modules/babel-helper-evaluate-path
β ββ licenseFile: ./node_modules/babel-helper-evaluate-path/README.md
ββ babel-helper-flip-expressions@0.2.0
β ββ licenses: MIT
β ββ repository: https://github.com/babel/minify/tree/master/packages/babel-helper-flip-expressions
β ββ publisher: amasad
β ββ path: ./node_modules/babel-helper-flip-expressions
β ββ licenseFile: ./node_modules/babel-helper-flip-expressions/README.md
ββ babel-helper-is-nodes-equiv@0.0.1
β ββ licenses: MIT
β ββ repository: https://github.com/babel/babili/tree/master/packages/babel-helper-is-nodes-equiv
β ββ publisher: amasad
β ββ path: ./node_modules/babel-helper-is-nodes-equiv
β ββ licenseFile: ./node_modules/babel-helper-is-nodes-equiv/README.md
ββ babel-helper-is-void-0@0.2.0
β ββ licenses: MIT
β ββ repository: https://github.com/babel/minify/tree/master/packages/babel-helper-is-void-0
β ββ publisher: amasad
β ββ path: ./node_modules/babel-helper-is-void-0
β ββ licenseFile: ./node_modules/babel-helper-is-void-0/README.md
ββ babel-helper-mark-eval-scopes@0.2.0
β ββ licenses: MIT
β ββ repository: https://github.com/babel/minify/tree/master/packages/babel-helper-mark-eval-scopes
β ββ publisher: boopathi
β ββ path: ./node_modules/babel-helper-mark-eval-scopes
β ββ licenseFile: ./node_modules/babel-helper-mark-eval-scopes/README.md
ββ babel-helper-remove-or-void@0.2.0
β ββ licenses: MIT
β ββ repository: https://github.com/babel/minify/tree/master/packages/babel-helper-remove-or-void
β ββ publisher: amasad
β ββ path: ./node_modules/babel-helper-remove-or-void
β ββ licenseFile: ./node_modules/babel-helper-remove-or-void/README.md
ββ babel-helper-to-multiple-sequence-expressions@0.2.0
β ββ licenses: MIT
β ββ repository: https://github.com/babel/minify/tree/master/packages/babel-helper-to-multiple-sequence-expressions
β ββ publisher: amasad
β ββ path: ./node_modules/babel-helper-to-multiple-sequence-expressions
β ββ licenseFile: ./node_modules/babel-helper-to-multiple-sequence-expressions/README.md
ββ babel-helpers@6.24.1
β ββ licenses: MIT
β ββ repository: https://github.com/babel/babel/tree/master/packages/babel-helpers
β ββ publisher: Sebastian McKenzie
β ββ email: sebmck@gmail.com
β ββ path: ./node_modules/babel-helpers
β ββ licenseFile: ./node_modules/babel-helpers/README.md
ββ babel-messages@6.23.0
β ββ licenses: MIT
β ββ repository: https://github.com/babel/babel/tree/master/packages/babel-messages
β ββ publisher: Sebastian McKenzie
β ββ email: sebmck@gmail.com
β ββ path: ./node_modules/babel-messages
β ββ licenseFile: ./node_modules/babel-messages/README.md
ββ babel-minify-webpack-plugin@0.2.0
β ββ licenses: MIT
β ββ repository: https://github.com/webpack-contrib/babel-minify-webpack-plugin
β ββ publisher: boopathi
β ββ path: ./node_modules/babel-minify-webpack-plugin
β ββ licenseFile: ./node_modules/babel-minify-webpack-plugin/LICENSE
ββ babel-plugin-minify-builtins@0.2.0
β ββ licenses: MIT
β ββ repository: https://github.com/babel/minify/tree/master/packages/babel-plugin-minify-builtins
β ββ publisher: Vignesh Shanmugam
β ββ email: vignesh.shanmugam22@gmail.com
β ββ url: https://vigneshh.in
β ββ path: ./node_modules/babel-plugin-minify-builtins
β ββ licenseFile: ./node_modules/babel-plugin-minify-builtins/README.md
ββ babel-plugin-minify-constant-folding@0.2.0
β ββ licenses: MIT
β ββ repository: https://github.com/babel/minify/tree/master/packages/babel-plugin-minify-constant-folding
β ββ publisher: amasad
β ββ path: ./node_modules/babel-plugin-minify-constant-folding
β ββ licenseFile: ./node_modules/babel-plugin-minify-constant-folding/README.md
ββ babel-plugin-minify-dead-code-elimination@0.2.0
β ββ licenses: MIT
β ββ repository: https://github.com/babel/minify/tree/master/packages/babel-plugin-minify-dead-code-elimination
β ββ publisher: amasad
β ββ path: ./node_modules/babel-plugin-minify-dead-code-elimination
β ββ licenseFile: ./node_modules/babel-plugin-minify-dead-code-elimination/README.md
ββ babel-plugin-minify-flip-comparisons@0.2.0
β ββ licenses: MIT
β ββ repository: https://github.com/babel/minify/tree/master/packages/babel-plugin-minify-flip-comparisons
β ββ publisher: amasad
β ββ path: ./node_modules/babel-plugin-minify-flip-comparisons
β ββ licenseFile: ./node_modules/babel-plugin-minify-flip-comparisons/README.md
ββ babel-plugin-minify-guarded-expressions@0.2.0
β ββ licenses: MIT
β ββ repository: https://github.com/babel/minify/tree/master/packages/babel-plugin-minify-guarded-expressions
β ββ publisher: amasad
β ββ path: ./node_modules/babel-plugin-minify-guarded-expressions
β ββ licenseFile: ./node_modules/babel-plugin-minify-guarded-expressions/README.md
ββ babel-plugin-minify-infinity@0.2.0
β ββ licenses: MIT
β ββ repository: https://github.com/babel/minify/tree/master/packages/babel-plugin-minify-infinity
β ββ publisher: amasad
β ββ path: ./node_modules/babel-plugin-minify-infinity
β ββ licenseFile: ./node_modules/babel-plugin-minify-infinity/README.md
ββ babel-plugin-minify-mangle-names@0.2.0
β ββ licenses: MIT
β ββ repository: https://github.com/babel/minify/tree/master/packages/babel-plugin-minify-mangle-names
β ββ publisher: amasad
β ββ path: ./node_modules/babel-plugin-minify-mangle-names
β ββ licenseFile: ./node_modules/babel-plugin-minify-mangle-names/README.md
ββ babel-plugin-minify-numeric-literals@0.2.0
β ββ licenses: MIT
β ββ repository: https://github.com/babel/minify/tree/master/packages/babel-plugin-minify-numeric-literals
β ββ publisher: kangax
β ββ path: ./node_modules/babel-plugin-minify-numeric-literals
β ββ licenseFile: ./node_modules/babel-plugin-minify-numeric-literals/README.md
ββ babel-plugin-minify-replace@0.2.0
β ββ licenses: MIT
β ββ repository: https://github.com/babel/minify/tree/master/packages/babel-plugin-minify-replace
β ββ publisher: amasad
β ββ path: ./node_modules/babel-plugin-minify-replace
β ββ licenseFile: ./node_modules/babel-plugin-minify-replace/README.md
ββ babel-plugin-minify-simplify@0.2.0
β ββ licenses: MIT
β ββ repository: https://github.com/babel/minify/tree/master/packages/babel-plugin-minify-simplify
β ββ publisher: amasad
β ββ path: ./node_modules/babel-plugin-minify-simplify
β ββ licenseFile: ./node_modules/babel-plugin-minify-simplify/README.md
ββ babel-plugin-minify-type-constructors@0.2.0
β ββ licenses: MIT
β ββ repository: https://github.com/babel/minify/tree/master/packages/babel-plugin-minify-type-constructors
β ββ publisher: amasad
β ββ path: ./node_modules/babel-plugin-minify-type-constructors
β ββ licenseFile: ./node_modules/babel-plugin-minify-type-constructors/README.md
ββ babel-plugin-transform-inline-consecutive-adds@0.2.0
β ββ licenses: MIT
β ββ repository: https://github.com/babel/minify/tree/master/packages/babel-plugin-transform-inline-consecutive-adds
β ββ publisher: shinew
β ββ path: ./node_modules/babel-plugin-transform-inline-consecutive-adds
β ββ licenseFile: ./node_modules/babel-plugin-transform-inline-consecutive-adds/README.md
ββ babel-plugin-transform-member-expression-literals@6.8.5
β ββ licenses: MIT
β ββ repository: https://github.com/babel/minify/tree/master/packages/babel-plugin-transform-member-expression-literals
β ββ publisher: amasad
β ββ path: ./node_modules/babel-plugin-transform-member-expression-literals
β ββ licenseFile: ./node_modules/babel-plugin-transform-member-expression-literals/README.md
ββ babel-plugin-transform-merge-sibling-variables@6.8.6
β ββ licenses: MIT
β ββ repository: https://github.com/babel/minify/tree/master/packages/babel-plugin-transform-merge-sibling-variables
β ββ publisher: amasad
β ββ path: ./node_modules/babel-plugin-transform-merge-sibling-variables
β ββ licenseFile: ./node_modules/babel-plugin-transform-merge-sibling-variables/README.md
ββ babel-plugin-transform-minify-booleans@6.8.3
β ββ licenses: MIT
β ββ repository: https://github.com/babel/minify/tree/master/packages/babel-plugin-transform-minify-booleans
β ββ publisher: amasad
β ββ path: ./node_modules/babel-plugin-transform-minify-booleans
β ββ licenseFile: ./node_modules/babel-plugin-transform-minify-booleans/README.md
ββ babel-plugin-transform-property-literals@6.8.5
β ββ licenses: MIT
β ββ repository: https://github.com/babel/minify/tree/master/packages/babel-plugin-transform-property-literals
β ββ publisher: amasad
β ββ path: ./node_modules/babel-plugin-transform-property-literals
β ββ licenseFile: ./node_modules/babel-plugin-transform-property-literals/README.md
ββ babel-plugin-transform-regexp-constructors@0.2.0
β ββ licenses: MIT
β ββ repository: https://github.com/babel/minify/tree/master/packages/babel-plugin-transform-regexp-constructors
β ββ publisher: shinew
β ββ path: ./node_modules/babel-plugin-transform-regexp-constructors
β ββ licenseFile: ./node_modules/babel-plugin-transform-regexp-constructors/README.md
ββ babel-plugin-transform-remove-console@6.8.5
β ββ licenses: MIT
β ββ repository: https://github.com/babel/minify/tree/master/packages/babel-plugin-transform-remove-console
β ββ publisher: amasad
β ββ path: ./node_modules/babel-plugin-transform-remove-console
β ββ licenseFile: ./node_modules/babel-plugin-transform-remove-console/README.md
ββ babel-plugin-transform-remove-debugger@6.8.5
β ββ licenses: MIT
β ββ repository: https://github.com/babel/minify/tree/master/packages/babel-plugin-transform-remove-debugger
β ββ publisher: amasad
β ββ path: ./node_modules/babel-plugin-transform-remove-debugger
β ββ licenseFile: ./node_modules/babel-plugin-transform-remove-debugger/README.md
ββ babel-plugin-transform-remove-undefined@0.2.0
β ββ licenses: MIT
β ββ repository: https://github.com/babel/minify/tree/master/packages/babel-plugin-transform-remove-undefined
β ββ publisher: shinew
β ββ path: ./node_modules/babel-plugin-transform-remove-undefined
β ββ licenseFile: ./node_modules/babel-plugin-transform-remove-undefined/README.md
ββ babel-plugin-transform-simplify-comparison-operators@6.8.5
β ββ licenses: MIT
β ββ repository: https://github.com/babel/minify/tree/master/packages/babel-plugin-transform-simplify-comparison-operators
β ββ publisher: amasad
β ββ path: ./node_modules/babel-plugin-transform-simplify-comparison-operators
β ββ licenseFile: ./node_modules/babel-plugin-transform-simplify-comparison-operators/README.md
ββ babel-plugin-transform-undefined-to-void@6.8.3
β ββ licenses: MIT
β ββ repository: https://github.com/babel/minify/tree/master/packages/babel-plugin-transform-undefined-to-void
β ββ publisher: amasad
β ββ path: ./node_modules/babel-plugin-transform-undefined-to-void
β ββ licenseFile: ./node_modules/babel-plugin-transform-undefined-to-void/README.md
ββ babel-preset-minify@0.2.0
β ββ licenses: MIT
β ββ repository: https://github.com/babel/minify/tree/master/packages/babel-preset-minify
β ββ publisher: amasad
β ββ path: ./node_modules/babel-preset-minify
β ββ licenseFile: ./node_modules/babel-preset-minify/README.md
ββ babel-register@6.26.0
β ββ licenses: MIT
β ββ repository: https://github.com/babel/babel/tree/master/packages/babel-register
β ββ publisher: Sebastian McKenzie
β ββ email: sebmck@gmail.com
β ββ path: ./node_modules/babel-register
β ββ licenseFile: ./node_modules/babel-register/README.md
ββ babel-runtime@6.26.0
β ββ licenses: MIT
β ββ repository: https://github.com/babel/babel/tree/master/packages/babel-runtime
β ββ publisher: Sebastian McKenzie
β ββ email: sebmck@gmail.com
β ββ path: ./node_modules/babel-runtime
β ββ licenseFile: ./node_modules/babel-runtime/README.md
ββ babel-template@6.26.0
β ββ licenses: MIT
β ββ repository: https://github.com/babel/babel/tree/master/packages/babel-template
β ββ publisher: Sebastian McKenzie
β ββ email: sebmck@gmail.com
β ββ path: ./node_modules/babel-template
β ββ licenseFile: ./node_modules/babel-template/README.md
ββ babel-traverse@6.26.0
β ββ licenses: MIT
β ββ repository: https://github.com/babel/babel/tree/master/packages/babel-traverse
β ββ publisher: Sebastian McKenzie
β ββ email: sebmck@gmail.com
β ββ path: ./node_modules/babel-traverse
β ββ licenseFile: ./node_modules/babel-traverse/README.md
ββ babel-types@6.26.0
β ββ licenses: MIT
β ββ repository: https://github.com/babel/babel/tree/master/packages/babel-types
β ββ publisher: Sebastian McKenzie
β ββ email: sebmck@gmail.com
β ββ path: ./node_modules/babel-types
β ββ licenseFile: ./node_modules/babel-types/README.md
ββ babylon@6.18.0
β ββ licenses: MIT
β ββ repository: https://github.com/babel/babylon
β ββ publisher: Sebastian McKenzie
β ββ email: sebmck@gmail.com
β ββ path: ./node_modules/babylon
β ββ licenseFile: ./node_modules/babylon/LICENSE
ββ backo2@1.0.2
β ββ licenses: MIT
β ββ repository: https://github.com/mokesmokes/backo
β ββ path: ./node_modules/backo2
β ββ licenseFile: ./node_modules/backo2/Readme.md
ββ balanced-match@0.4.2
β ββ licenses: MIT
β ββ repository: https://github.com/juliangruber/balanced-match
β ββ publisher: Julian Gruber
β ββ email: mail@juliangruber.com
β ββ url: http://juliangruber.com
β ββ path: ./node_modules/balanced-match
β ββ licenseFile: ./node_modules/balanced-match/LICENSE.md
ββ balanced-match@1.0.0
β ββ licenses: MIT
β ββ repository: https://github.com/juliangruber/balanced-match
β ββ publisher: Julian Gruber
β ββ email: mail@juliangruber.com
β ββ url: http://juliangruber.com
β ββ path: ./node_modules/brace-expansion/node_modules/balanced-match
β ββ licenseFile: ./node_modules/brace-expansion/node_modules/balanced-match/LICENSE.md
ββ base62@0.1.1
β ββ licenses: MIT*
β ββ repository: https://github.com/andrew/base62.js
β ββ publisher: Andrew Nesbitt
β ββ email: andrewnez@gmail.com
β ββ url: http://andrew-nesbitt.com/
β ββ path: ./node_modules/base62
β ββ licenseFile: ./node_modules/base62/LICENSE
ββ base64-arraybuffer@0.1.5
β ββ licenses: MIT
β ββ repository: https://github.com/niklasvh/base64-arraybuffer
β ββ publisher: Niklas von Hertzen
β ββ email: niklasvh@gmail.com
β ββ url: http://hertzen.com
β ββ path: ./node_modules/base64-arraybuffer
β ββ licenseFile: ./node_modules/base64-arraybuffer/README.md
ββ base64-js@1.2.1
β ββ licenses: MIT
β ββ repository: https://github.com/beatgammit/base64-js
β ββ publisher: T. Jameson Little
β ββ email: t.jameson.little@gmail.com
β ββ path: ./node_modules/base64-js
β ββ licenseFile: ./node_modules/base64-js/LICENSE
ββ base64id@0.1.0
β ββ licenses: UNKNOWN
β ββ repository: https://github.com/faeldt/base64id
β ββ publisher: Kristian Faeldt
β ββ email: faeldt_kristian@cyberagent.co.jp
β ββ path: ./node_modules/base64id
β ββ licenseFile: ./node_modules/base64id/README.md
ββ batch@0.5.3
β ββ licenses: MIT
β ββ repository: https://github.com/visionmedia/batch
β ββ publisher: TJ Holowaychuk
β ββ email: tj@vision-media.ca
β ββ path: ./node_modules/batch
β ββ licenseFile: ./node_modules/batch/Readme.md
ββ bcrypt-pbkdf@1.0.1
β ββ licenses: BSD-3-Clause
β ββ path: ./node_modules/bcrypt-pbkdf
β ββ licenseFile: ./node_modules/bcrypt-pbkdf/README.md
ββ better-assert@1.0.2
β ββ licenses: MIT*
β ββ repository: https://github.com/visionmedia/better-assert
β ββ publisher: TJ Holowaychuk
β ββ email: tj@vision-media.ca
β ββ path: ./node_modules/better-assert
β ββ licenseFile: ./node_modules/better-assert/Readme.md
ββ big.js@3.2.0
β ββ licenses: MIT
β ββ repository: https://github.com/MikeMcl/big.js
β ββ publisher: Michael Mclaughlin
β ββ email: M8ch88l@gmail.com
β ββ path: ./node_modules/big.js
β ββ licenseFile: ./node_modules/big.js/LICENCE
ββ binary-extensions@1.11.0
β ββ licenses: MIT
β ββ repository: https://github.com/sindresorhus/binary-extensions
β ββ publisher: Sindre Sorhus
β ββ email: sindresorhus@gmail.com
β ββ url: sindresorhus.com
β ββ path: ./node_modules/binary-extensions
β ββ licenseFile: ./node_modules/binary-extensions/license
ββ blob@0.0.4
β ββ licenses: MIT*
β ββ repository: https://github.com/rase-/blob
β ββ path: ./node_modules/blob
β ββ licenseFile: ./node_modules/blob/README.md
ββ block-stream@0.0.9
β ββ licenses: ISC
β ββ repository: https://github.com/isaacs/block-stream
β ββ publisher: Isaac Z. Schlueter
β ββ email: i@izs.me
β ββ url: http://blog.izs.me/
β ββ path: ./node_modules/block-stream
β ββ licenseFile: ./node_modules/block-stream/LICENSE
ββ bn.js@4.11.8
β ββ licenses: MIT
β ββ repository: https://github.com/indutny/bn.js
β ββ publisher: Fedor Indutny
β ββ email: fedor@indutny.com
β ββ path: ./node_modules/bn.js
β ββ licenseFile: ./node_modules/bn.js/README.md
ββ boom@2.10.1
β ββ licenses: BSD-3-Clause
β ββ repository: https://github.com/hapijs/boom
β ββ path: ./node_modules/boom
β ββ licenseFile: ./node_modules/boom/LICENSE
ββ boxen@1.3.0
β ββ licenses: MIT
β ββ repository: https://github.com/sindresorhus/boxen
β ββ publisher: Sindre Sorhus
β ββ email: sindresorhus@gmail.com
β ββ url: sindresorhus.com
β ββ path: ./node_modules/boxen
β ββ licenseFile: ./node_modules/boxen/license
ββ brace-expansion@1.1.7
β ββ licenses: MIT
β ββ repository: https://github.com/juliangruber/brace-expansion
β ββ publisher: Julian Gruber
β ββ email: mail@juliangruber.com
β ββ url: http://juliangruber.com
β ββ path: ./node_modules/fsevents/node_modules/brace-expansion
β ββ licenseFile: ./node_modules/fsevents/node_modules/brace-expansion/README.md
ββ brace-expansion@1.1.8
β ββ licenses: MIT
β ββ repository: https://github.com/juliangruber/brace-expansion
β ββ publisher: Julian Gruber
β ββ email: mail@juliangruber.com
β ββ url: http://juliangruber.com
β ββ path: ./node_modules/brace-expansion
β ββ licenseFile: ./node_modules/brace-expansion/README.md
ββ braces@1.8.5
β ββ licenses: MIT
β ββ repository: https://github.com/jonschlinkert/braces
β ββ publisher: Jon Schlinkert
β ββ url: https://github.com/jonschlinkert
β ββ path: ./node_modules/braces
β ββ licenseFile: ./node_modules/braces/LICENSE
ββ brorand@1.1.0
β ββ licenses: MIT
β ββ repository: https://github.com/indutny/brorand
β ββ publisher: Fedor Indutny
β ββ email: fedor@indutny.com
β ββ path: ./node_modules/brorand
β ββ licenseFile: ./node_modules/brorand/README.md
ββ browser-sync-client@2.5.1
β ββ licenses: MIT
β ββ repository: https://github.com/shakyshane/browser-sync-client
β ββ publisher: Shane Osbourne
β ββ email: shane.osbourne8@gmail.com
β ββ path: ./node_modules/browser-sync-client
β ββ licenseFile: ./node_modules/browser-sync-client/README.md
ββ browser-sync-ui@0.6.3
β ββ licenses: Apache-2.0
β ββ repository: https://github.com/BrowserSync/UI
β ββ publisher: Shane Osbourne
β ββ path: ./node_modules/browser-sync-ui
β ββ licenseFile: ./node_modules/browser-sync-ui/LICENSE
ββ browser-sync-webpack-plugin@1.2.0
β ββ licenses: MIT
β ββ repository: https://github.com/Va1/browser-sync-webpack-plugin
β ββ publisher: Valentyn Barmashyn
β ββ email: valpreacher@gmail.com
β ββ path: ./node_modules/browser-sync-webpack-plugin
β ββ licenseFile: ./node_modules/browser-sync-webpack-plugin/LICENCE
ββ browser-sync@2.18.13
β ββ licenses: Apache-2.0
β ββ repository: https://github.com/Browsersync/browser-sync
β ββ publisher: Shane Osbourne
β ββ path: ./node_modules/browser-sync
β ββ licenseFile: ./node_modules/browser-sync/LICENSE
ββ browserify-aes@1.1.1
β ββ licenses: MIT
β ββ repository: https://github.com/crypto-browserify/browserify-aes
β ββ path: ./node_modules/browserify-aes
β ββ licenseFile: ./node_modules/browserify-aes/LICENSE
ββ browserify-cipher@1.0.0
β ββ licenses: MIT
β ββ repository: https://github.com/crypto-browserify/browserify-cipher
β ββ publisher: Calvin Metcalf
β ββ email: calvin.metcalf@gmail.com
β ββ path: ./node_modules/browserify-cipher
β ββ licenseFile: ./node_modules/browserify-cipher/readme.md
ββ browserify-des@1.0.0
β ββ licenses: MIT
β ββ repository: https://github.com/crypto-browserify/browserify-des
β ββ publisher: Calvin Metcalf
β ββ email: calvin.metcalf@gmail.com
β ββ path: ./node_modules/browserify-des
β ββ licenseFile: ./node_modules/browserify-des/readme.md
ββ browserify-rsa@4.0.1
β ββ licenses: MIT
β ββ repository: https://github.com/crypto-browserify/browserify-rsa
β ββ path: ./node_modules/browserify-rsa
β ββ licenseFile: ./node_modules/browserify-rsa/LICENSE
ββ browserify-sign@4.0.4
β ββ licenses: ISC
β ββ repository: https://github.com/crypto-browserify/browserify-sign
β ββ path: ./node_modules/browserify-sign
β ββ licenseFile: ./node_modules/browserify-sign/LICENSE
ββ browserify-zlib@0.2.0
β ββ licenses: MIT
β ββ repository: https://github.com/devongovett/browserify-zlib
β ββ publisher: Devon Govett
β ββ email: devongovett@gmail.com
β ββ path: ./node_modules/browserify-zlib
β ββ licenseFile: ./node_modules/browserify-zlib/LICENSE
ββ browserslist@1.7.7
β ββ licenses: MIT
β ββ repository: https://github.com/ai/browserslist
β ββ publisher: Andrey Sitnik
β ββ email: andrey@sitnik.ru
β ββ path: ./node_modules/browserslist
β ββ licenseFile: ./node_modules/browserslist/LICENSE
ββ bs-recipes@1.3.4
β ββ licenses: ISC
β ββ repository: https://github.com/BrowserSync/recipes
β ββ publisher: Shane Osbourne
β ββ path: ./node_modules/bs-recipes
β ββ licenseFile: ./node_modules/bs-recipes/readme.md
ββ buffer-shims@1.0.0
β ββ licenses: MIT
β ββ repository: https://github.com/calvinmetcalf/buffer-shims
β ββ path: ./node_modules/fsevents/node_modules/buffer-shims
β ββ licenseFile: ./node_modules/fsevents/node_modules/buffer-shims/license.md
ββ buffer-xor@1.0.3
β ββ licenses: MIT
β ββ repository: https://github.com/crypto-browserify/buffer-xor
β ββ publisher: Daniel Cousens
β ββ path: ./node_modules/buffer-xor
β ββ licenseFile: ./node_modules/buffer-xor/LICENSE
ββ buffer@4.9.1
β ββ licenses: MIT
β ββ repository: https://github.com/feross/buffer
β ββ publisher: Feross Aboukhadijeh
β ββ email: feross@feross.org
β ββ url: http://feross.org
β ββ path: ./node_modules/buffer
β ββ licenseFile: ./node_modules/buffer/LICENSE
ββ builtin-modules@1.1.1
β ββ licenses: MIT
β ββ repository: https://github.com/sindresorhus/builtin-modules
β ββ publisher: Sindre Sorhus
β ββ email: sindresorhus@gmail.com
β ββ url: sindresorhus.com
β ββ path: ./node_modules/builtin-modules
β ββ licenseFile: ./node_modules/builtin-modules/license
ββ builtin-status-codes@3.0.0
β ββ licenses: MIT
β ββ repository: https://github.com/bendrucker/builtin-status-codes
β ββ publisher: Ben Drucker
β ββ email: bvdrucker@gmail.com
β ββ url: bendrucker.me
β ββ path: ./node_modules/builtin-status-codes
β ββ licenseFile: ./node_modules/builtin-status-codes/license
ββ caller-path@0.1.0
β ββ licenses: MIT
β ββ repository: https://github.com/sindresorhus/caller-path
β ββ publisher: Sindre Sorhus
β ββ email: sindresorhus@gmail.com
β ββ url: http://sindresorhus.com
β ββ path: ./node_modules/caller-path
β ββ licenseFile: ./node_modules/caller-path/readme.md
ββ callsite@1.0.0
β ββ licenses: MIT*
β ββ publisher: TJ Holowaychuk
β ββ email: tj@vision-media.ca
β ββ path: ./node_modules/callsite
β ββ licenseFile: ./node_modules/callsite/Readme.md
ββ callsites@0.2.0
β ββ licenses: MIT
β ββ repository: https://github.com/sindresorhus/callsites
β ββ publisher: Sindre Sorhus
β ββ email: sindresorhus@gmail.com
β ββ url: http://sindresorhus.com
β ββ path: ./node_modules/callsites
β ββ licenseFile: ./node_modules/callsites/readme.md
ββ camel-case@3.0.0
β ββ licenses: MIT
β ββ repository: https://github.com/blakeembrey/camel-case
β ββ publisher: Blake Embrey
β ββ email: hello@blakeembrey.com
β ββ url: http://blakeembrey.me
β ββ path: ./node_modules/camel-case
β ββ licenseFile: ./node_modules/camel-case/LICENSE
ββ camelcase-keys@2.1.0
β ββ licenses: MIT
β ββ repository: https://github.com/sindresorhus/camelcase-keys
β ββ publisher: Sindre Sorhus
β ββ email: sindresorhus@gmail.com
β ββ url: http://sindresorhus.com
β ββ path: ./node_modules/camelcase-keys
β ββ licenseFile: ./node_modules/camelcase-keys/license
ββ camelcase@1.2.1
β ββ licenses: MIT
β ββ repository: https://github.com/sindresorhus/camelcase
β ββ publisher: Sindre Sorhus
β ββ email: sindresorhus@gmail.com
β ββ url: http://sindresorhus.com
β ββ path: ./node_modules/uglify-js/node_modules/camelcase
β ββ licenseFile: ./node_modules/uglify-js/node_modules/camelcase/license
ββ camelcase@2.1.1
β ββ licenses: MIT
β ββ repository: https://github.com/sindresorhus/camelcase
β ββ publisher: Sindre Sorhus
β ββ email: sindresorhus@gmail.com
β ββ url: http://sindresorhus.com
β ββ path: ./node_modules/camelcase-keys/node_modules/camelcase
β ββ licenseFile: ./node_modules/camelcase-keys/node_modules/camelcase/license
ββ camelcase@3.0.0
β ββ licenses: MIT
β ββ repository: https://github.com/sindresorhus/camelcase
β ββ publisher: Sindre Sorhus
β ββ email: sindresorhus@gmail.com
β ββ url: http://sindresorhus.com
β ββ path: ./node_modules/yargs/node_modules/camelcase
β ββ licenseFile: ./node_modules/yargs/node_modules/camelcase/license
ββ camelcase@4.1.0
β ββ licenses: MIT
β ββ repository: https://github.com/sindresorhus/camelcase
β ββ publisher: Sindre Sorhus
β ββ email: sindresorhus@gmail.com
β ββ url: sindresorhus.com
β ββ path: ./node_modules/camelcase
β ββ licenseFile: ./node_modules/camelcase/license
ββ caniuse-api@1.6.1
β ββ licenses: MIT
β ββ repository: https://github.com/nyalab/caniuse-api
β ββ path: ./node_modules/caniuse-api
β ββ licenseFile: ./node_modules/caniuse-api/LICENSE
ββ caniuse-db@1.0.30000783
β ββ licenses: CC-BY-4.0
β ββ repository: https://github.com/Fyrd/caniuse
β ββ publisher: Alexis Deveria
β ββ email: adeveria@gmail.com
β ββ path: ./node_modules/caniuse-db
β ββ licenseFile: ./node_modules/caniuse-db/LICENSE
ββ capture-stack-trace@1.0.0
β ββ licenses: MIT
β ββ repository: https://github.com/floatdrop/capture-stack-trace
β ββ publisher: Vsevolod Strukchinsky
β ββ email: floatdrop@gmail.com
β ββ url: github.com/floatdrop
β ββ path: ./node_modules/capture-stack-trace
β ββ licenseFile: ./node_modules/capture-stack-trace/readme.md
ββ caseless@0.12.0
β ββ licenses: Apache-2.0
β ββ repository: https://github.com/mikeal/caseless
β ββ publisher: Mikeal Rogers
β ββ email: mikeal.rogers@gmail.com
β ββ path: ./node_modules/caseless
β ββ licenseFile: ./node_modules/caseless/LICENSE
ββ center-align@0.1.3
β ββ licenses: MIT
β ββ repository: https://github.com/jonschlinkert/center-align
β ββ publisher: Jon Schlinkert
β ββ url: https://github.com/jonschlinkert
β ββ path: ./node_modules/center-align
β ββ licenseFile: ./node_modules/center-align/LICENSE
ββ chalk@0.5.1
β ββ licenses: MIT
β ββ repository: https://github.com/sindresorhus/chalk
β ββ path: ./node_modules/license-checker/node_modules/chalk
β ββ licenseFile: ./node_modules/license-checker/node_modules/chalk/readme.md
ββ chalk@1.1.3
β ββ licenses: MIT
β ββ repository: https://github.com/chalk/chalk
β ββ path: ./node_modules/chalk
β ββ licenseFile: ./node_modules/chalk/license
ββ chalk@2.3.0
β ββ licenses: MIT
β ββ repository: https://github.com/chalk/chalk
β ββ path: ./node_modules/icss-utils/node_modules/chalk
β ββ licenseFile: ./node_modules/icss-utils/node_modules/chalk/license
ββ chardet@0.4.2
β ββ licenses: MIT
β ββ repository: https://github.com/runk/node-chardet
β ββ publisher: Dmitry Shirokov
β ββ email: deadrunk@gmail.com
β ββ path: ./node_modules/chardet
β ββ licenseFile: ./node_modules/chardet/LICENSE
ββ chokidar@1.7.0
β ββ licenses: MIT
β ββ repository: https://github.com/paulmillr/chokidar
β ββ publisher: Paul Miller
β ββ url: http://paulmillr.com
β ββ path: ./node_modules/chokidar
β ββ licenseFile: ./node_modules/chokidar/README.md
ββ chrome-devtools-frontend@1.0.401423
β ββ licenses: BSD*
β ββ repository: https://github.com/ChromeDevTools/devtools-frontend
β ββ publisher: Paul Irish
β ββ path: ./node_modules/devtools-timeline-model/node_modules/chrome-devtools-frontend
β ββ licenseFile: ./node_modules/devtools-timeline-model/node_modules/chrome-devtools-frontend/LICENSE
ββ chrome-devtools-frontend@1.0.422034
β ββ licenses: BSD*
β ββ repository: https://github.com/ChromeDevTools/devtools-frontend
β ββ publisher: The Chromium Authors
β ββ path: ./node_modules/chrome-devtools-frontend
β ββ licenseFile: ./node_modules/chrome-devtools-frontend/LICENSE
ββ chrome-remote-interface@0.23.3
β ββ licenses: MIT
β ββ repository: https://github.com/cyrus-and/chrome-remote-interface
β ββ publisher: Andrea Cardaci
β ββ email: cyrus.and@gmail.com
β ββ path: ./node_modules/chrome-remote-interface
β ββ licenseFile: ./node_modules/chrome-remote-interface/LICENSE
ββ ci-info@1.1.2
β ββ licenses: MIT
β ββ repository: https://github.com/watson/ci-info
β ββ publisher: Thomas Watson Steen
β ββ email: w@tson.dk
β ββ url: https://twitter.com/wa7son
β ββ path: ./node_modules/ci-info
β ββ licenseFile: ./node_modules/ci-info/LICENSE
ββ cipher-base@1.0.4
β ββ licenses: MIT
β ββ repository: https://github.com/crypto-browserify/cipher-base
β ββ publisher: Calvin Metcalf
β ββ email: calvin.metcalf@gmail.com
β ββ path: ./node_modules/cipher-base
β ββ licenseFile: ./node_modules/cipher-base/LICENSE
ββ circular-json@0.3.3
β ββ licenses: MIT
β ββ repository: https://github.com/WebReflection/circular-json
β ββ publisher: Andrea Giammarchi
β ββ url: http://webreflection.blogspot.com/
β ββ path: ./node_modules/circular-json
β ββ licenseFile: ./node_modules/circular-json/LICENSE.txt
ββ clap@1.2.3
β ββ licenses: MIT
β ββ repository: https://github.com/lahmatiy/clap
β ββ publisher: Roman Dvornov
β ββ email: rdvornov@gmail.com
β ββ path: ./node_modules/clap
β ββ licenseFile: ./node_modules/clap/LICENSE
ββ clean-css@4.1.9
β ββ licenses: MIT
β ββ repository: https://github.com/jakubpawlowicz/clean-css
β ββ publisher: Jakub Pawlowicz
β ββ email: contact@jakubpawlowicz.com
β ββ url: http://twitter.com/jakubpawlowicz
β ββ path: ./node_modules/clean-css
β ββ licenseFile: ./node_modules/clean-css/LICENSE
ββ cli-boxes@1.0.0
β ββ licenses: MIT
β ββ repository: https://github.com/sindresorhus/cli-boxes
β ββ publisher: Sindre Sorhus
β ββ email: sindresorhus@gmail.com
β ββ url: sindresorhus.com
β ββ path: ./node_modules/cli-boxes
β ββ licenseFile: ./node_modules/cli-boxes/license
ββ cli-cursor@1.0.2
β ββ licenses: MIT
β ββ repository: https://github.com/sindresorhus/cli-cursor
β ββ publisher: Sindre Sorhus
β ββ email: sindresorhus@gmail.com
β ββ url: sindresorhus.com
β ββ path: ./node_modules/cli-cursor
β ββ licenseFile: ./node_modules/cli-cursor/license
ββ cli-cursor@2.1.0
β ββ licenses: MIT
β ββ repository: https://github.com/sindresorhus/cli-cursor
β ββ publisher: Sindre Sorhus
β ββ email: sindresorhus@gmail.com
β ββ url: sindresorhus.com
β ββ path: ./node_modules/inquirer/node_modules/cli-cursor
β ββ licenseFile: ./node_modules/inquirer/node_modules/cli-cursor/license
ββ cli-spinners@0.1.2
β ββ licenses: MIT
β ββ repository: https://github.com/sindresorhus/cli-spinners
β ββ publisher: Sindre Sorhus
β ββ email: sindresorhus@gmail.com
β ββ url: sindresorhus.com
β ββ path: ./node_modules/cli-spinners
β ββ licenseFile: ./node_modules/cli-spinners/license
ββ cli-truncate@0.2.1
β ββ licenses: MIT
β ββ repository: https://github.com/sindresorhus/cli-truncate
β ββ publisher: Sindre Sorhus
β ββ email: sindresorhus@gmail.com
β ββ url: sindresorhus.com
β ββ path: ./node_modules/cli-truncate
β ββ licenseFile: ./node_modules/cli-truncate/license
ββ cli-width@2.2.0
β ββ licenses: ISC
β ββ repository: https://github.com/knownasilya/cli-width
β ββ publisher: Ilya Radchenko
β ββ email: ilya@burstcreations.com
β ββ path: ./node_modules/cli-width
β ββ licenseFile: ./node_modules/cli-width/LICENSE
ββ cliui@2.1.0
β ββ licenses: ISC
β ββ repository: https://github.com/bcoe/cliui
β ββ publisher: Ben Coe
β ββ email: ben@npmjs.com
β ββ path: ./node_modules/uglify-js/node_modules/cliui
β ββ licenseFile: ./node_modules/uglify-js/node_modules/cliui/LICENSE.txt
ββ cliui@3.2.0
β ββ licenses: ISC
β ββ repository: https://github.com/yargs/cliui
β ββ publisher: Ben Coe
β ββ email: ben@npmjs.com
β ββ path: ./node_modules/cliui
β ββ licenseFile: ./node_modules/cliui/LICENSE.txt
ββ clone@1.0.3
β ββ licenses: MIT
β ββ repository: https://github.com/pvorb/node-clone
β ββ publisher: Paul Vorbach
β ββ email: paul@vorba.ch
β ββ url: http://paul.vorba.ch/
β ββ path: ./node_modules/clone
β ββ licenseFile: ./node_modules/clone/LICENSE
ββ co@4.6.0
β ββ licenses: MIT
β ββ repository: https://github.com/tj/co
β ββ path: ./node_modules/co
β ββ licenseFile: ./node_modules/co/LICENSE
ββ coa@1.0.4
β ββ licenses: MIT
β ββ repository: https://github.com/veged/coa
β ββ publisher: Sergey Berezhnoy
β ββ email: veged@ya.ru
β ββ url: http://github.com/veged
β ββ path: ./node_modules/coa
β ββ licenseFile: ./node_modules/coa/README.md
ββ code-point-at@1.1.0
β ββ licenses: MIT
β ββ repository: https://github.com/sindresorhus/code-point-at
β ββ publisher: Sindre Sorhus
β ββ email: sindresorhus@gmail.com
β ββ url: sindresorhus.com
β ββ path: ./node_modules/code-point-at
β ββ licenseFile: ./node_modules/code-point-at/license
ββ color-convert@1.9.1
β ββ licenses: MIT
β ββ repository: https://github.com/Qix-/color-convert
β ββ publisher: Heather Arthur
β ββ email: fayearthur@gmail.com
β ββ path: ./node_modules/color-convert
β ββ licenseFile: ./node_modules/color-convert/LICENSE
ββ color-name@1.1.3
β ββ licenses: MIT
β ββ repository: https://github.com/dfcreative/color-name
β ββ publisher: DY
β ββ email: dfcreative@gmail.com
β ββ path: ./node_modules/color-name
β ββ licenseFile: ./node_modules/color-name/LICENSE
ββ color-string@0.3.0
β ββ licenses: MIT
β ββ repository: https://github.com/harthur/color-string
β ββ publisher: Heather Arthur
β ββ email: fayearthur@gmail.com
β ββ path: ./node_modules/color-string
β ββ licenseFile: ./node_modules/color-string/LICENSE
ββ color@0.11.4
β ββ licenses: MIT
β ββ repository: https://github.com/Qix-/color
β ββ path: ./node_modules/color
β ββ licenseFile: ./node_modules/color/LICENSE
ββ colormin@1.1.2
β ββ licenses: MIT
β ββ repository: https://github.com/ben-eb/colormin
β ββ publisher: Ben Briggs
β ββ email: beneb.info@gmail.com
β ββ url: http://beneb.info
β ββ path: ./node_modules/colormin
β ββ licenseFile: ./node_modules/colormin/README.md
ββ colors@0.6.2
β ββ licenses: Custom: http://i.imgur.com/goJdO.png
β ββ repository: https://github.com/Marak/colors.js
β ββ publisher: Marak Squires
β ββ path: ./node_modules/colors
β ββ licenseFile: ./node_modules/colors/ReadMe.md
ββ colors@1.1.2
β ββ licenses: MIT
β ββ repository: https://github.com/Marak/colors.js
β ββ publisher: Marak Squires
β ββ path: ./node_modules/svgo/node_modules/colors
β ββ licenseFile: ./node_modules/svgo/node_modules/colors/LICENSE
ββ combined-stream@1.0.5
β ββ licenses: MIT
β ββ repository: https://github.com/felixge/node-combined-stream
β ββ publisher: Felix GeisendΓΆrfer
β ββ email: felix@debuggable.com
β ββ url: http://debuggable.com/
β ββ path: ./node_modules/combined-stream
β ββ licenseFile: ./node_modules/combined-stream/License
ββ command-line-args@4.0.7
β ββ licenses: MIT
β ββ repository: https://github.com/75lb/command-line-args
β ββ publisher: Lloyd Brookes
β ββ email: 75pound@gmail.com
β ββ path: ./node_modules/command-line-args
β ββ licenseFile: ./node_modules/command-line-args/LICENSE
ββ command-line-usage@4.0.2
β ββ licenses: MIT
β ββ repository: https://github.com/75lb/command-line-usage
β ββ publisher: Lloyd Brookes
β ββ email: 75pound@gmail.com
β ββ path: ./node_modules/command-line-usage
β ββ licenseFile: ./node_modules/command-line-usage/LICENSE
ββ commander@2.1.0
β ββ licenses: MIT*
β ββ repository: https://github.com/visionmedia/commander.js
β ββ publisher: TJ Holowaychuk
β ββ email: tj@vision-media.ca
β ββ path: ./node_modules/chrome-remote-interface/node_modules/commander
β ββ licenseFile: ./node_modules/chrome-remote-interface/node_modules/commander/Readme.md
ββ commander@2.12.2
β ββ licenses: MIT
β ββ repository: https://github.com/tj/commander.js
β ββ publisher: TJ Holowaychuk
β ββ email: tj@vision-media.ca
β ββ path: ./node_modules/commander
β ββ licenseFile: ./node_modules/commander/LICENSE
ββ component-bind@1.0.0
β ββ licenses: MIT*
β ββ repository: https://github.com/component/bind
β ββ path: ./node_modules/component-bind
β ββ licenseFile: ./node_modules/component-bind/Readme.md
ββ component-emitter@1.1.2
β ββ licenses: MIT*
β ββ repository: https://github.com/component/emitter
β ββ path: ./node_modules/socket.io-parser/node_modules/component-emitter
β ββ licenseFile: ./node_modules/socket.io-parser/node_modules/component-emitter/Readme.md
ββ component-emitter@1.2.1
β ββ licenses: MIT
β ββ repository: https://github.com/component/emitter
β ββ path: ./node_modules/component-emitter
β ββ licenseFile: ./node_modules/component-emitter/LICENSE
ββ component-inherit@0.0.3
β ββ licenses: MIT*
β ββ repository: https://github.com/component/inherit
β ββ path: ./node_modules/component-inherit
β ββ licenseFile: ./node_modules/component-inherit/Readme.md
ββ concat-map@0.0.1
β ββ licenses: MIT
β ββ repository: https://github.com/substack/node-concat-map
β ββ publisher: James Halliday
β ββ email: mail@substack.net
β ββ url: http://substack.net
β ββ path: ./node_modules/concat-map
β ββ licenseFile: ./node_modules/concat-map/LICENSE
ββ concat-stream@1.6.0
β ββ licenses: MIT
β ββ repository: https://github.com/maxogden/concat-stream
β ββ publisher: Max Ogden
β ββ email: max@maxogden.com
β ββ path: ./node_modules/concat-stream
β ββ licenseFile: ./node_modules/concat-stream/LICENSE
ββ configstore@3.1.1
β ββ licenses: BSD-2-Clause
β ββ repository: https://github.com/yeoman/configstore
β ββ publisher: Sindre Sorhus
β ββ email: sindresorhus@gmail.com
β ββ url: sindresorhus.com
β ββ path: ./node_modules/configstore
β ββ licenseFile: ./node_modules/configstore/readme.md
ββ connect-history-api-fallback@1.5.0
β ββ licenses: MIT
β ββ repository: https://github.com/bripkens/connect-history-api-fallback
β ββ publisher: Ben Ripkens
β ββ email: bripkens.dev@gmail.com
β ββ url: http://bripkens.de
β ββ path: ./node_modules/connect-history-api-fallback
β ββ licenseFile: ./node_modules/connect-history-api-fallback/LICENSE
ββ connect@1.9.2
β ββ licenses: MIT*
β ββ repository: https://github.com/senchalabs/connect
β ββ publisher: TJ Holowaychuk
β ββ email: tj@vision-media.ca
β ββ url: http://tjholowaychuk.com
β ββ path: ./node_modules/express/node_modules/connect
β ββ licenseFile: ./node_modules/express/node_modules/connect/LICENSE
ββ connect@3.5.0
β ββ licenses: MIT
β ββ repository: https://github.com/senchalabs/connect
β ββ publisher: TJ Holowaychuk
β ββ email: tj@vision-media.ca
β ββ url: http://tjholowaychuk.com
β ββ path: ./node_modules/connect
β ββ licenseFile: ./node_modules/connect/LICENSE
ββ connect@3.6.5
β ββ licenses: MIT
β ββ repository: https://github.com/senchalabs/connect
β ββ publisher: TJ Holowaychuk
β ββ email: tj@vision-media.ca
β ββ url: http://tjholowaychuk.com
β ββ path: ./node_modules/node-faux-pas/node_modules/connect
β ββ licenseFile: ./node_modules/node-faux-pas/node_modules/connect/LICENSE
ββ console-browserify@1.1.0
β ββ licenses: MIT
β ββ repository: https://github.com/Raynos/console-browserify
β ββ publisher: Raynos
β ββ email: raynos2@gmail.com
β ββ path: ./node_modules/console-browserify
β ββ licenseFile: ./node_modules/console-browserify/LICENCE
ββ console-control-strings@1.1.0
β ββ licenses: ISC
β ββ repository: https://github.com/iarna/console-control-strings
β ββ publisher: Rebecca Turner
β ββ email: me@re-becca.org
β ββ url: http://re-becca.org/
β ββ path: ./node_modules/console-control-strings
β ββ licenseFile: ./node_modules/console-control-strings/LICENSE
ββ constants-browserify@1.0.0
β ββ licenses: MIT
β ββ repository: https://github.com/juliangruber/constants-browserify
β ββ publisher: Julian Gruber
β ββ email: julian@juliangruber.com
β ββ url: http://juliangruber.com
β ββ path: ./node_modules/constants-browserify
β ββ licenseFile: ./node_modules/constants-browserify/README.md
ββ convert-source-map@1.5.1
β ββ licenses: MIT
β ββ repository: https://github.com/thlorenz/convert-source-map
β ββ publisher: Thorsten Lorenz
β ββ email: thlorenz@gmx.de
β ββ url: http://thlorenz.com
β ββ path: ./node_modules/convert-source-map
β ββ licenseFile: ./node_modules/convert-source-map/LICENSE
ββ cookie@0.3.1
β ββ licenses: MIT
β ββ repository: https://github.com/jshttp/cookie
β ββ publisher: Roman Shtylman
β ββ email: shtylman@gmail.com
β ββ path: ./node_modules/cookie
β ββ licenseFile: ./node_modules/cookie/LICENSE
ββ core-js@2.5.3
β ββ licenses: MIT
β ββ repository: https://github.com/zloirock/core-js
β ββ path: ./node_modules/core-js
β ββ licenseFile: ./node_modules/core-js/LICENSE
ββ core-util-is@1.0.2
β ββ licenses: MIT
β ββ repository: https://github.com/isaacs/core-util-is
β ββ publisher: Isaac Z. Schlueter
β ββ email: i@izs.me
β ββ url: http://blog.izs.me/
β ββ path: ./node_modules/core-util-is
β ββ licenseFile: ./node_modules/core-util-is/LICENSE
ββ cosmiconfig@3.1.0
β ββ licenses: MIT
β ββ repository: https://github.com/davidtheclark/cosmiconfig
β ββ publisher: David Clark
β ββ email: david.dave.clark@gmail.com
β ββ path: ./node_modules/cosmiconfig
β ββ licenseFile: ./node_modules/cosmiconfig/LICENSE
ββ create-ecdh@4.0.0
β ββ licenses: MIT
β ββ repository: https://github.com/crypto-browserify/createECDH
β ββ publisher: Calvin Metcalf
β ββ path: ./node_modules/create-ecdh
β ββ licenseFile: ./node_modules/create-ecdh/readme.md
ββ create-error-class@3.0.2
β ββ licenses: MIT
β ββ repository: https://github.com/floatdrop/create-error-class
β ββ publisher: Vsevolod Strukchinsky
β ββ email: floatdrop@gmail.com
β ββ url: github.com/floatdrop
β ββ path: ./node_modules/create-error-class
β ββ licenseFile: ./node_modules/create-error-class/license
ββ create-hash@1.1.3
β ββ licenses: MIT
β ββ repository: https://github.com/crypto-browserify/createHash
β ββ path: ./node_modules/create-hash
β ββ licenseFile: ./node_modules/create-hash/readme.md
ββ create-hmac@1.1.6
β ββ licenses: MIT
β ββ repository: https://github.com/crypto-browserify/createHmac
β ββ path: ./node_modules/create-hmac
β ββ licenseFile: ./node_modules/create-hmac/README.md
ββ cross-env@5.1.1
β ββ licenses: MIT
β ββ repository: https://github.com/kentcdodds/cross-env
β ββ publisher: Kent C. Dodds
β ββ email: kent@doddsfamily.us
β ββ url: http://kentcdodds.com/
β ββ path: ./node_modules/cross-env
β ββ licenseFile: ./node_modules/cross-env/LICENSE
ββ cross-spawn@5.1.0
β ββ licenses: MIT
β ββ repository: https://github.com/IndigoUnited/node-cross-spawn
β ββ publisher: IndigoUnited
β ββ email: hello@indigounited.com
β ββ url: http://indigounited.com
β ββ path: ./node_modules/cross-spawn
β ββ licenseFile: ./node_modules/cross-spawn/LICENSE
ββ cryptiles@2.0.5
β ββ licenses: BSD-3-Clause
β ββ repository: https://github.com/hapijs/cryptiles
β ββ path: ./node_modules/cryptiles
β ββ licenseFile: ./node_modules/cryptiles/LICENSE
ββ crypto-browserify@3.12.0
β ββ licenses: MIT
β ββ repository: https://github.com/crypto-browserify/crypto-browserify
β ββ publisher: Dominic Tarr
β ββ email: dominic.tarr@gmail.com
β ββ url: dominictarr.com
β ββ path: ./node_modules/crypto-browserify
β ββ licenseFile: ./node_modules/crypto-browserify/LICENSE
ββ crypto-random-string@1.0.0
β ββ licenses: MIT
β ββ repository: https://github.com/sindresorhus/crypto-random-string
β ββ publisher: Sindre Sorhus
β ββ email: sindresorhus@gmail.com
β ββ url: sindresorhus.com
β ββ path: ./node_modules/crypto-random-string
β ββ licenseFile: ./node_modules/crypto-random-string/license
ββ css-color-names@0.0.4
β ββ licenses: MIT
β ββ repository: https://github.com/bahamas10/css-color-names
β ββ publisher: Dave Eddy
β ββ email: dave@daveeddy.com
β ββ url: http://www.daveeddy.com
β ββ path: ./node_modules/css-color-names
β ββ licenseFile: ./node_modules/css-color-names/README.md
ββ css-loader@0.28.7
β ββ licenses: MIT
β ββ repository: https://github.com/webpack/css-loader
β ββ publisher: Tobias Koppers @sokra
β ββ path: ./node_modules/css-loader
β ββ licenseFile: ./node_modules/css-loader/LICENSE
ββ css-loader@0.9.1
β ββ licenses: MIT
β ββ repository: https://github.com/webpack/css-loader
β ββ publisher: Tobias Koppers @sokra
β ββ path: ./node_modules/string-replace-webpack-plugin/node_modules/css-loader
β ββ licenseFile: ./node_modules/string-replace-webpack-plugin/node_modules/css-loader/README.md
ββ css-selector-tokenizer@0.7.0
β ββ licenses: MIT
β ββ repository: https://github.com/css-modules/css-selector-tokenizer
β ββ publisher: Tobias Koppers @sokra
β ββ path: ./node_modules/css-selector-tokenizer
β ββ licenseFile: ./node_modules/css-selector-tokenizer/README.md
ββ cssesc@0.1.0
β ββ licenses: MIT
β ββ repository: https://github.com/mathiasbynens/cssesc
β ββ publisher: Mathias Bynens
β ββ url: http://mathiasbynens.be/
β ββ path: ./node_modules/cssesc
β ββ licenseFile: ./node_modules/cssesc/README.md
ββ cssnano@3.10.0
β ββ licenses: MIT
β ββ repository: https://github.com/ben-eb/cssnano
β ββ publisher: Ben Briggs
β ββ email: beneb.info@gmail.com
β ββ url: http://beneb.info
β ββ path: ./node_modules/cssnano
β ββ licenseFile: ./node_modules/cssnano/README.md
ββ csso@1.3.12
β ββ licenses: MIT
β ββ repository: https://github.com/css/csso
β ββ publisher: Sergey Kryzhanovsky
β ββ email: skryzhanovsky@ya.ru
β ββ url: https://github.com/afelix
β ββ path: ./node_modules/csso
β ββ licenseFile: ./node_modules/csso/README.md
ββ csso@2.3.2
β ββ licenses: MIT
β ββ repository: https://github.com/css/csso
β ββ publisher: Sergey Kryzhanovsky
β ββ email: skryzhanovsky@ya.ru
β ββ url: https://github.com/afelix
β ββ path: ./node_modules/svgo/node_modules/csso
β ββ licenseFile: ./node_modules/svgo/node_modules/csso/LICENSE
ββ currently-unhandled@0.4.1
β ββ licenses: MIT
β ββ repository: https://github.com/jamestalmage/currently-unhandled
β ββ publisher: James Talmage
β ββ email: james@talmage.io
β ββ url: github.com/jamestalmage
β ββ path: ./node_modules/currently-unhandled
β ββ licenseFile: ./node_modules/currently-unhandled/license
ββ d@1.0.0
β ββ licenses: MIT
β ββ repository: https://github.com/medikoo/d
β ββ publisher: Mariusz Nowak
β ββ email: medyk@medikoo.com
β ββ url: http://www.medikoo.com/
β ββ path: ./node_modules/d
β ββ licenseFile: ./node_modules/d/LICENSE
ββ dashdash@1.14.1
β ββ licenses: MIT
β ββ repository: https://github.com/trentm/node-dashdash
β ββ publisher: Trent Mick
β ββ email: trentm@gmail.com
β ββ url: http://trentm.com
β ββ path: ./node_modules/dashdash
β ββ licenseFile: ./node_modules/dashdash/LICENSE.txt
ββ date-fns@1.29.0
β ββ licenses: MIT
β ββ repository: https://github.com/date-fns/date-fns
β ββ publisher: Sasha Koss
β ββ email: koss@nocorp.me
β ββ path: ./node_modules/date-fns
β ββ licenseFile: ./node_modules/date-fns/LICENSE.md
ββ date-now@0.1.4
β ββ licenses: MIT
β ββ repository: https://github.com/Colingo/date-now
β ββ publisher: Raynos
β ββ email: raynos2@gmail.com
β ββ path: ./node_modules/date-now
β ββ licenseFile: ./node_modules/date-now/LICENCE
ββ debug@2.2.0
β ββ licenses: MIT
β ββ repository: https://github.com/visionmedia/debug
β ββ publisher: TJ Holowaychuk
β ββ email: tj@vision-media.ca
β ββ path: ./node_modules/connect/node_modules/debug
β ββ licenseFile: ./node_modules/connect/node_modules/debug/Readme.md
ββ debug@2.3.3
β ββ licenses: MIT
β ββ repository: https://github.com/visionmedia/debug
β ββ publisher: TJ Holowaychuk
β ββ email: tj@vision-media.ca
β ββ path: ./node_modules/socket.io/node_modules/debug
β ββ licenseFile: ./node_modules/socket.io/node_modules/debug/LICENSE
ββ debug@2.6.4
β ββ licenses: MIT
β ββ repository: https://github.com/visionmedia/debug
β ββ publisher: TJ Holowaychuk
β ββ email: tj@vision-media.ca
β ββ path: ./node_modules/send/node_modules/debug
β ββ licenseFile: ./node_modules/send/node_modules/debug/LICENSE
ββ debug@2.6.8
β ββ licenses: MIT
β ββ repository: https://github.com/visionmedia/debug
β ββ publisher: TJ Holowaychuk
β ββ email: tj@vision-media.ca
β ββ path: ./node_modules/localtunnel/node_modules/debug
β ββ licenseFile: ./node_modules/localtunnel/node_modules/debug/LICENSE
ββ debug@2.6.9
β ββ licenses: MIT
β ββ repository: https://github.com/visionmedia/debug
β ββ publisher: TJ Holowaychuk
β ββ email: tj@vision-media.ca
β ββ path: ./node_modules/debug
β ββ licenseFile: ./node_modules/debug/LICENSE
ββ debug@3.1.0
β ββ licenses: MIT
β ββ repository: https://github.com/visionmedia/debug
β ββ publisher: TJ Holowaychuk
β ββ email: tj@vision-media.ca
β ββ path: ./node_modules/eslint/node_modules/debug
β ββ licenseFile: ./node_modules/eslint/node_modules/debug/LICENSE
ββ debuglog@1.0.1
β ββ licenses: MIT
β ββ repository: https://github.com/sam-github/node-debuglog
β ββ publisher: Sam Roberts
β ββ email: sam@strongloop.com
β ββ path: ./node_modules/debuglog
β ββ licenseFile: ./node_modules/debuglog/LICENSE
ββ decamelize@1.2.0
β ββ licenses: MIT
β ββ repository: https://github.com/sindresorhus/decamelize
β ββ publisher: Sindre Sorhus
β ββ email: sindresorhus@gmail.com
β ββ url: sindresorhus.com
β ββ path: ./node_modules/decamelize
β ββ licenseFile: ./node_modules/decamelize/license
ββ dedent@0.7.0
β ββ licenses: MIT
β ββ repository: https://github.com/dmnd/dedent
β ββ publisher: Desmond Brand
β ββ email: dmnd@desmondbrand.com
β ββ url: http://desmondbrand.com
β ββ path: ./node_modules/dedent
β ββ licenseFile: ./node_modules/dedent/LICENSE
ββ deep-extend@0.4.2
β ββ licenses: MIT
β ββ repository: https://github.com/unclechu/node-deep-extend
β ββ publisher: Viacheslav Lotsmanov
β ββ email: lotsmanov89@gmail.com
β ββ path: ./node_modules/rc/node_modules/deep-extend
β ββ licenseFile: ./node_modules/rc/node_modules/deep-extend/LICENSE
ββ deep-extend@0.5.0
β ββ licenses: MIT
β ββ repository: https://github.com/unclechu/node-deep-extend
β ββ publisher: Viacheslav Lotsmanov
β ββ email: lotsmanov89@gmail.com
β ββ path: ./node_modules/deep-extend
β ββ licenseFile: ./node_modules/deep-extend/LICENSE
ββ deep-is@0.1.3
β ββ licenses: MIT
β ββ repository: https://github.com/thlorenz/deep-is
β ββ publisher: Thorsten Lorenz
β ββ email: thlorenz@gmx.de
β ββ url: http://thlorenz.com
β ββ path: ./node_modules/deep-is
β ββ licenseFile: ./node_modules/deep-is/LICENSE
ββ defined@1.0.0
β ββ licenses: MIT
β ββ repository: https://github.com/substack/defined
β ββ publisher: James Halliday
β ββ email: mail@substack.net
β ββ url: http://substack.net
β ββ path: ./node_modules/defined
β ββ licenseFile: ./node_modules/defined/LICENSE
ββ del@2.2.2
β ββ licenses: MIT
β ββ repository: https://github.com/sindresorhus/del
β ββ publisher: Sindre Sorhus
β ββ email: sindresorhus@gmail.com
β ββ url: sindresorhus.com
β ββ path: ./node_modules/del
β ββ licenseFile: ./node_modules/del/license
ββ delayed-stream@1.0.0
β ββ licenses: MIT
β ββ repository: https://github.com/felixge/node-delayed-stream
β ββ publisher: Felix GeisendΓΆrfer
β ββ email: felix@debuggable.com
β ββ url: http://debuggable.com/
β ββ path: ./node_modules/delayed-stream
β ββ licenseFile: ./node_modules/delayed-stream/License
ββ delegates@1.0.0
β ββ licenses: MIT
β ββ repository: https://github.com/visionmedia/node-delegates
β ββ path: ./node_modules/delegates
β ββ licenseFile: ./node_modules/delegates/License
ββ depd@1.1.1
β ββ licenses: MIT
β ββ repository: https://github.com/dougwilson/nodejs-depd
β ββ publisher: Douglas Christopher Wilson
β ββ email: doug@somethingdoug.com
β ββ path: ./node_modules/depd
β ββ licenseFile: ./node_modules/depd/LICENSE
ββ des.js@1.0.0
β ββ licenses: MIT
β ββ repository: https://github.com/indutny/des.js
β ββ publisher: Fedor Indutny
β ββ email: fedor@indutny.com
β ββ path: ./node_modules/des.js
β ββ licenseFile: ./node_modules/des.js/README.md
ββ destroy@1.0.4
β ββ licenses: MIT
β ββ repository: https://github.com/stream-utils/destroy
β ββ publisher: Jonathan Ong
β ββ email: me@jongleberry.com
β ββ url: http://jongleberry.com
β ββ path: ./node_modules/destroy
β ββ licenseFile: ./node_modules/destroy/LICENSE
ββ detect-indent@4.0.0
β ββ licenses: MIT
β ββ repository: https://github.com/sindresorhus/detect-indent
β ββ publisher: Sindre Sorhus
β ββ email: sindresorhus@gmail.com
β ββ url: sindresorhus.com
β ββ path: ./node_modules/detect-indent
β ββ licenseFile: ./node_modules/detect-indent/license
ββ detect-libc@1.0.2
β ββ licenses: Apache-2.0
β ββ repository: https://github.com/lovell/detect-libc
β ββ publisher: Lovell Fuller
β ββ email: npm@lovell.info
β ββ path: ./node_modules/fsevents/node_modules/detect-libc
β ββ licenseFile: ./node_modules/fsevents/node_modules/detect-libc/LICENSE
ββ detect-libc@1.0.3
β ββ licenses: Apache-2.0
β ββ repository: https://github.com/lovell/detect-libc
β ββ publisher: Lovell Fuller
β ββ email: npm@lovell.info
β ββ path: ./node_modules/detect-libc
β ββ licenseFile: ./node_modules/detect-libc/LICENSE
ββ dev-ip@1.0.1
β ββ licenses: MIT
β ββ repository: https://github.com/shakyshane/dev-ip
β ββ publisher: Shane Osbourne
β ββ email: shane.osbourne8@gmail.com
β ββ path: ./node_modules/dev-ip
β ββ licenseFile: ./node_modules/dev-ip/README.md
ββ devtools-timeline-model@1.1.6
β ββ licenses: Apache-2.0
β ββ repository: https://github.com/paulirish/devtools-timeline-model
β ββ publisher: Paul Irish
β ββ url: github.com/paulirish
β ββ path: ./node_modules/devtools-timeline-model
β ββ licenseFile: ./node_modules/devtools-timeline-model/license
ββ dezalgo@1.0.3
β ββ licenses: ISC
β ββ repository: https://github.com/npm/dezalgo
β ββ publisher: Isaac Z. Schlueter
β ββ email: i@izs.me
β ββ url: http://blog.izs.me/
β ββ path: ./node_modules/dezalgo
β ββ licenseFile: ./node_modules/dezalgo/LICENSE
ββ diffie-hellman@5.0.2
β ββ licenses: MIT
β ββ repository: https://github.com/crypto-browserify/diffie-hellman
β ββ publisher: Calvin Metcalf
β ββ path: ./node_modules/diffie-hellman
β ββ licenseFile: ./node_modules/diffie-hellman/readme.md
ββ doctrine@2.0.2
β ββ licenses: Apache-2.0
β ββ repository: https://github.com/eslint/doctrine
β ββ path: ./node_modules/doctrine
β ββ licenseFile: ./node_modules/doctrine/LICENSE
ββ domain-browser@1.1.7
β ββ licenses: MIT
β ββ repository: https://github.com/bevry/domain-browser
β ββ publisher: 2013+ Bevry Pty Ltd
β ββ email: us@bevry.me
β ββ url: http://bevry.me
β ββ path: ./node_modules/domain-browser
β ββ licenseFile: ./node_modules/domain-browser/LICENSE.md
ββ dot-prop@4.2.0
β ββ licenses: MIT
β ββ repository: https://github.com/sindresorhus/dot-prop
β ββ publisher: Sindre Sorhus
β ββ email: sindresorhus@gmail.com
β ββ url: sindresorhus.com
β ββ path: ./node_modules/dot-prop
β ββ licenseFile: ./node_modules/dot-prop/license
ββ duplexer3@0.1.4
β ββ licenses: BSD-3-Clause
β ββ repository: https://github.com/floatdrop/duplexer3
β ββ publisher: Conrad Pankoff
β ββ email: deoxxa@fknsrs.biz
β ββ url: http://www.fknsrs.biz/
β ββ path: ./node_modules/duplexer3
β ββ licenseFile: ./node_modules/duplexer3/LICENSE.md
ββ easy-extender@2.3.2
β ββ licenses: Apache-2.0
β ββ repository: https://github.com/shakyshane/easy-extender
β ββ publisher: Shane Osbourne
β ββ path: ./node_modules/easy-extender
β ββ licenseFile: ./node_modules/easy-extender/LICENSE
ββ eazy-logger@3.0.2
β ββ licenses: Apache 2.0
β ββ repository: https://github.com/shakyshane/easy-logger
β ββ publisher: Shane Osbourne
β ββ path: ./node_modules/eazy-logger
β ββ licenseFile: ./node_modules/eazy-logger/LICENSE
ββ ecc-jsbn@0.1.1
β ββ licenses: MIT
β ββ repository: https://github.com/quartzjer/ecc-jsbn
β ββ publisher: Jeremie Miller
β ββ email: jeremie@jabber.org
β ββ url: http://jeremie.com/
β ββ path: ./node_modules/ecc-jsbn
β ββ licenseFile: ./node_modules/ecc-jsbn/LICENSE
ββ ee-first@1.1.1
β ββ licenses: MIT
β ββ repository: https://github.com/jonathanong/ee-first
β ββ publisher: Jonathan Ong
β ββ email: me@jongleberry.com
β ββ url: http://jongleberry.com
β ββ path: ./node_modules/ee-first
β ββ licenseFile: ./node_modules/ee-first/LICENSE
ββ electron-to-chromium@1.3.28
β ββ licenses: ISC
β ββ repository: https://github.com/kilian/electron-to-chromium
β ββ publisher: Kilian Valkhof
β ββ path: ./node_modules/electron-to-chromium
β ββ licenseFile: ./node_modules/electron-to-chromium/README.md
ββ elegant-spinner@1.0.1
β ββ licenses: MIT
β ββ repository: https://github.com/sindresorhus/elegant-spinner
β ββ publisher: Sindre Sorhus
β ββ email: sindresorhus@gmail.com
β ββ url: sindresorhus.com
β ββ path: ./node_modules/elegant-spinner
β ββ licenseFile: ./node_modules/elegant-spinner/license
ββ elliptic@6.4.0
β ββ licenses: MIT
β ββ repository: https://github.com/indutny/elliptic
β ββ publisher: Fedor Indutny
β ββ email: fedor@indutny.com
β ββ path: ./node_modules/elliptic
β ββ licenseFile: ./node_modules/elliptic/README.md
ββ emitter-steward@1.0.0
β ββ licenses: MIT
β ββ repository: https://github.com/shakyShane/emitter-steward
β ββ publisher: Shane Osbourne
β ββ path: ./node_modules/emitter-steward
β ββ licenseFile: ./node_modules/emitter-steward/README.md
ββ emojis-list@2.1.0
β ββ licenses: MIT
β ββ repository: https://github.com/kikobeats/emojis-list
β ββ publisher: Kiko Beats
β ββ email: josefrancisco.verdu@gmail.com
β ββ url: https://github.com/Kikobeats
β ββ path: ./node_modules/emojis-list
β ββ licenseFile: ./node_modules/emojis-list/LICENSE.md
ββ encodeurl@1.0.1
β ββ licenses: MIT
β ββ repository: https://github.com/pillarjs/encodeurl
β ββ path: ./node_modules/encodeurl
β ββ licenseFile: ./node_modules/encodeurl/LICENSE
ββ engine.io-client@1.8.0
β ββ licenses: MIT
β ββ repository: https://github.com/socketio/engine.io-client
β ββ path: ./node_modules/engine.io-client
β ββ licenseFile: ./node_modules/engine.io-client/LICENSE
ββ engine.io-parser@1.3.1
β ββ licenses: MIT
β ββ repository: https://github.com/socketio/engine.io-parser
β ββ path: ./node_modules/engine.io-parser
β ββ licenseFile: ./node_modules/engine.io-parser/LICENSE
ββ engine.io@1.8.0
β ββ licenses: MIT
β ββ repository: https://github.com/socketio/engine.io
β ββ publisher: Guillermo Rauch
β ββ email: guillermo@learnboost.com
β ββ path: ./node_modules/engine.io
β ββ licenseFile: ./node_modules/engine.io/LICENSE
ββ enhanced-resolve@3.4.1
β ββ licenses: MIT
β ββ repository: https://github.com/webpack/enhanced-resolve
β ββ publisher: Tobias Koppers @sokra
β ββ path: ./node_modules/enhanced-resolve
β ββ licenseFile: ./node_modules/enhanced-resolve/README.md
ββ errno@0.1.6
β ββ licenses: MIT
β ββ repository: https://github.com/rvagg/node-errno
β ββ path: ./node_modules/errno
β ββ licenseFile: ./node_modules/errno/README.md
ββ error-ex@1.3.1
β ββ licenses: MIT
β ββ repository: https://github.com/qix-/node-error-ex
β ββ path: ./node_modules/error-ex
β ββ licenseFile: ./node_modules/error-ex/LICENSE
ββ es3ify@0.1.4
β ββ licenses: MIT
β ββ repository: https://github.com/spicyj/es3ify
β ββ publisher: Ben Alpert
β ββ email: ben@benalpert.com
β ββ url: http://benalpert.com
β ββ path: ./node_modules/es3ify
β ββ licenseFile: ./node_modules/es3ify/LICENSE
ββ es5-ext@0.10.37
β ββ licenses: MIT
β ββ repository: https://github.com/medikoo/es5-ext
β ββ publisher: Mariusz Nowak
β ββ email: medyk@medikoo.com
β ββ url: http://www.medikoo.com/
β ββ path: ./node_modules/es5-ext
β ββ licenseFile: ./node_modules/es5-ext/LICENSE
ββ es6-iterator@2.0.3
β ββ licenses: MIT
β ββ repository: https://github.com/medikoo/es6-iterator
β ββ publisher: Mariusz Nowak
β ββ email: medyk@medikoo.com
β ββ url: http://www.medikoo.com/
β ββ path: ./node_modules/es6-iterator
β ββ licenseFile: ./node_modules/es6-iterator/LICENSE
ββ es6-map@0.1.5
β ββ licenses: MIT
β ββ repository: https://github.com/medikoo/es6-map
β ββ publisher: Mariusz Nowak
β ββ email: medyk@medikoo.com
β ββ url: http://www.medikoo.com/
β ββ path: ./node_modules/es6-map
β ββ licenseFile: ./node_modules/es6-map/LICENSE
ββ es6-set@0.1.5
β ββ licenses: MIT
β ββ repository: https://github.com/medikoo/es6-set
β ββ publisher: Mariusz Nowak
β ββ email: medyk@medikoo.com
β ββ url: http://www.medikoo.com/
β ββ path: ./node_modules/es6-set
β ββ licenseFile: ./node_modules/es6-set/LICENSE
ββ es6-symbol@3.1.1
β ββ licenses: MIT
β ββ repository: https://github.com/medikoo/es6-symbol
β ββ publisher: Mariusz Nowak
β ββ email: medyk@medikoo.com
β ββ url: http://www.medikoo.com/
β ββ path: ./node_modules/es6-symbol
β ββ licenseFile: ./node_modules/es6-symbol/LICENSE
ββ es6-templates@0.2.3
β ββ licenses: Apache*
β ββ repository: https://github.com/esnext/es6-templates
β ββ publisher: Square, Inc.
β ββ path: ./node_modules/es6-templates
β ββ licenseFile: ./node_modules/es6-templates/LICENSE
ββ es6-weak-map@2.0.2
β ββ licenses: MIT
β ββ repository: https://github.com/medikoo/es6-weak-map
β ββ publisher: Mariusz Nowak
β ββ email: medyk@medikoo.com
β ββ url: http://www.medikoo.com/
β ββ path: ./node_modules/es6-weak-map
β ββ licenseFile: ./node_modules/es6-weak-map/LICENSE
ββ escape-html@1.0.3
β ββ licenses: MIT
β ββ repository: https://github.com/component/escape-html
β ββ path: ./node_modules/escape-html
β ββ licenseFile: ./node_modules/escape-html/LICENSE
ββ escape-string-regexp@1.0.5
β ββ licenses: MIT
β ββ repository: https://github.com/sindresorhus/escape-string-regexp
β ββ publisher: Sindre Sorhus
β ββ email: sindresorhus@gmail.com
β ββ url: sindresorhus.com
β ββ path: ./node_modules/escape-string-regexp
β ββ licenseFile: ./node_modules/escape-string-regexp/license
ββ escope@3.6.0
β ββ licenses: BSD-2-Clause
β ββ repository: https://github.com/estools/escope
β ββ path: ./node_modules/escope
β ββ licenseFile: ./node_modules/escope/LICENSE.BSD
ββ eslint-config-prettier@2.9.0
β ββ licenses: MIT
β ββ repository: https://github.com/prettier/eslint-config-prettier
β ββ publisher: Simon Lydell
β ββ path: ./node_modules/eslint-config-prettier
β ββ licenseFile: ./node_modules/eslint-config-prettier/LICENSE
ββ eslint-plugin-prettier@2.4.0
β ββ licenses: MIT
β ββ repository: https://github.com/prettier/eslint-plugin-prettier
β ββ publisher: Teddy Katz
β ββ path: ./node_modules/eslint-plugin-prettier
β ββ licenseFile: ./node_modules/eslint-plugin-prettier/LICENSE.md
ββ eslint-scope@3.7.1
β ββ licenses: BSD-2-Clause
β ββ repository: https://github.com/eslint/eslint-scope
β ββ path: ./node_modules/eslint-scope
β ββ licenseFile: ./node_modules/eslint-scope/LICENSE
ββ eslint@4.13.1
β ββ licenses: MIT
β ββ repository: https://github.com/eslint/eslint
β ββ publisher: Nicholas C. Zakas
β ββ email: nicholas+npm@nczconsulting.com
β ββ path: ./node_modules/eslint
β ββ licenseFile: ./node_modules/eslint/LICENSE
ββ esmangle-evaluator@1.0.1
β ββ licenses: MIT
β ββ repository: https://github.com/zertosh/esmangle-evaluator
β ββ publisher: Andres Suarez
β ββ email: zertosh@gmail.com
β ββ path: ./node_modules/esmangle-evaluator
β ββ licenseFile: ./node_modules/esmangle-evaluator/README.md
ββ espree@3.5.2
β ββ licenses: BSD-2-Clause
β ββ repository: https://github.com/eslint/espree
β ββ publisher: Nicholas C. Zakas
β ββ email: nicholas+npm@nczconsulting.com
β ββ path: ./node_modules/espree
β ββ licenseFile: ./node_modules/espree/LICENSE
ββ esprima-fb@15001.1001.0-dev-harmony-fb
β ββ licenses: BSD
β ββ repository: https://github.com/facebook/esprima
β ββ publisher: Ariya Hidayat
β ββ email: ariya.hidayat@gmail.com
β ββ path: ./node_modules/unreachable-branch-transform/node_modules/esprima-fb
β ββ licenseFile: ./node_modules/unreachable-branch-transform/node_modules/esprima-fb/README.md
ββ esprima-fb@3001.1.0-dev-harmony-fb
β ββ licenses: BSD
β ββ repository: https://github.com/facebook/esprima
β ββ path: ./node_modules/esprima-fb
β ββ licenseFile: ./node_modules/esprima-fb/LICENSE.BSD
ββ esprima@2.7.3
β ββ licenses: BSD-2-Clause
β ββ repository: https://github.com/jquery/esprima
β ββ publishe