├── .eslintignore ├── dist ├── bp_init.js └── index.html ├── src ├── debug.js ├── bplayer.html ├── bplayer.css └── bplayer.js ├── .npmignore ├── config ├── rollup.prod.js ├── rollup.dev.js ├── rollup.base.js └── bs-config.js ├── .editorconfig ├── .gitignore ├── .yarnclean ├── LICENSE ├── package.json ├── .travis.yml ├── test └── index.html ├── .eslintrc ├── README.md └── yarn.lock /.eslintignore: -------------------------------------------------------------------------------- 1 | build/*.js 2 | config/*.js 3 | -------------------------------------------------------------------------------- /dist/bp_init.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | document.addEventListener('DOMContentLoaded', function() { 4 | bPlayer.scan(); 5 | }, false); -------------------------------------------------------------------------------- /src/debug.js: -------------------------------------------------------------------------------- 1 | 'use strict' 2 | 3 | const appName = '[BP]' 4 | const info = console.info.bind(console, appName) 5 | const warn = console.warn.bind(console, appName) 6 | 7 | export { info, warn } 8 | -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- 1 | # Generated files 2 | bin/ 3 | gen/ 4 | 5 | # Log Files 6 | *.log 7 | *.log.* 8 | 9 | # Temp Files 10 | *~ 11 | *.*~ 12 | .fuse_* 13 | yarn.lock 14 | cache/ 15 | 16 | # Project files 17 | plugins/ 18 | test/ 19 | 20 | # node modules 21 | node_modules/ 22 | -------------------------------------------------------------------------------- /config/rollup.prod.js: -------------------------------------------------------------------------------- 1 | // Import base config 2 | import base from './rollup.base' 3 | 4 | base.output.file = base.proDest 5 | base.output.sourcemap = process.env.BUILD_ENV === 'DEMO' || process.env.BUILD_ENV === 'CI' ? base.output.sourcemap : false 6 | 7 | export default base 8 | -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- 1 | root = true 2 | 3 | [*] 4 | charset = utf-8 5 | indent_style = tab 6 | indent_size = 2 7 | end_of_line = lf 8 | insert_final_newline = true 9 | trim_trailing_whitespace = true 10 | 11 | [package.json] 12 | indent_style = space 13 | 14 | [.travis.yml] 15 | indent_style = space 16 | -------------------------------------------------------------------------------- /config/rollup.dev.js: -------------------------------------------------------------------------------- 1 | // Import base config 2 | import base from './rollup.base' 3 | // Import browsersync config 4 | import bsConfig from './bs-config' 5 | // Import dev plugins 6 | import browsersync from 'rollup-plugin-browsersync' 7 | 8 | base.output.file = base.devDest 9 | base.plugins.push(browsersync(bsConfig)) 10 | base.watch = { 11 | chokidar: true, 12 | include: 'src/' 13 | } 14 | 15 | export default base 16 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | # Generated files 2 | bin/ 3 | gen/ 4 | 5 | # Log Files 6 | *.log 7 | *.log.* 8 | 9 | # Temp Files 10 | *~ 11 | *.*~ 12 | .fuse_* 13 | cache/ 14 | 15 | # Project files 16 | 17 | # node modules 18 | node_modules/ 19 | 20 | # Audio files 21 | *.mp3 22 | 23 | # Old files 24 | src/bplayer.old.js 25 | 26 | # Binaries 27 | test/bplayer.dev.js 28 | test/bplayer.dev.js.map 29 | dist/bplayer.min.js 30 | dist/bplayer.min.js.map 31 | -------------------------------------------------------------------------------- /.yarnclean: -------------------------------------------------------------------------------- 1 | # test directories 2 | __tests__ 3 | test 4 | tests 5 | powered-test 6 | 7 | # asset directories 8 | docs 9 | doc 10 | website 11 | images 12 | assets 13 | 14 | # examples 15 | example 16 | examples 17 | 18 | # code coverage directories 19 | coverage 20 | .nyc_output 21 | 22 | # build scripts 23 | Makefile 24 | Gulpfile.js 25 | Gruntfile.js 26 | 27 | # configs 28 | .tern-project 29 | .gitattributes 30 | .editorconfig 31 | .*ignore 32 | .eslintrc 33 | .jshintrc 34 | .flowconfig 35 | .documentup.json 36 | .yarn-metadata.json 37 | .*.yml 38 | *.yml 39 | 40 | # misc 41 | *.gz 42 | *.md 43 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | The MIT License (MIT) 2 | 3 | Copyright (c) 2016 ClassicOldSong 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in 13 | all copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN 21 | THE SOFTWARE. 22 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "bplayer", 3 | "version": "1.0.7", 4 | "description": "A great replacement for audio elements", 5 | "main": "dist/bplayer.min.js", 6 | "module": "src/bplayer.js", 7 | "scripts": { 8 | "dev": "rollup -c ./config/rollup.dev.js -w", 9 | "build": "NODE_ENV=production rollup -c ./config/rollup.prod.js", 10 | "lint": "eslint --ext .js src" 11 | }, 12 | "repository": { 13 | "type": "git", 14 | "url": "git+https://github.com/ClassicOldSong/bPlayer.git" 15 | }, 16 | "keywords": [ 17 | "bPlayer", 18 | "JavaScript", 19 | "audio", 20 | "player", 21 | "replacement" 22 | ], 23 | "author": "ClasicOldSong", 24 | "license": "MIT", 25 | "bugs": { 26 | "url": "https://github.com/ClassicOldSong/bPlayer/issues" 27 | }, 28 | "homepage": "http://bplayer.js.org", 29 | "devDependencies": { 30 | "chalk": "^2.1.0", 31 | "chokidar": "^1.7.0", 32 | "eslint": "^4.5.0", 33 | "rollup": "^0.48.2", 34 | "rollup-plugin-browsersync": "^0.2.4", 35 | "rollup-plugin-buble": "^0.15.0", 36 | "rollup-plugin-commonjs": "^8.2.0", 37 | "rollup-plugin-eslint": "^4.0.0", 38 | "rollup-plugin-html": "^0.2.1", 39 | "rollup-plugin-json": "^2.3.0", 40 | "rollup-plugin-node-resolve": "^3.0.0", 41 | "rollup-plugin-postcss": "^0.5.4", 42 | "rollup-plugin-progress": "^0.4.0", 43 | "rollup-plugin-replace": "^1.1.1", 44 | "rollup-plugin-uglify": "^2.0.1" 45 | } 46 | } 47 | -------------------------------------------------------------------------------- /src/bplayer.html: -------------------------------------------------------------------------------- 1 |
2 |
3 | Unknown Title 4 | Unknown Artist 5 |
6 |
7 | 00:00 8 | 00:00 9 |
10 |
11 |
12 | 13 |
14 |
15 |
16 | 17 |
18 |
19 |
20 |
21 |
22 |
23 |
24 |
25 |
26 |
27 |
28 |
29 | 30 |
31 |
32 | 33 |
34 |
35 |
36 |
37 |
38 |
39 |
40 |
41 |
42 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- 1 | script: npm run build 2 | language: node_js 3 | node_js: 4 | - '8' 5 | env: 6 | - BUILD_ENV=CI 7 | cache: 8 | directories: 9 | - node_modules 10 | notifications: 11 | webhooks: https://fathomless-fjord-24024.herokuapp.com/notify 12 | deploy: 13 | - provider: releases 14 | api_key: 15 | secure: cnvG4KkrfRlwhN/eGb/ULkdde2jwy/4B0owe+8Cf3KMA9ip1UDoB7pb6DMSApGkN5IguFnIrAG+mnGHauaEDrrog266Tt7iC5QWLti9XOYpvGZ2rAUn4YARFEsDH9oepSNbs5jKgoCYcT/mXQVnDRDY/rID0+TE/Ku3hMlKLomM2q1Kmmxc+/anzXLHRGH5x2OJ56Hv0oZ324/t3oQkzq3k8eHCdyg+FshPjTeWBz6nU18XP6LjLHcsOoQ3tI1y0KCKkKZBEok5LTOhk4zbO3PxfsHdycwiHcsDVbSKbSRv5xZtm8258H1+oZB8LVOqOzce9MaNaOjAUjCNOsEfxHQhDiJVD6QguD9T7s9a2ssDJwGa0GXg+iMpVGCxdmBattRodDBzJ+9tLeuvwS6iweroNnDjBDCj14hjZd9dv/8rI+6axVjYEf9jZGIj1TdW460GdMx7Qbz+eYHNdgD7rRKrQlE/zZ29sxZhQpN/V0/1/CnvlRfvtWrZSfzD/S/XJrjQMm9Nn7dORJpenuIhleBRFUks739c2JxQc6KV3smMH6gRmmW00uysiRhZlijFl8dnHLQo8xkQUv++jGMpPq/6otBA3IIKBJh2a5H/o09ItI6nFBK/+bG7vX6RULmzPCMOgE37AbmGwGFb+0K+GT9qKwPt7X5TjSzGwn2p30h0= 16 | file: 17 | - dist/bplayer.min.js 18 | - dist/bplayer.min.js.map 19 | skip_cleanup: true 20 | on: 21 | tags: true 22 | - provider: npm 23 | email: syqlds@126.com 24 | api_key: 25 | secure: QgbfIiR03WAoKd95HLzVXRPV4ttGWTd/uiBh8M0OzA8lsefNGzkhTcbyQELdlFeo4KUD4r2JWalmmT0VYipBmzFVwI88ty3QKvdRuPPw0lQZX4T2L0xVZ/EPWwd4B68hiEaglbEy5GBa/fw8HmEiOnmBzpO2YccefZHTxgmrXUR6tMr6g9nNcF03XyZbqwQlvlx2lirYnGs0/W/4ccXG4UoMd1B9rnTLwAbfXy1Lzw7QG2SH6Qo7JArhuZTCggIUtSakMTPT+YqbZs4QRBIAwc//X3QMUw3vTkmmzRwmoxx0zTlz0LbkauLMfqLsFk8vAz+mmcXluRwB4ghdbLB14fLgAWFTfc0KAQooZRrvw614u1EAxCsT1EMw1riMxFmdzHop9Ftg9iIhNdEFhD25MTjXfcFgVifqXTot3ZEu9qXcTPUhSP8aEXMyG2zam1EXam7ue6PGM/XtX+xUQ2IM/Vc28s22ZsZQQ99UU7vUb513ZBfKEDTZyJDHQImBrfMEisQ4Mnn6I6QAJAPiklOMO2pIF47mu1FCiFfuWl3WWb4SvlWXk4sMUjXU2+rPPs94948zLYrWO0BSbV5529YQRjKR501lXVcQbOrH3SRMJfE2aWoM6DxnJxgX7RqRyu6ObLn5QRzpI7biKJ3fFNudidAkoH3GtSc0hAjjitYkB50= 26 | skip_cleanup: true 27 | on: 28 | branch: master 29 | -------------------------------------------------------------------------------- /config/rollup.base.js: -------------------------------------------------------------------------------- 1 | import chalk from 'chalk' 2 | 3 | // Rollup plugins 4 | import buble from 'rollup-plugin-buble' 5 | import eslint from 'rollup-plugin-eslint' 6 | import resolve from 'rollup-plugin-node-resolve' 7 | import commonjs from 'rollup-plugin-commonjs' 8 | import replace from 'rollup-plugin-replace' 9 | import uglify from 'rollup-plugin-uglify' 10 | import progress from 'rollup-plugin-progress' 11 | import postcss from 'rollup-plugin-postcss' 12 | import html from 'rollup-plugin-html' 13 | import json from 'rollup-plugin-json' 14 | 15 | // Log build environment 16 | console.log('Target:', chalk.bold.green(process.env.NODE_ENV || 'development')) 17 | switch (process.env.BUILD_ENV) { 18 | case 'DEV': { 19 | console.log(chalk.cyan` 20 | +---------------+ 21 | | DEVELOP BUILD | 22 | +---------------+ 23 | `) 24 | break 25 | } 26 | case 'CI': { 27 | console.log(chalk.green` 28 | +----------+ 29 | | CI BUILD | 30 | +----------+ 31 | `) 32 | break 33 | } 34 | default: { 35 | console.log(chalk.yellow` 36 | +--------------+ 37 | | NORMAL BUILD | 38 | +--------------+ 39 | `) 40 | } 41 | } 42 | 43 | export default { 44 | input: 'src/bplayer.js', 45 | output: { 46 | name: 'bPlayer', 47 | format: 'umd', 48 | sourcemap: true, 49 | }, 50 | devDest: 'test/bplayer.dev.js', 51 | proDest: 'dist/bplayer.min.js', 52 | plugins: [ 53 | progress({ 54 | clearLine: false 55 | }), 56 | resolve({ 57 | jsnext: true, 58 | main: true, 59 | browser: true, 60 | }), 61 | commonjs(), 62 | json(), 63 | html({ 64 | include: 'src/*.html' 65 | }), 66 | postcss(), 67 | eslint({ 68 | exclude: ['**/*.html', '**/*.css', '**/*.json'] 69 | }), 70 | buble({ 71 | transforms: { 72 | modules: false, 73 | dangerousForOf: true 74 | }, 75 | objedtAssign: 'Object.assign' 76 | }), 77 | replace({ 78 | ENV: `'${process.env.NODE_ENV || 'development'}'` 79 | }), 80 | (process.env.NODE_ENV === 'production' && uglify()) 81 | ] 82 | } 83 | -------------------------------------------------------------------------------- /config/bs-config.js: -------------------------------------------------------------------------------- 1 | 2 | /* 3 | |-------------------------------------------------------------------------- 4 | | Browser-sync config file 5 | |-------------------------------------------------------------------------- 6 | | 7 | | For up-to-date information about the options: 8 | | http://www.browsersync.io/docs/options/ 9 | | 10 | | There are more options than you see here, these are just the ones that are 11 | | set internally. See the website for more info. 12 | | 13 | | 14 | */ 15 | export default { 16 | "ui": false, 17 | "files": "test/index.html", 18 | "watchOptions": {}, 19 | "server": { 20 | baseDir: "./test" 21 | }, 22 | "proxy": false, 23 | "port": 3000, 24 | "middleware": false, 25 | "serveStatic": [], 26 | "ghostMode": { 27 | "clicks": true, 28 | "scroll": true, 29 | "forms": { 30 | "submit": true, 31 | "inputs": true, 32 | "toggles": true 33 | } 34 | }, 35 | "logLevel": "info", 36 | "logPrefix": "BS", 37 | "logConnections": false, 38 | "logFileChanges": true, 39 | "logSnippet": true, 40 | "rewriteRules": false, 41 | "open": "local", 42 | "browser": "default", 43 | "cors": false, 44 | "xip": false, 45 | "hostnameSuffix": false, 46 | "reloadOnRestart": false, 47 | "notify": false, 48 | "scrollProportionally": true, 49 | "scrollThrottle": 0, 50 | "scrollRestoreTechnique": "window.name", 51 | "scrollElements": [], 52 | "scrollElementMapping": [], 53 | "reloadDelay": 0, 54 | "reloadDebounce": 0, 55 | "reloadThrottle": 0, 56 | "plugins": [], 57 | "injectChanges": true, 58 | "startPath": null, 59 | "minify": true, 60 | "host": null, 61 | "localOnly": false, 62 | "codeSync": true, 63 | "timestamps": true, 64 | "clientEvents": [ 65 | "scroll", 66 | "scroll:element", 67 | "input:text", 68 | "input:toggles", 69 | "form:submit", 70 | "form:reset", 71 | "click" 72 | ], 73 | "socket": { 74 | "socketIoOptions": { 75 | "log": false 76 | }, 77 | "socketIoClientConfig": { 78 | "reconnectionAttempts": 50 79 | }, 80 | "path": "/browser-sync/socket.io", 81 | "clientPath": "/browser-sync", 82 | "namespace": "/browser-sync", 83 | "clients": { 84 | "heartbeatTimeout": 5000 85 | } 86 | }, 87 | "tagNames": { 88 | "less": "link", 89 | "scss": "link", 90 | "css": "link", 91 | "jpg": "img", 92 | "jpeg": "img", 93 | "png": "img", 94 | "svg": "img", 95 | "gif": "img", 96 | "js": "script" 97 | } 98 | }; 99 | -------------------------------------------------------------------------------- /dist/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | bPlayer - A Great Replacement for Audio Players 10 | 11 | 35 | 78 | 79 | 80 |
81 |

bPlayer - A Great Replacement for Audio Players

82 |
83 |

#bplayer1/bp1 with autoplay enabled

84 |
85 |
86 |
87 |

#bplayer2/bp2 with loop enabled

88 |
89 |
90 |
91 |

#bplayer3/bp3 created from JSON with slim mode enabled

92 |
93 |
94 |
95 |

#bplayer4 converted from Audio element with loop enabled in narrow mode

96 |
97 | 98 |
99 |
100 |
101 |

#bplayer5 converted from Audio element with slim mode enabled in narrow mode

102 |
103 | 104 |
105 |
106 |
107 |

You can control bp1, bp2, bp3 in console, such as bp1.color("#FF2870")
108 | As to those elements that converted from Audio tags, ypu can control them via it's original CSS selector, such as
document.querySelector('#bplayer4').title = "whatever you want"

109 |

*Allrights of music used in DEMO are reserved by their author*
Whisper: Loopliness is created by myself 😂

110 |
111 | 114 |
115 | 116 | 117 | -------------------------------------------------------------------------------- /test/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | bPlayer - A Great Replacement for Audio Players 10 | 11 | 35 | 78 | 79 | 80 |
81 |

bPlayer - A Great Replacement for Audio Players

82 |
83 |

#bplayer1/bp1 with autoplay enabled

84 |
85 |
86 |
87 |

#bplayer2/bp2 with loop enabled

88 |
89 |
90 |
91 |

#bplayer3/bp3 created from JSON with slim mode enabled

92 |
93 |
94 |
95 |

#bplayer4 converted from Audio element with loop enabled in narrow mode

96 |
97 | 98 |
99 |
100 |
101 |

#bplayer5 converted from Audio element with slim mode enabled in narrow mode

102 |
103 | 104 |
105 |
106 |
107 |

You can control bp1, bp2, bp3 in console, such as bp1.color("#FF2870")
108 | As to those elements that converted from Audio tags, ypu can control them via it's original CSS selector, such as
document.querySelector('#bplayer4').title = "whatever you want"

109 |

*Allrights of music used in DEMO are reserved by their author*
Whisper: Loopliness is created by myself 😂

110 |
111 | 114 |
115 | 116 | 117 | -------------------------------------------------------------------------------- /src/bplayer.css: -------------------------------------------------------------------------------- 1 | @font-face { 2 | font-family: 'iconfont_bplayer'; /* project id 67267 */ 3 | src: url('//at.alicdn.com/t/font_ksctw5cl4pjy8pvi.eot'); 4 | src: url('//at.alicdn.com/t/font_ksctw5cl4pjy8pvi.eot?#iefix') format('embedded-opentype'), 5 | url('//at.alicdn.com/t/font_ksctw5cl4pjy8pvi.woff') format('woff'), 6 | url('//at.alicdn.com/t/font_ksctw5cl4pjy8pvi.ttf') format('truetype'), 7 | url('//at.alicdn.com/t/font_ksctw5cl4pjy8pvi.svg#iconfont') format('svg'); 8 | } 9 | 10 | bplayer { 11 | display: block; 12 | -webkit-touch-callout: none; 13 | -webkit-user-select: none; 14 | -khtml-user-select: none; 15 | -moz-user-select: none; 16 | -ms-user-select: none; 17 | user-select: none; 18 | } 19 | 20 | .iconfont_bplayer { 21 | font-family:"iconfont_bplayer"; 22 | font-style:normal; 23 | -webkit-font-smoothing: antialiased; 24 | -webkit-text-stroke-width: 0.2px; 25 | } 26 | 27 | .bPlayer { 28 | box-sizing: border-box; 29 | position: relative; 30 | font-family: 31 | Helvetica, Tahoma, Arial, "Hiragino Sans GB", "Hiragino Sans GB W3", "Microsoft YaHei", STXihei, STHeiti, Heiti, SimSun, sans-serif; 32 | width: 100%; 33 | height: 60px; 34 | background-color: #FFF; 35 | cursor: default; 36 | box-shadow: 0 0 10px rgba(0, 0, 0, 0.2); 37 | color: #000; 38 | text-shadow: rgba(0, 0, 0, 0.15) 0px 0px 2px; 39 | } 40 | 41 | .cover_bplayer { 42 | background-color: #CCC; 43 | height: 60px; 44 | width: 60px; 45 | position: absolute; 46 | left: 0; 47 | top: 0; 48 | } 49 | .cover_bplayer:before { 50 | content: "\e605"; 51 | font-family:"iconfont_bplayer"; 52 | position: absolute; 53 | top: 0; 54 | left: 0; 55 | height: 100%; 56 | width: 100%; 57 | line-height: 60px; 58 | text-align: center; 59 | font-size: 40px; 60 | color: #FFF; 61 | } 62 | 63 | .coverimg_bplayer { 64 | position: absolute; 65 | background-size: cover; 66 | height: 100%; 67 | width: 100%; 68 | } 69 | 70 | .controlbtn_bplayer { 71 | position: absolute; 72 | height: 100%; 73 | width: 100%; 74 | line-height: 60px; 75 | text-align: center; 76 | font-size: 40px; 77 | color: #FFF; 78 | background-color: rgba(0,0,0,0.27); 79 | opacity: 0; 80 | display: block; 81 | transition: opacity 500ms; 82 | text-shadow: #FFF 0px 0px 2px; 83 | } 84 | .controlbtn_bplayer.playBtn_bplayer { 85 | opacity: 0.8; 86 | } 87 | .controlbtn_bplayer:hover { 88 | opacity: 1; 89 | } 90 | 91 | .info_bplayer { 92 | overflow: hidden; 93 | position: absolute; 94 | top: 0; 95 | right: 0; 96 | height: 60px; 97 | width: 100%; 98 | } 99 | 100 | .titlewrap_bplayer { 101 | padding-left: 72px; 102 | padding-right: 140px; 103 | line-height: 60px; 104 | height: 60px; 105 | font-size: 20px; 106 | white-space: nowrap; 107 | text-align: left; 108 | text-overflow: ellipsis; 109 | overflow: hidden; 110 | } 111 | 112 | .author_bplayer { 113 | font-size: 80%; 114 | opacity: 0.8; 115 | } 116 | .author_bplayer:before { 117 | content: " - "; 118 | } 119 | 120 | .buttons_bplayer { 121 | position: absolute; 122 | top: 20px; 123 | font-size: 16px; 124 | right: 0; 125 | } 126 | .btn_bplayer { 127 | height: 20px; 128 | width: 20px; 129 | line-height: 20px; 130 | text-align: center; 131 | margin-right: 8px; 132 | float: right; 133 | opacity: 1; 134 | transition: opacity 500ms; 135 | } 136 | 137 | .progress_bplayer { 138 | position: absolute; 139 | bottom: 0; 140 | height: 2px; 141 | width: 100%; 142 | transition: height 500ms; 143 | } 144 | .progress_bplayer:hover { 145 | height: 6px; 146 | } 147 | .loaded_bplayer { 148 | position: absolute; 149 | left: 0; 150 | height: 100%; 151 | width: 0; 152 | background-color: #AAA; 153 | transition: width 300ms linear; 154 | } 155 | .played_bplayer { 156 | position: absolute; 157 | left: 0; 158 | height: 100%; 159 | width: 0; 160 | background-color: #A91212; 161 | box-shadow: #A91212 0px 0px 3px; 162 | transition: width 100ms linear; 163 | overflow: hidden; 164 | } 165 | .glow_bplayer { 166 | position: absolute; 167 | right: 0; 168 | width: 20px; 169 | height: 100%; 170 | background: linear-gradient(90deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.6)); 171 | } 172 | .progressctl_bplayer { 173 | position: absolute; 174 | left: 0; 175 | height: 100%; 176 | width: 100%; 177 | } 178 | 179 | .time_bplayer { 180 | position: absolute; 181 | top: 20px; 182 | right: 65px; 183 | line-height: 20px; 184 | font-size: 12px; 185 | } 186 | .total_bplayer:before { 187 | content: " / "; 188 | } 189 | 190 | .volume_bplayer { 191 | position: relative; 192 | line-height: 20px; 193 | height: 20px; 194 | width: 20px; 195 | float: right; 196 | margin-right: 8px; 197 | overflow: hidden; 198 | box-shadow: 0 0 10px rgba(0, 0, 0, 0); 199 | background-color: #FFF; 200 | transition: box-shadow 500ms, width 500ms; 201 | } 202 | .volume_bplayer:hover { 203 | box-shadow: 0 0 10px rgba(0, 0, 0, 0.2); 204 | width: 109px; 205 | } 206 | .volumebtn_bplayer { 207 | float: right; 208 | margin: 0; 209 | } 210 | .volumebar_bplayer { 211 | position: absolute; 212 | top: 0; 213 | right: 20px; 214 | height: 20px; 215 | width: 88px; 216 | } 217 | .volumebg_bplayer { 218 | position: absolute; 219 | top: 0; 220 | left: 0; 221 | width: 80px; 222 | margin: 8px 0 8px 5px; 223 | height: 4px; 224 | background-color: #AAA; 225 | } 226 | .volumeval_bplayer { 227 | position: absolute; 228 | top: 0; 229 | left: 0; 230 | width: 80px; 231 | margin: 8px 0 8px 5px; 232 | height: 4px; 233 | background-color: #A91212; 234 | box-shadow: #A91212 0px 0px 3px; 235 | } 236 | .volumectl_bplayer { 237 | position: absolute; 238 | top: 0; 239 | left: 0; 240 | width: 80px; 241 | margin-left: 6px; 242 | padding-right: 3px; 243 | height: 20px; 244 | } 245 | 246 | 247 | .disabled_bplayer { 248 | opacity: 0.2; 249 | } 250 | 251 | .hidden_bplayer { 252 | opacity: 0; 253 | display: none; 254 | } 255 | 256 | .narrow_bplayer .buttons_bplayer { 257 | top: 35px; 258 | } 259 | .narrow_bplayer .time_bplayer { 260 | top: 35px; 261 | } 262 | 263 | .narrow_bplayer .titlewrap_bplayer { 264 | padding-right: 0; 265 | line-height: 40px; 266 | font-size: 16px; 267 | } 268 | 269 | 270 | /* Section for bPayer_slim */ 271 | .bPlayer.slim_bPlayer { 272 | height: 30px; 273 | } 274 | 275 | .slim_bPlayer .cover_bplayer { 276 | height: 30px; 277 | width: 30px; 278 | } 279 | .slim_bPlayer .cover_bplayer:before { 280 | line-height: 30px; 281 | font-size: 20px; 282 | } 283 | 284 | .slim_bPlayer .controlbtn_bplayer { 285 | line-height: 30px; 286 | font-size: 20px; 287 | } 288 | 289 | .slim_bPlayer .info_bplayer { 290 | height: 30px; 291 | } 292 | 293 | .slim_bPlayer .titlewrap_bplayer { 294 | padding-left: 38px; 295 | padding-right: 140px; 296 | line-height: 30px; 297 | height: 30px; 298 | font-size: 16px; 299 | } 300 | 301 | .slim_bPlayer .buttons_bplayer { 302 | top: 0; 303 | height: 30px; 304 | } 305 | .slim_bPlayer .btn_bplayer { 306 | height: 30px; 307 | line-height: 30px; 308 | } 309 | 310 | .slim_bPlayer .time_bplayer { 311 | top: 0; 312 | height: 30px; 313 | line-height: 30px; 314 | } 315 | 316 | .slim_bPlayer .volume_bplayer { 317 | height: 30px; 318 | transition: width 500ms; 319 | } 320 | .slim_bPlayer .volume_bplayer:hover { 321 | box-shadow: 0 0 10px rgba(0, 0, 0, 0); 322 | width: 109px; 323 | } 324 | .slim_bPlayer .volumebar_bplayer { 325 | height: 30px; 326 | } 327 | .slim_bPlayer .volumebg_bplayer { 328 | margin: 13px 0 13px 5px; 329 | } 330 | .slim_bPlayer .volumeval_bplayer { 331 | margin: 13px 0 13px 5px; 332 | } 333 | .slim_bPlayer .volumectl_bplayer { 334 | height: 30px; 335 | } 336 | 337 | -------------------------------------------------------------------------------- /.eslintrc: -------------------------------------------------------------------------------- 1 | { 2 | "env": { 3 | "browser": true, 4 | "commonjs": true, 5 | "es6": true 6 | }, 7 | "globals": { 8 | "ENV": true 9 | }, 10 | "extends": "eslint:recommended", 11 | "parserOptions": { 12 | "ecmaVersion": 6, 13 | "sourceType": "module", 14 | "ecmaFeatures": { 15 | "experimentalObjectRestSpread": true 16 | } 17 | }, 18 | "rules": { 19 | "accessor-pairs": "error", 20 | "array-bracket-spacing": [ 21 | "error", 22 | "never" 23 | ], 24 | "array-callback-return": "error", 25 | "arrow-body-style": "error", 26 | "arrow-parens": [ 27 | "error", 28 | "as-needed", 29 | { 30 | "requireForBlockBody": true 31 | } 32 | ], 33 | "arrow-spacing": [ 34 | "error", 35 | { 36 | "after": true, 37 | "before": true 38 | } 39 | ], 40 | "block-scoped-var": "error", 41 | "block-spacing": "error", 42 | "brace-style": [ 43 | "error", 44 | "1tbs" 45 | ], 46 | "callback-return": "error", 47 | "camelcase": "warn", 48 | "class-methods-use-this": "error", 49 | "comma-dangle": [ 50 | "error", 51 | "only-multiline" 52 | ], 53 | "comma-spacing": "off", 54 | "comma-style": [ 55 | "error", 56 | "last" 57 | ], 58 | "complexity": "error", 59 | "computed-property-spacing": [ 60 | "error", 61 | "never" 62 | ], 63 | "consistent-return": "off", 64 | "consistent-this": "error", 65 | "curly": "off", 66 | "default-case": "error", 67 | "dot-location": "off", 68 | "dot-notation": "error", 69 | "eol-last": "off", 70 | "eqeqeq": "error", 71 | "func-call-spacing": "error", 72 | "func-names": [ 73 | "error", 74 | "never" 75 | ], 76 | "func-style": [ 77 | "off", 78 | "expression" 79 | ], 80 | "generator-star-spacing": "error", 81 | "global-require": "error", 82 | "guard-for-in": "off", 83 | "handle-callback-err": "error", 84 | "id-blacklist": "error", 85 | "id-length": "off", 86 | "id-match": "error", 87 | "indent": "off", 88 | "init-declarations": "error", 89 | "jsx-quotes": "error", 90 | "key-spacing": "error", 91 | "keyword-spacing": [ 92 | "error", 93 | { 94 | "after": true, 95 | "before": true 96 | } 97 | ], 98 | "line-comment-position": "error", 99 | "linebreak-style": [ 100 | "off" 101 | ], 102 | "lines-around-comment": "error", 103 | "lines-around-directive": "off", 104 | "max-depth": "error", 105 | "max-len": "off", 106 | "max-lines": "off", 107 | "max-nested-callbacks": "error", 108 | "max-params": "error", 109 | "max-statements": "off", 110 | "max-statements-per-line": "error", 111 | "multiline-ternary": "error", 112 | "new-parens": "error", 113 | "newline-after-var": "off", 114 | "newline-before-return": "off", 115 | "newline-per-chained-call": "error", 116 | "no-alert": "error", 117 | "no-array-constructor": "error", 118 | "no-bitwise": "error", 119 | "no-caller": "error", 120 | "no-catch-shadow": "error", 121 | "no-confusing-arrow": "error", 122 | "no-console": "off", 123 | "no-continue": "error", 124 | "no-div-regex": "error", 125 | "no-duplicate-imports": "error", 126 | "no-else-return": "off", 127 | "no-empty-function": "error", 128 | "no-eq-null": "error", 129 | "no-eval": "error", 130 | "no-extend-native": "error", 131 | "no-extra-bind": "error", 132 | "no-extra-label": "error", 133 | "no-extra-parens": "off", 134 | "no-floating-decimal": "error", 135 | "no-global-assign": "error", 136 | "no-implicit-globals": "error", 137 | "no-implied-eval": "error", 138 | "no-inline-comments": "error", 139 | "no-invalid-this": "off", 140 | "no-iterator": "error", 141 | "no-label-var": "error", 142 | "no-labels": "error", 143 | "no-lone-blocks": "error", 144 | "no-lonely-if": "error", 145 | "no-loop-func": "error", 146 | "no-magic-numbers": "off", 147 | "no-mixed-operators": "off", 148 | "no-mixed-requires": "error", 149 | "no-multi-spaces": "error", 150 | "no-multi-str": "error", 151 | "no-multiple-empty-lines": "error", 152 | "no-negated-condition": "error", 153 | "no-nested-ternary": "error", 154 | "no-new": "error", 155 | "no-new-func": "error", 156 | "no-new-object": "error", 157 | "no-new-require": "error", 158 | "no-new-wrappers": "error", 159 | "no-octal-escape": "error", 160 | "no-param-reassign": "off", 161 | "no-path-concat": "error", 162 | "no-plusplus": [ 163 | "error", 164 | { 165 | "allowForLoopAfterthoughts": true 166 | } 167 | ], 168 | "no-process-env": "error", 169 | "no-process-exit": "error", 170 | "no-proto": "error", 171 | "no-prototype-builtins": "error", 172 | "no-restricted-globals": "error", 173 | "no-restricted-imports": "error", 174 | "no-restricted-modules": "error", 175 | "no-restricted-properties": "error", 176 | "no-restricted-syntax": "error", 177 | "no-return-assign": "error", 178 | "no-script-url": "error", 179 | "no-self-compare": "error", 180 | "no-sequences": "error", 181 | "no-shadow": "off", 182 | "no-shadow-restricted-names": "error", 183 | "no-spaced-func": "error", 184 | "no-sync": "error", 185 | "no-tabs": "off", 186 | "no-template-curly-in-string": "error", 187 | "no-ternary": "error", 188 | "no-throw-literal": "error", 189 | "no-trailing-spaces": "error", 190 | "no-undef-init": "error", 191 | "no-undefined": "error", 192 | "no-underscore-dangle": "off", 193 | "no-unmodified-loop-condition": "error", 194 | "no-unneeded-ternary": "error", 195 | "no-unsafe-negation": "error", 196 | "no-unused-expressions": "error", 197 | "no-use-before-define": "error", 198 | "no-useless-call": "error", 199 | "no-useless-computed-key": "error", 200 | "no-useless-concat": "error", 201 | "no-useless-constructor": "error", 202 | "no-useless-escape": "error", 203 | "no-useless-rename": "error", 204 | "no-var": "error", 205 | "no-void": "error", 206 | "no-warning-comments": "error", 207 | "no-whitespace-before-property": "error", 208 | "no-with": "error", 209 | "object-curly-newline": "off", 210 | "object-curly-spacing": [ 211 | "off", 212 | "never" 213 | ], 214 | "object-property-newline": "off", 215 | "object-shorthand": "off", 216 | "one-var": "off", 217 | "one-var-declaration-per-line": "error", 218 | "operator-assignment": "error", 219 | "operator-linebreak": "error", 220 | "padded-blocks": "off", 221 | "prefer-arrow-callback": "error", 222 | "prefer-const": "off", 223 | "prefer-numeric-literals": "error", 224 | "prefer-reflect": "off", 225 | "prefer-rest-params": "error", 226 | "prefer-spread": "error", 227 | "prefer-template": "error", 228 | "quote-props": "off", 229 | "quotes": "off", 230 | "radix": "error", 231 | "require-jsdoc": "off", 232 | "rest-spread-spacing": [ 233 | "error", 234 | "never" 235 | ], 236 | "semi": [ 237 | "warn", 238 | "never" 239 | ], 240 | "semi-spacing": [ 241 | "error", 242 | { 243 | "after": true, 244 | "before": false 245 | } 246 | ], 247 | "sort-imports": "off", 248 | "sort-keys": "off", 249 | "sort-vars": "off", 250 | "space-before-blocks": "error", 251 | "space-before-function-paren": "off", 252 | "space-in-parens": [ 253 | "error", 254 | "never" 255 | ], 256 | "space-infix-ops": "error", 257 | "space-unary-ops": [ 258 | "error", 259 | { 260 | "nonwords": false, 261 | "words": false 262 | } 263 | ], 264 | "spaced-comment": [ 265 | "error", 266 | "always" 267 | ], 268 | "strict": "off", 269 | "symbol-description": "error", 270 | "template-curly-spacing": [ 271 | "error", 272 | "never" 273 | ], 274 | "unicode-bom": [ 275 | "error", 276 | "never" 277 | ], 278 | "valid-jsdoc": "error", 279 | "vars-on-top": "error", 280 | "wrap-iife": "error", 281 | "wrap-regex": "error", 282 | "yield-star-spacing": "error", 283 | "yoda": [ 284 | "error", 285 | "never" 286 | ], 287 | } 288 | } 289 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | bPlayer 2 | ======== 3 | 4 | [![GitHub license](https://img.shields.io/badge/license-MIT-blue.svg?style=flat-square)](https://raw.githubusercontent.com/ClassicOldSong/bPlayer/master/LICENSE) [![npm](https://img.shields.io/npm/dt/bplayer.svg?style=flat-square)](https://www.npmjs.com/package/bplayer) 5 | 6 | [Demo](http://bplayer.js.org) 7 | 8 | bPlayer - A great replacement for audio elements 9 | 10 | No need for jQuery, with lots of original audio api maintained, together with title, artists and cover supported in addition. Much more pretty than the browser's default audio player! 11 | 12 | Aimed at replacing the default audio player of any modern browser, brining you a united experience of audio playing. 13 | 14 | --- 15 | 16 | ***Very Important!!!*** 17 | ------------ 18 | Since v0.2.0-alpha.1, the behavior of bPlayer differs form v0.1.0!! Behavior changed from append to ***replace the attached element directly***! All attributes are maintained and can be accessed as before! 19 | 20 | MUST BE CAREFUL WHEN YOU UPDATE!! 21 | 22 | Installation 23 | ------------ 24 | 25 | git clone https://github.com/classicoldsong/bPlayer.git 26 | 27 | or 28 | 29 | npm install bplayer 30 | 31 | then 32 | 33 | 34 | 35 | or 36 | 37 | import bPlayer from 'bplayer'; 38 | 39 | ### Configuration and usage 40 | 41 | Include bplayer.js, put an audio element with 'controls' attribute, use `bPlayer.scan()` to scan the document after dom content is loaded, and it's all done~ Otherwise you can attach to an element manually. 42 | 43 | Here's a simple example: 44 | 45 | ~~~ javascript 46 | 61 | ... 62 | 63 |
64 |
65 | 66 | ~~~ 67 | 68 | When the web page finished loading you will see: 69 | 70 | ~~~ javascript 71 | ... 72 | ... 73 | ... 74 | ~~~ 75 | 76 | **Notice 1:** *After loaded bPlayer, all audio nodes will be scanned if you execute `bPlayer.scan()`, and then all audio nodes with `'controls="bplayer"'` attribute will be turned into bplayer nodes. All attributes of the original audio node will be maintained, including id, class and style.* 77 | 78 | **Notice 2:** *When manually attached an audio node, the original audio element will be used as the audio source.* 79 | 80 | ### API 81 | 82 | ##### Default method 83 | 84 | ~~~ javascript 85 | bPlayer.version; // Get the version of bPlayer 86 | bPlayer.scan(); // Scan the page for 'audio' tags with 'controls' attribute and replace them to bPlayer 87 | var bplayer = new bPlayer([Node]); 88 | ~~~ 89 | + `bplayer.data([JSON]) // Set ALL options of the player, leave empty will givebackJSON data which describes the music` 90 | + `bplayer.slim([bool]) // Whether enable 'slim mode'` 91 | + `bplayer.src([url]) // Set the src to audio source, leave empty will giveback current value` 92 | + `bplayer.cover([url]) // Set the url of cover, leave empty will giveback current value` 93 | + `bplayer.title([string]) // Set the title, leave empty will giveback current value` 94 | + `bplayer.artist([string]) // Set the artist, leave empty will giveback current value` 95 | + `bplayer.color([color]) // Set the color of progress bar and volme bar, leave empty will giveback current value` 96 | + `bplayer.volume([number 0 ~ 1]) // Set volume, leave empty will giveback current value` 97 | + `bplayer.muted([bool]) // Set muted, leave empty will giveback current value` 98 | + `bplayer.autoplay([bool]) // Set whether play automatically when new audio is loaded, leave empty will giveback current value, if you would like to play immediately after creation, please set this property before 'src'` 99 | + `bplayer.loop([bool]) // Set whether loop automatically, leave empty will giveback current value` 100 | + `bplayer.play() // Play` 101 | + `bplayer.pause() // Pause` 102 | + `bplayer.paused() // Acquire the playing status` 103 | + `bplayer.addListener(type, listener[, useCapture]) // Add an event listener to this player` 104 | + `bplayer.removeListener(type, listener[, useCapture]) // Remove an event listener from this player` 105 | 106 | ##### Using JSON for creation 107 | ~~~ javascript 108 | var bplayer = new bPlayer("#bplayer"/* CSS selector or node object */, { 109 | src: "aaa.mp3", // String 110 | title: "Title", // String 111 | artist: "artist", // String 112 | color: "color", // String 113 | volume: 1, // Number, [0~1] 114 | muted: false, // Bool 115 | autoplay: false, // Bool 116 | loop: false, // Bool 117 | slim: false // Bool 118 | }); 119 | ~~~ 120 | 121 | *No need for bplayer.init() when using JSON for creation. Key `element` must exist while others can be left unset* 122 | 123 | ##### BPLAYER Tag 124 | As to those elements that have been turned into bplayer, you can still access them just like the original audio element, such as `element.src = 'aaa.mp3'`, supported features are listed below: 125 | + `element.bp` Get bplayer object of this element 126 | + `element.play()` 127 | + `element.pause()` 128 | + `element.data` 129 | + `element.slim` 130 | + `element.src` 131 | + `element.cover` 132 | + `element.title` 133 | + `element.artist` 134 | + `element.color` 135 | + `element.volume` 136 | + `element.muted` 137 | + `element.autoplay` 138 | + `element.loop` 139 | + `element.paused` 140 | + `element.addListener(...)` 141 | + `element.removeListener(...)` 142 | 143 | ## TBD 144 | 145 | - [ ] ~~Lyric~~ (Abandoned) 146 | - [ ] ~~Playlist~~ (Abandoned) 147 | - [x] Events API 148 | 149 | License: MIT 150 | ------- 151 | 152 | Any questions or suggestions please submit an Issue or make a PullRequest or contact my E-mail syqlds@126.com 153 | 154 | And visiting my blog [Dimension C](https://ccoooss.com) is also welcomed. 155 | 156 | **All copyrights of audios used in DEMO are reserved by original authors** 157 | 158 | 159 | bPlayer 160 | ======== 161 | 162 | [Demo演示](https://classicoldsong.github.io/bPlayer) 163 | 164 | bPlayer - 原生音频播放器的绝佳替代品 165 | 166 | 无需jQuery且保留了大量原生audio元素的api,同时增加了歌曲名称、艺术家和专辑封面的显示 167 | 168 | 旨在取代各浏览器的原生播放器以带来更丰富的操作以及更统一的体验 169 | 170 | --- 171 | 172 | ***非常重要!!*** 173 | ------------ 174 | bPlayer 自 v0.2.0-alpha.1 起,行为与 v0.1.0 时不同!!由原先的append到绑定的元素的末尾改为了***直接替换被绑定的元素***!替换后原先元素的所有attribute全部保留,可以与替换之前一样操作! 175 | 176 | 更新请务必注意!!! 177 | 178 | 安装 179 | ------------ 180 | 181 | git clone https://github.com/classicoldsong/bPlayer.git 182 | 183 | 或者 184 | 185 | npm install bplayer 186 | 187 | 然后 188 | 189 | 190 | 191 | 或者 192 | 193 | import bPlayer from 'bplayer'; 194 | 195 | ### 配置及使用 196 | 197 | 引入bplayer.js,丢个带controls的audio标签在页面里,页面加载完毕后使用`bPlayer.scan();`扫描页面,然后就搞定了~或者手动绑定元素也可以的说 198 | 199 | 下面是一个简单的示例: 200 | 201 | ~~~ javascript 202 | 217 | ... 218 | 219 |
220 |
221 | 222 | ~~~ 223 | 224 | 页面加载完毕后你看到的是: 225 | 226 | ~~~ javascript 227 | ... 228 | ... 229 | ... 230 | ~~~ 231 | 232 | **注意1:** *引入bPlayer后,会在您执行`bPlayer.scan()`以后扫描页面内的所有audio节点,并将含有`controls="bplayer"`属性的audio节点转换为bplayer节点。原audio节点的所有attribute保留。* 233 | 234 | **注意2:** *手动绑定audio标签时将使用原audio标签作为音频来源。* 235 | 236 | ### API 237 | 238 | ##### 链式操作法 239 | 240 | ~~~ javascript 241 | bPlayer.version; // 获取bPlayer版本 242 | bPlayer.scan(); // 扫描页面内带有'controls'属性的'audio'标签并将它们转化为bPlayer 243 | var bplayer = new bPlayer([Node]); 244 | ~~~ 245 | + `bplayer.data([JSON]) // 通过JSON刷新所有选项,留空返回当前歌曲信息` 246 | + `bplayer.slim([bool]) // 设定是否开启苗条模式` 247 | + `bplayer.src([url]) // 设定歌曲链接,留空返回当前值` 248 | + `bplayer.cover([url]) // 设定封面链接,留空返回当前值` 249 | + `bplayer.title([string]) // 设定标题,留空返回当前值` 250 | + `bplayer.artist([string]) // 设定艺术家,留空返回当前值` 251 | + `bplayer.color([color]) // 设定进度条颜色,留空返回当前值` 252 | + `bplayer.volume([number 0 ~ 1]) // 设定音量,留空返回当前值` 253 | + `bplayer.muted([bool]) // 设定静音,留空返回当前值` 254 | + `bplayer.autoplay([bool]) // 设定自动播放,留空返回当前值,若希望创建后立即播放请在src前设置此项` 255 | + `bplayer.loop([bool]) // 设定循环动播放,留空返回当前值` 256 | + `bplayer.play() // 播放` 257 | + `bplayer.pause() // 暂停` 258 | + `bplayer.paused() // 获取播放状态` 259 | + `bplayer.addListener(type, listener[, useCapture]) // 绑定事件` 260 | + `bplayer.removeListener(type, listener[, useCapture]) // 解绑事件` 261 | 262 | ##### JSON传入法 263 | ~~~ javascript 264 | var bplayer = new bPlayer({ 265 | element: "#bplayer" // CSS选择器或者Node对象 266 | src: "aaa.mp3", // String, 歌曲链接地址 267 | title: "Title", // String, 歌曲标题 268 | artist: "artist", // String, 歌曲艺术家 269 | color: "color", // String, 颜色代码 270 | volume: 1, // Number, [0~1], 音量大小 271 | muted: false, // Bool, 是否静音 272 | autoplay: false, // Bool, 是否自动播放 273 | loop: false, // Bool, 是否开启循环 274 | slim: false // Bool, 是否开启苗条模式 275 | }); 276 | ~~~ 277 | 278 | *使用JSON传入法时无需使用bplayer.init()进行初始化,创建bplayer时将自动处理完毕。选项允许缺省,但是`element`字段必须存在* 279 | 280 | ##### BPLAYER标签 281 | 对于已经被attach的元素,可以直接在元素上操作,操作方式与原生audio大同小异,比如`element.src = 'aaa.mp3'`,目前支持的有: 282 | + `element.bp` 获取当前元素的bPlayer对象 283 | + `element.play()` 284 | + `element.pause()` 285 | + `element.data` 286 | + `element.slim` 287 | + `element.src` 288 | + `element.cover` 289 | + `element.title` 290 | + `element.artist` 291 | + `element.color` 292 | + `element.volume` 293 | + `element.muted` 294 | + `element.autoplay` 295 | + `element.loop` 296 | + `element.paused` 297 | + `element.addListener(...)` 298 | + `element.removeListener(...)` 299 | 300 | ## TBD 301 | 302 | - [ ] ~~歌词~~(已放弃,下个播放器见) 303 | - [ ] ~~播放列表~~(已放弃,下个播放器见) 304 | - [x] 原生事件API 305 | 306 | 许可证:MIT 307 | ------- 308 | 309 | 如有疑问或者建议欢迎提Issue或者PullRequest或者联系我的邮箱 syqlds@126.com 310 | 311 | 当然也欢迎访问我的博客 [C次元](https://ccoooss.com) 312 | 313 | **DEMO中使用的音乐版权归原作者所有** 314 | -------------------------------------------------------------------------------- /src/bplayer.js: -------------------------------------------------------------------------------- 1 | // Import everything 2 | import content from './bplayer.html' 3 | import { warn } from './debug.js' 4 | import { version } from '../package.json' 5 | import './bplayer.css' 6 | 7 | const defaults = { 8 | src: '', 9 | cover: '', 10 | title: 'Unknown', 11 | artist: 'Unknown', 12 | color: '#A91212', 13 | volume: 1, 14 | muted: false, 15 | autoplay: false, 16 | loop: false, 17 | slim: false 18 | } 19 | 20 | const response = function() { 21 | if (this.clientWidth <= 460) { 22 | this.classList.add("narrow_bplayer") 23 | } else { 24 | this.classList.remove("narrow_bplayer") 25 | } 26 | } 27 | 28 | const formatTime = function (sec) { 29 | const hours = Math.floor(sec / 3600) 30 | const minutes = Math.floor((sec - (hours * 3600)) / 60) 31 | const seconds = Math.floor(sec - (hours * 3600) - (minutes * 60)) 32 | 33 | let hs = '' 34 | let ms = '' 35 | let ss = '' 36 | 37 | hs = `${hours}:` 38 | if (isNaN(minutes)) ms = '00:' 39 | else ms = `${minutes}` 40 | if (isNaN(seconds)) ss = '00' 41 | else ss = `${seconds}` 42 | if (hours < 10) hs = `0${hours}:` 43 | if (minutes < 10) ms = `0${minutes}:` 44 | if (seconds < 10) ss = `0${seconds}` 45 | if (isNaN(hours) || hours <= 0) hs = '' 46 | return `${hs}${ms}${ss}` 47 | } 48 | 49 | const bPlayer = class { 50 | constructor(el, data) { 51 | // Ensure element 52 | if (!(el instanceof Element)) el = document.querySelector(el) 53 | 54 | // Check if the element has been turned into bPlayer 55 | if (el.bp instanceof bPlayer) return warn('This element has already been attached!') 56 | Object.defineProperty(el, 'bp' , { value: this }) 57 | 58 | const parent = el.parentNode 59 | 60 | Object.defineProperty(this, '_el', { value: document.createElement('bplayer') }) 61 | 62 | const _response = response.bind(this._el) 63 | 64 | for (let i = 0; i < el.attributes.length; i++) { 65 | if (!(/(src|title|artist|slim|cover|color|autoplay|loop|controls)/i.test(el.attributes[i].name))) this._el.setAttribute(el.attributes[i].name, el.attributes[i].value) 66 | } 67 | this._el.classList.add('bPlayer') 68 | this._el.insertAdjacentHTML('afterbegin', content) 69 | 70 | const status = { 71 | progressdown: false, 72 | volumedown: false, 73 | seekID: 0 74 | } 75 | 76 | // Get all needed elements 77 | const els = { 78 | cover: this._el.querySelector('.coverimg_bplayer'), 79 | progressCtl: this._el.querySelector('.progressctl_bplayer'), 80 | volumeCtl: this._el.querySelector('.volumectl_bplayer'), 81 | title: this._el.querySelector('.title_bplayer'), 82 | artist: this._el.querySelector('.author_bplayer'), 83 | played: this._el.querySelector('.played_bplayer'), 84 | current: this._el.querySelector('.current_bplayer'), 85 | loaded: this._el.querySelector('.loaded_bplayer'), 86 | total: this._el.querySelector('.total_bplayer'), 87 | volumeVal: this._el.querySelector('.volumeval_bplayer'), 88 | playCtl: this._el.querySelector('.cover_bplayer'), 89 | volumeBtn: this._el.querySelector('#volumeBtn_bplayer'), 90 | loopBtn: this._el.querySelector('#loopBtn_bplayer'), 91 | playBtn: this._el.querySelector('#playBtn_bplayer'), 92 | pauseBtn: this._el.querySelector('#pauseBtn_bplayer') 93 | } 94 | 95 | // Check if the element is an audio tag 96 | if (el.tagName.toUpperCase() === 'AUDIO') { 97 | els.audio = el 98 | el = document.createTextNode('') 99 | parent.insertBefore(el, els.audio) 100 | } else els.audio = new Audio() 101 | 102 | // Hide the audio element 103 | els.audio.controls = false 104 | 105 | // Attach to DOM 106 | this._el.appendChild(els.audio) 107 | parent.replaceChild(this._el, el) 108 | window.addEventListener('resize', _response) 109 | _response() 110 | 111 | const { 112 | progressCtl, 113 | volumeCtl, 114 | played, 115 | current, 116 | loaded, 117 | total, 118 | volumeVal, 119 | volumeBtn, 120 | playCtl, 121 | loopBtn, 122 | playBtn, 123 | pauseBtn 124 | } = els 125 | 126 | progressCtl.addEventListener('click', function(e) { 127 | const w = this.clientWidth 128 | const x = e.offsetX 129 | if (x >= 0 && x <= w) els.audio.currentTime = x / w * els.audio.duration 130 | }) 131 | progressCtl.addEventListener('mousedown', () => { 132 | status.progressdown = true 133 | }) 134 | progressCtl.addEventListener('mouseup', () => { 135 | status.progressdown = false 136 | }) 137 | progressCtl.addEventListener('mouseout', () => { 138 | status.progressdown = false 139 | }) 140 | progressCtl.addEventListener('mousemove', function(e) { 141 | if (status.progressdown) { 142 | const w = this.clientWidth 143 | const x = e.offsetX 144 | if (x >= 0 && x <= w) els.audio.currentTime = x / w * els.audio.duration 145 | } 146 | }) 147 | progressCtl.addEventListener('touchstart', () => { 148 | status.progressdown = true 149 | }) 150 | progressCtl.addEventListener('touchend', () => { 151 | status.progressdown = false 152 | }) 153 | progressCtl.addEventListener('touchmove', function(e) { 154 | if (status.progressdown) { 155 | const w = this.clientWidth 156 | const x = e.touches[0].pageX - e.target.getBoundingClientRect().left 157 | if (x >= 0 && x <= w) els.audio.currentTime = x / w * els.audio.duration 158 | } 159 | }) 160 | volumeCtl.addEventListener('click', (e) => { 161 | const x = e.offsetX 162 | if (x >= 0 && x <= 80) els.audio.volume = x / 80 163 | }) 164 | volumeCtl.addEventListener('mousedown', () => { 165 | status.volumedown = true 166 | }) 167 | volumeCtl.addEventListener('mouseup', () => { 168 | status.volumedown = false 169 | }) 170 | volumeCtl.addEventListener('mouseout', () => { 171 | status.volumedown = false 172 | }) 173 | volumeCtl.addEventListener('mousemove', (e) => { 174 | if (status.volumedown) { 175 | const x = e.offsetX 176 | if (x >= 0 && x <= 80) els.audio.volume = x / 80 177 | } 178 | }) 179 | volumeCtl.addEventListener('touchstart', () => { 180 | status.volumedown = true 181 | }) 182 | volumeCtl.addEventListener('touchend', () => { 183 | status.volumedown = false 184 | }) 185 | volumeCtl.addEventListener('touchmove', (e) => { 186 | if (status.volumedown) { 187 | const x = e.touches[0].pageX - e.target.getBoundingClientRect().left 188 | if (x >= 0 && x <= 80) els.audio.volume = x / 80 189 | } 190 | }) 191 | volumeBtn.addEventListener('click', () => { 192 | this._el.muted = !this._el.muted 193 | }) 194 | playCtl.addEventListener('click', () => { 195 | if (els.audio.paused) { 196 | this._el.play() 197 | } else { 198 | this._el.pause() 199 | } 200 | }) 201 | loopBtn.addEventListener('click', () => { 202 | this._el.loop = !this._el.loop 203 | }) 204 | 205 | els.audio.addEventListener('seeking', () => { 206 | // Cancle last seek before creating a new one 207 | if (status.seekID) window.clearTimeout(status.seekID) 208 | 209 | const currentTime = els.audio.currentTime 210 | const paused = els.audio.paused 211 | const resume = () => { 212 | status.seekID = 0 213 | els.audio.removeEventListener('canplay', resume) 214 | els.audio.currentTime = currentTime 215 | if (!paused) els.audio.play() 216 | } 217 | status.seekID = window.setTimeout(() => { 218 | els.audio.load() 219 | els.audio.addEventListener('canplay', resume) 220 | }, 500) 221 | }) 222 | els.audio.addEventListener('seeked', () => { 223 | window.clearTimeout(status.seekID) 224 | status.seekID = 0 225 | }) 226 | els.audio.addEventListener('timeupdate', function() { 227 | played.style.width = `${this.currentTime / this.duration * 100}%` 228 | current.textContent = formatTime(this.currentTime) 229 | }) 230 | els.audio.addEventListener('progress', function() { 231 | const bufferedLength = this.buffered.length 232 | if (bufferedLength >= 1) loaded.style.width = `${this.buffered.end(bufferedLength - 1) / this.duration * 100}%` 233 | total.textContent = formatTime(this.duration) 234 | }) 235 | els.audio.addEventListener('volumechange', function() { 236 | volumeVal.style.width = `${this.volume * 80}px` 237 | }) 238 | els.audio.addEventListener('play', function() { 239 | playBtn.classList.add('hidden_bplayer') 240 | pauseBtn.classList.remove('hidden_bplayer') 241 | total.textContent = formatTime(this.duration) 242 | }) 243 | els.audio.addEventListener('pause', function() { 244 | playBtn.classList.remove('hidden_bplayer') 245 | pauseBtn.classList.add('hidden_bplayer') 246 | total.textContent = formatTime(this.duration) 247 | }) 248 | els.audio.addEventListener('ended', () => { 249 | if (!this.loop) { 250 | this.pause() 251 | } 252 | }) 253 | 254 | Object.defineProperties(this._el, { 255 | data: { 256 | get() { 257 | return { 258 | src: this.src, 259 | cover: this.cover, 260 | title: this.title, 261 | artist: this.artist, 262 | color: this.color, 263 | slim: this.slim, 264 | volume: this.volume, 265 | muted: this.muted 266 | } 267 | }, 268 | set(data) { 269 | for (let i in defaults) { 270 | if (data[i] !== null && typeof data[i] !== 'undefined') { 271 | this[i] = data[i] 272 | } 273 | } 274 | } 275 | }, 276 | slim: { 277 | get() { 278 | return this.className.split(' ').indexOf('slim_bPlayer') !== -1 279 | }, 280 | set(slim) { 281 | slim = !!slim 282 | if (slim) this.classList.add('slim_bPlayer') 283 | else this.classList.remove('slim_bPlayer') 284 | } 285 | }, 286 | src: { 287 | get() { 288 | return els.audio.src 289 | }, 290 | set(src) { 291 | els.audio.src = src 292 | } 293 | }, 294 | cover: { 295 | get() { 296 | return els.cover.style.backgroundImage.split('")')[0].split('url("')[1] 297 | }, 298 | set(cover) { 299 | els.cover.style.backgroundImage = `url("${cover}")` 300 | } 301 | }, 302 | title: { 303 | get() { 304 | return els.title.textContent 305 | }, 306 | set(title) { 307 | els.title.textContent = title 308 | } 309 | }, 310 | artist: { 311 | get() { 312 | return els.artist.textContent 313 | }, 314 | set(artist) { 315 | els.artist.textContent = artist 316 | } 317 | }, 318 | color: { 319 | get() { 320 | return els.played.style.backgroundColor 321 | }, 322 | set(color) { 323 | const shadow = `${color} 0px 0px 3px` 324 | els.played.style.backgroundColor = color 325 | els.played.style.boxShadow = shadow 326 | els.volumeVal.style.backgroundColor = color 327 | els.volumeVal.style.boxShadow = shadow 328 | } 329 | }, 330 | volume: { 331 | get() { 332 | return els.audio.volume 333 | }, 334 | set(volume) { 335 | els.audio.volume = volume 336 | } 337 | }, 338 | muted: { 339 | get() { 340 | return els.audio.muted 341 | }, 342 | set(muted) { 343 | muted = !!muted 344 | els.audio.muted = muted 345 | if (muted) els.volumeBtn.classList.add('disabled_bplayer') 346 | else els.volumeBtn.classList.remove('disabled_bplayer') 347 | } 348 | }, 349 | loop: { 350 | get() { 351 | return els.audio.loop 352 | }, 353 | set(loop) { 354 | loop = !!loop 355 | els.audio.loop = loop 356 | if (loop) els.loopBtn.classList.remove('disabled_bplayer') 357 | else els.loopBtn.classList.add('disabled_bplayer') 358 | } 359 | }, 360 | autoplay: { 361 | get() { 362 | return els.audio.autoplay 363 | }, 364 | set(autoplay) { 365 | autoplay = !!autoplay 366 | els.audio.autoplay = autoplay 367 | } 368 | }, 369 | paused: { 370 | get() { 371 | return els.audio.paused 372 | } 373 | }, 374 | addListener: { 375 | value: (type, fn) => els.audio.addEventListener(type, fn, false) 376 | }, 377 | removeListener: { 378 | value: (type, fn) => els.audio.removeEventListener(type, fn, false) 379 | }, 380 | play: { 381 | value: els.audio.play.bind(els.audio) 382 | }, 383 | pause: { 384 | value: els.audio.pause.bind(els.audio) 385 | }, 386 | bp: { 387 | value: this 388 | } 389 | }) 390 | 391 | if (data) { 392 | for (let i in defaults) { 393 | if (data[i] === null || typeof data[i] === 'undefined') data[i] = defaults[i] 394 | } 395 | } else { 396 | data = {} 397 | for (let i in defaults) data[i] = defaults[i] 398 | } 399 | for (let i in defaults) this[i](data[i]) 400 | } 401 | 402 | data(data) { 403 | if (typeof data !== 'undefined') { 404 | this._el.data = data 405 | return this 406 | } 407 | return this._el.data 408 | } 409 | 410 | slim(slim) { 411 | if (typeof slim !== 'undefined') { 412 | this._el.slim = slim 413 | return this 414 | } 415 | return this._el.slim 416 | } 417 | 418 | src(src) { 419 | if (typeof src !== 'undefined') { 420 | this._el.src = src 421 | return this 422 | } 423 | return this._el.src 424 | } 425 | 426 | cover(cover) { 427 | if (typeof cover !== 'undefined') { 428 | this._el.cover = cover 429 | return this 430 | } 431 | return this._el.cover 432 | } 433 | 434 | title(title) { 435 | if (typeof title !== 'undefined') { 436 | this._el.title = title 437 | return this 438 | } 439 | return this._el.title 440 | } 441 | 442 | artist(artist) { 443 | if (typeof artist !== 'undefined') { 444 | this._el.artist = artist 445 | return this 446 | } 447 | return this._el.artist 448 | } 449 | 450 | color(color) { 451 | if (typeof color !== 'undefined') { 452 | this._el.color = color 453 | return this 454 | } 455 | return this._el.color 456 | } 457 | 458 | volume(volume) { 459 | if (typeof volume !== 'undefined') { 460 | this._el.volume = volume 461 | return this 462 | } 463 | return this._el.volume 464 | } 465 | 466 | muted(muted) { 467 | if (typeof muted !== 'undefined') { 468 | this._el.muted = muted 469 | return this 470 | } 471 | return this._el.muted 472 | } 473 | 474 | loop(loop) { 475 | if (typeof loop !== 'undefined') { 476 | this._el.loop = loop 477 | return this 478 | } 479 | return this._el.loop 480 | } 481 | 482 | autoplay(autoplay) { 483 | if (typeof autoplay !== 'undefined') { 484 | this._el.autoplay = autoplay 485 | return this 486 | } 487 | return this._el.autoplay 488 | } 489 | 490 | get paused() { 491 | return this._el.paused 492 | } 493 | 494 | addListener(...args) { 495 | this._el.addListener(...args) 496 | return this 497 | } 498 | 499 | removeListener(...args) { 500 | this._el.removeListener(...args) 501 | return this 502 | } 503 | 504 | play() { 505 | this._el.play() 506 | return this 507 | } 508 | 509 | pause() { 510 | this._el.pause() 511 | return this 512 | } 513 | 514 | get bp() { 515 | return this 516 | } 517 | 518 | // Automatically convert audio tags with "controls" 519 | // attritube that have value of "bplayer" into bPlayer. 520 | static scan() { 521 | 522 | /* eslint {no-new: "off"} */ 523 | const audioList = document.querySelectorAll('audio[controls="bplayer"]') 524 | for (let i = 0; i < audioList.length; i++) { 525 | const data = { 526 | src: audioList[i].src, 527 | loop: audioList[i].loop, 528 | title: audioList[i].title, 529 | autoplay: audioList[i].autoplay, 530 | slim: JSON.parse(audioList[i].getAttribute('slim')), 531 | cover: audioList[i].getAttribute('cover'), 532 | color: audioList[i].getAttribute('color'), 533 | artist: audioList[i].getAttribute('artist') 534 | } 535 | new bPlayer(audioList[i], data) 536 | } 537 | } 538 | 539 | static get version() { 540 | return version 541 | } 542 | } 543 | 544 | export default bPlayer 545 | 546 | // Set style for info 547 | const ls1 = ` 548 | background-color: #A91212; 549 | font-weight: bold; 550 | color: #FFF; 551 | font-size: 20px; 552 | ` 553 | const ls2 = ` 554 | background-color: #531212; 555 | font-weight: bold; 556 | color: #FEDCBA; 557 | font-size: 20px; 558 | ` 559 | const ls3 = ` 560 | background-color: #000; 561 | font-weight: bold; 562 | color: #FEDCBA; 563 | font-size: 12px; 564 | ` 565 | // Show information when bPlayer loaded successfully. 566 | console.log(`%c bPlayer %c v${version} \n%c See http://bplayer.js.org for detail. `, ls1, ls2, ls3) 567 | -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- 1 | # THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY. 2 | # yarn lockfile v1 3 | 4 | 5 | abbrev@1: 6 | version "1.1.0" 7 | resolved "https://registry.yarnpkg.com/abbrev/-/abbrev-1.1.0.tgz#d0554c2256636e2f56e7c2e5ad183f859428d81f" 8 | 9 | accepts@1.3.3, accepts@~1.3.3: 10 | version "1.3.3" 11 | resolved "https://registry.yarnpkg.com/accepts/-/accepts-1.3.3.tgz#c3ca7434938648c3e0d9c1e328dd68b622c284ca" 12 | dependencies: 13 | mime-types "~2.1.11" 14 | negotiator "0.6.1" 15 | 16 | acorn-jsx@^3.0.0, acorn-jsx@^3.0.1: 17 | version "3.0.1" 18 | resolved "https://registry.yarnpkg.com/acorn-jsx/-/acorn-jsx-3.0.1.tgz#afdf9488fb1ecefc8348f6fb22f464e32a58b36b" 19 | dependencies: 20 | acorn "^3.0.4" 21 | 22 | acorn-object-spread@^1.0.0: 23 | version "1.0.0" 24 | resolved "https://registry.yarnpkg.com/acorn-object-spread/-/acorn-object-spread-1.0.0.tgz#48ead0f4a8eb16995a17a0db9ffc6acaada4ba68" 25 | dependencies: 26 | acorn "^3.1.0" 27 | 28 | acorn@4.0.4: 29 | version "4.0.4" 30 | resolved "https://registry.yarnpkg.com/acorn/-/acorn-4.0.4.tgz#17a8d6a7a6c4ef538b814ec9abac2779293bf30a" 31 | 32 | acorn@^3.0.4, acorn@^3.1.0, acorn@^3.3.0: 33 | version "3.3.0" 34 | resolved "https://registry.yarnpkg.com/acorn/-/acorn-3.3.0.tgz#45e37fb39e8da3f25baee3ff5369e2bb5f22017a" 35 | 36 | acorn@^4.0.1: 37 | version "4.0.11" 38 | resolved "https://registry.yarnpkg.com/acorn/-/acorn-4.0.11.tgz#edcda3bd937e7556410d42ed5860f67399c794c0" 39 | 40 | after@0.8.1: 41 | version "0.8.1" 42 | resolved "https://registry.yarnpkg.com/after/-/after-0.8.1.tgz#ab5d4fb883f596816d3515f8f791c0af486dd627" 43 | 44 | ajv-keywords@^1.0.0: 45 | version "1.5.1" 46 | resolved "https://registry.yarnpkg.com/ajv-keywords/-/ajv-keywords-1.5.1.tgz#314dd0a4b3368fad3dfcdc54ede6171b886daf3c" 47 | 48 | ajv@^4.7.0, ajv@^4.9.1: 49 | version "4.11.5" 50 | resolved "https://registry.yarnpkg.com/ajv/-/ajv-4.11.5.tgz#b6ee74657b993a01dce44b7944d56f485828d5bd" 51 | dependencies: 52 | co "^4.6.0" 53 | json-stable-stringify "^1.0.1" 54 | 55 | align-text@^0.1.1, align-text@^0.1.3: 56 | version "0.1.4" 57 | resolved "https://registry.yarnpkg.com/align-text/-/align-text-0.1.4.tgz#0cd90a561093f35d0a99256c22b7069433fad117" 58 | dependencies: 59 | kind-of "^3.0.2" 60 | longest "^1.0.1" 61 | repeat-string "^1.5.2" 62 | 63 | ansi-escapes@^1.1.0: 64 | version "1.4.0" 65 | resolved "https://registry.yarnpkg.com/ansi-escapes/-/ansi-escapes-1.4.0.tgz#d3a8a83b319aa67793662b13e761c7911422306e" 66 | 67 | ansi-regex@^2.0.0: 68 | version "2.1.1" 69 | resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-2.1.1.tgz#c3b33ab5ee360d86e0e628f0468ae7ef27d654df" 70 | 71 | ansi-styles@^2.2.1: 72 | version "2.2.1" 73 | resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-2.2.1.tgz#b432dd3358b634cf75e1e4664368240533c1ddbe" 74 | 75 | anymatch@^1.3.0: 76 | version "1.3.0" 77 | resolved "https://registry.yarnpkg.com/anymatch/-/anymatch-1.3.0.tgz#a3e52fa39168c825ff57b0248126ce5a8ff95507" 78 | dependencies: 79 | arrify "^1.0.0" 80 | micromatch "^2.1.5" 81 | 82 | aproba@^1.0.3: 83 | version "1.1.1" 84 | resolved "https://registry.yarnpkg.com/aproba/-/aproba-1.1.1.tgz#95d3600f07710aa0e9298c726ad5ecf2eacbabab" 85 | 86 | are-we-there-yet@~1.1.2: 87 | version "1.1.2" 88 | resolved "https://registry.yarnpkg.com/are-we-there-yet/-/are-we-there-yet-1.1.2.tgz#80e470e95a084794fe1899262c5667c6e88de1b3" 89 | dependencies: 90 | delegates "^1.0.0" 91 | readable-stream "^2.0.0 || ^1.1.13" 92 | 93 | argparse@^1.0.7: 94 | version "1.0.9" 95 | resolved "https://registry.yarnpkg.com/argparse/-/argparse-1.0.9.tgz#73d83bc263f86e97f8cc4f6bae1b0e90a7d22c86" 96 | dependencies: 97 | sprintf-js "~1.0.2" 98 | 99 | arr-diff@^2.0.0: 100 | version "2.0.0" 101 | resolved "https://registry.yarnpkg.com/arr-diff/-/arr-diff-2.0.0.tgz#8f3b827f955a8bd669697e4a4256ac3ceae356cf" 102 | dependencies: 103 | arr-flatten "^1.0.1" 104 | 105 | arr-flatten@^1.0.1: 106 | version "1.0.1" 107 | resolved "https://registry.yarnpkg.com/arr-flatten/-/arr-flatten-1.0.1.tgz#e5ffe54d45e19f32f216e91eb99c8ce892bb604b" 108 | 109 | array-union@^1.0.1: 110 | version "1.0.2" 111 | resolved "https://registry.yarnpkg.com/array-union/-/array-union-1.0.2.tgz#9a34410e4f4e3da23dea375be5be70f24778ec39" 112 | dependencies: 113 | array-uniq "^1.0.1" 114 | 115 | array-uniq@^1.0.1: 116 | version "1.0.3" 117 | resolved "https://registry.yarnpkg.com/array-uniq/-/array-uniq-1.0.3.tgz#af6ac877a25cc7f74e058894753858dfdb24fdb6" 118 | 119 | array-unique@^0.2.1: 120 | version "0.2.1" 121 | resolved "https://registry.yarnpkg.com/array-unique/-/array-unique-0.2.1.tgz#a1d97ccafcbc2625cc70fadceb36a50c58b01a53" 122 | 123 | arraybuffer.slice@0.0.6: 124 | version "0.0.6" 125 | resolved "https://registry.yarnpkg.com/arraybuffer.slice/-/arraybuffer.slice-0.0.6.tgz#f33b2159f0532a3f3107a272c0ccfbd1ad2979ca" 126 | 127 | arrify@^1.0.0: 128 | version "1.0.1" 129 | resolved "https://registry.yarnpkg.com/arrify/-/arrify-1.0.1.tgz#898508da2226f380df904728456849c1501a4b0d" 130 | 131 | asn1@~0.2.3: 132 | version "0.2.3" 133 | resolved "https://registry.yarnpkg.com/asn1/-/asn1-0.2.3.tgz#dac8787713c9966849fc8180777ebe9c1ddf3b86" 134 | 135 | assert-plus@1.0.0, assert-plus@^1.0.0: 136 | version "1.0.0" 137 | resolved "https://registry.yarnpkg.com/assert-plus/-/assert-plus-1.0.0.tgz#f12e0f3c5d77b0b1cdd9146942e4e96c1e4dd525" 138 | 139 | assert-plus@^0.2.0: 140 | version "0.2.0" 141 | resolved "https://registry.yarnpkg.com/assert-plus/-/assert-plus-0.2.0.tgz#d74e1b87e7affc0db8aadb7021f3fe48101ab234" 142 | 143 | async-each-series@0.1.1: 144 | version "0.1.1" 145 | resolved "https://registry.yarnpkg.com/async-each-series/-/async-each-series-0.1.1.tgz#7617c1917401fd8ca4a28aadce3dbae98afeb432" 146 | 147 | async-each@^1.0.0: 148 | version "1.0.1" 149 | resolved "https://registry.yarnpkg.com/async-each/-/async-each-1.0.1.tgz#19d386a1d9edc6e7c1c85d388aedbcc56d33602d" 150 | 151 | async@1.5.2: 152 | version "1.5.2" 153 | resolved "https://registry.yarnpkg.com/async/-/async-1.5.2.tgz#ec6a61ae56480c0c3cb241c95618e20892f9672a" 154 | 155 | asynckit@^0.4.0: 156 | version "0.4.0" 157 | resolved "https://registry.yarnpkg.com/asynckit/-/asynckit-0.4.0.tgz#c79ed97f7f34cb8f2ba1bc9790bcc366474b4b79" 158 | 159 | aws-sign2@~0.6.0: 160 | version "0.6.0" 161 | resolved "https://registry.yarnpkg.com/aws-sign2/-/aws-sign2-0.6.0.tgz#14342dd38dbcc94d0e5b87d763cd63612c0e794f" 162 | 163 | aws4@^1.2.1: 164 | version "1.6.0" 165 | resolved "https://registry.yarnpkg.com/aws4/-/aws4-1.6.0.tgz#83ef5ca860b2b32e4a0deedee8c771b9db57471e" 166 | 167 | babel-cli@^6.18.0: 168 | version "6.24.0" 169 | resolved "https://registry.yarnpkg.com/babel-cli/-/babel-cli-6.24.0.tgz#a05ffd210dca0c288a26d5319c5ac8669a265ad0" 170 | dependencies: 171 | babel-core "^6.24.0" 172 | babel-polyfill "^6.23.0" 173 | babel-register "^6.24.0" 174 | babel-runtime "^6.22.0" 175 | commander "^2.8.1" 176 | convert-source-map "^1.1.0" 177 | fs-readdir-recursive "^1.0.0" 178 | glob "^7.0.0" 179 | lodash "^4.2.0" 180 | output-file-sync "^1.1.0" 181 | path-is-absolute "^1.0.0" 182 | slash "^1.0.0" 183 | source-map "^0.5.0" 184 | v8flags "^2.0.10" 185 | optionalDependencies: 186 | chokidar "^1.6.1" 187 | 188 | babel-code-frame@^6.16.0, babel-code-frame@^6.22.0: 189 | version "6.22.0" 190 | resolved "https://registry.yarnpkg.com/babel-code-frame/-/babel-code-frame-6.22.0.tgz#027620bee567a88c32561574e7fd0801d33118e4" 191 | dependencies: 192 | chalk "^1.1.0" 193 | esutils "^2.0.2" 194 | js-tokens "^3.0.0" 195 | 196 | babel-core@6, babel-core@^6.24.0: 197 | version "6.24.0" 198 | resolved "https://registry.yarnpkg.com/babel-core/-/babel-core-6.24.0.tgz#8f36a0a77f5c155aed6f920b844d23ba56742a02" 199 | dependencies: 200 | babel-code-frame "^6.22.0" 201 | babel-generator "^6.24.0" 202 | babel-helpers "^6.23.0" 203 | babel-messages "^6.23.0" 204 | babel-register "^6.24.0" 205 | babel-runtime "^6.22.0" 206 | babel-template "^6.23.0" 207 | babel-traverse "^6.23.1" 208 | babel-types "^6.23.0" 209 | babylon "^6.11.0" 210 | convert-source-map "^1.1.0" 211 | debug "^2.1.1" 212 | json5 "^0.5.0" 213 | lodash "^4.2.0" 214 | minimatch "^3.0.2" 215 | path-is-absolute "^1.0.0" 216 | private "^0.1.6" 217 | slash "^1.0.0" 218 | source-map "^0.5.0" 219 | 220 | babel-generator@^6.24.0: 221 | version "6.24.0" 222 | resolved "https://registry.yarnpkg.com/babel-generator/-/babel-generator-6.24.0.tgz#eba270a8cc4ce6e09a61be43465d7c62c1f87c56" 223 | dependencies: 224 | babel-messages "^6.23.0" 225 | babel-runtime "^6.22.0" 226 | babel-types "^6.23.0" 227 | detect-indent "^4.0.0" 228 | jsesc "^1.3.0" 229 | lodash "^4.2.0" 230 | source-map "^0.5.0" 231 | trim-right "^1.0.1" 232 | 233 | babel-helper-bindify-decorators@^6.22.0: 234 | version "6.22.0" 235 | resolved "https://registry.yarnpkg.com/babel-helper-bindify-decorators/-/babel-helper-bindify-decorators-6.22.0.tgz#d7f5bc261275941ac62acfc4e20dacfb8a3fe952" 236 | dependencies: 237 | babel-runtime "^6.22.0" 238 | babel-traverse "^6.22.0" 239 | babel-types "^6.22.0" 240 | 241 | babel-helper-builder-binary-assignment-operator-visitor@^6.22.0: 242 | version "6.22.0" 243 | resolved "https://registry.yarnpkg.com/babel-helper-builder-binary-assignment-operator-visitor/-/babel-helper-builder-binary-assignment-operator-visitor-6.22.0.tgz#29df56be144d81bdeac08262bfa41d2c5e91cdcd" 244 | dependencies: 245 | babel-helper-explode-assignable-expression "^6.22.0" 246 | babel-runtime "^6.22.0" 247 | babel-types "^6.22.0" 248 | 249 | babel-helper-call-delegate@^6.22.0: 250 | version "6.22.0" 251 | resolved "https://registry.yarnpkg.com/babel-helper-call-delegate/-/babel-helper-call-delegate-6.22.0.tgz#119921b56120f17e9dae3f74b4f5cc7bcc1b37ef" 252 | dependencies: 253 | babel-helper-hoist-variables "^6.22.0" 254 | babel-runtime "^6.22.0" 255 | babel-traverse "^6.22.0" 256 | babel-types "^6.22.0" 257 | 258 | babel-helper-define-map@^6.23.0: 259 | version "6.23.0" 260 | resolved "https://registry.yarnpkg.com/babel-helper-define-map/-/babel-helper-define-map-6.23.0.tgz#1444f960c9691d69a2ced6a205315f8fd00804e7" 261 | dependencies: 262 | babel-helper-function-name "^6.23.0" 263 | babel-runtime "^6.22.0" 264 | babel-types "^6.23.0" 265 | lodash "^4.2.0" 266 | 267 | babel-helper-explode-assignable-expression@^6.22.0: 268 | version "6.22.0" 269 | resolved "https://registry.yarnpkg.com/babel-helper-explode-assignable-expression/-/babel-helper-explode-assignable-expression-6.22.0.tgz#c97bf76eed3e0bae4048121f2b9dae1a4e7d0478" 270 | dependencies: 271 | babel-runtime "^6.22.0" 272 | babel-traverse "^6.22.0" 273 | babel-types "^6.22.0" 274 | 275 | babel-helper-explode-class@^6.22.0: 276 | version "6.22.0" 277 | resolved "https://registry.yarnpkg.com/babel-helper-explode-class/-/babel-helper-explode-class-6.22.0.tgz#646304924aa6388a516843ba7f1855ef8dfeb69b" 278 | dependencies: 279 | babel-helper-bindify-decorators "^6.22.0" 280 | babel-runtime "^6.22.0" 281 | babel-traverse "^6.22.0" 282 | babel-types "^6.22.0" 283 | 284 | babel-helper-function-name@^6.22.0, babel-helper-function-name@^6.23.0: 285 | version "6.23.0" 286 | resolved "https://registry.yarnpkg.com/babel-helper-function-name/-/babel-helper-function-name-6.23.0.tgz#25742d67175c8903dbe4b6cb9d9e1fcb8dcf23a6" 287 | dependencies: 288 | babel-helper-get-function-arity "^6.22.0" 289 | babel-runtime "^6.22.0" 290 | babel-template "^6.23.0" 291 | babel-traverse "^6.23.0" 292 | babel-types "^6.23.0" 293 | 294 | babel-helper-get-function-arity@^6.22.0: 295 | version "6.22.0" 296 | resolved "https://registry.yarnpkg.com/babel-helper-get-function-arity/-/babel-helper-get-function-arity-6.22.0.tgz#0beb464ad69dc7347410ac6ade9f03a50634f5ce" 297 | dependencies: 298 | babel-runtime "^6.22.0" 299 | babel-types "^6.22.0" 300 | 301 | babel-helper-hoist-variables@^6.22.0: 302 | version "6.22.0" 303 | resolved "https://registry.yarnpkg.com/babel-helper-hoist-variables/-/babel-helper-hoist-variables-6.22.0.tgz#3eacbf731d80705845dd2e9718f600cfb9b4ba72" 304 | dependencies: 305 | babel-runtime "^6.22.0" 306 | babel-types "^6.22.0" 307 | 308 | babel-helper-optimise-call-expression@^6.23.0: 309 | version "6.23.0" 310 | resolved "https://registry.yarnpkg.com/babel-helper-optimise-call-expression/-/babel-helper-optimise-call-expression-6.23.0.tgz#f3ee7eed355b4282138b33d02b78369e470622f5" 311 | dependencies: 312 | babel-runtime "^6.22.0" 313 | babel-types "^6.23.0" 314 | 315 | babel-helper-regex@^6.22.0: 316 | version "6.22.0" 317 | resolved "https://registry.yarnpkg.com/babel-helper-regex/-/babel-helper-regex-6.22.0.tgz#79f532be1647b1f0ee3474b5f5c3da58001d247d" 318 | dependencies: 319 | babel-runtime "^6.22.0" 320 | babel-types "^6.22.0" 321 | lodash "^4.2.0" 322 | 323 | babel-helper-remap-async-to-generator@^6.22.0: 324 | version "6.22.0" 325 | resolved "https://registry.yarnpkg.com/babel-helper-remap-async-to-generator/-/babel-helper-remap-async-to-generator-6.22.0.tgz#2186ae73278ed03b8b15ced089609da981053383" 326 | dependencies: 327 | babel-helper-function-name "^6.22.0" 328 | babel-runtime "^6.22.0" 329 | babel-template "^6.22.0" 330 | babel-traverse "^6.22.0" 331 | babel-types "^6.22.0" 332 | 333 | babel-helper-replace-supers@^6.22.0, babel-helper-replace-supers@^6.23.0: 334 | version "6.23.0" 335 | resolved "https://registry.yarnpkg.com/babel-helper-replace-supers/-/babel-helper-replace-supers-6.23.0.tgz#eeaf8ad9b58ec4337ca94223bacdca1f8d9b4bfd" 336 | dependencies: 337 | babel-helper-optimise-call-expression "^6.23.0" 338 | babel-messages "^6.23.0" 339 | babel-runtime "^6.22.0" 340 | babel-template "^6.23.0" 341 | babel-traverse "^6.23.0" 342 | babel-types "^6.23.0" 343 | 344 | babel-helpers@^6.23.0: 345 | version "6.23.0" 346 | resolved "https://registry.yarnpkg.com/babel-helpers/-/babel-helpers-6.23.0.tgz#4f8f2e092d0b6a8808a4bde79c27f1e2ecf0d992" 347 | dependencies: 348 | babel-runtime "^6.22.0" 349 | babel-template "^6.23.0" 350 | 351 | babel-messages@^6.23.0: 352 | version "6.23.0" 353 | resolved "https://registry.yarnpkg.com/babel-messages/-/babel-messages-6.23.0.tgz#f3cdf4703858035b2a2951c6ec5edf6c62f2630e" 354 | dependencies: 355 | babel-runtime "^6.22.0" 356 | 357 | babel-plugin-check-es2015-constants@^6.22.0: 358 | version "6.22.0" 359 | resolved "https://registry.yarnpkg.com/babel-plugin-check-es2015-constants/-/babel-plugin-check-es2015-constants-6.22.0.tgz#35157b101426fd2ffd3da3f75c7d1e91835bbf8a" 360 | dependencies: 361 | babel-runtime "^6.22.0" 362 | 363 | babel-plugin-closure-elimination@^1.1.14: 364 | version "1.1.14" 365 | resolved "https://registry.yarnpkg.com/babel-plugin-closure-elimination/-/babel-plugin-closure-elimination-1.1.14.tgz#f93f61d69d37293a767d27f8e2c826e359a5d6a0" 366 | dependencies: 367 | babel-polyfill "^6.3.14" 368 | 369 | babel-plugin-external-helpers@^6.18.0: 370 | version "6.22.0" 371 | resolved "https://registry.yarnpkg.com/babel-plugin-external-helpers/-/babel-plugin-external-helpers-6.22.0.tgz#2285f48b02bd5dede85175caf8c62e86adccefa1" 372 | dependencies: 373 | babel-runtime "^6.22.0" 374 | 375 | babel-plugin-syntax-async-functions@^6.8.0: 376 | version "6.13.0" 377 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-async-functions/-/babel-plugin-syntax-async-functions-6.13.0.tgz#cad9cad1191b5ad634bf30ae0872391e0647be95" 378 | 379 | babel-plugin-syntax-async-generators@^6.5.0: 380 | version "6.13.0" 381 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-async-generators/-/babel-plugin-syntax-async-generators-6.13.0.tgz#6bc963ebb16eccbae6b92b596eb7f35c342a8b9a" 382 | 383 | babel-plugin-syntax-class-properties@^6.8.0: 384 | version "6.13.0" 385 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-class-properties/-/babel-plugin-syntax-class-properties-6.13.0.tgz#d7eb23b79a317f8543962c505b827c7d6cac27de" 386 | 387 | babel-plugin-syntax-decorators@^6.13.0: 388 | version "6.13.0" 389 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-decorators/-/babel-plugin-syntax-decorators-6.13.0.tgz#312563b4dbde3cc806cee3e416cceeaddd11ac0b" 390 | 391 | babel-plugin-syntax-dynamic-import@^6.18.0: 392 | version "6.18.0" 393 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-dynamic-import/-/babel-plugin-syntax-dynamic-import-6.18.0.tgz#8d6a26229c83745a9982a441051572caa179b1da" 394 | 395 | babel-plugin-syntax-exponentiation-operator@^6.8.0: 396 | version "6.13.0" 397 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-exponentiation-operator/-/babel-plugin-syntax-exponentiation-operator-6.13.0.tgz#9ee7e8337290da95288201a6a57f4170317830de" 398 | 399 | babel-plugin-syntax-object-rest-spread@^6.8.0: 400 | version "6.13.0" 401 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-object-rest-spread/-/babel-plugin-syntax-object-rest-spread-6.13.0.tgz#fd6536f2bce13836ffa3a5458c4903a597bb3bf5" 402 | 403 | babel-plugin-syntax-trailing-function-commas@^6.22.0: 404 | version "6.22.0" 405 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-trailing-function-commas/-/babel-plugin-syntax-trailing-function-commas-6.22.0.tgz#ba0360937f8d06e40180a43fe0d5616fff532cf3" 406 | 407 | babel-plugin-tailcall-optimization@^1.0.11: 408 | version "1.0.11" 409 | resolved "https://registry.yarnpkg.com/babel-plugin-tailcall-optimization/-/babel-plugin-tailcall-optimization-1.0.11.tgz#74072e57a365da27fbf7722cc1c553e71caf45e5" 410 | 411 | babel-plugin-transform-async-generator-functions@^6.22.0: 412 | version "6.22.0" 413 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-async-generator-functions/-/babel-plugin-transform-async-generator-functions-6.22.0.tgz#a720a98153a7596f204099cd5409f4b3c05bab46" 414 | dependencies: 415 | babel-helper-remap-async-to-generator "^6.22.0" 416 | babel-plugin-syntax-async-generators "^6.5.0" 417 | babel-runtime "^6.22.0" 418 | 419 | babel-plugin-transform-async-to-generator@^6.22.0: 420 | version "6.22.0" 421 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-async-to-generator/-/babel-plugin-transform-async-to-generator-6.22.0.tgz#194b6938ec195ad36efc4c33a971acf00d8cd35e" 422 | dependencies: 423 | babel-helper-remap-async-to-generator "^6.22.0" 424 | babel-plugin-syntax-async-functions "^6.8.0" 425 | babel-runtime "^6.22.0" 426 | 427 | babel-plugin-transform-class-properties@^6.22.0: 428 | version "6.23.0" 429 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-class-properties/-/babel-plugin-transform-class-properties-6.23.0.tgz#187b747ee404399013563c993db038f34754ac3b" 430 | dependencies: 431 | babel-helper-function-name "^6.23.0" 432 | babel-plugin-syntax-class-properties "^6.8.0" 433 | babel-runtime "^6.22.0" 434 | babel-template "^6.23.0" 435 | 436 | babel-plugin-transform-decorators@^6.22.0: 437 | version "6.22.0" 438 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-decorators/-/babel-plugin-transform-decorators-6.22.0.tgz#c03635b27a23b23b7224f49232c237a73988d27c" 439 | dependencies: 440 | babel-helper-explode-class "^6.22.0" 441 | babel-plugin-syntax-decorators "^6.13.0" 442 | babel-runtime "^6.22.0" 443 | babel-template "^6.22.0" 444 | babel-types "^6.22.0" 445 | 446 | babel-plugin-transform-es2015-arrow-functions@^6.22.0: 447 | version "6.22.0" 448 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-arrow-functions/-/babel-plugin-transform-es2015-arrow-functions-6.22.0.tgz#452692cb711d5f79dc7f85e440ce41b9f244d221" 449 | dependencies: 450 | babel-runtime "^6.22.0" 451 | 452 | babel-plugin-transform-es2015-block-scoped-functions@^6.22.0: 453 | version "6.22.0" 454 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-block-scoped-functions/-/babel-plugin-transform-es2015-block-scoped-functions-6.22.0.tgz#bbc51b49f964d70cb8d8e0b94e820246ce3a6141" 455 | dependencies: 456 | babel-runtime "^6.22.0" 457 | 458 | babel-plugin-transform-es2015-block-scoping@^6.22.0: 459 | version "6.23.0" 460 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-block-scoping/-/babel-plugin-transform-es2015-block-scoping-6.23.0.tgz#e48895cf0b375be148cd7c8879b422707a053b51" 461 | dependencies: 462 | babel-runtime "^6.22.0" 463 | babel-template "^6.23.0" 464 | babel-traverse "^6.23.0" 465 | babel-types "^6.23.0" 466 | lodash "^4.2.0" 467 | 468 | babel-plugin-transform-es2015-classes@^6.22.0, babel-plugin-transform-es2015-classes@^6.9.0: 469 | version "6.23.0" 470 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-classes/-/babel-plugin-transform-es2015-classes-6.23.0.tgz#49b53f326202a2fd1b3bbaa5e2edd8a4f78643c1" 471 | dependencies: 472 | babel-helper-define-map "^6.23.0" 473 | babel-helper-function-name "^6.23.0" 474 | babel-helper-optimise-call-expression "^6.23.0" 475 | babel-helper-replace-supers "^6.23.0" 476 | babel-messages "^6.23.0" 477 | babel-runtime "^6.22.0" 478 | babel-template "^6.23.0" 479 | babel-traverse "^6.23.0" 480 | babel-types "^6.23.0" 481 | 482 | babel-plugin-transform-es2015-computed-properties@^6.22.0: 483 | version "6.22.0" 484 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-computed-properties/-/babel-plugin-transform-es2015-computed-properties-6.22.0.tgz#7c383e9629bba4820c11b0425bdd6290f7f057e7" 485 | dependencies: 486 | babel-runtime "^6.22.0" 487 | babel-template "^6.22.0" 488 | 489 | babel-plugin-transform-es2015-destructuring@^6.22.0: 490 | version "6.23.0" 491 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-destructuring/-/babel-plugin-transform-es2015-destructuring-6.23.0.tgz#997bb1f1ab967f682d2b0876fe358d60e765c56d" 492 | dependencies: 493 | babel-runtime "^6.22.0" 494 | 495 | babel-plugin-transform-es2015-duplicate-keys@^6.22.0: 496 | version "6.22.0" 497 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-duplicate-keys/-/babel-plugin-transform-es2015-duplicate-keys-6.22.0.tgz#672397031c21610d72dd2bbb0ba9fb6277e1c36b" 498 | dependencies: 499 | babel-runtime "^6.22.0" 500 | babel-types "^6.22.0" 501 | 502 | babel-plugin-transform-es2015-for-of@^6.22.0: 503 | version "6.23.0" 504 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-for-of/-/babel-plugin-transform-es2015-for-of-6.23.0.tgz#f47c95b2b613df1d3ecc2fdb7573623c75248691" 505 | dependencies: 506 | babel-runtime "^6.22.0" 507 | 508 | babel-plugin-transform-es2015-function-name@^6.22.0: 509 | version "6.22.0" 510 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-function-name/-/babel-plugin-transform-es2015-function-name-6.22.0.tgz#f5fcc8b09093f9a23c76ac3d9e392c3ec4b77104" 511 | dependencies: 512 | babel-helper-function-name "^6.22.0" 513 | babel-runtime "^6.22.0" 514 | babel-types "^6.22.0" 515 | 516 | babel-plugin-transform-es2015-literals@^6.22.0: 517 | version "6.22.0" 518 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-literals/-/babel-plugin-transform-es2015-literals-6.22.0.tgz#4f54a02d6cd66cf915280019a31d31925377ca2e" 519 | dependencies: 520 | babel-runtime "^6.22.0" 521 | 522 | babel-plugin-transform-es2015-modules-amd@^6.24.0: 523 | version "6.24.0" 524 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-modules-amd/-/babel-plugin-transform-es2015-modules-amd-6.24.0.tgz#a1911fb9b7ec7e05a43a63c5995007557bcf6a2e" 525 | dependencies: 526 | babel-plugin-transform-es2015-modules-commonjs "^6.24.0" 527 | babel-runtime "^6.22.0" 528 | babel-template "^6.22.0" 529 | 530 | babel-plugin-transform-es2015-modules-commonjs@^6.24.0: 531 | version "6.24.0" 532 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-modules-commonjs/-/babel-plugin-transform-es2015-modules-commonjs-6.24.0.tgz#e921aefb72c2cc26cb03d107626156413222134f" 533 | dependencies: 534 | babel-plugin-transform-strict-mode "^6.22.0" 535 | babel-runtime "^6.22.0" 536 | babel-template "^6.23.0" 537 | babel-types "^6.23.0" 538 | 539 | babel-plugin-transform-es2015-modules-systemjs@^6.22.0: 540 | version "6.23.0" 541 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-modules-systemjs/-/babel-plugin-transform-es2015-modules-systemjs-6.23.0.tgz#ae3469227ffac39b0310d90fec73bfdc4f6317b0" 542 | dependencies: 543 | babel-helper-hoist-variables "^6.22.0" 544 | babel-runtime "^6.22.0" 545 | babel-template "^6.23.0" 546 | 547 | babel-plugin-transform-es2015-modules-umd@^6.24.0: 548 | version "6.24.0" 549 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-modules-umd/-/babel-plugin-transform-es2015-modules-umd-6.24.0.tgz#fd5fa63521cae8d273927c3958afd7c067733450" 550 | dependencies: 551 | babel-plugin-transform-es2015-modules-amd "^6.24.0" 552 | babel-runtime "^6.22.0" 553 | babel-template "^6.23.0" 554 | 555 | babel-plugin-transform-es2015-object-super@^6.22.0: 556 | version "6.22.0" 557 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-object-super/-/babel-plugin-transform-es2015-object-super-6.22.0.tgz#daa60e114a042ea769dd53fe528fc82311eb98fc" 558 | dependencies: 559 | babel-helper-replace-supers "^6.22.0" 560 | babel-runtime "^6.22.0" 561 | 562 | babel-plugin-transform-es2015-parameters@^6.22.0: 563 | version "6.23.0" 564 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-parameters/-/babel-plugin-transform-es2015-parameters-6.23.0.tgz#3a2aabb70c8af945d5ce386f1a4250625a83ae3b" 565 | dependencies: 566 | babel-helper-call-delegate "^6.22.0" 567 | babel-helper-get-function-arity "^6.22.0" 568 | babel-runtime "^6.22.0" 569 | babel-template "^6.23.0" 570 | babel-traverse "^6.23.0" 571 | babel-types "^6.23.0" 572 | 573 | babel-plugin-transform-es2015-shorthand-properties@^6.22.0: 574 | version "6.22.0" 575 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-shorthand-properties/-/babel-plugin-transform-es2015-shorthand-properties-6.22.0.tgz#8ba776e0affaa60bff21e921403b8a652a2ff723" 576 | dependencies: 577 | babel-runtime "^6.22.0" 578 | babel-types "^6.22.0" 579 | 580 | babel-plugin-transform-es2015-spread@^6.22.0: 581 | version "6.22.0" 582 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-spread/-/babel-plugin-transform-es2015-spread-6.22.0.tgz#d6d68a99f89aedc4536c81a542e8dd9f1746f8d1" 583 | dependencies: 584 | babel-runtime "^6.22.0" 585 | 586 | babel-plugin-transform-es2015-sticky-regex@^6.22.0: 587 | version "6.22.0" 588 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-sticky-regex/-/babel-plugin-transform-es2015-sticky-regex-6.22.0.tgz#ab316829e866ee3f4b9eb96939757d19a5bc4593" 589 | dependencies: 590 | babel-helper-regex "^6.22.0" 591 | babel-runtime "^6.22.0" 592 | babel-types "^6.22.0" 593 | 594 | babel-plugin-transform-es2015-template-literals@^6.22.0: 595 | version "6.22.0" 596 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-template-literals/-/babel-plugin-transform-es2015-template-literals-6.22.0.tgz#a84b3450f7e9f8f1f6839d6d687da84bb1236d8d" 597 | dependencies: 598 | babel-runtime "^6.22.0" 599 | 600 | babel-plugin-transform-es2015-typeof-symbol@^6.22.0: 601 | version "6.23.0" 602 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-typeof-symbol/-/babel-plugin-transform-es2015-typeof-symbol-6.23.0.tgz#dec09f1cddff94b52ac73d505c84df59dcceb372" 603 | dependencies: 604 | babel-runtime "^6.22.0" 605 | 606 | babel-plugin-transform-es2015-unicode-regex@^6.22.0: 607 | version "6.22.0" 608 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-unicode-regex/-/babel-plugin-transform-es2015-unicode-regex-6.22.0.tgz#8d9cc27e7ee1decfe65454fb986452a04a613d20" 609 | dependencies: 610 | babel-helper-regex "^6.22.0" 611 | babel-runtime "^6.22.0" 612 | regexpu-core "^2.0.0" 613 | 614 | babel-plugin-transform-exponentiation-operator@^6.22.0: 615 | version "6.22.0" 616 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-exponentiation-operator/-/babel-plugin-transform-exponentiation-operator-6.22.0.tgz#d57c8335281918e54ef053118ce6eb108468084d" 617 | dependencies: 618 | babel-helper-builder-binary-assignment-operator-visitor "^6.22.0" 619 | babel-plugin-syntax-exponentiation-operator "^6.8.0" 620 | babel-runtime "^6.22.0" 621 | 622 | babel-plugin-transform-object-rest-spread@^6.22.0: 623 | version "6.23.0" 624 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-object-rest-spread/-/babel-plugin-transform-object-rest-spread-6.23.0.tgz#875d6bc9be761c58a2ae3feee5dc4895d8c7f921" 625 | dependencies: 626 | babel-plugin-syntax-object-rest-spread "^6.8.0" 627 | babel-runtime "^6.22.0" 628 | 629 | babel-plugin-transform-regenerator@^6.22.0: 630 | version "6.22.0" 631 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-regenerator/-/babel-plugin-transform-regenerator-6.22.0.tgz#65740593a319c44522157538d690b84094617ea6" 632 | dependencies: 633 | regenerator-transform "0.9.8" 634 | 635 | babel-plugin-transform-runtime@^6.15.0: 636 | version "6.23.0" 637 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-runtime/-/babel-plugin-transform-runtime-6.23.0.tgz#88490d446502ea9b8e7efb0fe09ec4d99479b1ee" 638 | dependencies: 639 | babel-runtime "^6.22.0" 640 | 641 | babel-plugin-transform-strict-mode@^6.22.0: 642 | version "6.22.0" 643 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-strict-mode/-/babel-plugin-transform-strict-mode-6.22.0.tgz#e008df01340fdc87e959da65991b7e05970c8c7c" 644 | dependencies: 645 | babel-runtime "^6.22.0" 646 | babel-types "^6.22.0" 647 | 648 | babel-polyfill@^6.23.0, babel-polyfill@^6.3.14: 649 | version "6.23.0" 650 | resolved "https://registry.yarnpkg.com/babel-polyfill/-/babel-polyfill-6.23.0.tgz#8364ca62df8eafb830499f699177466c3b03499d" 651 | dependencies: 652 | babel-runtime "^6.22.0" 653 | core-js "^2.4.0" 654 | regenerator-runtime "^0.10.0" 655 | 656 | babel-preset-es2015@^6.18.0: 657 | version "6.24.0" 658 | resolved "https://registry.yarnpkg.com/babel-preset-es2015/-/babel-preset-es2015-6.24.0.tgz#c162d68b1932696e036cd3110dc1ccd303d2673a" 659 | dependencies: 660 | babel-plugin-check-es2015-constants "^6.22.0" 661 | babel-plugin-transform-es2015-arrow-functions "^6.22.0" 662 | babel-plugin-transform-es2015-block-scoped-functions "^6.22.0" 663 | babel-plugin-transform-es2015-block-scoping "^6.22.0" 664 | babel-plugin-transform-es2015-classes "^6.22.0" 665 | babel-plugin-transform-es2015-computed-properties "^6.22.0" 666 | babel-plugin-transform-es2015-destructuring "^6.22.0" 667 | babel-plugin-transform-es2015-duplicate-keys "^6.22.0" 668 | babel-plugin-transform-es2015-for-of "^6.22.0" 669 | babel-plugin-transform-es2015-function-name "^6.22.0" 670 | babel-plugin-transform-es2015-literals "^6.22.0" 671 | babel-plugin-transform-es2015-modules-amd "^6.24.0" 672 | babel-plugin-transform-es2015-modules-commonjs "^6.24.0" 673 | babel-plugin-transform-es2015-modules-systemjs "^6.22.0" 674 | babel-plugin-transform-es2015-modules-umd "^6.24.0" 675 | babel-plugin-transform-es2015-object-super "^6.22.0" 676 | babel-plugin-transform-es2015-parameters "^6.22.0" 677 | babel-plugin-transform-es2015-shorthand-properties "^6.22.0" 678 | babel-plugin-transform-es2015-spread "^6.22.0" 679 | babel-plugin-transform-es2015-sticky-regex "^6.22.0" 680 | babel-plugin-transform-es2015-template-literals "^6.22.0" 681 | babel-plugin-transform-es2015-typeof-symbol "^6.22.0" 682 | babel-plugin-transform-es2015-unicode-regex "^6.22.0" 683 | babel-plugin-transform-regenerator "^6.22.0" 684 | 685 | babel-preset-stage-2@^6.18.0: 686 | version "6.22.0" 687 | resolved "https://registry.yarnpkg.com/babel-preset-stage-2/-/babel-preset-stage-2-6.22.0.tgz#ccd565f19c245cade394b21216df704a73b27c07" 688 | dependencies: 689 | babel-plugin-syntax-dynamic-import "^6.18.0" 690 | babel-plugin-transform-class-properties "^6.22.0" 691 | babel-plugin-transform-decorators "^6.22.0" 692 | babel-preset-stage-3 "^6.22.0" 693 | 694 | babel-preset-stage-3@^6.22.0: 695 | version "6.22.0" 696 | resolved "https://registry.yarnpkg.com/babel-preset-stage-3/-/babel-preset-stage-3-6.22.0.tgz#a4e92bbace7456fafdf651d7a7657ee0bbca9c2e" 697 | dependencies: 698 | babel-plugin-syntax-trailing-function-commas "^6.22.0" 699 | babel-plugin-transform-async-generator-functions "^6.22.0" 700 | babel-plugin-transform-async-to-generator "^6.22.0" 701 | babel-plugin-transform-exponentiation-operator "^6.22.0" 702 | babel-plugin-transform-object-rest-spread "^6.22.0" 703 | 704 | babel-register@^6.24.0: 705 | version "6.24.0" 706 | resolved "https://registry.yarnpkg.com/babel-register/-/babel-register-6.24.0.tgz#5e89f8463ba9970356d02eb07dabe3308b080cfd" 707 | dependencies: 708 | babel-core "^6.24.0" 709 | babel-runtime "^6.22.0" 710 | core-js "^2.4.0" 711 | home-or-tmp "^2.0.0" 712 | lodash "^4.2.0" 713 | mkdirp "^0.5.1" 714 | source-map-support "^0.4.2" 715 | 716 | babel-runtime@^6.18.0, babel-runtime@^6.22.0: 717 | version "6.23.0" 718 | resolved "https://registry.yarnpkg.com/babel-runtime/-/babel-runtime-6.23.0.tgz#0a9489f144de70efb3ce4300accdb329e2fc543b" 719 | dependencies: 720 | core-js "^2.4.0" 721 | regenerator-runtime "^0.10.0" 722 | 723 | babel-template@^6.22.0, babel-template@^6.23.0: 724 | version "6.23.0" 725 | resolved "https://registry.yarnpkg.com/babel-template/-/babel-template-6.23.0.tgz#04d4f270adbb3aa704a8143ae26faa529238e638" 726 | dependencies: 727 | babel-runtime "^6.22.0" 728 | babel-traverse "^6.23.0" 729 | babel-types "^6.23.0" 730 | babylon "^6.11.0" 731 | lodash "^4.2.0" 732 | 733 | babel-traverse@^6.22.0, babel-traverse@^6.23.0, babel-traverse@^6.23.1: 734 | version "6.23.1" 735 | resolved "https://registry.yarnpkg.com/babel-traverse/-/babel-traverse-6.23.1.tgz#d3cb59010ecd06a97d81310065f966b699e14f48" 736 | dependencies: 737 | babel-code-frame "^6.22.0" 738 | babel-messages "^6.23.0" 739 | babel-runtime "^6.22.0" 740 | babel-types "^6.23.0" 741 | babylon "^6.15.0" 742 | debug "^2.2.0" 743 | globals "^9.0.0" 744 | invariant "^2.2.0" 745 | lodash "^4.2.0" 746 | 747 | babel-types@^6.19.0, babel-types@^6.22.0, babel-types@^6.23.0: 748 | version "6.23.0" 749 | resolved "https://registry.yarnpkg.com/babel-types/-/babel-types-6.23.0.tgz#bb17179d7538bad38cd0c9e115d340f77e7e9acf" 750 | dependencies: 751 | babel-runtime "^6.22.0" 752 | esutils "^2.0.2" 753 | lodash "^4.2.0" 754 | to-fast-properties "^1.0.1" 755 | 756 | babylon@^6.11.0, babylon@^6.15.0: 757 | version "6.16.1" 758 | resolved "https://registry.yarnpkg.com/babylon/-/babylon-6.16.1.tgz#30c5a22f481978a9e7f8cdfdf496b11d94b404d3" 759 | 760 | backo2@1.0.2: 761 | version "1.0.2" 762 | resolved "https://registry.yarnpkg.com/backo2/-/backo2-1.0.2.tgz#31ab1ac8b129363463e35b3ebb69f4dfcfba7947" 763 | 764 | balanced-match@^0.4.1: 765 | version "0.4.2" 766 | resolved "https://registry.yarnpkg.com/balanced-match/-/balanced-match-0.4.2.tgz#cb3f3e3c732dc0f01ee70b403f302e61d7709838" 767 | 768 | base64-arraybuffer@0.1.5: 769 | version "0.1.5" 770 | resolved "https://registry.yarnpkg.com/base64-arraybuffer/-/base64-arraybuffer-0.1.5.tgz#73926771923b5a19747ad666aa5cd4bf9c6e9ce8" 771 | 772 | base64id@0.1.0: 773 | version "0.1.0" 774 | resolved "https://registry.yarnpkg.com/base64id/-/base64id-0.1.0.tgz#02ce0fdeee0cef4f40080e1e73e834f0b1bfce3f" 775 | 776 | batch@0.5.3: 777 | version "0.5.3" 778 | resolved "https://registry.yarnpkg.com/batch/-/batch-0.5.3.tgz#3f3414f380321743bfc1042f9a83ff1d5824d464" 779 | 780 | bcrypt-pbkdf@^1.0.0: 781 | version "1.0.1" 782 | resolved "https://registry.yarnpkg.com/bcrypt-pbkdf/-/bcrypt-pbkdf-1.0.1.tgz#63bc5dcb61331b92bc05fd528953c33462a06f8d" 783 | dependencies: 784 | tweetnacl "^0.14.3" 785 | 786 | better-assert@~1.0.0: 787 | version "1.0.2" 788 | resolved "https://registry.yarnpkg.com/better-assert/-/better-assert-1.0.2.tgz#40866b9e1b9e0b55b481894311e68faffaebc522" 789 | dependencies: 790 | callsite "1.0.0" 791 | 792 | binary-extensions@^1.0.0: 793 | version "1.8.0" 794 | resolved "https://registry.yarnpkg.com/binary-extensions/-/binary-extensions-1.8.0.tgz#48ec8d16df4377eae5fa5884682480af4d95c774" 795 | 796 | blob@0.0.4: 797 | version "0.0.4" 798 | resolved "https://registry.yarnpkg.com/blob/-/blob-0.0.4.tgz#bcf13052ca54463f30f9fc7e95b9a47630a94921" 799 | 800 | block-stream@*: 801 | version "0.0.9" 802 | resolved "https://registry.yarnpkg.com/block-stream/-/block-stream-0.0.9.tgz#13ebfe778a03205cfe03751481ebb4b3300c126a" 803 | dependencies: 804 | inherits "~2.0.0" 805 | 806 | boom@2.x.x: 807 | version "2.10.1" 808 | resolved "https://registry.yarnpkg.com/boom/-/boom-2.10.1.tgz#39c8918ceff5799f83f9492a848f625add0c766f" 809 | dependencies: 810 | hoek "2.x.x" 811 | 812 | brace-expansion@^1.0.0: 813 | version "1.1.6" 814 | resolved "https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-1.1.6.tgz#7197d7eaa9b87e648390ea61fc66c84427420df9" 815 | dependencies: 816 | balanced-match "^0.4.1" 817 | concat-map "0.0.1" 818 | 819 | braces@^1.8.2: 820 | version "1.8.5" 821 | resolved "https://registry.yarnpkg.com/braces/-/braces-1.8.5.tgz#ba77962e12dff969d6b76711e914b737857bf6a7" 822 | dependencies: 823 | expand-range "^1.8.1" 824 | preserve "^0.2.0" 825 | repeat-element "^1.1.2" 826 | 827 | browser-resolve@^1.11.0: 828 | version "1.11.2" 829 | resolved "https://registry.yarnpkg.com/browser-resolve/-/browser-resolve-1.11.2.tgz#8ff09b0a2c421718a1051c260b32e48f442938ce" 830 | dependencies: 831 | resolve "1.1.7" 832 | 833 | browser-sync-client@2.4.5: 834 | version "2.4.5" 835 | resolved "https://registry.yarnpkg.com/browser-sync-client/-/browser-sync-client-2.4.5.tgz#976afab1a54f255baa38fe22ae3c0d3753ad337b" 836 | dependencies: 837 | etag "^1.7.0" 838 | fresh "^0.3.0" 839 | 840 | browser-sync-ui@0.6.3: 841 | version "0.6.3" 842 | resolved "https://registry.yarnpkg.com/browser-sync-ui/-/browser-sync-ui-0.6.3.tgz#640a537c180689303d5be92bc476b9ebc441c0bc" 843 | dependencies: 844 | async-each-series "0.1.1" 845 | connect-history-api-fallback "^1.1.0" 846 | immutable "^3.7.6" 847 | server-destroy "1.0.1" 848 | stream-throttle "^0.1.3" 849 | weinre "^2.0.0-pre-I0Z7U9OV" 850 | 851 | browser-sync@^2.17.5: 852 | version "2.18.8" 853 | resolved "https://registry.yarnpkg.com/browser-sync/-/browser-sync-2.18.8.tgz#2fb4de253798d7cfb839afb9c2f801968490cec2" 854 | dependencies: 855 | browser-sync-client "2.4.5" 856 | browser-sync-ui "0.6.3" 857 | bs-recipes "1.3.4" 858 | chokidar "1.6.1" 859 | connect "3.5.0" 860 | dev-ip "^1.0.1" 861 | easy-extender "2.3.2" 862 | eazy-logger "3.0.2" 863 | emitter-steward "^1.0.0" 864 | fs-extra "1.0.0" 865 | http-proxy "1.15.2" 866 | immutable "3.8.1" 867 | localtunnel "1.8.2" 868 | micromatch "2.3.11" 869 | opn "4.0.2" 870 | portscanner "2.1.1" 871 | qs "6.2.1" 872 | resp-modifier "6.0.2" 873 | rx "4.1.0" 874 | serve-index "1.8.0" 875 | serve-static "1.11.1" 876 | server-destroy "1.0.1" 877 | socket.io "1.6.0" 878 | socket.io-client "1.6.0" 879 | ua-parser-js "0.7.12" 880 | yargs "6.4.0" 881 | 882 | bs-recipes@1.3.4: 883 | version "1.3.4" 884 | resolved "https://registry.yarnpkg.com/bs-recipes/-/bs-recipes-1.3.4.tgz#0d2d4d48a718c8c044769fdc4f89592dc8b69585" 885 | 886 | buble@^0.12.0: 887 | version "0.12.5" 888 | resolved "https://registry.yarnpkg.com/buble/-/buble-0.12.5.tgz#c66ffe92f9f4a3c65d3256079b711e2bd0bc5013" 889 | dependencies: 890 | acorn "^3.1.0" 891 | acorn-jsx "^3.0.1" 892 | acorn-object-spread "^1.0.0" 893 | chalk "^1.1.3" 894 | magic-string "^0.14.0" 895 | minimist "^1.2.0" 896 | os-homedir "^1.0.1" 897 | 898 | buble@^0.15.0: 899 | version "0.15.2" 900 | resolved "https://registry.yarnpkg.com/buble/-/buble-0.15.2.tgz#547fc47483f8e5e8176d82aa5ebccb183b02d613" 901 | dependencies: 902 | acorn "^3.3.0" 903 | acorn-jsx "^3.0.1" 904 | acorn-object-spread "^1.0.0" 905 | chalk "^1.1.3" 906 | magic-string "^0.14.0" 907 | minimist "^1.2.0" 908 | os-homedir "^1.0.1" 909 | 910 | bubleify@^0.5.1: 911 | version "0.5.1" 912 | resolved "https://registry.yarnpkg.com/bubleify/-/bubleify-0.5.1.tgz#f65c47cee31b80cad8b9e747bbe187d7fe51e927" 913 | dependencies: 914 | buble "^0.12.0" 915 | object-assign "^4.0.1" 916 | 917 | buffer-shims@^1.0.0: 918 | version "1.0.0" 919 | resolved "https://registry.yarnpkg.com/buffer-shims/-/buffer-shims-1.0.0.tgz#9978ce317388c649ad8793028c3477ef044a8b51" 920 | 921 | builtin-modules@^1.0.0, builtin-modules@^1.1.0: 922 | version "1.1.1" 923 | resolved "https://registry.yarnpkg.com/builtin-modules/-/builtin-modules-1.1.1.tgz#270f076c5a72c02f5b65a47df94c5fe3a278892f" 924 | 925 | caller-path@^0.1.0: 926 | version "0.1.0" 927 | resolved "https://registry.yarnpkg.com/caller-path/-/caller-path-0.1.0.tgz#94085ef63581ecd3daa92444a8fe94e82577751f" 928 | dependencies: 929 | callsites "^0.2.0" 930 | 931 | callsite@1.0.0: 932 | version "1.0.0" 933 | resolved "https://registry.yarnpkg.com/callsite/-/callsite-1.0.0.tgz#280398e5d664bd74038b6f0905153e6e8af1bc20" 934 | 935 | callsites@^0.2.0: 936 | version "0.2.0" 937 | resolved "https://registry.yarnpkg.com/callsites/-/callsites-0.2.0.tgz#afab96262910a7f33c19a5775825c69f34e350ca" 938 | 939 | camel-case@3.0.x: 940 | version "3.0.0" 941 | resolved "https://registry.yarnpkg.com/camel-case/-/camel-case-3.0.0.tgz#ca3c3688a4e9cf3a4cda777dc4dcbc713249cf73" 942 | dependencies: 943 | no-case "^2.2.0" 944 | upper-case "^1.1.1" 945 | 946 | camelcase@^1.0.2, camelcase@^1.2.1: 947 | version "1.2.1" 948 | resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-1.2.1.tgz#9bb5304d2e0b56698b2c758b08a3eaa9daa58a39" 949 | 950 | camelcase@^3.0.0: 951 | version "3.0.0" 952 | resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-3.0.0.tgz#32fc4b9fcdaf845fcdf7e73bb97cac2261f0ab0a" 953 | 954 | caseless@~0.11.0: 955 | version "0.11.0" 956 | resolved "https://registry.yarnpkg.com/caseless/-/caseless-0.11.0.tgz#715b96ea9841593cc33067923f5ec60ebda4f7d7" 957 | 958 | caseless@~0.12.0: 959 | version "0.12.0" 960 | resolved "https://registry.yarnpkg.com/caseless/-/caseless-0.12.0.tgz#1b681c21ff84033c826543090689420d187151dc" 961 | 962 | center-align@^0.1.1: 963 | version "0.1.3" 964 | resolved "https://registry.yarnpkg.com/center-align/-/center-align-0.1.3.tgz#aa0d32629b6ee972200411cbd4461c907bc2b7ad" 965 | dependencies: 966 | align-text "^0.1.3" 967 | lazy-cache "^1.0.3" 968 | 969 | chalk@^1.0.0, chalk@^1.1.0, chalk@^1.1.1, chalk@^1.1.3: 970 | version "1.1.3" 971 | resolved "https://registry.yarnpkg.com/chalk/-/chalk-1.1.3.tgz#a8115c55e4a702fe4d150abd3872822a7e09fc98" 972 | dependencies: 973 | ansi-styles "^2.2.1" 974 | escape-string-regexp "^1.0.2" 975 | has-ansi "^2.0.0" 976 | strip-ansi "^3.0.0" 977 | supports-color "^2.0.0" 978 | 979 | chokidar@1.6.1, chokidar@^1.6.1: 980 | version "1.6.1" 981 | resolved "https://registry.yarnpkg.com/chokidar/-/chokidar-1.6.1.tgz#2f4447ab5e96e50fb3d789fd90d4c72e0e4c70c2" 982 | dependencies: 983 | anymatch "^1.3.0" 984 | async-each "^1.0.0" 985 | glob-parent "^2.0.0" 986 | inherits "^2.0.1" 987 | is-binary-path "^1.0.0" 988 | is-glob "^2.0.0" 989 | path-is-absolute "^1.0.0" 990 | readdirp "^2.0.0" 991 | optionalDependencies: 992 | fsevents "^1.0.0" 993 | 994 | circular-json@^0.3.1: 995 | version "0.3.1" 996 | resolved "https://registry.yarnpkg.com/circular-json/-/circular-json-0.3.1.tgz#be8b36aefccde8b3ca7aa2d6afc07a37242c0d2d" 997 | 998 | clean-css@4.0.x: 999 | version "4.0.10" 1000 | resolved "https://registry.yarnpkg.com/clean-css/-/clean-css-4.0.10.tgz#6be448d6ba8c767654ebe11f158b97a887cb713f" 1001 | dependencies: 1002 | source-map "0.5.x" 1003 | 1004 | cli-cursor@^1.0.1: 1005 | version "1.0.2" 1006 | resolved "https://registry.yarnpkg.com/cli-cursor/-/cli-cursor-1.0.2.tgz#64da3f7d56a54412e59794bd62dc35295e8f2987" 1007 | dependencies: 1008 | restore-cursor "^1.0.1" 1009 | 1010 | cli-width@^2.0.0: 1011 | version "2.1.0" 1012 | resolved "https://registry.yarnpkg.com/cli-width/-/cli-width-2.1.0.tgz#b234ca209b29ef66fc518d9b98d5847b00edf00a" 1013 | 1014 | cliui@^2.1.0: 1015 | version "2.1.0" 1016 | resolved "https://registry.yarnpkg.com/cliui/-/cliui-2.1.0.tgz#4b475760ff80264c762c3a1719032e91c7fea0d1" 1017 | dependencies: 1018 | center-align "^0.1.1" 1019 | right-align "^0.1.1" 1020 | wordwrap "0.0.2" 1021 | 1022 | cliui@^3.0.3, cliui@^3.2.0: 1023 | version "3.2.0" 1024 | resolved "https://registry.yarnpkg.com/cliui/-/cliui-3.2.0.tgz#120601537a916d29940f934da3b48d585a39213d" 1025 | dependencies: 1026 | string-width "^1.0.1" 1027 | strip-ansi "^3.0.1" 1028 | wrap-ansi "^2.0.0" 1029 | 1030 | co@^4.6.0: 1031 | version "4.6.0" 1032 | resolved "https://registry.yarnpkg.com/co/-/co-4.6.0.tgz#6ea6bdf3d853ae54ccb8e47bfa0bf3f9031fb184" 1033 | 1034 | code-point-at@^1.0.0: 1035 | version "1.1.0" 1036 | resolved "https://registry.yarnpkg.com/code-point-at/-/code-point-at-1.1.0.tgz#0d070b4d043a5bea33a2f1a40e2edb3d9a4ccf77" 1037 | 1038 | combined-stream@^1.0.5, combined-stream@~1.0.5: 1039 | version "1.0.5" 1040 | resolved "https://registry.yarnpkg.com/combined-stream/-/combined-stream-1.0.5.tgz#938370a57b4a51dea2c77c15d5c5fdf895164009" 1041 | dependencies: 1042 | delayed-stream "~1.0.0" 1043 | 1044 | commander@2.9.x, commander@^2.2.0, commander@^2.8.1, commander@^2.9.0: 1045 | version "2.9.0" 1046 | resolved "https://registry.yarnpkg.com/commander/-/commander-2.9.0.tgz#9c99094176e12240cb22d6c5146098400fe0f7d4" 1047 | dependencies: 1048 | graceful-readlink ">= 1.0.0" 1049 | 1050 | component-bind@1.0.0: 1051 | version "1.0.0" 1052 | resolved "https://registry.yarnpkg.com/component-bind/-/component-bind-1.0.0.tgz#00c608ab7dcd93897c0009651b1d3a8e1e73bbd1" 1053 | 1054 | component-emitter@1.1.2: 1055 | version "1.1.2" 1056 | resolved "https://registry.yarnpkg.com/component-emitter/-/component-emitter-1.1.2.tgz#296594f2753daa63996d2af08d15a95116c9aec3" 1057 | 1058 | component-emitter@1.2.1: 1059 | version "1.2.1" 1060 | resolved "https://registry.yarnpkg.com/component-emitter/-/component-emitter-1.2.1.tgz#137918d6d78283f7df7a6b7c5a63e140e69425e6" 1061 | 1062 | component-inherit@0.0.3: 1063 | version "0.0.3" 1064 | resolved "https://registry.yarnpkg.com/component-inherit/-/component-inherit-0.0.3.tgz#645fc4adf58b72b649d5cae65135619db26ff143" 1065 | 1066 | concat-map@0.0.1: 1067 | version "0.0.1" 1068 | resolved "https://registry.yarnpkg.com/concat-map/-/concat-map-0.0.1.tgz#d8a96bd77fd68df7793a73036a3ba0d5405d477b" 1069 | 1070 | concat-stream@^1.5.2: 1071 | version "1.6.0" 1072 | resolved "https://registry.yarnpkg.com/concat-stream/-/concat-stream-1.6.0.tgz#0aac662fd52be78964d5532f694784e70110acf7" 1073 | dependencies: 1074 | inherits "^2.0.3" 1075 | readable-stream "^2.2.2" 1076 | typedarray "^0.0.6" 1077 | 1078 | connect-history-api-fallback@^1.1.0: 1079 | version "1.3.0" 1080 | resolved "https://registry.yarnpkg.com/connect-history-api-fallback/-/connect-history-api-fallback-1.3.0.tgz#e51d17f8f0ef0db90a64fdb47de3051556e9f169" 1081 | 1082 | connect@1.x: 1083 | version "1.9.2" 1084 | resolved "https://registry.yarnpkg.com/connect/-/connect-1.9.2.tgz#42880a22e9438ae59a8add74e437f58ae8e52807" 1085 | dependencies: 1086 | formidable "1.0.x" 1087 | mime ">= 0.0.1" 1088 | qs ">= 0.4.0" 1089 | 1090 | connect@3.5.0: 1091 | version "3.5.0" 1092 | resolved "https://registry.yarnpkg.com/connect/-/connect-3.5.0.tgz#b357525a0b4c1f50599cd983e1d9efeea9677198" 1093 | dependencies: 1094 | debug "~2.2.0" 1095 | finalhandler "0.5.0" 1096 | parseurl "~1.3.1" 1097 | utils-merge "1.0.0" 1098 | 1099 | console-control-strings@^1.0.0, console-control-strings@~1.1.0: 1100 | version "1.1.0" 1101 | resolved "https://registry.yarnpkg.com/console-control-strings/-/console-control-strings-1.1.0.tgz#3d7cf4464db6446ea644bf4b39507f9851008e8e" 1102 | 1103 | convert-source-map@^1.1.0: 1104 | version "1.5.0" 1105 | resolved "https://registry.yarnpkg.com/convert-source-map/-/convert-source-map-1.5.0.tgz#9acd70851c6d5dfdd93d9282e5edf94a03ff46b5" 1106 | 1107 | cookie@0.3.1: 1108 | version "0.3.1" 1109 | resolved "https://registry.yarnpkg.com/cookie/-/cookie-0.3.1.tgz#e7e0a1f9ef43b4c8ba925c5c5a96e806d16873bb" 1110 | 1111 | core-js@^2.4.0: 1112 | version "2.4.1" 1113 | resolved "https://registry.yarnpkg.com/core-js/-/core-js-2.4.1.tgz#4de911e667b0eae9124e34254b53aea6fc618d3e" 1114 | 1115 | core-util-is@~1.0.0: 1116 | version "1.0.2" 1117 | resolved "https://registry.yarnpkg.com/core-util-is/-/core-util-is-1.0.2.tgz#b5fd54220aa2bc5ab57aab7140c940754503c1a7" 1118 | 1119 | cryptiles@2.x.x: 1120 | version "2.0.5" 1121 | resolved "https://registry.yarnpkg.com/cryptiles/-/cryptiles-2.0.5.tgz#3bdfecdc608147c1c67202fa291e7dca59eaa3b8" 1122 | dependencies: 1123 | boom "2.x.x" 1124 | 1125 | d@1: 1126 | version "1.0.0" 1127 | resolved "https://registry.yarnpkg.com/d/-/d-1.0.0.tgz#754bb5bfe55451da69a58b94d45f4c5b0462d58f" 1128 | dependencies: 1129 | es5-ext "^0.10.9" 1130 | 1131 | dashdash@^1.12.0: 1132 | version "1.14.1" 1133 | resolved "https://registry.yarnpkg.com/dashdash/-/dashdash-1.14.1.tgz#853cfa0f7cbe2fed5de20326b8dd581035f6e2f0" 1134 | dependencies: 1135 | assert-plus "^1.0.0" 1136 | 1137 | debug@2.2.0, debug@~2.2.0: 1138 | version "2.2.0" 1139 | resolved "https://registry.yarnpkg.com/debug/-/debug-2.2.0.tgz#f87057e995b1a1f6ae6a4960664137bc56f039da" 1140 | dependencies: 1141 | ms "0.7.1" 1142 | 1143 | debug@2.3.3: 1144 | version "2.3.3" 1145 | resolved "https://registry.yarnpkg.com/debug/-/debug-2.3.3.tgz#40c453e67e6e13c901ddec317af8986cda9eff8c" 1146 | dependencies: 1147 | ms "0.7.2" 1148 | 1149 | debug@^2.1.1, debug@^2.2.0: 1150 | version "2.6.3" 1151 | resolved "https://registry.yarnpkg.com/debug/-/debug-2.6.3.tgz#0f7eb8c30965ec08c72accfa0130c8b79984141d" 1152 | dependencies: 1153 | ms "0.7.2" 1154 | 1155 | decamelize@^1.0.0, decamelize@^1.1.1: 1156 | version "1.2.0" 1157 | resolved "https://registry.yarnpkg.com/decamelize/-/decamelize-1.2.0.tgz#f6534d15148269b20352e7bee26f501f9a191290" 1158 | 1159 | deep-extend@~0.4.0: 1160 | version "0.4.1" 1161 | resolved "https://registry.yarnpkg.com/deep-extend/-/deep-extend-0.4.1.tgz#efe4113d08085f4e6f9687759810f807469e2253" 1162 | 1163 | deep-is@~0.1.3: 1164 | version "0.1.3" 1165 | resolved "https://registry.yarnpkg.com/deep-is/-/deep-is-0.1.3.tgz#b369d6fb5dbc13eecf524f91b070feedc357cf34" 1166 | 1167 | del@^2.0.2: 1168 | version "2.2.2" 1169 | resolved "https://registry.yarnpkg.com/del/-/del-2.2.2.tgz#c12c981d067846c84bcaf862cff930d907ffd1a8" 1170 | dependencies: 1171 | globby "^5.0.0" 1172 | is-path-cwd "^1.0.0" 1173 | is-path-in-cwd "^1.0.0" 1174 | object-assign "^4.0.1" 1175 | pify "^2.0.0" 1176 | pinkie-promise "^2.0.0" 1177 | rimraf "^2.2.8" 1178 | 1179 | delayed-stream@~1.0.0: 1180 | version "1.0.0" 1181 | resolved "https://registry.yarnpkg.com/delayed-stream/-/delayed-stream-1.0.0.tgz#df3ae199acadfb7d440aaae0b29e2272b24ec619" 1182 | 1183 | delegates@^1.0.0: 1184 | version "1.0.0" 1185 | resolved "https://registry.yarnpkg.com/delegates/-/delegates-1.0.0.tgz#84c6e159b81904fdca59a0ef44cd870d31250f9a" 1186 | 1187 | depd@~1.1.0: 1188 | version "1.1.0" 1189 | resolved "https://registry.yarnpkg.com/depd/-/depd-1.1.0.tgz#e1bd82c6aab6ced965b97b88b17ed3e528ca18c3" 1190 | 1191 | destroy@~1.0.4: 1192 | version "1.0.4" 1193 | resolved "https://registry.yarnpkg.com/destroy/-/destroy-1.0.4.tgz#978857442c44749e4206613e37946205826abd80" 1194 | 1195 | detect-indent@^4.0.0: 1196 | version "4.0.0" 1197 | resolved "https://registry.yarnpkg.com/detect-indent/-/detect-indent-4.0.0.tgz#f76d064352cdf43a1cb6ce619c4ee3a9475de208" 1198 | dependencies: 1199 | repeating "^2.0.0" 1200 | 1201 | dev-ip@^1.0.1: 1202 | version "1.0.1" 1203 | resolved "https://registry.yarnpkg.com/dev-ip/-/dev-ip-1.0.1.tgz#a76a3ed1855be7a012bb8ac16cb80f3c00dc28f0" 1204 | 1205 | doctrine@^2.0.0: 1206 | version "2.0.0" 1207 | resolved "https://registry.yarnpkg.com/doctrine/-/doctrine-2.0.0.tgz#c73d8d2909d22291e1a007a395804da8b665fe63" 1208 | dependencies: 1209 | esutils "^2.0.2" 1210 | isarray "^1.0.0" 1211 | 1212 | easy-extender@2.3.2: 1213 | version "2.3.2" 1214 | resolved "https://registry.yarnpkg.com/easy-extender/-/easy-extender-2.3.2.tgz#3d3248febe2b159607316d8f9cf491c16648221d" 1215 | dependencies: 1216 | lodash "^3.10.1" 1217 | 1218 | eazy-logger@3.0.2: 1219 | version "3.0.2" 1220 | resolved "https://registry.yarnpkg.com/eazy-logger/-/eazy-logger-3.0.2.tgz#a325aa5e53d13a2225889b2ac4113b2b9636f4fc" 1221 | dependencies: 1222 | tfunk "^3.0.1" 1223 | 1224 | ecc-jsbn@~0.1.1: 1225 | version "0.1.1" 1226 | resolved "https://registry.yarnpkg.com/ecc-jsbn/-/ecc-jsbn-0.1.1.tgz#0fc73a9ed5f0d53c38193398523ef7e543777505" 1227 | dependencies: 1228 | jsbn "~0.1.0" 1229 | 1230 | ee-first@1.1.1: 1231 | version "1.1.1" 1232 | resolved "https://registry.yarnpkg.com/ee-first/-/ee-first-1.1.1.tgz#590c61156b0ae2f4f0255732a158b266bc56b21d" 1233 | 1234 | emitter-steward@^1.0.0: 1235 | version "1.0.0" 1236 | resolved "https://registry.yarnpkg.com/emitter-steward/-/emitter-steward-1.0.0.tgz#f3411ade9758a7565df848b2da0cbbd1b46cbd64" 1237 | 1238 | encodeurl@~1.0.1: 1239 | version "1.0.1" 1240 | resolved "https://registry.yarnpkg.com/encodeurl/-/encodeurl-1.0.1.tgz#79e3d58655346909fe6f0f45a5de68103b294d20" 1241 | 1242 | engine.io-client@1.8.0: 1243 | version "1.8.0" 1244 | resolved "https://registry.yarnpkg.com/engine.io-client/-/engine.io-client-1.8.0.tgz#7b730e4127414087596d9be3c88d2bc5fdb6cf5c" 1245 | dependencies: 1246 | component-emitter "1.2.1" 1247 | component-inherit "0.0.3" 1248 | debug "2.3.3" 1249 | engine.io-parser "1.3.1" 1250 | has-cors "1.1.0" 1251 | indexof "0.0.1" 1252 | parsejson "0.0.3" 1253 | parseqs "0.0.5" 1254 | parseuri "0.0.5" 1255 | ws "1.1.1" 1256 | xmlhttprequest-ssl "1.5.3" 1257 | yeast "0.1.2" 1258 | 1259 | engine.io-parser@1.3.1: 1260 | version "1.3.1" 1261 | resolved "https://registry.yarnpkg.com/engine.io-parser/-/engine.io-parser-1.3.1.tgz#9554f1ae33107d6fbd170ca5466d2f833f6a07cf" 1262 | dependencies: 1263 | after "0.8.1" 1264 | arraybuffer.slice "0.0.6" 1265 | base64-arraybuffer "0.1.5" 1266 | blob "0.0.4" 1267 | has-binary "0.1.6" 1268 | wtf-8 "1.0.0" 1269 | 1270 | engine.io@1.8.0: 1271 | version "1.8.0" 1272 | resolved "https://registry.yarnpkg.com/engine.io/-/engine.io-1.8.0.tgz#3eeb5f264cb75dbbec1baaea26d61f5a4eace2aa" 1273 | dependencies: 1274 | accepts "1.3.3" 1275 | base64id "0.1.0" 1276 | cookie "0.3.1" 1277 | debug "2.3.3" 1278 | engine.io-parser "1.3.1" 1279 | ws "1.1.1" 1280 | 1281 | error-ex@^1.2.0: 1282 | version "1.3.1" 1283 | resolved "https://registry.yarnpkg.com/error-ex/-/error-ex-1.3.1.tgz#f855a86ce61adc4e8621c3cda21e7a7612c3a8dc" 1284 | dependencies: 1285 | is-arrayish "^0.2.1" 1286 | 1287 | es5-ext@^0.10.14, es5-ext@^0.10.9, es5-ext@~0.10.14: 1288 | version "0.10.15" 1289 | resolved "https://registry.yarnpkg.com/es5-ext/-/es5-ext-0.10.15.tgz#c330a5934c1ee21284a7c081a86e5fd937c91ea6" 1290 | dependencies: 1291 | es6-iterator "2" 1292 | es6-symbol "~3.1" 1293 | 1294 | es6-iterator@2, es6-iterator@^2.0.1, es6-iterator@~2.0.1: 1295 | version "2.0.1" 1296 | resolved "https://registry.yarnpkg.com/es6-iterator/-/es6-iterator-2.0.1.tgz#8e319c9f0453bf575d374940a655920e59ca5512" 1297 | dependencies: 1298 | d "1" 1299 | es5-ext "^0.10.14" 1300 | es6-symbol "^3.1" 1301 | 1302 | es6-map@^0.1.3: 1303 | version "0.1.5" 1304 | resolved "https://registry.yarnpkg.com/es6-map/-/es6-map-0.1.5.tgz#9136e0503dcc06a301690f0bb14ff4e364e949f0" 1305 | dependencies: 1306 | d "1" 1307 | es5-ext "~0.10.14" 1308 | es6-iterator "~2.0.1" 1309 | es6-set "~0.1.5" 1310 | es6-symbol "~3.1.1" 1311 | event-emitter "~0.3.5" 1312 | 1313 | es6-set@~0.1.5: 1314 | version "0.1.5" 1315 | resolved "https://registry.yarnpkg.com/es6-set/-/es6-set-0.1.5.tgz#d2b3ec5d4d800ced818db538d28974db0a73ccb1" 1316 | dependencies: 1317 | d "1" 1318 | es5-ext "~0.10.14" 1319 | es6-iterator "~2.0.1" 1320 | es6-symbol "3.1.1" 1321 | event-emitter "~0.3.5" 1322 | 1323 | es6-symbol@3.1.1, es6-symbol@^3.1, es6-symbol@^3.1.1, es6-symbol@~3.1, es6-symbol@~3.1.1: 1324 | version "3.1.1" 1325 | resolved "https://registry.yarnpkg.com/es6-symbol/-/es6-symbol-3.1.1.tgz#bf00ef4fdab6ba1b46ecb7b629b4c7ed5715cc77" 1326 | dependencies: 1327 | d "1" 1328 | es5-ext "~0.10.14" 1329 | 1330 | es6-weak-map@^2.0.1: 1331 | version "2.0.2" 1332 | resolved "https://registry.yarnpkg.com/es6-weak-map/-/es6-weak-map-2.0.2.tgz#5e3ab32251ffd1538a1f8e5ffa1357772f92d96f" 1333 | dependencies: 1334 | d "1" 1335 | es5-ext "^0.10.14" 1336 | es6-iterator "^2.0.1" 1337 | es6-symbol "^3.1.1" 1338 | 1339 | escape-html@~1.0.3: 1340 | version "1.0.3" 1341 | resolved "https://registry.yarnpkg.com/escape-html/-/escape-html-1.0.3.tgz#0258eae4d3d0c0974de1c169188ef0051d1d1988" 1342 | 1343 | escape-string-regexp@1.0.5, escape-string-regexp@^1.0.2, escape-string-regexp@^1.0.5: 1344 | version "1.0.5" 1345 | resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz#1b61c0562190a8dff6ae3bb2cf0200ca130b86d4" 1346 | 1347 | escope@^3.6.0: 1348 | version "3.6.0" 1349 | resolved "https://registry.yarnpkg.com/escope/-/escope-3.6.0.tgz#e01975e812781a163a6dadfdd80398dc64c889c3" 1350 | dependencies: 1351 | es6-map "^0.1.3" 1352 | es6-weak-map "^2.0.1" 1353 | esrecurse "^4.1.0" 1354 | estraverse "^4.1.1" 1355 | 1356 | eslint@^3.4.0, eslint@^3.9.1: 1357 | version "3.18.0" 1358 | resolved "https://registry.yarnpkg.com/eslint/-/eslint-3.18.0.tgz#647e985c4ae71502d20ac62c109f66d5104c8a4b" 1359 | dependencies: 1360 | babel-code-frame "^6.16.0" 1361 | chalk "^1.1.3" 1362 | concat-stream "^1.5.2" 1363 | debug "^2.1.1" 1364 | doctrine "^2.0.0" 1365 | escope "^3.6.0" 1366 | espree "^3.4.0" 1367 | esquery "^1.0.0" 1368 | estraverse "^4.2.0" 1369 | esutils "^2.0.2" 1370 | file-entry-cache "^2.0.0" 1371 | glob "^7.0.3" 1372 | globals "^9.14.0" 1373 | ignore "^3.2.0" 1374 | imurmurhash "^0.1.4" 1375 | inquirer "^0.12.0" 1376 | is-my-json-valid "^2.10.0" 1377 | is-resolvable "^1.0.0" 1378 | js-yaml "^3.5.1" 1379 | json-stable-stringify "^1.0.0" 1380 | levn "^0.3.0" 1381 | lodash "^4.0.0" 1382 | mkdirp "^0.5.0" 1383 | natural-compare "^1.4.0" 1384 | optionator "^0.8.2" 1385 | path-is-inside "^1.0.1" 1386 | pluralize "^1.2.1" 1387 | progress "^1.1.8" 1388 | require-uncached "^1.0.2" 1389 | shelljs "^0.7.5" 1390 | strip-bom "^3.0.0" 1391 | strip-json-comments "~2.0.1" 1392 | table "^3.7.8" 1393 | text-table "~0.2.0" 1394 | user-home "^2.0.0" 1395 | 1396 | espree@^3.4.0: 1397 | version "3.4.0" 1398 | resolved "https://registry.yarnpkg.com/espree/-/espree-3.4.0.tgz#41656fa5628e042878025ef467e78f125cb86e1d" 1399 | dependencies: 1400 | acorn "4.0.4" 1401 | acorn-jsx "^3.0.0" 1402 | 1403 | esprima@^3.1.1: 1404 | version "3.1.3" 1405 | resolved "https://registry.yarnpkg.com/esprima/-/esprima-3.1.3.tgz#fdca51cee6133895e3c88d535ce49dbff62a4633" 1406 | 1407 | esquery@^1.0.0: 1408 | version "1.0.0" 1409 | resolved "https://registry.yarnpkg.com/esquery/-/esquery-1.0.0.tgz#cfba8b57d7fba93f17298a8a006a04cda13d80fa" 1410 | dependencies: 1411 | estraverse "^4.0.0" 1412 | 1413 | esrecurse@^4.1.0: 1414 | version "4.1.0" 1415 | resolved "https://registry.yarnpkg.com/esrecurse/-/esrecurse-4.1.0.tgz#4713b6536adf7f2ac4f327d559e7756bff648220" 1416 | dependencies: 1417 | estraverse "~4.1.0" 1418 | object-assign "^4.0.1" 1419 | 1420 | estraverse@^4.0.0, estraverse@^4.1.1, estraverse@^4.2.0: 1421 | version "4.2.0" 1422 | resolved "https://registry.yarnpkg.com/estraverse/-/estraverse-4.2.0.tgz#0dee3fed31fcd469618ce7342099fc1afa0bdb13" 1423 | 1424 | estraverse@~4.1.0: 1425 | version "4.1.1" 1426 | resolved "https://registry.yarnpkg.com/estraverse/-/estraverse-4.1.1.tgz#f6caca728933a850ef90661d0e17982ba47111a2" 1427 | 1428 | estree-walker@^0.2.1: 1429 | version "0.2.1" 1430 | resolved "https://registry.yarnpkg.com/estree-walker/-/estree-walker-0.2.1.tgz#bdafe8095383d8414d5dc2ecf4c9173b6db9412e" 1431 | 1432 | esutils@^2.0.2: 1433 | version "2.0.2" 1434 | resolved "https://registry.yarnpkg.com/esutils/-/esutils-2.0.2.tgz#0abf4f1caa5bcb1f7a9d8acc6dea4faaa04bac9b" 1435 | 1436 | etag@^1.7.0: 1437 | version "1.8.0" 1438 | resolved "https://registry.yarnpkg.com/etag/-/etag-1.8.0.tgz#6f631aef336d6c46362b51764044ce216be3c051" 1439 | 1440 | etag@~1.7.0: 1441 | version "1.7.0" 1442 | resolved "https://registry.yarnpkg.com/etag/-/etag-1.7.0.tgz#03d30b5f67dd6e632d2945d30d6652731a34d5d8" 1443 | 1444 | event-emitter@~0.3.5: 1445 | version "0.3.5" 1446 | resolved "https://registry.yarnpkg.com/event-emitter/-/event-emitter-0.3.5.tgz#df8c69eef1647923c7157b9ce83840610b02cc39" 1447 | dependencies: 1448 | d "1" 1449 | es5-ext "~0.10.14" 1450 | 1451 | eventemitter3@1.x.x: 1452 | version "1.2.0" 1453 | resolved "https://registry.yarnpkg.com/eventemitter3/-/eventemitter3-1.2.0.tgz#1c86991d816ad1e504750e73874224ecf3bec508" 1454 | 1455 | exit-hook@^1.0.0: 1456 | version "1.1.1" 1457 | resolved "https://registry.yarnpkg.com/exit-hook/-/exit-hook-1.1.1.tgz#f05ca233b48c05d54fff07765df8507e95c02ff8" 1458 | 1459 | expand-brackets@^0.1.4: 1460 | version "0.1.5" 1461 | resolved "https://registry.yarnpkg.com/expand-brackets/-/expand-brackets-0.1.5.tgz#df07284e342a807cd733ac5af72411e581d1177b" 1462 | dependencies: 1463 | is-posix-bracket "^0.1.0" 1464 | 1465 | expand-range@^1.8.1: 1466 | version "1.8.2" 1467 | resolved "https://registry.yarnpkg.com/expand-range/-/expand-range-1.8.2.tgz#a299effd335fe2721ebae8e257ec79644fc85337" 1468 | dependencies: 1469 | fill-range "^2.1.0" 1470 | 1471 | express@2.5.x: 1472 | version "2.5.11" 1473 | resolved "https://registry.yarnpkg.com/express/-/express-2.5.11.tgz#4ce8ea1f3635e69e49f0ebb497b6a4b0a51ce6f0" 1474 | dependencies: 1475 | connect "1.x" 1476 | mime "1.2.4" 1477 | mkdirp "0.3.0" 1478 | qs "0.4.x" 1479 | 1480 | extend@~3.0.0: 1481 | version "3.0.0" 1482 | resolved "https://registry.yarnpkg.com/extend/-/extend-3.0.0.tgz#5a474353b9f3353ddd8176dfd37b91c83a46f1d4" 1483 | 1484 | extglob@^0.3.1: 1485 | version "0.3.2" 1486 | resolved "https://registry.yarnpkg.com/extglob/-/extglob-0.3.2.tgz#2e18ff3d2f49ab2765cec9023f011daa8d8349a1" 1487 | dependencies: 1488 | is-extglob "^1.0.0" 1489 | 1490 | extsprintf@1.0.2: 1491 | version "1.0.2" 1492 | resolved "https://registry.yarnpkg.com/extsprintf/-/extsprintf-1.0.2.tgz#e1080e0658e300b06294990cc70e1502235fd550" 1493 | 1494 | fast-levenshtein@~2.0.4: 1495 | version "2.0.6" 1496 | resolved "https://registry.yarnpkg.com/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz#3d8a5c66883a16a30ca8643e851f19baa7797917" 1497 | 1498 | figures@^1.3.5: 1499 | version "1.7.0" 1500 | resolved "https://registry.yarnpkg.com/figures/-/figures-1.7.0.tgz#cbe1e3affcf1cd44b80cadfed28dc793a9701d2e" 1501 | dependencies: 1502 | escape-string-regexp "^1.0.5" 1503 | object-assign "^4.1.0" 1504 | 1505 | file-entry-cache@^2.0.0: 1506 | version "2.0.0" 1507 | resolved "https://registry.yarnpkg.com/file-entry-cache/-/file-entry-cache-2.0.0.tgz#c392990c3e684783d838b8c84a45d8a048458361" 1508 | dependencies: 1509 | flat-cache "^1.2.1" 1510 | object-assign "^4.0.1" 1511 | 1512 | filename-regex@^2.0.0: 1513 | version "2.0.0" 1514 | resolved "https://registry.yarnpkg.com/filename-regex/-/filename-regex-2.0.0.tgz#996e3e80479b98b9897f15a8a58b3d084e926775" 1515 | 1516 | fill-range@^2.1.0: 1517 | version "2.2.3" 1518 | resolved "https://registry.yarnpkg.com/fill-range/-/fill-range-2.2.3.tgz#50b77dfd7e469bc7492470963699fe7a8485a723" 1519 | dependencies: 1520 | is-number "^2.1.0" 1521 | isobject "^2.0.0" 1522 | randomatic "^1.1.3" 1523 | repeat-element "^1.1.2" 1524 | repeat-string "^1.5.2" 1525 | 1526 | finalhandler@0.5.0: 1527 | version "0.5.0" 1528 | resolved "https://registry.yarnpkg.com/finalhandler/-/finalhandler-0.5.0.tgz#e9508abece9b6dba871a6942a1d7911b91911ac7" 1529 | dependencies: 1530 | debug "~2.2.0" 1531 | escape-html "~1.0.3" 1532 | on-finished "~2.3.0" 1533 | statuses "~1.3.0" 1534 | unpipe "~1.0.0" 1535 | 1536 | find-up@^1.0.0: 1537 | version "1.1.2" 1538 | resolved "https://registry.yarnpkg.com/find-up/-/find-up-1.1.2.tgz#6b2e9822b1a2ce0a60ab64d610eccad53cb24d0f" 1539 | dependencies: 1540 | path-exists "^2.0.0" 1541 | pinkie-promise "^2.0.0" 1542 | 1543 | flat-cache@^1.2.1: 1544 | version "1.2.2" 1545 | resolved "https://registry.yarnpkg.com/flat-cache/-/flat-cache-1.2.2.tgz#fa86714e72c21db88601761ecf2f555d1abc6b96" 1546 | dependencies: 1547 | circular-json "^0.3.1" 1548 | del "^2.0.2" 1549 | graceful-fs "^4.1.2" 1550 | write "^0.2.1" 1551 | 1552 | for-in@^1.0.1: 1553 | version "1.0.2" 1554 | resolved "https://registry.yarnpkg.com/for-in/-/for-in-1.0.2.tgz#81068d295a8142ec0ac726c6e2200c30fb6d5e80" 1555 | 1556 | for-own@^0.1.4: 1557 | version "0.1.5" 1558 | resolved "https://registry.yarnpkg.com/for-own/-/for-own-0.1.5.tgz#5265c681a4f294dabbf17c9509b6763aa84510ce" 1559 | dependencies: 1560 | for-in "^1.0.1" 1561 | 1562 | forever-agent@~0.6.1: 1563 | version "0.6.1" 1564 | resolved "https://registry.yarnpkg.com/forever-agent/-/forever-agent-0.6.1.tgz#fbc71f0c41adeb37f96c577ad1ed42d8fdacca91" 1565 | 1566 | form-data@~2.1.1: 1567 | version "2.1.2" 1568 | resolved "https://registry.yarnpkg.com/form-data/-/form-data-2.1.2.tgz#89c3534008b97eada4cbb157d58f6f5df025eae4" 1569 | dependencies: 1570 | asynckit "^0.4.0" 1571 | combined-stream "^1.0.5" 1572 | mime-types "^2.1.12" 1573 | 1574 | formidable@1.0.x: 1575 | version "1.0.17" 1576 | resolved "https://registry.yarnpkg.com/formidable/-/formidable-1.0.17.tgz#ef5491490f9433b705faa77249c99029ae348559" 1577 | 1578 | fresh@0.3.0, fresh@^0.3.0: 1579 | version "0.3.0" 1580 | resolved "https://registry.yarnpkg.com/fresh/-/fresh-0.3.0.tgz#651f838e22424e7566de161d8358caa199f83d4f" 1581 | 1582 | fs-extra@1.0.0: 1583 | version "1.0.0" 1584 | resolved "https://registry.yarnpkg.com/fs-extra/-/fs-extra-1.0.0.tgz#cd3ce5f7e7cb6145883fcae3191e9877f8587950" 1585 | dependencies: 1586 | graceful-fs "^4.1.2" 1587 | jsonfile "^2.1.0" 1588 | klaw "^1.0.0" 1589 | 1590 | fs-readdir-recursive@^1.0.0: 1591 | version "1.0.0" 1592 | resolved "https://registry.yarnpkg.com/fs-readdir-recursive/-/fs-readdir-recursive-1.0.0.tgz#8cd1745c8b4f8a29c8caec392476921ba195f560" 1593 | 1594 | fs.realpath@^1.0.0: 1595 | version "1.0.0" 1596 | resolved "https://registry.yarnpkg.com/fs.realpath/-/fs.realpath-1.0.0.tgz#1504ad2523158caa40db4a2787cb01411994ea4f" 1597 | 1598 | fsevents@^1.0.0: 1599 | version "1.1.1" 1600 | resolved "https://registry.yarnpkg.com/fsevents/-/fsevents-1.1.1.tgz#f19fd28f43eeaf761680e519a203c4d0b3d31aff" 1601 | dependencies: 1602 | nan "^2.3.0" 1603 | node-pre-gyp "^0.6.29" 1604 | 1605 | fstream-ignore@^1.0.5: 1606 | version "1.0.5" 1607 | resolved "https://registry.yarnpkg.com/fstream-ignore/-/fstream-ignore-1.0.5.tgz#9c31dae34767018fe1d249b24dada67d092da105" 1608 | dependencies: 1609 | fstream "^1.0.0" 1610 | inherits "2" 1611 | minimatch "^3.0.0" 1612 | 1613 | fstream@^1.0.0, fstream@^1.0.10, fstream@^1.0.2: 1614 | version "1.0.11" 1615 | resolved "https://registry.yarnpkg.com/fstream/-/fstream-1.0.11.tgz#5c1fb1f117477114f0632a0eb4b71b3cb0fd3171" 1616 | dependencies: 1617 | graceful-fs "^4.1.2" 1618 | inherits "~2.0.0" 1619 | mkdirp ">=0.5 0" 1620 | rimraf "2" 1621 | 1622 | gauge@~2.7.1: 1623 | version "2.7.3" 1624 | resolved "https://registry.yarnpkg.com/gauge/-/gauge-2.7.3.tgz#1c23855f962f17b3ad3d0dc7443f304542edfe09" 1625 | dependencies: 1626 | aproba "^1.0.3" 1627 | console-control-strings "^1.0.0" 1628 | has-unicode "^2.0.0" 1629 | object-assign "^4.1.0" 1630 | signal-exit "^3.0.0" 1631 | string-width "^1.0.1" 1632 | strip-ansi "^3.0.1" 1633 | wide-align "^1.1.0" 1634 | 1635 | generate-function@^2.0.0: 1636 | version "2.0.0" 1637 | resolved "https://registry.yarnpkg.com/generate-function/-/generate-function-2.0.0.tgz#6858fe7c0969b7d4e9093337647ac79f60dfbe74" 1638 | 1639 | generate-object-property@^1.1.0: 1640 | version "1.2.0" 1641 | resolved "https://registry.yarnpkg.com/generate-object-property/-/generate-object-property-1.2.0.tgz#9c0e1c40308ce804f4783618b937fa88f99d50d0" 1642 | dependencies: 1643 | is-property "^1.0.0" 1644 | 1645 | get-caller-file@^1.0.1: 1646 | version "1.0.2" 1647 | resolved "https://registry.yarnpkg.com/get-caller-file/-/get-caller-file-1.0.2.tgz#f702e63127e7e231c160a80c1554acb70d5047e5" 1648 | 1649 | getpass@^0.1.1: 1650 | version "0.1.6" 1651 | resolved "https://registry.yarnpkg.com/getpass/-/getpass-0.1.6.tgz#283ffd9fc1256840875311c1b60e8c40187110e6" 1652 | dependencies: 1653 | assert-plus "^1.0.0" 1654 | 1655 | git-rev-sync@^1.8.0: 1656 | version "1.9.0" 1657 | resolved "https://registry.yarnpkg.com/git-rev-sync/-/git-rev-sync-1.9.0.tgz#7d1a7686feddd969ae56db0f1f7146bc6d9a9024" 1658 | dependencies: 1659 | escape-string-regexp "1.0.5" 1660 | graceful-fs "4.1.11" 1661 | shelljs "0.7.7" 1662 | 1663 | glob-base@^0.3.0: 1664 | version "0.3.0" 1665 | resolved "https://registry.yarnpkg.com/glob-base/-/glob-base-0.3.0.tgz#dbb164f6221b1c0b1ccf82aea328b497df0ea3c4" 1666 | dependencies: 1667 | glob-parent "^2.0.0" 1668 | is-glob "^2.0.0" 1669 | 1670 | glob-parent@^2.0.0: 1671 | version "2.0.0" 1672 | resolved "https://registry.yarnpkg.com/glob-parent/-/glob-parent-2.0.0.tgz#81383d72db054fcccf5336daa902f182f6edbb28" 1673 | dependencies: 1674 | is-glob "^2.0.0" 1675 | 1676 | glob@^7.0.0, glob@^7.0.3, glob@^7.0.5: 1677 | version "7.1.1" 1678 | resolved "https://registry.yarnpkg.com/glob/-/glob-7.1.1.tgz#805211df04faaf1c63a3600306cdf5ade50b2ec8" 1679 | dependencies: 1680 | fs.realpath "^1.0.0" 1681 | inflight "^1.0.4" 1682 | inherits "2" 1683 | minimatch "^3.0.2" 1684 | once "^1.3.0" 1685 | path-is-absolute "^1.0.0" 1686 | 1687 | globals@^9.0.0, globals@^9.14.0: 1688 | version "9.17.0" 1689 | resolved "https://registry.yarnpkg.com/globals/-/globals-9.17.0.tgz#0c0ca696d9b9bb694d2e5470bd37777caad50286" 1690 | 1691 | globby@^5.0.0: 1692 | version "5.0.0" 1693 | resolved "https://registry.yarnpkg.com/globby/-/globby-5.0.0.tgz#ebd84667ca0dbb330b99bcfc68eac2bc54370e0d" 1694 | dependencies: 1695 | array-union "^1.0.1" 1696 | arrify "^1.0.0" 1697 | glob "^7.0.3" 1698 | object-assign "^4.0.1" 1699 | pify "^2.0.0" 1700 | pinkie-promise "^2.0.0" 1701 | 1702 | graceful-fs@4.1.11, graceful-fs@^4.1.2, graceful-fs@^4.1.4, graceful-fs@^4.1.6, graceful-fs@^4.1.9: 1703 | version "4.1.11" 1704 | resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.1.11.tgz#0e8bdfe4d1ddb8854d64e04ea7c00e2a026e5658" 1705 | 1706 | "graceful-readlink@>= 1.0.0": 1707 | version "1.0.1" 1708 | resolved "https://registry.yarnpkg.com/graceful-readlink/-/graceful-readlink-1.0.1.tgz#4cafad76bc62f02fa039b2f94e9a3dd3a391a725" 1709 | 1710 | har-schema@^1.0.5: 1711 | version "1.0.5" 1712 | resolved "https://registry.yarnpkg.com/har-schema/-/har-schema-1.0.5.tgz#d263135f43307c02c602afc8fe95970c0151369e" 1713 | 1714 | har-validator@~2.0.6: 1715 | version "2.0.6" 1716 | resolved "https://registry.yarnpkg.com/har-validator/-/har-validator-2.0.6.tgz#cdcbc08188265ad119b6a5a7c8ab70eecfb5d27d" 1717 | dependencies: 1718 | chalk "^1.1.1" 1719 | commander "^2.9.0" 1720 | is-my-json-valid "^2.12.4" 1721 | pinkie-promise "^2.0.0" 1722 | 1723 | har-validator@~4.2.1: 1724 | version "4.2.1" 1725 | resolved "https://registry.yarnpkg.com/har-validator/-/har-validator-4.2.1.tgz#33481d0f1bbff600dd203d75812a6a5fba002e2a" 1726 | dependencies: 1727 | ajv "^4.9.1" 1728 | har-schema "^1.0.5" 1729 | 1730 | has-ansi@^2.0.0: 1731 | version "2.0.0" 1732 | resolved "https://registry.yarnpkg.com/has-ansi/-/has-ansi-2.0.0.tgz#34f5049ce1ecdf2b0649af3ef24e45ed35416d91" 1733 | dependencies: 1734 | ansi-regex "^2.0.0" 1735 | 1736 | has-binary@0.1.6: 1737 | version "0.1.6" 1738 | resolved "https://registry.yarnpkg.com/has-binary/-/has-binary-0.1.6.tgz#25326f39cfa4f616ad8787894e3af2cfbc7b6e10" 1739 | dependencies: 1740 | isarray "0.0.1" 1741 | 1742 | has-binary@0.1.7: 1743 | version "0.1.7" 1744 | resolved "https://registry.yarnpkg.com/has-binary/-/has-binary-0.1.7.tgz#68e61eb16210c9545a0a5cce06a873912fe1e68c" 1745 | dependencies: 1746 | isarray "0.0.1" 1747 | 1748 | has-cors@1.1.0: 1749 | version "1.1.0" 1750 | resolved "https://registry.yarnpkg.com/has-cors/-/has-cors-1.1.0.tgz#5e474793f7ea9843d1bb99c23eef49ff126fff39" 1751 | 1752 | has-flag@^1.0.0: 1753 | version "1.0.0" 1754 | resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-1.0.0.tgz#9d9e793165ce017a00f00418c43f942a7b1d11fa" 1755 | 1756 | has-unicode@^2.0.0: 1757 | version "2.0.1" 1758 | resolved "https://registry.yarnpkg.com/has-unicode/-/has-unicode-2.0.1.tgz#e0e6fe6a28cf51138855e086d1691e771de2a8b9" 1759 | 1760 | hawk@~3.1.3: 1761 | version "3.1.3" 1762 | resolved "https://registry.yarnpkg.com/hawk/-/hawk-3.1.3.tgz#078444bd7c1640b0fe540d2c9b73d59678e8e1c4" 1763 | dependencies: 1764 | boom "2.x.x" 1765 | cryptiles "2.x.x" 1766 | hoek "2.x.x" 1767 | sntp "1.x.x" 1768 | 1769 | he@1.1.x: 1770 | version "1.1.1" 1771 | resolved "https://registry.yarnpkg.com/he/-/he-1.1.1.tgz#93410fd21b009735151f8868c2f271f3427e23fd" 1772 | 1773 | hoek@2.x.x: 1774 | version "2.16.3" 1775 | resolved "https://registry.yarnpkg.com/hoek/-/hoek-2.16.3.tgz#20bb7403d3cea398e91dc4710a8ff1b8274a25ed" 1776 | 1777 | home-or-tmp@^2.0.0: 1778 | version "2.0.0" 1779 | resolved "https://registry.yarnpkg.com/home-or-tmp/-/home-or-tmp-2.0.0.tgz#e36c3f2d2cae7d746a857e38d18d5f32a7882db8" 1780 | dependencies: 1781 | os-homedir "^1.0.0" 1782 | os-tmpdir "^1.0.1" 1783 | 1784 | hosted-git-info@^2.1.4: 1785 | version "2.4.1" 1786 | resolved "https://registry.yarnpkg.com/hosted-git-info/-/hosted-git-info-2.4.1.tgz#4b0445e41c004a8bd1337773a4ff790ca40318c8" 1787 | 1788 | html-minifier@^3.0.2: 1789 | version "3.4.2" 1790 | resolved "https://registry.yarnpkg.com/html-minifier/-/html-minifier-3.4.2.tgz#31896baaf735c1d95f7a0b7291f9dc36c0720752" 1791 | dependencies: 1792 | camel-case "3.0.x" 1793 | clean-css "4.0.x" 1794 | commander "2.9.x" 1795 | he "1.1.x" 1796 | ncname "1.0.x" 1797 | param-case "2.1.x" 1798 | relateurl "0.2.x" 1799 | uglify-js "2.8.x" 1800 | 1801 | http-errors@~1.5.0: 1802 | version "1.5.1" 1803 | resolved "https://registry.yarnpkg.com/http-errors/-/http-errors-1.5.1.tgz#788c0d2c1de2c81b9e6e8c01843b6b97eb920750" 1804 | dependencies: 1805 | inherits "2.0.3" 1806 | setprototypeof "1.0.2" 1807 | statuses ">= 1.3.1 < 2" 1808 | 1809 | http-proxy@1.15.2: 1810 | version "1.15.2" 1811 | resolved "https://registry.yarnpkg.com/http-proxy/-/http-proxy-1.15.2.tgz#642fdcaffe52d3448d2bda3b0079e9409064da31" 1812 | dependencies: 1813 | eventemitter3 "1.x.x" 1814 | requires-port "1.x.x" 1815 | 1816 | http-signature@~1.1.0: 1817 | version "1.1.1" 1818 | resolved "https://registry.yarnpkg.com/http-signature/-/http-signature-1.1.1.tgz#df72e267066cd0ac67fb76adf8e134a8fbcf91bf" 1819 | dependencies: 1820 | assert-plus "^0.2.0" 1821 | jsprim "^1.2.2" 1822 | sshpk "^1.7.0" 1823 | 1824 | ignore@^3.2.0: 1825 | version "3.2.6" 1826 | resolved "https://registry.yarnpkg.com/ignore/-/ignore-3.2.6.tgz#26e8da0644be0bb4cb39516f6c79f0e0f4ffe48c" 1827 | 1828 | immutable@3.8.1, immutable@^3.7.6: 1829 | version "3.8.1" 1830 | resolved "https://registry.yarnpkg.com/immutable/-/immutable-3.8.1.tgz#200807f11ab0f72710ea485542de088075f68cd2" 1831 | 1832 | imurmurhash@^0.1.4: 1833 | version "0.1.4" 1834 | resolved "https://registry.yarnpkg.com/imurmurhash/-/imurmurhash-0.1.4.tgz#9218b9b2b928a238b13dc4fb6b6d576f231453ea" 1835 | 1836 | indexof@0.0.1: 1837 | version "0.0.1" 1838 | resolved "https://registry.yarnpkg.com/indexof/-/indexof-0.0.1.tgz#82dc336d232b9062179d05ab3293a66059fd435d" 1839 | 1840 | inflight@^1.0.4: 1841 | version "1.0.6" 1842 | resolved "https://registry.yarnpkg.com/inflight/-/inflight-1.0.6.tgz#49bd6331d7d02d0c09bc910a1075ba8165b56df9" 1843 | dependencies: 1844 | once "^1.3.0" 1845 | wrappy "1" 1846 | 1847 | inherits@2, inherits@2.0.3, inherits@^2.0.1, inherits@^2.0.3, inherits@~2.0.0, inherits@~2.0.1: 1848 | version "2.0.3" 1849 | resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.3.tgz#633c2c83e3da42a502f52466022480f4208261de" 1850 | 1851 | ini@~1.3.0: 1852 | version "1.3.4" 1853 | resolved "https://registry.yarnpkg.com/ini/-/ini-1.3.4.tgz#0537cb79daf59b59a1a517dff706c86ec039162e" 1854 | 1855 | inquirer@^0.12.0: 1856 | version "0.12.0" 1857 | resolved "https://registry.yarnpkg.com/inquirer/-/inquirer-0.12.0.tgz#1ef2bfd63504df0bc75785fff8c2c41df12f077e" 1858 | dependencies: 1859 | ansi-escapes "^1.1.0" 1860 | ansi-regex "^2.0.0" 1861 | chalk "^1.0.0" 1862 | cli-cursor "^1.0.1" 1863 | cli-width "^2.0.0" 1864 | figures "^1.3.5" 1865 | lodash "^4.3.0" 1866 | readline2 "^1.0.1" 1867 | run-async "^0.1.0" 1868 | rx-lite "^3.1.2" 1869 | string-width "^1.0.1" 1870 | strip-ansi "^3.0.0" 1871 | through "^2.3.6" 1872 | 1873 | interpret@^1.0.0: 1874 | version "1.0.2" 1875 | resolved "https://registry.yarnpkg.com/interpret/-/interpret-1.0.2.tgz#f4f623f0bb7122f15f5717c8e254b8161b5c5b2d" 1876 | 1877 | invariant@^2.2.0: 1878 | version "2.2.2" 1879 | resolved "https://registry.yarnpkg.com/invariant/-/invariant-2.2.2.tgz#9e1f56ac0acdb6bf303306f338be3b204ae60360" 1880 | dependencies: 1881 | loose-envify "^1.0.0" 1882 | 1883 | invert-kv@^1.0.0: 1884 | version "1.0.0" 1885 | resolved "https://registry.yarnpkg.com/invert-kv/-/invert-kv-1.0.0.tgz#104a8e4aaca6d3d8cd157a8ef8bfab2d7a3ffdb6" 1886 | 1887 | is-arrayish@^0.2.1: 1888 | version "0.2.1" 1889 | resolved "https://registry.yarnpkg.com/is-arrayish/-/is-arrayish-0.2.1.tgz#77c99840527aa8ecb1a8ba697b80645a7a926a9d" 1890 | 1891 | is-binary-path@^1.0.0: 1892 | version "1.0.1" 1893 | resolved "https://registry.yarnpkg.com/is-binary-path/-/is-binary-path-1.0.1.tgz#75f16642b480f187a711c814161fd3a4a7655898" 1894 | dependencies: 1895 | binary-extensions "^1.0.0" 1896 | 1897 | is-buffer@^1.0.2: 1898 | version "1.1.5" 1899 | resolved "https://registry.yarnpkg.com/is-buffer/-/is-buffer-1.1.5.tgz#1f3b26ef613b214b88cbca23cc6c01d87961eecc" 1900 | 1901 | is-builtin-module@^1.0.0: 1902 | version "1.0.0" 1903 | resolved "https://registry.yarnpkg.com/is-builtin-module/-/is-builtin-module-1.0.0.tgz#540572d34f7ac3119f8f76c30cbc1b1e037affbe" 1904 | dependencies: 1905 | builtin-modules "^1.0.0" 1906 | 1907 | is-dotfile@^1.0.0: 1908 | version "1.0.2" 1909 | resolved "https://registry.yarnpkg.com/is-dotfile/-/is-dotfile-1.0.2.tgz#2c132383f39199f8edc268ca01b9b007d205cc4d" 1910 | 1911 | is-equal-shallow@^0.1.3: 1912 | version "0.1.3" 1913 | resolved "https://registry.yarnpkg.com/is-equal-shallow/-/is-equal-shallow-0.1.3.tgz#2238098fc221de0bcfa5d9eac4c45d638aa1c534" 1914 | dependencies: 1915 | is-primitive "^2.0.0" 1916 | 1917 | is-extendable@^0.1.1: 1918 | version "0.1.1" 1919 | resolved "https://registry.yarnpkg.com/is-extendable/-/is-extendable-0.1.1.tgz#62b110e289a471418e3ec36a617d472e301dfc89" 1920 | 1921 | is-extglob@^1.0.0: 1922 | version "1.0.0" 1923 | resolved "https://registry.yarnpkg.com/is-extglob/-/is-extglob-1.0.0.tgz#ac468177c4943405a092fc8f29760c6ffc6206c0" 1924 | 1925 | is-finite@^1.0.0: 1926 | version "1.0.2" 1927 | resolved "https://registry.yarnpkg.com/is-finite/-/is-finite-1.0.2.tgz#cc6677695602be550ef11e8b4aa6305342b6d0aa" 1928 | dependencies: 1929 | number-is-nan "^1.0.0" 1930 | 1931 | is-fullwidth-code-point@^1.0.0: 1932 | version "1.0.0" 1933 | resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-1.0.0.tgz#ef9e31386f031a7f0d643af82fde50c457ef00cb" 1934 | dependencies: 1935 | number-is-nan "^1.0.0" 1936 | 1937 | is-fullwidth-code-point@^2.0.0: 1938 | version "2.0.0" 1939 | resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz#a3b30a5c4f199183167aaab93beefae3ddfb654f" 1940 | 1941 | is-glob@^2.0.0, is-glob@^2.0.1: 1942 | version "2.0.1" 1943 | resolved "https://registry.yarnpkg.com/is-glob/-/is-glob-2.0.1.tgz#d096f926a3ded5600f3fdfd91198cb0888c2d863" 1944 | dependencies: 1945 | is-extglob "^1.0.0" 1946 | 1947 | is-my-json-valid@^2.10.0, is-my-json-valid@^2.12.4: 1948 | version "2.16.0" 1949 | resolved "https://registry.yarnpkg.com/is-my-json-valid/-/is-my-json-valid-2.16.0.tgz#f079dd9bfdae65ee2038aae8acbc86ab109e3693" 1950 | dependencies: 1951 | generate-function "^2.0.0" 1952 | generate-object-property "^1.1.0" 1953 | jsonpointer "^4.0.0" 1954 | xtend "^4.0.0" 1955 | 1956 | is-number-like@^1.0.3: 1957 | version "1.0.7" 1958 | resolved "https://registry.yarnpkg.com/is-number-like/-/is-number-like-1.0.7.tgz#a38d6b0fd2cd4282449128859eed86c03fd23552" 1959 | dependencies: 1960 | bubleify "^0.5.1" 1961 | lodash.isfinite "^3.3.2" 1962 | 1963 | is-number@^2.0.2, is-number@^2.1.0: 1964 | version "2.1.0" 1965 | resolved "https://registry.yarnpkg.com/is-number/-/is-number-2.1.0.tgz#01fcbbb393463a548f2f466cce16dece49db908f" 1966 | dependencies: 1967 | kind-of "^3.0.2" 1968 | 1969 | is-path-cwd@^1.0.0: 1970 | version "1.0.0" 1971 | resolved "https://registry.yarnpkg.com/is-path-cwd/-/is-path-cwd-1.0.0.tgz#d225ec23132e89edd38fda767472e62e65f1106d" 1972 | 1973 | is-path-in-cwd@^1.0.0: 1974 | version "1.0.0" 1975 | resolved "https://registry.yarnpkg.com/is-path-in-cwd/-/is-path-in-cwd-1.0.0.tgz#6477582b8214d602346094567003be8a9eac04dc" 1976 | dependencies: 1977 | is-path-inside "^1.0.0" 1978 | 1979 | is-path-inside@^1.0.0: 1980 | version "1.0.0" 1981 | resolved "https://registry.yarnpkg.com/is-path-inside/-/is-path-inside-1.0.0.tgz#fc06e5a1683fbda13de667aff717bbc10a48f37f" 1982 | dependencies: 1983 | path-is-inside "^1.0.1" 1984 | 1985 | is-posix-bracket@^0.1.0: 1986 | version "0.1.1" 1987 | resolved "https://registry.yarnpkg.com/is-posix-bracket/-/is-posix-bracket-0.1.1.tgz#3334dc79774368e92f016e6fbc0a88f5cd6e6bc4" 1988 | 1989 | is-primitive@^2.0.0: 1990 | version "2.0.0" 1991 | resolved "https://registry.yarnpkg.com/is-primitive/-/is-primitive-2.0.0.tgz#207bab91638499c07b2adf240a41a87210034575" 1992 | 1993 | is-property@^1.0.0: 1994 | version "1.0.2" 1995 | resolved "https://registry.yarnpkg.com/is-property/-/is-property-1.0.2.tgz#57fe1c4e48474edd65b09911f26b1cd4095dda84" 1996 | 1997 | is-resolvable@^1.0.0: 1998 | version "1.0.0" 1999 | resolved "https://registry.yarnpkg.com/is-resolvable/-/is-resolvable-1.0.0.tgz#8df57c61ea2e3c501408d100fb013cf8d6e0cc62" 2000 | dependencies: 2001 | tryit "^1.0.1" 2002 | 2003 | is-typedarray@~1.0.0: 2004 | version "1.0.0" 2005 | resolved "https://registry.yarnpkg.com/is-typedarray/-/is-typedarray-1.0.0.tgz#e479c80858df0c1b11ddda6940f96011fcda4a9a" 2006 | 2007 | is-utf8@^0.2.0: 2008 | version "0.2.1" 2009 | resolved "https://registry.yarnpkg.com/is-utf8/-/is-utf8-0.2.1.tgz#4b0da1442104d1b336340e80797e865cf39f7d72" 2010 | 2011 | isarray@0.0.1: 2012 | version "0.0.1" 2013 | resolved "https://registry.yarnpkg.com/isarray/-/isarray-0.0.1.tgz#8a18acfca9a8f4177e09abfc6038939b05d1eedf" 2014 | 2015 | isarray@1.0.0, isarray@^1.0.0, isarray@~1.0.0: 2016 | version "1.0.0" 2017 | resolved "https://registry.yarnpkg.com/isarray/-/isarray-1.0.0.tgz#bb935d48582cba168c06834957a54a3e07124f11" 2018 | 2019 | isobject@^2.0.0: 2020 | version "2.1.0" 2021 | resolved "https://registry.yarnpkg.com/isobject/-/isobject-2.1.0.tgz#f065561096a3f1da2ef46272f815c840d87e0c89" 2022 | dependencies: 2023 | isarray "1.0.0" 2024 | 2025 | isstream@~0.1.2: 2026 | version "0.1.2" 2027 | resolved "https://registry.yarnpkg.com/isstream/-/isstream-0.1.2.tgz#47e63f7af55afa6f92e1500e690eb8b8529c099a" 2028 | 2029 | jodid25519@^1.0.0: 2030 | version "1.0.2" 2031 | resolved "https://registry.yarnpkg.com/jodid25519/-/jodid25519-1.0.2.tgz#06d4912255093419477d425633606e0e90782967" 2032 | dependencies: 2033 | jsbn "~0.1.0" 2034 | 2035 | js-base64@^2.1.9: 2036 | version "2.1.9" 2037 | resolved "https://registry.yarnpkg.com/js-base64/-/js-base64-2.1.9.tgz#f0e80ae039a4bd654b5f281fc93f04a914a7fcce" 2038 | 2039 | js-tokens@^3.0.0: 2040 | version "3.0.1" 2041 | resolved "https://registry.yarnpkg.com/js-tokens/-/js-tokens-3.0.1.tgz#08e9f132484a2c45a30907e9dc4d5567b7f114d7" 2042 | 2043 | js-yaml@^3.5.1: 2044 | version "3.8.2" 2045 | resolved "https://registry.yarnpkg.com/js-yaml/-/js-yaml-3.8.2.tgz#02d3e2c0f6beab20248d412c352203827d786721" 2046 | dependencies: 2047 | argparse "^1.0.7" 2048 | esprima "^3.1.1" 2049 | 2050 | jsbn@~0.1.0: 2051 | version "0.1.1" 2052 | resolved "https://registry.yarnpkg.com/jsbn/-/jsbn-0.1.1.tgz#a5e654c2e5a2deb5f201d96cefbca80c0ef2f513" 2053 | 2054 | jsesc@^1.3.0: 2055 | version "1.3.0" 2056 | resolved "https://registry.yarnpkg.com/jsesc/-/jsesc-1.3.0.tgz#46c3fec8c1892b12b0833db9bc7622176dbab34b" 2057 | 2058 | jsesc@~0.5.0: 2059 | version "0.5.0" 2060 | resolved "https://registry.yarnpkg.com/jsesc/-/jsesc-0.5.0.tgz#e7dee66e35d6fc16f710fe91d5cf69f70f08911d" 2061 | 2062 | json-schema@0.2.3: 2063 | version "0.2.3" 2064 | resolved "https://registry.yarnpkg.com/json-schema/-/json-schema-0.2.3.tgz#b480c892e59a2f05954ce727bd3f2a4e882f9e13" 2065 | 2066 | json-stable-stringify@^1.0.0, json-stable-stringify@^1.0.1: 2067 | version "1.0.1" 2068 | resolved "https://registry.yarnpkg.com/json-stable-stringify/-/json-stable-stringify-1.0.1.tgz#9a759d39c5f2ff503fd5300646ed445f88c4f9af" 2069 | dependencies: 2070 | jsonify "~0.0.0" 2071 | 2072 | json-stringify-safe@~5.0.1: 2073 | version "5.0.1" 2074 | resolved "https://registry.yarnpkg.com/json-stringify-safe/-/json-stringify-safe-5.0.1.tgz#1296a2d58fd45f19a0f6ce01d65701e2c735b6eb" 2075 | 2076 | json3@3.3.2: 2077 | version "3.3.2" 2078 | resolved "https://registry.yarnpkg.com/json3/-/json3-3.3.2.tgz#3c0434743df93e2f5c42aee7b19bcb483575f4e1" 2079 | 2080 | json5@^0.5.0: 2081 | version "0.5.1" 2082 | resolved "https://registry.yarnpkg.com/json5/-/json5-0.5.1.tgz#1eade7acc012034ad84e2396767ead9fa5495821" 2083 | 2084 | jsonfile@^2.1.0: 2085 | version "2.4.0" 2086 | resolved "https://registry.yarnpkg.com/jsonfile/-/jsonfile-2.4.0.tgz#3736a2b428b87bbda0cc83b53fa3d633a35c2ae8" 2087 | optionalDependencies: 2088 | graceful-fs "^4.1.6" 2089 | 2090 | jsonify@~0.0.0: 2091 | version "0.0.0" 2092 | resolved "https://registry.yarnpkg.com/jsonify/-/jsonify-0.0.0.tgz#2c74b6ee41d93ca51b7b5aaee8f503631d252a73" 2093 | 2094 | jsonpointer@^4.0.0: 2095 | version "4.0.1" 2096 | resolved "https://registry.yarnpkg.com/jsonpointer/-/jsonpointer-4.0.1.tgz#4fd92cb34e0e9db3c89c8622ecf51f9b978c6cb9" 2097 | 2098 | jsprim@^1.2.2: 2099 | version "1.4.0" 2100 | resolved "https://registry.yarnpkg.com/jsprim/-/jsprim-1.4.0.tgz#a3b87e40298d8c380552d8cc7628a0bb95a22918" 2101 | dependencies: 2102 | assert-plus "1.0.0" 2103 | extsprintf "1.0.2" 2104 | json-schema "0.2.3" 2105 | verror "1.3.6" 2106 | 2107 | kind-of@^3.0.2: 2108 | version "3.1.0" 2109 | resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-3.1.0.tgz#475d698a5e49ff5e53d14e3e732429dc8bf4cf47" 2110 | dependencies: 2111 | is-buffer "^1.0.2" 2112 | 2113 | klaw@^1.0.0: 2114 | version "1.3.1" 2115 | resolved "https://registry.yarnpkg.com/klaw/-/klaw-1.3.1.tgz#4088433b46b3b1ba259d78785d8e96f73ba02439" 2116 | optionalDependencies: 2117 | graceful-fs "^4.1.9" 2118 | 2119 | lazy-cache@^1.0.3: 2120 | version "1.0.4" 2121 | resolved "https://registry.yarnpkg.com/lazy-cache/-/lazy-cache-1.0.4.tgz#a1d78fc3a50474cb80845d3b3b6e1da49a446e8e" 2122 | 2123 | lcid@^1.0.0: 2124 | version "1.0.0" 2125 | resolved "https://registry.yarnpkg.com/lcid/-/lcid-1.0.0.tgz#308accafa0bc483a3867b4b6f2b9506251d1b835" 2126 | dependencies: 2127 | invert-kv "^1.0.0" 2128 | 2129 | levn@^0.3.0, levn@~0.3.0: 2130 | version "0.3.0" 2131 | resolved "https://registry.yarnpkg.com/levn/-/levn-0.3.0.tgz#3b09924edf9f083c0490fdd4c0bc4421e04764ee" 2132 | dependencies: 2133 | prelude-ls "~1.1.2" 2134 | type-check "~0.3.2" 2135 | 2136 | limiter@^1.0.5: 2137 | version "1.1.0" 2138 | resolved "https://registry.yarnpkg.com/limiter/-/limiter-1.1.0.tgz#6e2bd12ca3fcdaa11f224e2e53c896df3f08d913" 2139 | 2140 | load-json-file@^1.0.0: 2141 | version "1.1.0" 2142 | resolved "https://registry.yarnpkg.com/load-json-file/-/load-json-file-1.1.0.tgz#956905708d58b4bab4c2261b04f59f31c99374c0" 2143 | dependencies: 2144 | graceful-fs "^4.1.2" 2145 | parse-json "^2.2.0" 2146 | pify "^2.0.0" 2147 | pinkie-promise "^2.0.0" 2148 | strip-bom "^2.0.0" 2149 | 2150 | localtunnel@1.8.2: 2151 | version "1.8.2" 2152 | resolved "https://registry.yarnpkg.com/localtunnel/-/localtunnel-1.8.2.tgz#913051e8328b51f75ad8a22ad1f5c5b8c599a359" 2153 | dependencies: 2154 | debug "2.2.0" 2155 | openurl "1.1.0" 2156 | request "2.78.0" 2157 | yargs "3.29.0" 2158 | 2159 | lodash.isfinite@^3.3.2: 2160 | version "3.3.2" 2161 | resolved "https://registry.yarnpkg.com/lodash.isfinite/-/lodash.isfinite-3.3.2.tgz#fb89b65a9a80281833f0b7478b3a5104f898ebb3" 2162 | 2163 | lodash@^3.10.1: 2164 | version "3.10.1" 2165 | resolved "https://registry.yarnpkg.com/lodash/-/lodash-3.10.1.tgz#5bf45e8e49ba4189e17d482789dfd15bd140b7b6" 2166 | 2167 | lodash@^4.0.0, lodash@^4.2.0, lodash@^4.3.0: 2168 | version "4.17.4" 2169 | resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.4.tgz#78203a4d1c328ae1d86dca6460e369b57f4055ae" 2170 | 2171 | longest@^1.0.1: 2172 | version "1.0.1" 2173 | resolved "https://registry.yarnpkg.com/longest/-/longest-1.0.1.tgz#30a0b2da38f73770e8294a0d22e6625ed77d0097" 2174 | 2175 | loose-envify@^1.0.0: 2176 | version "1.3.1" 2177 | resolved "https://registry.yarnpkg.com/loose-envify/-/loose-envify-1.3.1.tgz#d1a8ad33fa9ce0e713d65fdd0ac8b748d478c848" 2178 | dependencies: 2179 | js-tokens "^3.0.0" 2180 | 2181 | lower-case@^1.1.1: 2182 | version "1.1.4" 2183 | resolved "https://registry.yarnpkg.com/lower-case/-/lower-case-1.1.4.tgz#9a2cabd1b9e8e0ae993a4bf7d5875c39c42e8eac" 2184 | 2185 | magic-string@^0.14.0: 2186 | version "0.14.0" 2187 | resolved "https://registry.yarnpkg.com/magic-string/-/magic-string-0.14.0.tgz#57224aef1701caeed273b17a39a956e72b172462" 2188 | dependencies: 2189 | vlq "^0.2.1" 2190 | 2191 | magic-string@^0.15.2: 2192 | version "0.15.2" 2193 | resolved "https://registry.yarnpkg.com/magic-string/-/magic-string-0.15.2.tgz#0681d7388741bbc3addaa65060992624c6c09e9c" 2194 | dependencies: 2195 | vlq "^0.2.1" 2196 | 2197 | magic-string@^0.16.0: 2198 | version "0.16.0" 2199 | resolved "https://registry.yarnpkg.com/magic-string/-/magic-string-0.16.0.tgz#970ebb0da7193301285fb1aa650f39bdd81eb45a" 2200 | dependencies: 2201 | vlq "^0.2.1" 2202 | 2203 | micromatch@2.3.11, micromatch@^2.1.5: 2204 | version "2.3.11" 2205 | resolved "https://registry.yarnpkg.com/micromatch/-/micromatch-2.3.11.tgz#86677c97d1720b363431d04d0d15293bd38c1565" 2206 | dependencies: 2207 | arr-diff "^2.0.0" 2208 | array-unique "^0.2.1" 2209 | braces "^1.8.2" 2210 | expand-brackets "^0.1.4" 2211 | extglob "^0.3.1" 2212 | filename-regex "^2.0.0" 2213 | is-extglob "^1.0.0" 2214 | is-glob "^2.0.1" 2215 | kind-of "^3.0.2" 2216 | normalize-path "^2.0.1" 2217 | object.omit "^2.0.0" 2218 | parse-glob "^3.0.4" 2219 | regex-cache "^0.4.2" 2220 | 2221 | mime-db@~1.27.0: 2222 | version "1.27.0" 2223 | resolved "https://registry.yarnpkg.com/mime-db/-/mime-db-1.27.0.tgz#820f572296bbd20ec25ed55e5b5de869e5436eb1" 2224 | 2225 | mime-types@^2.1.12, mime-types@~2.1.11, mime-types@~2.1.7: 2226 | version "2.1.15" 2227 | resolved "https://registry.yarnpkg.com/mime-types/-/mime-types-2.1.15.tgz#a4ebf5064094569237b8cf70046776d09fc92aed" 2228 | dependencies: 2229 | mime-db "~1.27.0" 2230 | 2231 | mime@1.2.4: 2232 | version "1.2.4" 2233 | resolved "https://registry.yarnpkg.com/mime/-/mime-1.2.4.tgz#11b5fdaf29c2509255176b80ad520294f5de92b7" 2234 | 2235 | mime@1.3.4, "mime@>= 0.0.1": 2236 | version "1.3.4" 2237 | resolved "https://registry.yarnpkg.com/mime/-/mime-1.3.4.tgz#115f9e3b6b3daf2959983cb38f149a2d40eb5d53" 2238 | 2239 | minimatch@^3.0.0, minimatch@^3.0.2: 2240 | version "3.0.3" 2241 | resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-3.0.3.tgz#2a4e4090b96b2db06a9d7df01055a62a77c9b774" 2242 | dependencies: 2243 | brace-expansion "^1.0.0" 2244 | 2245 | minimist@0.0.8: 2246 | version "0.0.8" 2247 | resolved "https://registry.yarnpkg.com/minimist/-/minimist-0.0.8.tgz#857fcabfc3397d2625b8228262e86aa7a011b05d" 2248 | 2249 | minimist@^1.2.0: 2250 | version "1.2.0" 2251 | resolved "https://registry.yarnpkg.com/minimist/-/minimist-1.2.0.tgz#a35008b20f41383eec1fb914f4cd5df79a264284" 2252 | 2253 | mkdirp@0.3.0: 2254 | version "0.3.0" 2255 | resolved "https://registry.yarnpkg.com/mkdirp/-/mkdirp-0.3.0.tgz#1bbf5ab1ba827af23575143490426455f481fe1e" 2256 | 2257 | "mkdirp@>=0.5 0", mkdirp@^0.5.0, mkdirp@^0.5.1: 2258 | version "0.5.1" 2259 | resolved "https://registry.yarnpkg.com/mkdirp/-/mkdirp-0.5.1.tgz#30057438eac6cf7f8c4767f38648d6697d75c903" 2260 | dependencies: 2261 | minimist "0.0.8" 2262 | 2263 | ms@0.7.1: 2264 | version "0.7.1" 2265 | resolved "https://registry.yarnpkg.com/ms/-/ms-0.7.1.tgz#9cd13c03adbff25b65effde7ce864ee952017098" 2266 | 2267 | ms@0.7.2: 2268 | version "0.7.2" 2269 | resolved "https://registry.yarnpkg.com/ms/-/ms-0.7.2.tgz#ae25cf2512b3885a1d95d7f037868d8431124765" 2270 | 2271 | mute-stream@0.0.5: 2272 | version "0.0.5" 2273 | resolved "https://registry.yarnpkg.com/mute-stream/-/mute-stream-0.0.5.tgz#8fbfabb0a98a253d3184331f9e8deb7372fac6c0" 2274 | 2275 | nan@^2.3.0: 2276 | version "2.5.1" 2277 | resolved "https://registry.yarnpkg.com/nan/-/nan-2.5.1.tgz#d5b01691253326a97a2bbee9e61c55d8d60351e2" 2278 | 2279 | natural-compare@^1.4.0: 2280 | version "1.4.0" 2281 | resolved "https://registry.yarnpkg.com/natural-compare/-/natural-compare-1.4.0.tgz#4abebfeed7541f2c27acfb29bdbbd15c8d5ba4f7" 2282 | 2283 | ncname@1.0.x: 2284 | version "1.0.0" 2285 | resolved "https://registry.yarnpkg.com/ncname/-/ncname-1.0.0.tgz#5b57ad18b1ca092864ef62b0b1ed8194f383b71c" 2286 | dependencies: 2287 | xml-char-classes "^1.0.0" 2288 | 2289 | negotiator@0.6.1: 2290 | version "0.6.1" 2291 | resolved "https://registry.yarnpkg.com/negotiator/-/negotiator-0.6.1.tgz#2b327184e8992101177b28563fb5e7102acd0ca9" 2292 | 2293 | no-case@^2.2.0: 2294 | version "2.3.1" 2295 | resolved "https://registry.yarnpkg.com/no-case/-/no-case-2.3.1.tgz#7aeba1c73a52184265554b7dc03baf720df80081" 2296 | dependencies: 2297 | lower-case "^1.1.1" 2298 | 2299 | node-pre-gyp@^0.6.29: 2300 | version "0.6.34" 2301 | resolved "https://registry.yarnpkg.com/node-pre-gyp/-/node-pre-gyp-0.6.34.tgz#94ad1c798a11d7fc67381b50d47f8cc18d9799f7" 2302 | dependencies: 2303 | mkdirp "^0.5.1" 2304 | nopt "^4.0.1" 2305 | npmlog "^4.0.2" 2306 | rc "^1.1.7" 2307 | request "^2.81.0" 2308 | rimraf "^2.6.1" 2309 | semver "^5.3.0" 2310 | tar "^2.2.1" 2311 | tar-pack "^3.4.0" 2312 | 2313 | node-uuid@~1.4.7: 2314 | version "1.4.8" 2315 | resolved "https://registry.yarnpkg.com/node-uuid/-/node-uuid-1.4.8.tgz#b040eb0923968afabf8d32fb1f17f1167fdab907" 2316 | 2317 | node-watch@^0.4.1: 2318 | version "0.4.1" 2319 | resolved "https://registry.yarnpkg.com/node-watch/-/node-watch-0.4.1.tgz#d0947d54a995f91135db4056b68722c6d7c322ad" 2320 | 2321 | nopt@3.0.x: 2322 | version "3.0.6" 2323 | resolved "https://registry.yarnpkg.com/nopt/-/nopt-3.0.6.tgz#c6465dbf08abcd4db359317f79ac68a646b28ff9" 2324 | dependencies: 2325 | abbrev "1" 2326 | 2327 | nopt@^4.0.1: 2328 | version "4.0.1" 2329 | resolved "https://registry.yarnpkg.com/nopt/-/nopt-4.0.1.tgz#d0d4685afd5415193c8c7505602d0d17cd64474d" 2330 | dependencies: 2331 | abbrev "1" 2332 | osenv "^0.1.4" 2333 | 2334 | normalize-package-data@^2.3.2: 2335 | version "2.3.6" 2336 | resolved "https://registry.yarnpkg.com/normalize-package-data/-/normalize-package-data-2.3.6.tgz#498fa420c96401f787402ba21e600def9f981fff" 2337 | dependencies: 2338 | hosted-git-info "^2.1.4" 2339 | is-builtin-module "^1.0.0" 2340 | semver "2 || 3 || 4 || 5" 2341 | validate-npm-package-license "^3.0.1" 2342 | 2343 | normalize-path@^2.0.1: 2344 | version "2.1.1" 2345 | resolved "https://registry.yarnpkg.com/normalize-path/-/normalize-path-2.1.1.tgz#1ab28b556e198363a8c1a6f7e6fa20137fe6aed9" 2346 | dependencies: 2347 | remove-trailing-separator "^1.0.1" 2348 | 2349 | npmlog@^4.0.2: 2350 | version "4.0.2" 2351 | resolved "https://registry.yarnpkg.com/npmlog/-/npmlog-4.0.2.tgz#d03950e0e78ce1527ba26d2a7592e9348ac3e75f" 2352 | dependencies: 2353 | are-we-there-yet "~1.1.2" 2354 | console-control-strings "~1.1.0" 2355 | gauge "~2.7.1" 2356 | set-blocking "~2.0.0" 2357 | 2358 | number-is-nan@^1.0.0: 2359 | version "1.0.1" 2360 | resolved "https://registry.yarnpkg.com/number-is-nan/-/number-is-nan-1.0.1.tgz#097b602b53422a522c1afb8790318336941a011d" 2361 | 2362 | oauth-sign@~0.8.1: 2363 | version "0.8.2" 2364 | resolved "https://registry.yarnpkg.com/oauth-sign/-/oauth-sign-0.8.2.tgz#46a6ab7f0aead8deae9ec0565780b7d4efeb9d43" 2365 | 2366 | object-assign@4.1.0: 2367 | version "4.1.0" 2368 | resolved "https://registry.yarnpkg.com/object-assign/-/object-assign-4.1.0.tgz#7a3b3d0e98063d43f4c03f2e8ae6cd51a86883a0" 2369 | 2370 | object-assign@^4.0.1, object-assign@^4.1.0: 2371 | version "4.1.1" 2372 | resolved "https://registry.yarnpkg.com/object-assign/-/object-assign-4.1.1.tgz#2109adc7965887cfc05cbbd442cac8bfbb360863" 2373 | 2374 | object-component@0.0.3: 2375 | version "0.0.3" 2376 | resolved "https://registry.yarnpkg.com/object-component/-/object-component-0.0.3.tgz#f0c69aa50efc95b866c186f400a33769cb2f1291" 2377 | 2378 | object-path@^0.9.0: 2379 | version "0.9.2" 2380 | resolved "https://registry.yarnpkg.com/object-path/-/object-path-0.9.2.tgz#0fd9a74fc5fad1ae3968b586bda5c632bd6c05a5" 2381 | 2382 | object.omit@^2.0.0: 2383 | version "2.0.1" 2384 | resolved "https://registry.yarnpkg.com/object.omit/-/object.omit-2.0.1.tgz#1a9c744829f39dbb858c76ca3579ae2a54ebd1fa" 2385 | dependencies: 2386 | for-own "^0.1.4" 2387 | is-extendable "^0.1.1" 2388 | 2389 | on-finished@~2.3.0: 2390 | version "2.3.0" 2391 | resolved "https://registry.yarnpkg.com/on-finished/-/on-finished-2.3.0.tgz#20f1336481b083cd75337992a16971aa2d906947" 2392 | dependencies: 2393 | ee-first "1.1.1" 2394 | 2395 | once@^1.3.0, once@^1.3.3: 2396 | version "1.4.0" 2397 | resolved "https://registry.yarnpkg.com/once/-/once-1.4.0.tgz#583b1aa775961d4b113ac17d9c50baef9dd76bd1" 2398 | dependencies: 2399 | wrappy "1" 2400 | 2401 | onetime@^1.0.0: 2402 | version "1.1.0" 2403 | resolved "https://registry.yarnpkg.com/onetime/-/onetime-1.1.0.tgz#a1f7838f8314c516f05ecefcbc4ccfe04b4ed789" 2404 | 2405 | openurl@1.1.0: 2406 | version "1.1.0" 2407 | resolved "https://registry.yarnpkg.com/openurl/-/openurl-1.1.0.tgz#e2f2189d999c04823201f083f0f1a7cd8903187a" 2408 | 2409 | opn@4.0.2: 2410 | version "4.0.2" 2411 | resolved "https://registry.yarnpkg.com/opn/-/opn-4.0.2.tgz#7abc22e644dff63b0a96d5ab7f2790c0f01abc95" 2412 | dependencies: 2413 | object-assign "^4.0.1" 2414 | pinkie-promise "^2.0.0" 2415 | 2416 | optionator@^0.8.2: 2417 | version "0.8.2" 2418 | resolved "https://registry.yarnpkg.com/optionator/-/optionator-0.8.2.tgz#364c5e409d3f4d6301d6c0b4c05bba50180aeb64" 2419 | dependencies: 2420 | deep-is "~0.1.3" 2421 | fast-levenshtein "~2.0.4" 2422 | levn "~0.3.0" 2423 | prelude-ls "~1.1.2" 2424 | type-check "~0.3.2" 2425 | wordwrap "~1.0.0" 2426 | 2427 | options@>=0.0.5: 2428 | version "0.0.6" 2429 | resolved "https://registry.yarnpkg.com/options/-/options-0.0.6.tgz#ec22d312806bb53e731773e7cdaefcf1c643128f" 2430 | 2431 | os-homedir@^1.0.0, os-homedir@^1.0.1: 2432 | version "1.0.2" 2433 | resolved "https://registry.yarnpkg.com/os-homedir/-/os-homedir-1.0.2.tgz#ffbc4988336e0e833de0c168c7ef152121aa7fb3" 2434 | 2435 | os-locale@^1.4.0: 2436 | version "1.4.0" 2437 | resolved "https://registry.yarnpkg.com/os-locale/-/os-locale-1.4.0.tgz#20f9f17ae29ed345e8bde583b13d2009803c14d9" 2438 | dependencies: 2439 | lcid "^1.0.0" 2440 | 2441 | os-tmpdir@^1.0.0, os-tmpdir@^1.0.1: 2442 | version "1.0.2" 2443 | resolved "https://registry.yarnpkg.com/os-tmpdir/-/os-tmpdir-1.0.2.tgz#bbe67406c79aa85c5cfec766fe5734555dfa1274" 2444 | 2445 | osenv@^0.1.4: 2446 | version "0.1.4" 2447 | resolved "https://registry.yarnpkg.com/osenv/-/osenv-0.1.4.tgz#42fe6d5953df06c8064be6f176c3d05aaaa34644" 2448 | dependencies: 2449 | os-homedir "^1.0.0" 2450 | os-tmpdir "^1.0.0" 2451 | 2452 | output-file-sync@^1.1.0: 2453 | version "1.1.2" 2454 | resolved "https://registry.yarnpkg.com/output-file-sync/-/output-file-sync-1.1.2.tgz#d0a33eefe61a205facb90092e826598d5245ce76" 2455 | dependencies: 2456 | graceful-fs "^4.1.4" 2457 | mkdirp "^0.5.1" 2458 | object-assign "^4.1.0" 2459 | 2460 | param-case@2.1.x: 2461 | version "2.1.1" 2462 | resolved "https://registry.yarnpkg.com/param-case/-/param-case-2.1.1.tgz#df94fd8cf6531ecf75e6bef9a0858fbc72be2247" 2463 | dependencies: 2464 | no-case "^2.2.0" 2465 | 2466 | parse-glob@^3.0.4: 2467 | version "3.0.4" 2468 | resolved "https://registry.yarnpkg.com/parse-glob/-/parse-glob-3.0.4.tgz#b2c376cfb11f35513badd173ef0bb6e3a388391c" 2469 | dependencies: 2470 | glob-base "^0.3.0" 2471 | is-dotfile "^1.0.0" 2472 | is-extglob "^1.0.0" 2473 | is-glob "^2.0.0" 2474 | 2475 | parse-json@^2.2.0: 2476 | version "2.2.0" 2477 | resolved "https://registry.yarnpkg.com/parse-json/-/parse-json-2.2.0.tgz#f480f40434ef80741f8469099f8dea18f55a4dc9" 2478 | dependencies: 2479 | error-ex "^1.2.0" 2480 | 2481 | parsejson@0.0.3: 2482 | version "0.0.3" 2483 | resolved "https://registry.yarnpkg.com/parsejson/-/parsejson-0.0.3.tgz#ab7e3759f209ece99437973f7d0f1f64ae0e64ab" 2484 | dependencies: 2485 | better-assert "~1.0.0" 2486 | 2487 | parseqs@0.0.5: 2488 | version "0.0.5" 2489 | resolved "https://registry.yarnpkg.com/parseqs/-/parseqs-0.0.5.tgz#d5208a3738e46766e291ba2ea173684921a8b89d" 2490 | dependencies: 2491 | better-assert "~1.0.0" 2492 | 2493 | parseuri@0.0.5: 2494 | version "0.0.5" 2495 | resolved "https://registry.yarnpkg.com/parseuri/-/parseuri-0.0.5.tgz#80204a50d4dbb779bfdc6ebe2778d90e4bce320a" 2496 | dependencies: 2497 | better-assert "~1.0.0" 2498 | 2499 | parseurl@~1.3.1: 2500 | version "1.3.1" 2501 | resolved "https://registry.yarnpkg.com/parseurl/-/parseurl-1.3.1.tgz#c8ab8c9223ba34888aa64a297b28853bec18da56" 2502 | 2503 | path-exists@^2.0.0: 2504 | version "2.1.0" 2505 | resolved "https://registry.yarnpkg.com/path-exists/-/path-exists-2.1.0.tgz#0feb6c64f0fc518d9a754dd5efb62c7022761f4b" 2506 | dependencies: 2507 | pinkie-promise "^2.0.0" 2508 | 2509 | path-is-absolute@^1.0.0: 2510 | version "1.0.1" 2511 | resolved "https://registry.yarnpkg.com/path-is-absolute/-/path-is-absolute-1.0.1.tgz#174b9268735534ffbc7ace6bf53a5a9e1b5c5f5f" 2512 | 2513 | path-is-inside@^1.0.1: 2514 | version "1.0.2" 2515 | resolved "https://registry.yarnpkg.com/path-is-inside/-/path-is-inside-1.0.2.tgz#365417dede44430d1c11af61027facf074bdfc53" 2516 | 2517 | path-parse@^1.0.5: 2518 | version "1.0.5" 2519 | resolved "https://registry.yarnpkg.com/path-parse/-/path-parse-1.0.5.tgz#3c1adf871ea9cd6c9431b6ea2bd74a0ff055c4c1" 2520 | 2521 | path-type@^1.0.0: 2522 | version "1.1.0" 2523 | resolved "https://registry.yarnpkg.com/path-type/-/path-type-1.1.0.tgz#59c44f7ee491da704da415da5a4070ba4f8fe441" 2524 | dependencies: 2525 | graceful-fs "^4.1.2" 2526 | pify "^2.0.0" 2527 | pinkie-promise "^2.0.0" 2528 | 2529 | performance-now@^0.2.0: 2530 | version "0.2.0" 2531 | resolved "https://registry.yarnpkg.com/performance-now/-/performance-now-0.2.0.tgz#33ef30c5c77d4ea21c5a53869d91b56d8f2555e5" 2532 | 2533 | pify@^2.0.0: 2534 | version "2.3.0" 2535 | resolved "https://registry.yarnpkg.com/pify/-/pify-2.3.0.tgz#ed141a6ac043a849ea588498e7dca8b15330e90c" 2536 | 2537 | pinkie-promise@^2.0.0: 2538 | version "2.0.1" 2539 | resolved "https://registry.yarnpkg.com/pinkie-promise/-/pinkie-promise-2.0.1.tgz#2135d6dfa7a358c069ac9b178776288228450ffa" 2540 | dependencies: 2541 | pinkie "^2.0.0" 2542 | 2543 | pinkie@^2.0.0: 2544 | version "2.0.4" 2545 | resolved "https://registry.yarnpkg.com/pinkie/-/pinkie-2.0.4.tgz#72556b80cfa0d48a974e80e77248e80ed4f7f870" 2546 | 2547 | pluralize@^1.2.1: 2548 | version "1.2.1" 2549 | resolved "https://registry.yarnpkg.com/pluralize/-/pluralize-1.2.1.tgz#d1a21483fd22bb41e58a12fa3421823140897c45" 2550 | 2551 | portscanner@2.1.1: 2552 | version "2.1.1" 2553 | resolved "https://registry.yarnpkg.com/portscanner/-/portscanner-2.1.1.tgz#eabb409e4de24950f5a2a516d35ae769343fbb96" 2554 | dependencies: 2555 | async "1.5.2" 2556 | is-number-like "^1.0.3" 2557 | 2558 | postcss@^5.0.12: 2559 | version "5.2.16" 2560 | resolved "https://registry.yarnpkg.com/postcss/-/postcss-5.2.16.tgz#732b3100000f9ff8379a48a53839ed097376ad57" 2561 | dependencies: 2562 | chalk "^1.1.3" 2563 | js-base64 "^2.1.9" 2564 | source-map "^0.5.6" 2565 | supports-color "^3.2.3" 2566 | 2567 | prelude-ls@~1.1.2: 2568 | version "1.1.2" 2569 | resolved "https://registry.yarnpkg.com/prelude-ls/-/prelude-ls-1.1.2.tgz#21932a549f5e52ffd9a827f570e04be62a97da54" 2570 | 2571 | preserve@^0.2.0: 2572 | version "0.2.0" 2573 | resolved "https://registry.yarnpkg.com/preserve/-/preserve-0.2.0.tgz#815ed1f6ebc65926f865b310c0713bcb3315ce4b" 2574 | 2575 | private@^0.1.6: 2576 | version "0.1.7" 2577 | resolved "https://registry.yarnpkg.com/private/-/private-0.1.7.tgz#68ce5e8a1ef0a23bb570cc28537b5332aba63ef1" 2578 | 2579 | process-nextick-args@~1.0.6: 2580 | version "1.0.7" 2581 | resolved "https://registry.yarnpkg.com/process-nextick-args/-/process-nextick-args-1.0.7.tgz#150e20b756590ad3f91093f25a4f2ad8bff30ba3" 2582 | 2583 | progress@^1.1.8: 2584 | version "1.1.8" 2585 | resolved "https://registry.yarnpkg.com/progress/-/progress-1.1.8.tgz#e260c78f6161cdd9b0e56cc3e0a85de17c7a57be" 2586 | 2587 | punycode@^1.4.1: 2588 | version "1.4.1" 2589 | resolved "https://registry.yarnpkg.com/punycode/-/punycode-1.4.1.tgz#c0d5a63b2718800ad8e1eb0fa5269c84dd41845e" 2590 | 2591 | qs@0.4.x: 2592 | version "0.4.2" 2593 | resolved "https://registry.yarnpkg.com/qs/-/qs-0.4.2.tgz#3cac4c861e371a8c9c4770ac23cda8de639b8e5f" 2594 | 2595 | qs@6.2.1: 2596 | version "6.2.1" 2597 | resolved "https://registry.yarnpkg.com/qs/-/qs-6.2.1.tgz#ce03c5ff0935bc1d9d69a9f14cbd18e568d67625" 2598 | 2599 | "qs@>= 0.4.0", qs@~6.4.0: 2600 | version "6.4.0" 2601 | resolved "https://registry.yarnpkg.com/qs/-/qs-6.4.0.tgz#13e26d28ad6b0ffaa91312cd3bf708ed351e7233" 2602 | 2603 | qs@~6.3.0: 2604 | version "6.3.2" 2605 | resolved "https://registry.yarnpkg.com/qs/-/qs-6.3.2.tgz#e75bd5f6e268122a2a0e0bda630b2550c166502c" 2606 | 2607 | randomatic@^1.1.3: 2608 | version "1.1.6" 2609 | resolved "https://registry.yarnpkg.com/randomatic/-/randomatic-1.1.6.tgz#110dcabff397e9dcff7c0789ccc0a49adf1ec5bb" 2610 | dependencies: 2611 | is-number "^2.0.2" 2612 | kind-of "^3.0.2" 2613 | 2614 | range-parser@~1.2.0: 2615 | version "1.2.0" 2616 | resolved "https://registry.yarnpkg.com/range-parser/-/range-parser-1.2.0.tgz#f49be6b487894ddc40dcc94a322f611092e00d5e" 2617 | 2618 | rc@^1.1.7: 2619 | version "1.2.0" 2620 | resolved "https://registry.yarnpkg.com/rc/-/rc-1.2.0.tgz#c7de973b7b46297c041366b2fd3d2363b1697c66" 2621 | dependencies: 2622 | deep-extend "~0.4.0" 2623 | ini "~1.3.0" 2624 | minimist "^1.2.0" 2625 | strip-json-comments "~2.0.1" 2626 | 2627 | read-pkg-up@^1.0.1: 2628 | version "1.0.1" 2629 | resolved "https://registry.yarnpkg.com/read-pkg-up/-/read-pkg-up-1.0.1.tgz#9d63c13276c065918d57f002a57f40a1b643fb02" 2630 | dependencies: 2631 | find-up "^1.0.0" 2632 | read-pkg "^1.0.0" 2633 | 2634 | read-pkg@^1.0.0: 2635 | version "1.1.0" 2636 | resolved "https://registry.yarnpkg.com/read-pkg/-/read-pkg-1.1.0.tgz#f5ffaa5ecd29cb31c0474bca7d756b6bb29e3f28" 2637 | dependencies: 2638 | load-json-file "^1.0.0" 2639 | normalize-package-data "^2.3.2" 2640 | path-type "^1.0.0" 2641 | 2642 | "readable-stream@^2.0.0 || ^1.1.13", readable-stream@^2.0.2, readable-stream@^2.1.4, readable-stream@^2.2.2: 2643 | version "2.2.6" 2644 | resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-2.2.6.tgz#8b43aed76e71483938d12a8d46c6cf1a00b1f816" 2645 | dependencies: 2646 | buffer-shims "^1.0.0" 2647 | core-util-is "~1.0.0" 2648 | inherits "~2.0.1" 2649 | isarray "~1.0.0" 2650 | process-nextick-args "~1.0.6" 2651 | string_decoder "~0.10.x" 2652 | util-deprecate "~1.0.1" 2653 | 2654 | readdirp@^2.0.0: 2655 | version "2.1.0" 2656 | resolved "https://registry.yarnpkg.com/readdirp/-/readdirp-2.1.0.tgz#4ed0ad060df3073300c48440373f72d1cc642d78" 2657 | dependencies: 2658 | graceful-fs "^4.1.2" 2659 | minimatch "^3.0.2" 2660 | readable-stream "^2.0.2" 2661 | set-immediate-shim "^1.0.1" 2662 | 2663 | readline2@^1.0.1: 2664 | version "1.0.1" 2665 | resolved "https://registry.yarnpkg.com/readline2/-/readline2-1.0.1.tgz#41059608ffc154757b715d9989d199ffbf372e35" 2666 | dependencies: 2667 | code-point-at "^1.0.0" 2668 | is-fullwidth-code-point "^1.0.0" 2669 | mute-stream "0.0.5" 2670 | 2671 | rechoir@^0.6.2: 2672 | version "0.6.2" 2673 | resolved "https://registry.yarnpkg.com/rechoir/-/rechoir-0.6.2.tgz#85204b54dba82d5742e28c96756ef43af50e3384" 2674 | dependencies: 2675 | resolve "^1.1.6" 2676 | 2677 | regenerate@^1.2.1: 2678 | version "1.3.2" 2679 | resolved "https://registry.yarnpkg.com/regenerate/-/regenerate-1.3.2.tgz#d1941c67bad437e1be76433add5b385f95b19260" 2680 | 2681 | regenerator-runtime@^0.10.0: 2682 | version "0.10.3" 2683 | resolved "https://registry.yarnpkg.com/regenerator-runtime/-/regenerator-runtime-0.10.3.tgz#8c4367a904b51ea62a908ac310bf99ff90a82a3e" 2684 | 2685 | regenerator-transform@0.9.8: 2686 | version "0.9.8" 2687 | resolved "https://registry.yarnpkg.com/regenerator-transform/-/regenerator-transform-0.9.8.tgz#0f88bb2bc03932ddb7b6b7312e68078f01026d6c" 2688 | dependencies: 2689 | babel-runtime "^6.18.0" 2690 | babel-types "^6.19.0" 2691 | private "^0.1.6" 2692 | 2693 | regex-cache@^0.4.2: 2694 | version "0.4.3" 2695 | resolved "https://registry.yarnpkg.com/regex-cache/-/regex-cache-0.4.3.tgz#9b1a6c35d4d0dfcef5711ae651e8e9d3d7114145" 2696 | dependencies: 2697 | is-equal-shallow "^0.1.3" 2698 | is-primitive "^2.0.0" 2699 | 2700 | regexpu-core@^2.0.0: 2701 | version "2.0.0" 2702 | resolved "https://registry.yarnpkg.com/regexpu-core/-/regexpu-core-2.0.0.tgz#49d038837b8dcf8bfa5b9a42139938e6ea2ae240" 2703 | dependencies: 2704 | regenerate "^1.2.1" 2705 | regjsgen "^0.2.0" 2706 | regjsparser "^0.1.4" 2707 | 2708 | regjsgen@^0.2.0: 2709 | version "0.2.0" 2710 | resolved "https://registry.yarnpkg.com/regjsgen/-/regjsgen-0.2.0.tgz#6c016adeac554f75823fe37ac05b92d5a4edb1f7" 2711 | 2712 | regjsparser@^0.1.4: 2713 | version "0.1.5" 2714 | resolved "https://registry.yarnpkg.com/regjsparser/-/regjsparser-0.1.5.tgz#7ee8f84dc6fa792d3fd0ae228d24bd949ead205c" 2715 | dependencies: 2716 | jsesc "~0.5.0" 2717 | 2718 | relateurl@0.2.x: 2719 | version "0.2.7" 2720 | resolved "https://registry.yarnpkg.com/relateurl/-/relateurl-0.2.7.tgz#54dbf377e51440aca90a4cd274600d3ff2d888a9" 2721 | 2722 | remove-trailing-separator@^1.0.1: 2723 | version "1.0.1" 2724 | resolved "https://registry.yarnpkg.com/remove-trailing-separator/-/remove-trailing-separator-1.0.1.tgz#615ebb96af559552d4bf4057c8436d486ab63cc4" 2725 | 2726 | repeat-element@^1.1.2: 2727 | version "1.1.2" 2728 | resolved "https://registry.yarnpkg.com/repeat-element/-/repeat-element-1.1.2.tgz#ef089a178d1483baae4d93eb98b4f9e4e11d990a" 2729 | 2730 | repeat-string@^1.5.2: 2731 | version "1.6.1" 2732 | resolved "https://registry.yarnpkg.com/repeat-string/-/repeat-string-1.6.1.tgz#8dcae470e1c88abc2d600fff4a776286da75e637" 2733 | 2734 | repeating@^2.0.0: 2735 | version "2.0.1" 2736 | resolved "https://registry.yarnpkg.com/repeating/-/repeating-2.0.1.tgz#5214c53a926d3552707527fbab415dbc08d06dda" 2737 | dependencies: 2738 | is-finite "^1.0.0" 2739 | 2740 | request@2.78.0: 2741 | version "2.78.0" 2742 | resolved "https://registry.yarnpkg.com/request/-/request-2.78.0.tgz#e1c8dec346e1c81923b24acdb337f11decabe9cc" 2743 | dependencies: 2744 | aws-sign2 "~0.6.0" 2745 | aws4 "^1.2.1" 2746 | caseless "~0.11.0" 2747 | combined-stream "~1.0.5" 2748 | extend "~3.0.0" 2749 | forever-agent "~0.6.1" 2750 | form-data "~2.1.1" 2751 | har-validator "~2.0.6" 2752 | hawk "~3.1.3" 2753 | http-signature "~1.1.0" 2754 | is-typedarray "~1.0.0" 2755 | isstream "~0.1.2" 2756 | json-stringify-safe "~5.0.1" 2757 | mime-types "~2.1.7" 2758 | node-uuid "~1.4.7" 2759 | oauth-sign "~0.8.1" 2760 | qs "~6.3.0" 2761 | stringstream "~0.0.4" 2762 | tough-cookie "~2.3.0" 2763 | tunnel-agent "~0.4.1" 2764 | 2765 | request@^2.81.0: 2766 | version "2.81.0" 2767 | resolved "https://registry.yarnpkg.com/request/-/request-2.81.0.tgz#c6928946a0e06c5f8d6f8a9333469ffda46298a0" 2768 | dependencies: 2769 | aws-sign2 "~0.6.0" 2770 | aws4 "^1.2.1" 2771 | caseless "~0.12.0" 2772 | combined-stream "~1.0.5" 2773 | extend "~3.0.0" 2774 | forever-agent "~0.6.1" 2775 | form-data "~2.1.1" 2776 | har-validator "~4.2.1" 2777 | hawk "~3.1.3" 2778 | http-signature "~1.1.0" 2779 | is-typedarray "~1.0.0" 2780 | isstream "~0.1.2" 2781 | json-stringify-safe "~5.0.1" 2782 | mime-types "~2.1.7" 2783 | oauth-sign "~0.8.1" 2784 | performance-now "^0.2.0" 2785 | qs "~6.4.0" 2786 | safe-buffer "^5.0.1" 2787 | stringstream "~0.0.4" 2788 | tough-cookie "~2.3.0" 2789 | tunnel-agent "^0.6.0" 2790 | uuid "^3.0.0" 2791 | 2792 | require-directory@^2.1.1: 2793 | version "2.1.1" 2794 | resolved "https://registry.yarnpkg.com/require-directory/-/require-directory-2.1.1.tgz#8c64ad5fd30dab1c976e2344ffe7f792a6a6df42" 2795 | 2796 | require-main-filename@^1.0.1: 2797 | version "1.0.1" 2798 | resolved "https://registry.yarnpkg.com/require-main-filename/-/require-main-filename-1.0.1.tgz#97f717b69d48784f5f526a6c5aa8ffdda055a4d1" 2799 | 2800 | require-uncached@^1.0.2: 2801 | version "1.0.3" 2802 | resolved "https://registry.yarnpkg.com/require-uncached/-/require-uncached-1.0.3.tgz#4e0d56d6c9662fd31e43011c4b95aa49955421d3" 2803 | dependencies: 2804 | caller-path "^0.1.0" 2805 | resolve-from "^1.0.0" 2806 | 2807 | requires-port@1.x.x: 2808 | version "1.0.0" 2809 | resolved "https://registry.yarnpkg.com/requires-port/-/requires-port-1.0.0.tgz#925d2601d39ac485e091cf0da5c6e694dc3dcaff" 2810 | 2811 | resolve-from@^1.0.0: 2812 | version "1.0.1" 2813 | resolved "https://registry.yarnpkg.com/resolve-from/-/resolve-from-1.0.1.tgz#26cbfe935d1aeeeabb29bc3fe5aeb01e93d44226" 2814 | 2815 | resolve@1.1.7: 2816 | version "1.1.7" 2817 | resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.1.7.tgz#203114d82ad2c5ed9e8e0411b3932875e889e97b" 2818 | 2819 | resolve@^1.1.6, resolve@^1.1.7: 2820 | version "1.3.2" 2821 | resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.3.2.tgz#1f0442c9e0cbb8136e87b9305f932f46c7f28235" 2822 | dependencies: 2823 | path-parse "^1.0.5" 2824 | 2825 | resp-modifier@6.0.2: 2826 | version "6.0.2" 2827 | resolved "https://registry.yarnpkg.com/resp-modifier/-/resp-modifier-6.0.2.tgz#b124de5c4fbafcba541f48ffa73970f4aa456b4f" 2828 | dependencies: 2829 | debug "^2.2.0" 2830 | minimatch "^3.0.2" 2831 | 2832 | restore-cursor@^1.0.1: 2833 | version "1.0.1" 2834 | resolved "https://registry.yarnpkg.com/restore-cursor/-/restore-cursor-1.0.1.tgz#34661f46886327fed2991479152252df92daa541" 2835 | dependencies: 2836 | exit-hook "^1.0.0" 2837 | onetime "^1.0.0" 2838 | 2839 | right-align@^0.1.1: 2840 | version "0.1.3" 2841 | resolved "https://registry.yarnpkg.com/right-align/-/right-align-0.1.3.tgz#61339b722fe6a3515689210d24e14c96148613ef" 2842 | dependencies: 2843 | align-text "^0.1.1" 2844 | 2845 | rimraf@2, rimraf@^2.2.8, rimraf@^2.5.1, rimraf@^2.6.1: 2846 | version "2.6.1" 2847 | resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-2.6.1.tgz#c2338ec643df7a1b7fe5c54fa86f57428a55f33d" 2848 | dependencies: 2849 | glob "^7.0.5" 2850 | 2851 | rollup-plugin-babel@^2.6.1: 2852 | version "2.7.1" 2853 | resolved "https://registry.yarnpkg.com/rollup-plugin-babel/-/rollup-plugin-babel-2.7.1.tgz#16528197b0f938a1536f44683c7a93d573182f57" 2854 | dependencies: 2855 | babel-core "6" 2856 | babel-plugin-transform-es2015-classes "^6.9.0" 2857 | object-assign "^4.1.0" 2858 | rollup-pluginutils "^1.5.0" 2859 | 2860 | rollup-plugin-buble@^0.15.0: 2861 | version "0.15.0" 2862 | resolved "https://registry.yarnpkg.com/rollup-plugin-buble/-/rollup-plugin-buble-0.15.0.tgz#83c3e89c7fd2266c7918f41ba3980313519c7fd0" 2863 | dependencies: 2864 | buble "^0.15.0" 2865 | rollup-pluginutils "^1.5.0" 2866 | 2867 | rollup-plugin-commonjs@^5.0.5: 2868 | version "5.0.5" 2869 | resolved "https://registry.yarnpkg.com/rollup-plugin-commonjs/-/rollup-plugin-commonjs-5.0.5.tgz#14f93d92cb70e6c31142914b83cd3e904be30c1f" 2870 | dependencies: 2871 | acorn "^4.0.1" 2872 | estree-walker "^0.2.1" 2873 | magic-string "^0.16.0" 2874 | resolve "^1.1.7" 2875 | rollup-pluginutils "^1.5.1" 2876 | 2877 | rollup-plugin-eslint@^3.0.0: 2878 | version "3.0.0" 2879 | resolved "https://registry.yarnpkg.com/rollup-plugin-eslint/-/rollup-plugin-eslint-3.0.0.tgz#4354c4e585e0d2bd925814e3dfc864cb792ec9a4" 2880 | dependencies: 2881 | eslint "^3.4.0" 2882 | rollup-pluginutils "^1.3.1" 2883 | 2884 | rollup-plugin-html@^0.2.1: 2885 | version "0.2.1" 2886 | resolved "https://registry.yarnpkg.com/rollup-plugin-html/-/rollup-plugin-html-0.2.1.tgz#a1862eca87ae54b677689d0d4133911e8226463d" 2887 | dependencies: 2888 | html-minifier "^3.0.2" 2889 | rollup-pluginutils "^1.5.0" 2890 | 2891 | rollup-plugin-node-resolve@^2.0.0: 2892 | version "2.1.0" 2893 | resolved "https://registry.yarnpkg.com/rollup-plugin-node-resolve/-/rollup-plugin-node-resolve-2.1.0.tgz#f182a71a2b705129210444a4b74696768baf0515" 2894 | dependencies: 2895 | browser-resolve "^1.11.0" 2896 | builtin-modules "^1.1.0" 2897 | resolve "^1.1.6" 2898 | 2899 | rollup-plugin-postcss@^0.2.0: 2900 | version "0.2.0" 2901 | resolved "https://registry.yarnpkg.com/rollup-plugin-postcss/-/rollup-plugin-postcss-0.2.0.tgz#11bb8c401f40b1e1d3728a08b18ba392a7b5e7ce" 2902 | dependencies: 2903 | postcss "^5.0.12" 2904 | rollup-pluginutils "^1.2.0" 2905 | style-inject "^0.1.0" 2906 | 2907 | rollup-plugin-progress@^0.1.0: 2908 | version "0.1.0" 2909 | resolved "https://registry.yarnpkg.com/rollup-plugin-progress/-/rollup-plugin-progress-0.1.0.tgz#9bf54694e2352fcda404d67b7a5951e7a353fcad" 2910 | dependencies: 2911 | chalk "^1.1.3" 2912 | rollup-pluginutils "^1.5.1" 2913 | 2914 | rollup-plugin-replace@^1.1.1: 2915 | version "1.1.1" 2916 | resolved "https://registry.yarnpkg.com/rollup-plugin-replace/-/rollup-plugin-replace-1.1.1.tgz#396315ded050a6ce43b9518a886a3f60efb1ea33" 2917 | dependencies: 2918 | magic-string "^0.15.2" 2919 | minimatch "^3.0.2" 2920 | rollup-pluginutils "^1.5.0" 2921 | 2922 | rollup-plugin-uglify@^1.0.1: 2923 | version "1.0.1" 2924 | resolved "https://registry.yarnpkg.com/rollup-plugin-uglify/-/rollup-plugin-uglify-1.0.1.tgz#11d0b0c8bcd2d07e6908f74fd16b0152390b922a" 2925 | dependencies: 2926 | uglify-js "^2.6.1" 2927 | 2928 | rollup-pluginutils@^1.2.0, rollup-pluginutils@^1.3.1, rollup-pluginutils@^1.5.0, rollup-pluginutils@^1.5.1: 2929 | version "1.5.2" 2930 | resolved "https://registry.yarnpkg.com/rollup-pluginutils/-/rollup-pluginutils-1.5.2.tgz#1e156e778f94b7255bfa1b3d0178be8f5c552408" 2931 | dependencies: 2932 | estree-walker "^0.2.1" 2933 | minimatch "^3.0.2" 2934 | 2935 | rollup@^0.36.3: 2936 | version "0.36.4" 2937 | resolved "https://registry.yarnpkg.com/rollup/-/rollup-0.36.4.tgz#a224494c5386c1d73d38f7bb86f69f5eb011a3d2" 2938 | dependencies: 2939 | source-map-support "^0.4.0" 2940 | 2941 | run-async@^0.1.0: 2942 | version "0.1.0" 2943 | resolved "https://registry.yarnpkg.com/run-async/-/run-async-0.1.0.tgz#c8ad4a5e110661e402a7d21b530e009f25f8e389" 2944 | dependencies: 2945 | once "^1.3.0" 2946 | 2947 | rx-lite@^3.1.2: 2948 | version "3.1.2" 2949 | resolved "https://registry.yarnpkg.com/rx-lite/-/rx-lite-3.1.2.tgz#19ce502ca572665f3b647b10939f97fd1615f102" 2950 | 2951 | rx@4.1.0: 2952 | version "4.1.0" 2953 | resolved "https://registry.yarnpkg.com/rx/-/rx-4.1.0.tgz#a5f13ff79ef3b740fe30aa803fb09f98805d4782" 2954 | 2955 | safe-buffer@^5.0.1: 2956 | version "5.0.1" 2957 | resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.0.1.tgz#d263ca54696cd8a306b5ca6551e92de57918fbe7" 2958 | 2959 | "semver@2 || 3 || 4 || 5", semver@^5.3.0: 2960 | version "5.3.0" 2961 | resolved "https://registry.yarnpkg.com/semver/-/semver-5.3.0.tgz#9b2ce5d3de02d17c6012ad326aa6b4d0cf54f94f" 2962 | 2963 | send@0.14.1: 2964 | version "0.14.1" 2965 | resolved "https://registry.yarnpkg.com/send/-/send-0.14.1.tgz#a954984325392f51532a7760760e459598c89f7a" 2966 | dependencies: 2967 | debug "~2.2.0" 2968 | depd "~1.1.0" 2969 | destroy "~1.0.4" 2970 | encodeurl "~1.0.1" 2971 | escape-html "~1.0.3" 2972 | etag "~1.7.0" 2973 | fresh "0.3.0" 2974 | http-errors "~1.5.0" 2975 | mime "1.3.4" 2976 | ms "0.7.1" 2977 | on-finished "~2.3.0" 2978 | range-parser "~1.2.0" 2979 | statuses "~1.3.0" 2980 | 2981 | serve-index@1.8.0: 2982 | version "1.8.0" 2983 | resolved "https://registry.yarnpkg.com/serve-index/-/serve-index-1.8.0.tgz#7c5d96c13fb131101f93c1c5774f8516a1e78d3b" 2984 | dependencies: 2985 | accepts "~1.3.3" 2986 | batch "0.5.3" 2987 | debug "~2.2.0" 2988 | escape-html "~1.0.3" 2989 | http-errors "~1.5.0" 2990 | mime-types "~2.1.11" 2991 | parseurl "~1.3.1" 2992 | 2993 | serve-static@1.11.1: 2994 | version "1.11.1" 2995 | resolved "https://registry.yarnpkg.com/serve-static/-/serve-static-1.11.1.tgz#d6cce7693505f733c759de57befc1af76c0f0805" 2996 | dependencies: 2997 | encodeurl "~1.0.1" 2998 | escape-html "~1.0.3" 2999 | parseurl "~1.3.1" 3000 | send "0.14.1" 3001 | 3002 | server-destroy@1.0.1: 3003 | version "1.0.1" 3004 | resolved "https://registry.yarnpkg.com/server-destroy/-/server-destroy-1.0.1.tgz#f13bf928e42b9c3e79383e61cc3998b5d14e6cdd" 3005 | 3006 | set-blocking@^2.0.0, set-blocking@~2.0.0: 3007 | version "2.0.0" 3008 | resolved "https://registry.yarnpkg.com/set-blocking/-/set-blocking-2.0.0.tgz#045f9782d011ae9a6803ddd382b24392b3d890f7" 3009 | 3010 | set-immediate-shim@^1.0.1: 3011 | version "1.0.1" 3012 | resolved "https://registry.yarnpkg.com/set-immediate-shim/-/set-immediate-shim-1.0.1.tgz#4b2b1b27eb808a9f8dcc481a58e5e56f599f3f61" 3013 | 3014 | setprototypeof@1.0.2: 3015 | version "1.0.2" 3016 | resolved "https://registry.yarnpkg.com/setprototypeof/-/setprototypeof-1.0.2.tgz#81a552141ec104b88e89ce383103ad5c66564d08" 3017 | 3018 | shelljs@0.7.7, shelljs@^0.7.5: 3019 | version "0.7.7" 3020 | resolved "https://registry.yarnpkg.com/shelljs/-/shelljs-0.7.7.tgz#b2f5c77ef97148f4b4f6e22682e10bba8667cff1" 3021 | dependencies: 3022 | glob "^7.0.0" 3023 | interpret "^1.0.0" 3024 | rechoir "^0.6.2" 3025 | 3026 | signal-exit@^3.0.0: 3027 | version "3.0.2" 3028 | resolved "https://registry.yarnpkg.com/signal-exit/-/signal-exit-3.0.2.tgz#b5fdc08f1287ea1178628e415e25132b73646c6d" 3029 | 3030 | slash@^1.0.0: 3031 | version "1.0.0" 3032 | resolved "https://registry.yarnpkg.com/slash/-/slash-1.0.0.tgz#c41f2f6c39fc16d1cd17ad4b5d896114ae470d55" 3033 | 3034 | slice-ansi@0.0.4: 3035 | version "0.0.4" 3036 | resolved "https://registry.yarnpkg.com/slice-ansi/-/slice-ansi-0.0.4.tgz#edbf8903f66f7ce2f8eafd6ceed65e264c831b35" 3037 | 3038 | sntp@1.x.x: 3039 | version "1.0.9" 3040 | resolved "https://registry.yarnpkg.com/sntp/-/sntp-1.0.9.tgz#6541184cc90aeea6c6e7b35e2659082443c66198" 3041 | dependencies: 3042 | hoek "2.x.x" 3043 | 3044 | socket.io-adapter@0.5.0: 3045 | version "0.5.0" 3046 | resolved "https://registry.yarnpkg.com/socket.io-adapter/-/socket.io-adapter-0.5.0.tgz#cb6d4bb8bec81e1078b99677f9ced0046066bb8b" 3047 | dependencies: 3048 | debug "2.3.3" 3049 | socket.io-parser "2.3.1" 3050 | 3051 | socket.io-client@1.6.0: 3052 | version "1.6.0" 3053 | resolved "https://registry.yarnpkg.com/socket.io-client/-/socket.io-client-1.6.0.tgz#5b668f4f771304dfeed179064708386fa6717853" 3054 | dependencies: 3055 | backo2 "1.0.2" 3056 | component-bind "1.0.0" 3057 | component-emitter "1.2.1" 3058 | debug "2.3.3" 3059 | engine.io-client "1.8.0" 3060 | has-binary "0.1.7" 3061 | indexof "0.0.1" 3062 | object-component "0.0.3" 3063 | parseuri "0.0.5" 3064 | socket.io-parser "2.3.1" 3065 | to-array "0.1.4" 3066 | 3067 | socket.io-parser@2.3.1: 3068 | version "2.3.1" 3069 | resolved "https://registry.yarnpkg.com/socket.io-parser/-/socket.io-parser-2.3.1.tgz#dd532025103ce429697326befd64005fcfe5b4a0" 3070 | dependencies: 3071 | component-emitter "1.1.2" 3072 | debug "2.2.0" 3073 | isarray "0.0.1" 3074 | json3 "3.3.2" 3075 | 3076 | socket.io@1.6.0: 3077 | version "1.6.0" 3078 | resolved "https://registry.yarnpkg.com/socket.io/-/socket.io-1.6.0.tgz#3e40d932637e6bd923981b25caf7c53e83b6e2e1" 3079 | dependencies: 3080 | debug "2.3.3" 3081 | engine.io "1.8.0" 3082 | has-binary "0.1.7" 3083 | object-assign "4.1.0" 3084 | socket.io-adapter "0.5.0" 3085 | socket.io-client "1.6.0" 3086 | socket.io-parser "2.3.1" 3087 | 3088 | source-map-support@^0.4.0, source-map-support@^0.4.2: 3089 | version "0.4.14" 3090 | resolved "https://registry.yarnpkg.com/source-map-support/-/source-map-support-0.4.14.tgz#9d4463772598b86271b4f523f6c1f4e02a7d6aef" 3091 | dependencies: 3092 | source-map "^0.5.6" 3093 | 3094 | source-map@0.5.x, source-map@^0.5.0, source-map@^0.5.6, source-map@~0.5.1: 3095 | version "0.5.6" 3096 | resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.5.6.tgz#75ce38f52bf0733c5a7f0c118d81334a2bb5f412" 3097 | 3098 | spdx-correct@~1.0.0: 3099 | version "1.0.2" 3100 | resolved "https://registry.yarnpkg.com/spdx-correct/-/spdx-correct-1.0.2.tgz#4b3073d933ff51f3912f03ac5519498a4150db40" 3101 | dependencies: 3102 | spdx-license-ids "^1.0.2" 3103 | 3104 | spdx-expression-parse@~1.0.0: 3105 | version "1.0.4" 3106 | resolved "https://registry.yarnpkg.com/spdx-expression-parse/-/spdx-expression-parse-1.0.4.tgz#9bdf2f20e1f40ed447fbe273266191fced51626c" 3107 | 3108 | spdx-license-ids@^1.0.2: 3109 | version "1.2.2" 3110 | resolved "https://registry.yarnpkg.com/spdx-license-ids/-/spdx-license-ids-1.2.2.tgz#c9df7a3424594ade6bd11900d596696dc06bac57" 3111 | 3112 | sprintf-js@~1.0.2: 3113 | version "1.0.3" 3114 | resolved "https://registry.yarnpkg.com/sprintf-js/-/sprintf-js-1.0.3.tgz#04e6926f662895354f3dd015203633b857297e2c" 3115 | 3116 | sshpk@^1.7.0: 3117 | version "1.11.0" 3118 | resolved "https://registry.yarnpkg.com/sshpk/-/sshpk-1.11.0.tgz#2d8d5ebb4a6fab28ffba37fa62a90f4a3ea59d77" 3119 | dependencies: 3120 | asn1 "~0.2.3" 3121 | assert-plus "^1.0.0" 3122 | dashdash "^1.12.0" 3123 | getpass "^0.1.1" 3124 | optionalDependencies: 3125 | bcrypt-pbkdf "^1.0.0" 3126 | ecc-jsbn "~0.1.1" 3127 | jodid25519 "^1.0.0" 3128 | jsbn "~0.1.0" 3129 | tweetnacl "~0.14.0" 3130 | 3131 | "statuses@>= 1.3.1 < 2", statuses@~1.3.0: 3132 | version "1.3.1" 3133 | resolved "https://registry.yarnpkg.com/statuses/-/statuses-1.3.1.tgz#faf51b9eb74aaef3b3acf4ad5f61abf24cb7b93e" 3134 | 3135 | stream-throttle@^0.1.3: 3136 | version "0.1.3" 3137 | resolved "https://registry.yarnpkg.com/stream-throttle/-/stream-throttle-0.1.3.tgz#add57c8d7cc73a81630d31cd55d3961cfafba9c3" 3138 | dependencies: 3139 | commander "^2.2.0" 3140 | limiter "^1.0.5" 3141 | 3142 | string-width@^1.0.1, string-width@^1.0.2: 3143 | version "1.0.2" 3144 | resolved "https://registry.yarnpkg.com/string-width/-/string-width-1.0.2.tgz#118bdf5b8cdc51a2a7e70d211e07e2b0b9b107d3" 3145 | dependencies: 3146 | code-point-at "^1.0.0" 3147 | is-fullwidth-code-point "^1.0.0" 3148 | strip-ansi "^3.0.0" 3149 | 3150 | string-width@^2.0.0: 3151 | version "2.0.0" 3152 | resolved "https://registry.yarnpkg.com/string-width/-/string-width-2.0.0.tgz#635c5436cc72a6e0c387ceca278d4e2eec52687e" 3153 | dependencies: 3154 | is-fullwidth-code-point "^2.0.0" 3155 | strip-ansi "^3.0.0" 3156 | 3157 | string_decoder@~0.10.x: 3158 | version "0.10.31" 3159 | resolved "https://registry.yarnpkg.com/string_decoder/-/string_decoder-0.10.31.tgz#62e203bc41766c6c28c9fc84301dab1c5310fa94" 3160 | 3161 | stringstream@~0.0.4: 3162 | version "0.0.5" 3163 | resolved "https://registry.yarnpkg.com/stringstream/-/stringstream-0.0.5.tgz#4e484cd4de5a0bbbee18e46307710a8a81621878" 3164 | 3165 | strip-ansi@^3.0.0, strip-ansi@^3.0.1: 3166 | version "3.0.1" 3167 | resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-3.0.1.tgz#6a385fb8853d952d5ff05d0e8aaf94278dc63dcf" 3168 | dependencies: 3169 | ansi-regex "^2.0.0" 3170 | 3171 | strip-bom@^2.0.0: 3172 | version "2.0.0" 3173 | resolved "https://registry.yarnpkg.com/strip-bom/-/strip-bom-2.0.0.tgz#6219a85616520491f35788bdbf1447a99c7e6b0e" 3174 | dependencies: 3175 | is-utf8 "^0.2.0" 3176 | 3177 | strip-bom@^3.0.0: 3178 | version "3.0.0" 3179 | resolved "https://registry.yarnpkg.com/strip-bom/-/strip-bom-3.0.0.tgz#2334c18e9c759f7bdd56fdef7e9ae3d588e68ed3" 3180 | 3181 | strip-json-comments@~2.0.1: 3182 | version "2.0.1" 3183 | resolved "https://registry.yarnpkg.com/strip-json-comments/-/strip-json-comments-2.0.1.tgz#3c531942e908c2697c0ec344858c286c7ca0a60a" 3184 | 3185 | style-inject@^0.1.0: 3186 | version "0.1.1" 3187 | resolved "https://registry.yarnpkg.com/style-inject/-/style-inject-0.1.1.tgz#76e4d3940ef5545f34bac841d1e97ec1411c8b99" 3188 | 3189 | supports-color@^2.0.0: 3190 | version "2.0.0" 3191 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-2.0.0.tgz#535d045ce6b6363fa40117084629995e9df324c7" 3192 | 3193 | supports-color@^3.2.3: 3194 | version "3.2.3" 3195 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-3.2.3.tgz#65ac0504b3954171d8a64946b2ae3cbb8a5f54f6" 3196 | dependencies: 3197 | has-flag "^1.0.0" 3198 | 3199 | table@^3.7.8: 3200 | version "3.8.3" 3201 | resolved "https://registry.yarnpkg.com/table/-/table-3.8.3.tgz#2bbc542f0fda9861a755d3947fefd8b3f513855f" 3202 | dependencies: 3203 | ajv "^4.7.0" 3204 | ajv-keywords "^1.0.0" 3205 | chalk "^1.1.1" 3206 | lodash "^4.0.0" 3207 | slice-ansi "0.0.4" 3208 | string-width "^2.0.0" 3209 | 3210 | tar-pack@^3.4.0: 3211 | version "3.4.0" 3212 | resolved "https://registry.yarnpkg.com/tar-pack/-/tar-pack-3.4.0.tgz#23be2d7f671a8339376cbdb0b8fe3fdebf317984" 3213 | dependencies: 3214 | debug "^2.2.0" 3215 | fstream "^1.0.10" 3216 | fstream-ignore "^1.0.5" 3217 | once "^1.3.3" 3218 | readable-stream "^2.1.4" 3219 | rimraf "^2.5.1" 3220 | tar "^2.2.1" 3221 | uid-number "^0.0.6" 3222 | 3223 | tar@^2.2.1: 3224 | version "2.2.1" 3225 | resolved "https://registry.yarnpkg.com/tar/-/tar-2.2.1.tgz#8e4d2a256c0e2185c6b18ad694aec968b83cb1d1" 3226 | dependencies: 3227 | block-stream "*" 3228 | fstream "^1.0.2" 3229 | inherits "2" 3230 | 3231 | text-table@~0.2.0: 3232 | version "0.2.0" 3233 | resolved "https://registry.yarnpkg.com/text-table/-/text-table-0.2.0.tgz#7f5ee823ae805207c00af2df4a84ec3fcfa570b4" 3234 | 3235 | tfunk@^3.0.1: 3236 | version "3.1.0" 3237 | resolved "https://registry.yarnpkg.com/tfunk/-/tfunk-3.1.0.tgz#38e4414fc64977d87afdaa72facb6d29f82f7b5b" 3238 | dependencies: 3239 | chalk "^1.1.1" 3240 | object-path "^0.9.0" 3241 | 3242 | through@^2.3.6: 3243 | version "2.3.8" 3244 | resolved "https://registry.yarnpkg.com/through/-/through-2.3.8.tgz#0dd4c9ffaabc357960b1b724115d7e0e86a2e1f5" 3245 | 3246 | to-array@0.1.4: 3247 | version "0.1.4" 3248 | resolved "https://registry.yarnpkg.com/to-array/-/to-array-0.1.4.tgz#17e6c11f73dd4f3d74cda7a4ff3238e9ad9bf890" 3249 | 3250 | to-fast-properties@^1.0.1: 3251 | version "1.0.2" 3252 | resolved "https://registry.yarnpkg.com/to-fast-properties/-/to-fast-properties-1.0.2.tgz#f3f5c0c3ba7299a7ef99427e44633257ade43320" 3253 | 3254 | tough-cookie@~2.3.0: 3255 | version "2.3.2" 3256 | resolved "https://registry.yarnpkg.com/tough-cookie/-/tough-cookie-2.3.2.tgz#f081f76e4c85720e6c37a5faced737150d84072a" 3257 | dependencies: 3258 | punycode "^1.4.1" 3259 | 3260 | trim-right@^1.0.1: 3261 | version "1.0.1" 3262 | resolved "https://registry.yarnpkg.com/trim-right/-/trim-right-1.0.1.tgz#cb2e1203067e0c8de1f614094b9fe45704ea6003" 3263 | 3264 | tryit@^1.0.1: 3265 | version "1.0.3" 3266 | resolved "https://registry.yarnpkg.com/tryit/-/tryit-1.0.3.tgz#393be730a9446fd1ead6da59a014308f36c289cb" 3267 | 3268 | tunnel-agent@^0.6.0: 3269 | version "0.6.0" 3270 | resolved "https://registry.yarnpkg.com/tunnel-agent/-/tunnel-agent-0.6.0.tgz#27a5dea06b36b04a0a9966774b290868f0fc40fd" 3271 | dependencies: 3272 | safe-buffer "^5.0.1" 3273 | 3274 | tunnel-agent@~0.4.1: 3275 | version "0.4.3" 3276 | resolved "https://registry.yarnpkg.com/tunnel-agent/-/tunnel-agent-0.4.3.tgz#6373db76909fe570e08d73583365ed828a74eeeb" 3277 | 3278 | tweetnacl@^0.14.3, tweetnacl@~0.14.0: 3279 | version "0.14.5" 3280 | resolved "https://registry.yarnpkg.com/tweetnacl/-/tweetnacl-0.14.5.tgz#5ae68177f192d4456269d108afa93ff8743f4f64" 3281 | 3282 | type-check@~0.3.2: 3283 | version "0.3.2" 3284 | resolved "https://registry.yarnpkg.com/type-check/-/type-check-0.3.2.tgz#5884cab512cf1d355e3fb784f30804b2b520db72" 3285 | dependencies: 3286 | prelude-ls "~1.1.2" 3287 | 3288 | typedarray@^0.0.6: 3289 | version "0.0.6" 3290 | resolved "https://registry.yarnpkg.com/typedarray/-/typedarray-0.0.6.tgz#867ac74e3864187b1d3d47d996a78ec5c8830777" 3291 | 3292 | ua-parser-js@0.7.12: 3293 | version "0.7.12" 3294 | resolved "https://registry.yarnpkg.com/ua-parser-js/-/ua-parser-js-0.7.12.tgz#04c81a99bdd5dc52263ea29d24c6bf8d4818a4bb" 3295 | 3296 | uglify-js@2.8.x, uglify-js@^2.6.1: 3297 | version "2.8.20" 3298 | resolved "https://registry.yarnpkg.com/uglify-js/-/uglify-js-2.8.20.tgz#be87100fbc18de3876ed606e9d24b4568311cecf" 3299 | dependencies: 3300 | source-map "~0.5.1" 3301 | yargs "~3.10.0" 3302 | optionalDependencies: 3303 | uglify-to-browserify "~1.0.0" 3304 | 3305 | uglify-to-browserify@~1.0.0: 3306 | version "1.0.2" 3307 | resolved "https://registry.yarnpkg.com/uglify-to-browserify/-/uglify-to-browserify-1.0.2.tgz#6e0924d6bda6b5afe349e39a6d632850a0f882b7" 3308 | 3309 | uid-number@^0.0.6: 3310 | version "0.0.6" 3311 | resolved "https://registry.yarnpkg.com/uid-number/-/uid-number-0.0.6.tgz#0ea10e8035e8eb5b8e4449f06da1c730663baa81" 3312 | 3313 | ultron@1.0.x: 3314 | version "1.0.2" 3315 | resolved "https://registry.yarnpkg.com/ultron/-/ultron-1.0.2.tgz#ace116ab557cd197386a4e88f4685378c8b2e4fa" 3316 | 3317 | underscore@1.7.x: 3318 | version "1.7.0" 3319 | resolved "https://registry.yarnpkg.com/underscore/-/underscore-1.7.0.tgz#6bbaf0877500d36be34ecaa584e0db9fef035209" 3320 | 3321 | unpipe@~1.0.0: 3322 | version "1.0.0" 3323 | resolved "https://registry.yarnpkg.com/unpipe/-/unpipe-1.0.0.tgz#b2bf4ee8514aae6165b4817829d21b2ef49904ec" 3324 | 3325 | upper-case@^1.1.1: 3326 | version "1.1.3" 3327 | resolved "https://registry.yarnpkg.com/upper-case/-/upper-case-1.1.3.tgz#f6b4501c2ec4cdd26ba78be7222961de77621598" 3328 | 3329 | user-home@^1.1.1: 3330 | version "1.1.1" 3331 | resolved "https://registry.yarnpkg.com/user-home/-/user-home-1.1.1.tgz#2b5be23a32b63a7c9deb8d0f28d485724a3df190" 3332 | 3333 | user-home@^2.0.0: 3334 | version "2.0.0" 3335 | resolved "https://registry.yarnpkg.com/user-home/-/user-home-2.0.0.tgz#9c70bfd8169bc1dcbf48604e0f04b8b49cde9e9f" 3336 | dependencies: 3337 | os-homedir "^1.0.0" 3338 | 3339 | util-deprecate@~1.0.1: 3340 | version "1.0.2" 3341 | resolved "https://registry.yarnpkg.com/util-deprecate/-/util-deprecate-1.0.2.tgz#450d4dc9fa70de732762fbd2d4a28981419a0ccf" 3342 | 3343 | utils-merge@1.0.0: 3344 | version "1.0.0" 3345 | resolved "https://registry.yarnpkg.com/utils-merge/-/utils-merge-1.0.0.tgz#0294fb922bb9375153541c4f7096231f287c8af8" 3346 | 3347 | uuid@^3.0.0: 3348 | version "3.0.1" 3349 | resolved "https://registry.yarnpkg.com/uuid/-/uuid-3.0.1.tgz#6544bba2dfda8c1cf17e629a3a305e2bb1fee6c1" 3350 | 3351 | v8flags@^2.0.10: 3352 | version "2.0.11" 3353 | resolved "https://registry.yarnpkg.com/v8flags/-/v8flags-2.0.11.tgz#bca8f30f0d6d60612cc2c00641e6962d42ae6881" 3354 | dependencies: 3355 | user-home "^1.1.1" 3356 | 3357 | validate-npm-package-license@^3.0.1: 3358 | version "3.0.1" 3359 | resolved "https://registry.yarnpkg.com/validate-npm-package-license/-/validate-npm-package-license-3.0.1.tgz#2804babe712ad3379459acfbe24746ab2c303fbc" 3360 | dependencies: 3361 | spdx-correct "~1.0.0" 3362 | spdx-expression-parse "~1.0.0" 3363 | 3364 | verror@1.3.6: 3365 | version "1.3.6" 3366 | resolved "https://registry.yarnpkg.com/verror/-/verror-1.3.6.tgz#cff5df12946d297d2baaefaa2689e25be01c005c" 3367 | dependencies: 3368 | extsprintf "1.0.2" 3369 | 3370 | vlq@^0.2.1: 3371 | version "0.2.1" 3372 | resolved "https://registry.yarnpkg.com/vlq/-/vlq-0.2.1.tgz#14439d711891e682535467f8587c5630e4222a6c" 3373 | 3374 | weinre@^2.0.0-pre-I0Z7U9OV: 3375 | version "2.0.0-pre-I0Z7U9OV" 3376 | resolved "https://registry.yarnpkg.com/weinre/-/weinre-2.0.0-pre-I0Z7U9OV.tgz#fef8aa223921f7b40bbbbd4c3ed4302f6fd0a813" 3377 | dependencies: 3378 | express "2.5.x" 3379 | nopt "3.0.x" 3380 | underscore "1.7.x" 3381 | 3382 | which-module@^1.0.0: 3383 | version "1.0.0" 3384 | resolved "https://registry.yarnpkg.com/which-module/-/which-module-1.0.0.tgz#bba63ca861948994ff307736089e3b96026c2a4f" 3385 | 3386 | wide-align@^1.1.0: 3387 | version "1.1.0" 3388 | resolved "https://registry.yarnpkg.com/wide-align/-/wide-align-1.1.0.tgz#40edde802a71fea1f070da3e62dcda2e7add96ad" 3389 | dependencies: 3390 | string-width "^1.0.1" 3391 | 3392 | window-size@0.1.0: 3393 | version "0.1.0" 3394 | resolved "https://registry.yarnpkg.com/window-size/-/window-size-0.1.0.tgz#5438cd2ea93b202efa3a19fe8887aee7c94f9c9d" 3395 | 3396 | window-size@^0.1.2: 3397 | version "0.1.4" 3398 | resolved "https://registry.yarnpkg.com/window-size/-/window-size-0.1.4.tgz#f8e1aa1ee5a53ec5bf151ffa09742a6ad7697876" 3399 | 3400 | window-size@^0.2.0: 3401 | version "0.2.0" 3402 | resolved "https://registry.yarnpkg.com/window-size/-/window-size-0.2.0.tgz#b4315bb4214a3d7058ebeee892e13fa24d98b075" 3403 | 3404 | wordwrap@0.0.2: 3405 | version "0.0.2" 3406 | resolved "https://registry.yarnpkg.com/wordwrap/-/wordwrap-0.0.2.tgz#b79669bb42ecb409f83d583cad52ca17eaa1643f" 3407 | 3408 | wordwrap@~1.0.0: 3409 | version "1.0.0" 3410 | resolved "https://registry.yarnpkg.com/wordwrap/-/wordwrap-1.0.0.tgz#27584810891456a4171c8d0226441ade90cbcaeb" 3411 | 3412 | wrap-ansi@^2.0.0: 3413 | version "2.1.0" 3414 | resolved "https://registry.yarnpkg.com/wrap-ansi/-/wrap-ansi-2.1.0.tgz#d8fc3d284dd05794fe84973caecdd1cf824fdd85" 3415 | dependencies: 3416 | string-width "^1.0.1" 3417 | strip-ansi "^3.0.1" 3418 | 3419 | wrappy@1: 3420 | version "1.0.2" 3421 | resolved "https://registry.yarnpkg.com/wrappy/-/wrappy-1.0.2.tgz#b5243d8f3ec1aa35f1364605bc0d1036e30ab69f" 3422 | 3423 | write@^0.2.1: 3424 | version "0.2.1" 3425 | resolved "https://registry.yarnpkg.com/write/-/write-0.2.1.tgz#5fc03828e264cea3fe91455476f7a3c566cb0757" 3426 | dependencies: 3427 | mkdirp "^0.5.1" 3428 | 3429 | ws@1.1.1: 3430 | version "1.1.1" 3431 | resolved "https://registry.yarnpkg.com/ws/-/ws-1.1.1.tgz#082ddb6c641e85d4bb451f03d52f06eabdb1f018" 3432 | dependencies: 3433 | options ">=0.0.5" 3434 | ultron "1.0.x" 3435 | 3436 | wtf-8@1.0.0: 3437 | version "1.0.0" 3438 | resolved "https://registry.yarnpkg.com/wtf-8/-/wtf-8-1.0.0.tgz#392d8ba2d0f1c34d1ee2d630f15d0efb68e1048a" 3439 | 3440 | xml-char-classes@^1.0.0: 3441 | version "1.0.0" 3442 | resolved "https://registry.yarnpkg.com/xml-char-classes/-/xml-char-classes-1.0.0.tgz#64657848a20ffc5df583a42ad8a277b4512bbc4d" 3443 | 3444 | xmlhttprequest-ssl@1.5.3: 3445 | version "1.5.3" 3446 | resolved "https://registry.yarnpkg.com/xmlhttprequest-ssl/-/xmlhttprequest-ssl-1.5.3.tgz#185a888c04eca46c3e4070d99f7b49de3528992d" 3447 | 3448 | xtend@^4.0.0: 3449 | version "4.0.1" 3450 | resolved "https://registry.yarnpkg.com/xtend/-/xtend-4.0.1.tgz#a5c6d532be656e23db820efb943a1f04998d63af" 3451 | 3452 | y18n@^3.2.0, y18n@^3.2.1: 3453 | version "3.2.1" 3454 | resolved "https://registry.yarnpkg.com/y18n/-/y18n-3.2.1.tgz#6d15fba884c08679c0d77e88e7759e811e07fa41" 3455 | 3456 | yargs-parser@^4.1.0: 3457 | version "4.2.1" 3458 | resolved "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-4.2.1.tgz#29cceac0dc4f03c6c87b4a9f217dd18c9f74871c" 3459 | dependencies: 3460 | camelcase "^3.0.0" 3461 | 3462 | yargs@3.29.0: 3463 | version "3.29.0" 3464 | resolved "https://registry.yarnpkg.com/yargs/-/yargs-3.29.0.tgz#1aab9660eae79d8b8f675bcaeeab6ee34c2cf69c" 3465 | dependencies: 3466 | camelcase "^1.2.1" 3467 | cliui "^3.0.3" 3468 | decamelize "^1.0.0" 3469 | os-locale "^1.4.0" 3470 | window-size "^0.1.2" 3471 | y18n "^3.2.0" 3472 | 3473 | yargs@6.4.0: 3474 | version "6.4.0" 3475 | resolved "https://registry.yarnpkg.com/yargs/-/yargs-6.4.0.tgz#816e1a866d5598ccf34e5596ddce22d92da490d4" 3476 | dependencies: 3477 | camelcase "^3.0.0" 3478 | cliui "^3.2.0" 3479 | decamelize "^1.1.1" 3480 | get-caller-file "^1.0.1" 3481 | os-locale "^1.4.0" 3482 | read-pkg-up "^1.0.1" 3483 | require-directory "^2.1.1" 3484 | require-main-filename "^1.0.1" 3485 | set-blocking "^2.0.0" 3486 | string-width "^1.0.2" 3487 | which-module "^1.0.0" 3488 | window-size "^0.2.0" 3489 | y18n "^3.2.1" 3490 | yargs-parser "^4.1.0" 3491 | 3492 | yargs@~3.10.0: 3493 | version "3.10.0" 3494 | resolved "https://registry.yarnpkg.com/yargs/-/yargs-3.10.0.tgz#f7ee7bd857dd7c1d2d38c0e74efbd681d1431fd1" 3495 | dependencies: 3496 | camelcase "^1.0.2" 3497 | cliui "^2.1.0" 3498 | decamelize "^1.0.0" 3499 | window-size "0.1.0" 3500 | 3501 | yeast@0.1.2: 3502 | version "0.1.2" 3503 | resolved "https://registry.yarnpkg.com/yeast/-/yeast-0.1.2.tgz#008e06d8094320c372dbc2f8ed76a0ca6c8ac419" 3504 | --------------------------------------------------------------------------------