├── index.js ├── .prettierrc ├── .travis.yml ├── src ├── languages.js ├── request-helper.js ├── __mocks__ │ ├── fixtures │ │ ├── translation-beginning-map.js │ │ ├── alternative-map.js │ │ ├── split-map.js │ │ └── translation-map.js │ └── request-helper.js ├── validators.js ├── deepl-api-helper.js └── deepl-translator.js ├── .npmignore ├── .github ├── ISSUE_TEMPLATE.md └── PULL_REQUEST_TEMPLATE.md ├── shims └── client-request-helper.js ├── .gitignore ├── package.json ├── __tests__ ├── __snapshots__ │ └── deepl-api-snapshot.test.js.snap ├── deepl-api-snapshot.test.js └── deepl-translator.test.js ├── example.js ├── CHANGELOG.md ├── README.md ├── LICENSE └── yarn.lock /index.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./src/deepl-translator'); 2 | -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- 1 | trailingComma: "es5" 2 | printWidth: 80 3 | tabWidth: 2 4 | useTabs: false 5 | singleQuote: true -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | cache: yarn 3 | node_js: 4 | - "6" 5 | after_success: 6 | - yarn coverage -------------------------------------------------------------------------------- /src/languages.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | EN: 'English', 3 | DE: 'German', 4 | FR: 'French', 5 | ES: 'Spanish', 6 | IT: 'Italian', 7 | NL: 'Dutch', 8 | PL: 'Polish', 9 | }; 10 | -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- 1 | __mocks__ 2 | __tests__ 3 | logs 4 | *.log 5 | npm-debug.log* 6 | yarn-debug.log* 7 | yarn-error.log* 8 | coverage 9 | node_modules 10 | .env 11 | .vscode 12 | .DS_Store 13 | .npmignore 14 | .gitignore -------------------------------------------------------------------------------- /src/request-helper.js: -------------------------------------------------------------------------------- 1 | const https = require('https'); 2 | 3 | module.exports = (options, postBody) => { 4 | return new Promise((resolve, reject) => { 5 | const req = https.request(options, res => { 6 | let data = ''; 7 | 8 | res.setEncoding('utf8'); 9 | res.on('data', chunk => (data += chunk)); 10 | res.on('end', () => resolve(JSON.parse(data.trim()))); 11 | }); 12 | 13 | req.on('error', reject); 14 | req.write(JSON.stringify(postBody)); 15 | req.end(); 16 | }); 17 | }; 18 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- 1 | **NOTE:** Before creating an issue please make sure you are using the latest version of `deepl-translator`. 2 | 3 | ## The problem 4 | 5 | Please describe the problem you are having or the feature you want to see added. Do you want to request a **feature** or report a **bug**? 6 | 7 | ## What is the current behavior? 8 | 9 | If the current behavior is a **bug**, please provide the steps to reproduce. 10 | 11 | ## What is the expected behavior? 12 | 13 | ## Environment 14 | 15 | Please mention your `node.js` and `deepl-translator` version. 16 | -------------------------------------------------------------------------------- /src/__mocks__/fixtures/translation-beginning-map.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | 'Die Übersetzungsqualität von deepl ist erstaunlich!': { 3 | 'The translation performance': { 4 | result: { 5 | source_lang: 'DE', 6 | target_lang: 'EN', 7 | translations: [ 8 | { 9 | beams: [ 10 | { 11 | postprocessed_sentence: 12 | 'The translation performance of deepl is amazing!', 13 | }, 14 | ], 15 | }, 16 | ], 17 | }, 18 | }, 19 | }, 20 | }; 21 | -------------------------------------------------------------------------------- /shims/client-request-helper.js: -------------------------------------------------------------------------------- 1 | module.exports = ({ protocol, hostname, path }, postBody) => { 2 | return new Promise((resolve, reject) => { 3 | let xhr = new XMLHttpRequest(); 4 | xhr.open('POST', `${protocol}//${hostname}${path}`, true); 5 | xhr.setRequestHeader('Content-Type', 'application/json;charset=UTF-8'); 6 | xhr.onreadystatechange = () => { 7 | if (xhr.readyState == 4) { 8 | xhr.status == 200 9 | ? resolve(JSON.parse(xhr.responseText)) 10 | : reject(xhr.status); 11 | } 12 | }; 13 | xhr.send(JSON.stringify(postBody)); 14 | }); 15 | }; 16 | -------------------------------------------------------------------------------- /src/__mocks__/fixtures/alternative-map.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | 'The translation': { 3 | result: { 4 | source_lang: 'DE', 5 | target_lang: 'EN', 6 | translations: [ 7 | { 8 | beams: [ 9 | { 10 | postprocessed_sentence: 'The translation quality', 11 | }, 12 | { 13 | postprocessed_sentence: 'The translation of deepl', 14 | }, 15 | { 16 | postprocessed_sentence: 'The translation performance', 17 | }, 18 | ], 19 | }, 20 | ], 21 | }, 22 | }, 23 | }; 24 | -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- 1 | ## Description 2 | 3 | Please describe your pull request. 4 | 5 | ## Types of changes 6 | 7 | - [ ] Bugfix (non-breaking change which fixes an issue) 8 | - [ ] New feature (non-breaking change which adds functionality) 9 | - [ ] Breaking change (fix or feature that would cause existing functionality to not work as expected) 10 | 11 | ## Pull request checklist 12 | 13 | - [ ] Make sure the commit messages are in ([conventional commit style](https://conventionalcommits.org/)) so a changelog can be ([automatically generated](https://github.com/lob/generate-changelog)). 14 | - [ ] Make sure your changes do not fail linting checks (prettier) nor unit test. 15 | - [ ] Make sure the coverage remains at **100%** and write additional tests if needed. 16 | - [ ] Make sure to update the `README` if necessary -------------------------------------------------------------------------------- /src/validators.js: -------------------------------------------------------------------------------- 1 | const languages = require('./languages'); 2 | 3 | module.exports = { 4 | validateText: text => 5 | Promise.resolve( 6 | (typeof text !== 'string' || text.trim().length === 0) && 7 | 'Must provide valid text for translation' 8 | ), 9 | validateTargetLanguage: targetLanguage => 10 | Promise.resolve( 11 | !languages[targetLanguage] && 12 | `Invalid target language code ${targetLanguage}` 13 | ), 14 | validateSourceLanguage: sourceLanguage => 15 | Promise.resolve( 16 | sourceLanguage !== 'auto' && 17 | !languages[sourceLanguage] && 18 | `Invalid source language code ${sourceLanguage}` 19 | ), 20 | validateSourceTargetLanguage: (sourceLanguage, targetLanguage) => 21 | Promise.resolve( 22 | targetLanguage === sourceLanguage && 23 | `Target and source language codes identical` 24 | ), 25 | validateBeginning: beginning => 26 | Promise.resolve( 27 | !beginning && `Must provide valid text for beginning translation override` 28 | ), 29 | }; 30 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | # Logs 2 | logs 3 | *.log 4 | npm-debug.log* 5 | yarn-debug.log* 6 | yarn-error.log* 7 | 8 | # Runtime data 9 | pids 10 | *.pid 11 | *.seed 12 | *.pid.lock 13 | 14 | # Directory for instrumented libs generated by jscoverage/JSCover 15 | lib-cov 16 | 17 | # Coverage directory used by tools like istanbul 18 | coverage 19 | 20 | # nyc test coverage 21 | .nyc_output 22 | 23 | # Grunt intermediate storage (http://gruntjs.com/creating-plugins#storing-task-files) 24 | .grunt 25 | 26 | # Bower dependency directory (https://bower.io/) 27 | bower_components 28 | 29 | # node-waf configuration 30 | .lock-wscript 31 | 32 | # Compiled binary addons (http://nodejs.org/api/addons.html) 33 | build/Release 34 | 35 | # Dependency directories 36 | node_modules/ 37 | jspm_packages/ 38 | 39 | # Typescript v1 declaration files 40 | typings/ 41 | 42 | # Optional npm cache directory 43 | .npm 44 | .npmrc 45 | 46 | # Optional eslint cache 47 | .eslintcache 48 | 49 | # Optional REPL history 50 | .node_repl_history 51 | 52 | # Output of 'npm pack' 53 | *.tgz 54 | 55 | # Yarn Integrity file 56 | .yarn-integrity 57 | 58 | # dotenv environment variables file 59 | .env 60 | 61 | # VSCode launch configurations 62 | .vscode -------------------------------------------------------------------------------- /src/__mocks__/fixtures/split-map.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | 'This is a representative chunk of text in english.': { 3 | id: 1, 4 | jsonrpc: '2.0', 5 | result: { 6 | lang: 'EN', 7 | lang_is_confident: 1, 8 | splitted_texts: [['This is a representative chunk of text in english.']], 9 | }, 10 | }, 11 | 12 | 'Happy birthday!': { 13 | id: 1, 14 | jsonrpc: '2.0', 15 | result: { 16 | lang: 'EN', 17 | lang_is_confident: 1, 18 | splitted_texts: [['Happy birthday!']], 19 | }, 20 | }, 21 | 22 | 'This mock results in an incorrect split reponse format': { 23 | invalid_response: {}, 24 | }, 25 | 26 | 'This mock results in an incorrect translation reponse format': { 27 | id: 1, 28 | jsonrpc: '2.0', 29 | result: { 30 | lang: 'EN', 31 | lang_is_confident: 1, 32 | splitted_texts: [ 33 | ['This mock results in an incorrect translation reponse format'], 34 | ], 35 | }, 36 | }, 37 | 38 | 'Das ist der erste Satz... Das der zweite.': { 39 | id: 1, 40 | jsonrpc: '2.0', 41 | result: { 42 | lang: 'DE', 43 | lang_is_confident: 0, 44 | splitted_texts: [ 45 | ['Das ist der erste Satz...', 'Das der zweite.'], 46 | [], 47 | [" C'est la troisième phrase."], 48 | [], 49 | [], 50 | [' Y ese es el cuarto.'], 51 | [' I piąta.'], 52 | ], 53 | }, 54 | }, 55 | 56 | 'Die Übersetzungsqualität von deepl ist erstaunlich!': { 57 | id: 1, 58 | jsonrpc: '2.0', 59 | result: { 60 | lang: 'DE', 61 | lang_is_confident: 1, 62 | splitted_texts: [['Die Übersetzungsqualität von deepl ist erstaunlich!']], 63 | }, 64 | }, 65 | }; 66 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "deepl-translator", 3 | "version": "1.2.1", 4 | "description": "This module provides promised methods for translating text using DeepL Translator (https://www.deepl.com/translator) undocumented API.", 5 | "main": "index.js", 6 | "browser": { 7 | "./src/request-helper.js": "./shims/client-request-helper.js" 8 | }, 9 | "scripts": { 10 | "test": "prettier-check './**/*.js' && jest", 11 | "coverage": "jest --coverage && cat ./coverage/lcov.info | coveralls && rm -rf ./coverage", 12 | "release:major": "generate-changelog -u https://github.com/vsetka/deepl-translator -M && git add CHANGELOG.md && git commit -m 'updated CHANGELOG.md' && yarn version --new-version major && git push origin && git push origin --tags", 13 | "release:minor": "generate-changelog -u https://github.com/vsetka/deepl-translator -m && git add CHANGELOG.md && git commit -m 'updated CHANGELOG.md' && yarn version --new-version minor && git push origin && git push origin --tags", 14 | "release:patch": "generate-changelog -u https://github.com/vsetka/deepl-translator -p && git add CHANGELOG.md && git commit -m 'updated CHANGELOG.md' && yarn version --new-version patch && git push origin && git push origin --tags" 15 | }, 16 | "jest": { 17 | "verbose": true, 18 | "testEnvironment": "node" 19 | }, 20 | "repository": "https://github.com/vsetka/deepl-translator.git", 21 | "homepage": "https://github.com/vsetka/deepl-translator#readme", 22 | "author": "Vladimir Setka ", 23 | "license": "Apache-2.0", 24 | "keywords": [ 25 | "deepl", 26 | "translator", 27 | "translate", 28 | "deep", 29 | "learning", 30 | "node", 31 | "deepl-translator", 32 | "promised", 33 | "machine-translation", 34 | "text", 35 | "translation" 36 | ], 37 | "bugs": { 38 | "url": "https://github.com/vsetka/deepl-translator/issues" 39 | }, 40 | "engineStrict": true, 41 | "engines": { 42 | "node": ">=6.0.0" 43 | }, 44 | "devDependencies": { 45 | "coveralls": "^2.13.1", 46 | "generate-changelog": "^1.5.0", 47 | "jest": "^23.4.1", 48 | "prettier": "^1.6.1", 49 | "prettier-check": "^1.0.0" 50 | } 51 | } 52 | -------------------------------------------------------------------------------- /__tests__/__snapshots__/deepl-api-snapshot.test.js.snap: -------------------------------------------------------------------------------- 1 | // Jest Snapshot v1, https://goo.gl/fbAQLP 2 | 3 | exports[`Gets a correct translation 1`] = ` 4 | Object { 5 | "id": Any, 6 | "jsonrpc": "2.0", 7 | "result": Object { 8 | "date": Any, 9 | "source_lang": "EN", 10 | "source_lang_is_confident": Any, 11 | "target_lang": "DE", 12 | "timestamp": Any, 13 | "translations": Array [ 14 | Object { 15 | "beams": Array [ 16 | Object { 17 | "num_symbols": Any, 18 | "postprocessed_sentence": Any, 19 | "score": Any, 20 | "totalLogProb": Any, 21 | }, 22 | Object { 23 | "num_symbols": Any, 24 | "postprocessed_sentence": Any, 25 | "score": Any, 26 | "totalLogProb": Any, 27 | }, 28 | Object { 29 | "num_symbols": Any, 30 | "postprocessed_sentence": Any, 31 | "score": Any, 32 | "totalLogProb": Any, 33 | }, 34 | Object { 35 | "num_symbols": Any, 36 | "postprocessed_sentence": Any, 37 | "score": Any, 38 | "totalLogProb": Any, 39 | }, 40 | Object { 41 | "num_symbols": Any, 42 | "postprocessed_sentence": Any, 43 | "score": Any, 44 | "totalLogProb": Any, 45 | }, 46 | ], 47 | "timeAfterPreprocessing": Any, 48 | "timeReceivedFromEndpoint": Any, 49 | "timeSentToEndpoint": Any, 50 | "total_time_endpoint": Any, 51 | }, 52 | ], 53 | }, 54 | } 55 | `; 56 | 57 | exports[`Splits sentences correctly 1`] = ` 58 | Object { 59 | "id": 1, 60 | "jsonrpc": "2.0", 61 | "result": Object { 62 | "lang": "EN", 63 | "lang_is_confident": 1, 64 | "splitted_texts": Array [ 65 | Array [ 66 | "Split me, please.", 67 | "Yours truly, the sentence.", 68 | ], 69 | ], 70 | }, 71 | } 72 | `; 73 | -------------------------------------------------------------------------------- /__tests__/deepl-api-snapshot.test.js: -------------------------------------------------------------------------------- 1 | const { getTranslation, splitSentences } = require('../src/deepl-api-helper'); 2 | 3 | jest.setTimeout(30000); 4 | 5 | test('Splits sentences correctly', () => { 6 | return splitSentences(['Split me, please. Yours truly, the sentence.'], 'EN') 7 | .then(response => expect(response).toMatchSnapshot()) 8 | .catch(() => fail()); 9 | }); 10 | 11 | test('Gets a correct translation', () => { 12 | return getTranslation(['Translate me, please.'], 'DE', 'EN') 13 | .then(response => 14 | expect(response).toMatchSnapshot({ 15 | id: expect.any(Number), 16 | jsonrpc: '2.0', 17 | result: { 18 | date: expect.any(String), 19 | source_lang: 'EN', 20 | source_lang_is_confident: expect.any(Number), 21 | target_lang: 'DE', 22 | timestamp: expect.any(Number), 23 | translations: [ 24 | { 25 | beams: [ 26 | { 27 | num_symbols: expect.any(Number), 28 | postprocessed_sentence: expect.any(String), 29 | score: expect.any(Number), 30 | totalLogProb: expect.any(Number), 31 | }, 32 | { 33 | num_symbols: expect.any(Number), 34 | postprocessed_sentence: expect.any(String), 35 | score: expect.any(Number), 36 | totalLogProb: expect.any(Number), 37 | }, 38 | { 39 | num_symbols: expect.any(Number), 40 | postprocessed_sentence: expect.any(String), 41 | score: expect.any(Number), 42 | totalLogProb: expect.any(Number), 43 | }, 44 | { 45 | num_symbols: expect.any(Number), 46 | postprocessed_sentence: expect.any(String), 47 | score: expect.any(Number), 48 | totalLogProb: expect.any(Number), 49 | }, 50 | { 51 | num_symbols: expect.any(Number), 52 | postprocessed_sentence: expect.any(String), 53 | score: expect.any(Number), 54 | totalLogProb: expect.any(Number), 55 | }, 56 | ], 57 | timeAfterPreprocessing: expect.any(Number), 58 | timeReceivedFromEndpoint: expect.any(Number), 59 | timeSentToEndpoint: expect.any(Number), 60 | total_time_endpoint: expect.any(Number), 61 | }, 62 | ], 63 | }, 64 | }) 65 | ) 66 | .catch(() => fail()); 67 | }); 68 | -------------------------------------------------------------------------------- /src/__mocks__/request-helper.js: -------------------------------------------------------------------------------- 1 | const translationMap = require('./fixtures/translation-map'); 2 | const splitMap = require('./fixtures/split-map'); 3 | const alternativeMap = require('./fixtures/alternative-map'); 4 | const translationBeginningMap = require('./fixtures/translation-beginning-map'); 5 | 6 | function handleSplitSentences(options, postBody) { 7 | return new Promise((resolve, reject) => { 8 | const { 9 | params: { 10 | texts: [inputText], 11 | }, 12 | } = postBody; 13 | 14 | process.nextTick( 15 | () => 16 | !splitMap[inputText] 17 | ? reject(new Error('This input should throw')) 18 | : resolve(splitMap[inputText]) 19 | ); 20 | }); 21 | } 22 | 23 | function handleTranslateJobs(options, postBody) { 24 | return new Promise((resolve, reject) => { 25 | const { 26 | params: { 27 | jobs: [{ raw_en_sentence: inputText }], 28 | }, 29 | } = postBody; 30 | 31 | process.nextTick( 32 | () => 33 | !translationMap[inputText] 34 | ? reject(new Error('This input should throw')) 35 | : resolve(translationMap[inputText]) 36 | ); 37 | }); 38 | } 39 | 40 | function handleTranslateBeginningJobs(options, postBody) { 41 | return new Promise((resolve, reject) => { 42 | const { 43 | params: { 44 | jobs: [ 45 | { raw_en_sentence: inputText, de_sentence_beginning: beginning }, 46 | ], 47 | }, 48 | } = postBody; 49 | 50 | process.nextTick( 51 | () => 52 | !translationBeginningMap[inputText][beginning] 53 | ? reject(new Error('This input should throw up')) 54 | : resolve(translationBeginningMap[inputText][beginning]) 55 | ); 56 | }); 57 | } 58 | 59 | function handleAlternativeJobs(option, postBody) { 60 | return new Promise((resolve, reject) => { 61 | const { 62 | params: { 63 | jobs: [{ de_sentence_beginning: beginning }], 64 | }, 65 | } = postBody; 66 | 67 | process.nextTick( 68 | () => 69 | !alternativeMap[beginning] 70 | ? reject(new Error('This input should throw')) 71 | : resolve(alternativeMap[beginning]) 72 | ); 73 | }); 74 | } 75 | 76 | module.exports = (options, postBody) => { 77 | if (postBody.method === 'LMT_split_into_sentences') { 78 | return handleSplitSentences(options, postBody); 79 | } 80 | if (postBody.params.jobs[0].kind === 'default') { 81 | return !postBody.params.jobs[0].de_sentence_beginning 82 | ? handleTranslateJobs(options, postBody) 83 | : handleTranslateBeginningJobs(options, postBody); 84 | } 85 | return handleAlternativeJobs(options, postBody); 86 | }; 87 | -------------------------------------------------------------------------------- /example.js: -------------------------------------------------------------------------------- 1 | const { 2 | translate, 3 | detectLanguage, 4 | wordAlternatives, 5 | translateWithAlternatives, 6 | } = require('./index'); 7 | 8 | // Translate text with explicit source and target languages 9 | translate('Die Übersetzungsqualität von deepl ist erstaunlich!', 'EN', 'DE') 10 | .then(res => console.log(`Translation: ${res.translation}`)) 11 | .catch(console.error); 12 | 13 | // Translate short text with this method to get a few translation alternatives 14 | translateWithAlternatives( 15 | 'Die Übersetzungsqualität von deepl ist erstaunlich!', 16 | 'EN' 17 | ) 18 | .then(res => 19 | console.log( 20 | `Translation alternatives: ${res.translationAlternatives.join(', ')}` 21 | ) 22 | ) 23 | .catch(console.error); 24 | 25 | // Leave out the source language or specify 'auto' to autodetect the input 26 | translate('This is a representative chunk of text in english.', 'DE') 27 | .then(res => console.log(`Translation: ${res.translation}`)) 28 | .catch(console.error); 29 | 30 | // Detect the text language without giving back the translation 31 | detectLanguage('Deepl también puede detectar un idioma. ¿Qué idioma es este?') 32 | .then(res => console.log(`Detected language: ${res.languageName}`)) 33 | .catch(console.error); 34 | 35 | // Multi-line translations with different languages in each paragraph work as well 36 | translate( 37 | `Das ist der erste Satz... Das der zweite. 38 | 39 | C'est la troisième phrase. 40 | 41 | 42 | Y ese es el cuarto. 43 | I piąta.`, 44 | 'EN' 45 | ) 46 | .then(res => console.log(`Translation: ${res.translation}`)) 47 | .catch(console.error); 48 | 49 | // This method allows for tweaking the translation. By providing a beginning, we define a word or a phrase 50 | // for which we want alternative translations within the context of a larger body of text (a sentence). 51 | // One of the returned alternatives can then be selected and passed into translateWithAlternatives 52 | // as an overriding word/phrase for the beginning of the whole translation. 53 | { 54 | const text = 'Die Übersetzungsqualität von deepl ist erstaunlich!'; 55 | // Translates to: 'The translation quality of deepl is amazing!' 56 | wordAlternatives(text, 'EN', 'DE', 'The translation') 57 | .then(res => { 58 | console.log(`Alternative beginnings:`); 59 | res.alternatives.slice(0, 3).forEach(el => console.log(el)); 60 | // Choose the third alternetive 61 | return res.alternatives[2]; 62 | }) 63 | .then(beginning => { 64 | // Request translation with selected alternative beginning 65 | return translateWithAlternatives(text, 'EN', 'DE', beginning); 66 | }) 67 | .then(res => console.log(`Alternative: ${res.translation}`)); 68 | } 69 | -------------------------------------------------------------------------------- /src/deepl-api-helper.js: -------------------------------------------------------------------------------- 1 | const request = require('./request-helper'); 2 | 3 | const DEEPL_HOSTNAME = 'www2.deepl.com'; 4 | const DEEPL_ENDPOINT = '/jsonrpc'; 5 | 6 | function getHandleJobsBody(texts, targetLanguage, sourceLanguage, beginning) { 7 | return { 8 | jsonrpc: '2.0', 9 | method: 'LMT_handle_jobs', 10 | params: { 11 | jobs: texts.map(text => { 12 | return { 13 | kind: 'default', 14 | raw_en_sentence: text, 15 | de_sentence_beginning: beginning, 16 | }; 17 | }), 18 | lang: { 19 | user_preferred_langs: ['EN'], 20 | source_lang_user_selected: sourceLanguage, 21 | target_lang: targetLanguage, 22 | }, 23 | priority: -1, 24 | }, 25 | id: 1, 26 | }; 27 | } 28 | 29 | function getAlternativesBody(text, targetLanguage, sourceLanguage, beginning) { 30 | return { 31 | jsonrpc: '2.0', 32 | method: 'LMT_handle_jobs', 33 | params: { 34 | jobs: [ 35 | { 36 | de_sentence_beginning: beginning, 37 | kind: 'alternatives_at_position', 38 | raw_en_sentence: text, 39 | }, 40 | ], 41 | lang: { 42 | source_lang_computed: sourceLanguage, 43 | target_lang: targetLanguage, 44 | }, 45 | priority: 1, 46 | }, 47 | id: 1, 48 | }; 49 | } 50 | 51 | function getSplitSentencesBody(texts, sourceLanguage) { 52 | return { 53 | jsonrpc: '2.0', 54 | method: 'LMT_split_into_sentences', 55 | params: { 56 | texts, 57 | lang: { 58 | lang_user_selected: sourceLanguage, 59 | user_preferred_langs: ['EN'], 60 | }, 61 | }, 62 | id: 1, 63 | }; 64 | } 65 | 66 | function getRequestOptions(postBody) { 67 | return { 68 | hostname: DEEPL_HOSTNAME, 69 | port: 443, 70 | protocol: 'https:', 71 | path: DEEPL_ENDPOINT, 72 | method: 'POST', 73 | headers: { 74 | 'Content-Type': 'application/json', 75 | 'Content-Length': Buffer.byteLength(JSON.stringify(postBody)), 76 | 'Cache-Control': 'no-cache', 77 | }, 78 | }; 79 | } 80 | 81 | module.exports = { 82 | getTranslation: (texts, targetLanguage, sourceLanguage, beginning) => { 83 | const postBody = getHandleJobsBody( 84 | texts, 85 | targetLanguage, 86 | sourceLanguage, 87 | beginning 88 | ); 89 | const options = getRequestOptions(postBody); 90 | 91 | return request(options, postBody); 92 | }, 93 | splitSentences: (texts, sourceLanguage) => { 94 | const postBody = getSplitSentencesBody(texts, sourceLanguage); 95 | const options = getRequestOptions(postBody); 96 | 97 | return request(options, postBody); 98 | }, 99 | getAlternatives: (text, targetLanguage, sourceLanguage, beginning) => { 100 | const postBody = getAlternativesBody( 101 | text, 102 | targetLanguage, 103 | sourceLanguage, 104 | beginning 105 | ); 106 | const options = getRequestOptions(postBody); 107 | 108 | return request(options, postBody); 109 | }, 110 | }; 111 | -------------------------------------------------------------------------------- /src/__mocks__/fixtures/translation-map.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | 'Happy birthday!': { 3 | result: { 4 | source_lang: 'EN', 5 | target_lang: 'DE', 6 | translations: [ 7 | { 8 | beams: [ 9 | { 10 | postprocessed_sentence: 'Herzlichen Glückwunsch zum Geburtstag!', 11 | }, 12 | ], 13 | }, 14 | ], 15 | }, 16 | }, 17 | 18 | 'This is a representative chunk of text in english.': { 19 | result: { 20 | source_lang: 'EN', 21 | target_lang: 'EN', 22 | translations: [ 23 | { 24 | beams: [ 25 | { 26 | postprocessed_sentence: 27 | 'This is a representative chunk of text in english.', 28 | }, 29 | ], 30 | }, 31 | ], 32 | }, 33 | }, 34 | 35 | 'This mock results in an incorrect translation reponse format': { 36 | result: { 37 | no_translations_here: [], 38 | }, 39 | }, 40 | 41 | 'Die Übersetzungsqualität von deepl ist erstaunlich!': { 42 | result: { 43 | source_lang: 'DE', 44 | target_lang: 'EN', 45 | translations: [ 46 | { 47 | beams: [ 48 | { 49 | postprocessed_sentence: 50 | 'The translation quality of deepl is amazing!', 51 | }, 52 | { 53 | postprocessed_sentence: "deepl's translation quality is amazing!", 54 | }, 55 | { 56 | postprocessed_sentence: 57 | 'The translation quality of deepl is astonishing!', 58 | }, 59 | { 60 | postprocessed_sentence: 61 | 'The translation quality of deepl is astounding!', 62 | }, 63 | ], 64 | }, 65 | ], 66 | }, 67 | }, 68 | 69 | 'Das ist der erste Satz...': { 70 | result: { 71 | source_lang: 'DE', 72 | target_lang: 'EN', 73 | translations: [ 74 | { 75 | beams: [ 76 | { 77 | postprocessed_sentence: "That's the first sentence...", 78 | }, 79 | ], 80 | }, 81 | { 82 | beams: [ 83 | { 84 | postprocessed_sentence: "That's the second one.", 85 | }, 86 | ], 87 | }, 88 | ], 89 | }, 90 | }, 91 | 92 | " C'est la troisième phrase.": { 93 | result: { 94 | source_lang: 'FR', 95 | target_lang: 'EN', 96 | translations: [ 97 | { 98 | beams: [ 99 | { 100 | postprocessed_sentence: "That's the third sentence.", 101 | }, 102 | ], 103 | }, 104 | ], 105 | }, 106 | }, 107 | 108 | ' Y ese es el cuarto.': { 109 | result: { 110 | source_lang: 'ES', 111 | target_lang: 'EN', 112 | translations: [ 113 | { 114 | beams: [ 115 | { 116 | postprocessed_sentence: "And that's the fourth.", 117 | }, 118 | ], 119 | }, 120 | ], 121 | }, 122 | }, 123 | 124 | ' I piąta.': { 125 | result: { 126 | source_lang: 'PL', 127 | target_lang: 'EN', 128 | translations: [ 129 | { 130 | beams: [ 131 | { 132 | postprocessed_sentence: 'Fifth.', 133 | }, 134 | ], 135 | }, 136 | ], 137 | }, 138 | }, 139 | }; 140 | -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- 1 | #### 1.2.1 (2018-07-27) 2 | 3 | ##### Bug Fixes 4 | 5 | * Update deepl API ([#8](https://github.com/vsetka/deepl-translator/pull/8)) ([5e7f1c3c](https://github.com/vsetka/deepl-translator/commit/5e7f1c3c08abd6e49323d40990f0738b16238983)) 6 | 7 | ### 1.2.0 (2017-11-19) 8 | 9 | ##### Chores 10 | 11 | * add more keywords for better discoverability ([e6d4169d](https://github.com/vsetka/deepl-translator/commit/e6d4169d28a387ab6534fdf15a271f6b7f60e576)) 12 | * update tests, mocks, examples and docs ([986c442a](https://github.com/vsetka/deepl-translator/commit/986c442af7b919a71fd1b719646c934ca214ea3f)) 13 | * update badges ([735f7c2d](https://github.com/vsetka/deepl-translator/commit/735f7c2d8ebda709545ee330d8818e6129b2f886)) 14 | * create issue and pull request templates ([0080dd23](https://github.com/vsetka/deepl-translator/commit/0080dd23fde3229433df62dc24eda9ab85b96db2)) 15 | 16 | ##### New Features 17 | 18 | * shim http request implementation to support front-end use ([6bd22620](https://github.com/vsetka/deepl-translator/commit/6bd22620a4785cca2806c329614614a4f26248b1)) 19 | * add a method that gets alternative translations for shorter texts ([b482ed55](https://github.com/vsetka/deepl-translator/commit/b482ed557816941e55935581f01de42642a848fd)) 20 | * add support to use deepl's word-alternative API ([40148fa9](https://github.com/vsetka/deepl-translator/commit/40148fa9f42ad5e640e018d5ec8c702f63ae3408)) 21 | 22 | ##### Bug Fixes 23 | 24 | * process response fully before parsing it to JSON ([ea42c3d9](https://github.com/vsetka/deepl-translator/commit/ea42c3d9922f43dfbb5b886a3bb991be7955aac3)) 25 | 26 | ##### Refactors 27 | 28 | * use the lightweight translation method in wordAlternatives ([5c8cc760](https://github.com/vsetka/deepl-translator/commit/5c8cc76015ad0b0cb6228c878c3b87af001f53c6)) 29 | * implement more granular parameter validation ([fba8517e](https://github.com/vsetka/deepl-translator/commit/fba8517e1a259c39a228b50a9681ee1ad8836fcd)) 30 | 31 | ### 1.1.0 (2017-10-01) 32 | 33 | ##### Chores 34 | 35 | * add changelog ([7a37b153](https://github.com/vsetka/deepl-translator/commit/7a37b153822d419339bfede3dad5ba41ddb43cdc)) 36 | * update tests, mocks, examples and docs ([3d697a42](https://github.com/vsetka/deepl-translator/commit/3d697a42c4869f6029eacf9a6f233e093a47897f)) 37 | 38 | ##### New Features 39 | 40 | * respect paragraph formatting in multi-line translations ([aa546064](https://github.com/vsetka/deepl-translator/commit/aa5460645d7b25f32e77b2607cd370eeb80a246f)) 41 | * add multi-line text support ([3a7333bd](https://github.com/vsetka/deepl-translator/commit/3a7333bdda6512d1c16ee63cc6b486832e116b86)) 42 | 43 | ##### Refactors 44 | 45 | * reorganize structure ([7bc9a427](https://github.com/vsetka/deepl-translator/commit/7bc9a42798b355df891e686a7c3640ee8576a8a8)) 46 | 47 | ### 1.0.1 (2017-09-10) 48 | 49 | ##### Chores 50 | 51 | * bump patch ([a0c56a19](https://github.com/vsetka/deepl-translator/commit/a0c56a19e61c226a215e96db7d72cfae47badb4e)) 52 | * add prettier and enforce it in tests ([50455842](https://github.com/vsetka/deepl-translator/commit/5045584282dde450c4f4ebc95c2ef8755710ad06)) 53 | * update README example ([549b5e68](https://github.com/vsetka/deepl-translator/commit/549b5e684843ce45da9c95b54358feaf32f3e9de)) 54 | * create an .npmignore file [ci skip] ([91d0a027](https://github.com/vsetka/deepl-translator/commit/91d0a027b2d6f3a263b42607025ceeb1cd915b75)) 55 | * update README.md [ci skip] ([5c5d6d0c](https://github.com/vsetka/deepl-translator/commit/5c5d6d0c5b4712db66034981937db16f15097467)) 56 | * run coverage and push to coveralls ([5710ba61](https://github.com/vsetka/deepl-translator/commit/5710ba617392306cfa25d1377cdffcbb697dcb3a)) 57 | * configure travis ci ([964e5548](https://github.com/vsetka/deepl-translator/commit/964e55488557e0d53abca548ab810eb5785e74be)) 58 | 59 | ##### Bug Fixes 60 | 61 | * update registry url in yarn.lock ([44a6a0a7](https://github.com/vsetka/deepl-translator/commit/44a6a0a7c04d80393bc436f94c06a67353349485)) 62 | 63 | ### 1.0.0 (2017-09-10) 64 | 65 | ##### Chores 66 | 67 | * add coverage script to package.json ([83f679d2](https://github.com/vsetka/deepl-translator/commit/83f679d2768b8909120add57653c1d3b1f4319d5)) 68 | * commit yarn.lock ([acf16bbd](https://github.com/vsetka/deepl-translator/commit/acf16bbd1b110671d56f980b9c742ceb44d4f256)) 69 | * add .vscode launch configs to .gitignore ([e1e59f60](https://github.com/vsetka/deepl-translator/commit/e1e59f60f4edf4fee7c4c0b57048535ad673d889)) 70 | * add an example with input auto detect ([7f601b8e](https://github.com/vsetka/deepl-translator/commit/7f601b8e43604ea6f5ef99887a413771334b8b41)) 71 | * write docs ([0962743d](https://github.com/vsetka/deepl-translator/commit/0962743d42285eeb0b5431b6251b18ebaa96699f)) 72 | * create initial README ([a821ed9b](https://github.com/vsetka/deepl-translator/commit/a821ed9b11a10063a4e789d1de76e83c608fc00b)) 73 | 74 | ##### New Features 75 | 76 | * first verison ([fa31d5d3](https://github.com/vsetka/deepl-translator/commit/fa31d5d318ebf9057d60946e9dbf6fe216089fbc)) 77 | 78 | ##### Other Changes 79 | 80 | * write unit tests ([b3d2b3ee](https://github.com/vsetka/deepl-translator/commit/b3d2b3ee1aba0696829935f9f477cc9542940959)) 81 | 82 | ##### Refactors 83 | 84 | * extract request logic into a helper module for easier mocking ([21050e32](https://github.com/vsetka/deepl-translator/commit/21050e32b0c6ab37624421af7122a4ad3a964caf)) 85 | 86 | -------------------------------------------------------------------------------- /__tests__/deepl-translator.test.js: -------------------------------------------------------------------------------- 1 | jest.mock('../src/request-helper'); 2 | 3 | const { 4 | translate, 5 | detectLanguage, 6 | wordAlternatives, 7 | translateWithAlternatives, 8 | } = require('../src/deepl-translator'); 9 | 10 | test('Detects english input language correctly', () => { 11 | return expect( 12 | detectLanguage('This is a representative chunk of text in english.') 13 | ).resolves.toEqual({ 14 | languageCode: 'EN', 15 | languageName: 'English', 16 | }); 17 | }); 18 | 19 | test('Translate input correctly without specifying its language', () => { 20 | return expect(translate('Happy birthday!', 'DE')).resolves.toEqual({ 21 | targetLanguage: 'DE', 22 | resolvedSourceLanguage: 'EN', 23 | translation: 'Herzlichen Glückwunsch zum Geburtstag!', 24 | }); 25 | }); 26 | 27 | test('Translate multi-line multi-language text while keeping paragraph structure', () => { 28 | return expect( 29 | translate( 30 | `Das ist der erste Satz... Das der zweite. 31 | 32 | C'est la troisième phrase. 33 | 34 | 35 | Y ese es el cuarto. 36 | I piąta.`, 37 | 'EN' 38 | ) 39 | ).resolves.toEqual({ 40 | resolvedSourceLanguage: 'DE,FR,ES,PL', 41 | targetLanguage: 'EN', 42 | translation: `That's the first sentence... That's the second one. 43 | 44 | That's the third sentence. 45 | 46 | 47 | And that's the fourth. 48 | Fifth.`, 49 | }); 50 | }); 51 | 52 | test('Create translation with a fixed beginning', () => { 53 | return expect( 54 | translateWithAlternatives( 55 | 'Die Übersetzungsqualität von deepl ist erstaunlich!', 56 | 'EN', 57 | 'DE', 58 | 'The translation performance' 59 | ) 60 | ).resolves.toEqual({ 61 | resolvedSourceLanguage: 'DE', 62 | targetLanguage: 'EN', 63 | translation: 'The translation performance of deepl is amazing!', 64 | translationAlternatives: [ 65 | 'The translation performance of deepl is amazing!', 66 | ], 67 | }); 68 | }); 69 | 70 | test('Rejects on invalid target language', () => { 71 | return expect(translate('Happy birthday!')).rejects.toEqual( 72 | new Error( 73 | 'Input parameter validation failed with error(s): Invalid target language code undefined' 74 | ) 75 | ); 76 | }); 77 | 78 | test('Rejects on invalid source language', () => { 79 | return expect(translate('Happy birthday!', 'DE', 'XX')).rejects.toEqual( 80 | new Error( 81 | 'Input parameter validation failed with error(s): Invalid source language code XX' 82 | ) 83 | ); 84 | }); 85 | 86 | test('Rejects when source and target languages are identical', () => { 87 | return expect(translate('Happy birthday!', 'DE', 'DE')).rejects.toEqual( 88 | new Error( 89 | 'Input parameter validation failed with error(s): Target and source language codes identical' 90 | ) 91 | ); 92 | }); 93 | 94 | test('Rejects when input text is not provided', () => { 95 | return expect(translate('', 'DE')).rejects.toEqual( 96 | new Error( 97 | 'Input parameter validation failed with error(s): Must provide valid text for translation' 98 | ) 99 | ); 100 | }); 101 | 102 | test('Rejects when translation response in incorrect format', () => { 103 | return expect( 104 | translate( 105 | 'This mock results in an incorrect translation reponse format', 106 | 'DE' 107 | ) 108 | ).rejects.toEqual( 109 | new Error( 110 | 'Unexpected error when parsing deepl translation response: {"result":{"no_translations_here":[]}}' 111 | ) 112 | ); 113 | }); 114 | 115 | test('Rejects when split response in incorrect format', () => { 116 | return expect( 117 | translate('This mock results in an incorrect split reponse format', 'DE') 118 | ).rejects.toEqual( 119 | new Error( 120 | 'Unexpected error when parsing deepl split sentence response: {"invalid_response":{}}' 121 | ) 122 | ); 123 | }); 124 | 125 | test('Get alternative beginnings of a sentence', () => { 126 | const text = 'Die Übersetzungsqualität von deepl ist erstaunlich!'; 127 | // Translates to: 'The translation quality of deepl is amazing!' 128 | return expect( 129 | wordAlternatives(text, 'EN', 'auto', 'The translation') 130 | ).resolves.toEqual({ 131 | targetLanguage: 'EN', 132 | resolvedSourceLanguage: 'DE', 133 | alternatives: [ 134 | 'The translation quality', 135 | 'The translation of deepl', 136 | 'The translation performance', 137 | ], 138 | }); 139 | }); 140 | 141 | test('Rejects when requesting alternative beginning without beginning', () => { 142 | return expect( 143 | wordAlternatives( 144 | 'Die Übersetzungsqualität von deepl ist erstaunlich!', 145 | 'EN', 146 | 'DE' 147 | ) 148 | ).rejects.toEqual( 149 | new Error( 150 | 'Input parameter validation failed with error(s): Must provide valid text for beginning translation override' 151 | ) 152 | ); 153 | }); 154 | 155 | test('Translate short text to a few translation alternatives', () => { 156 | return expect( 157 | translateWithAlternatives( 158 | 'Die Übersetzungsqualität von deepl ist erstaunlich!', 159 | 'EN' 160 | ) 161 | ).resolves.toEqual({ 162 | targetLanguage: 'EN', 163 | resolvedSourceLanguage: 'DE', 164 | translation: 'The translation quality of deepl is amazing!', 165 | translationAlternatives: [ 166 | 'The translation quality of deepl is amazing!', 167 | "deepl's translation quality is amazing!", 168 | 'The translation quality of deepl is astonishing!', 169 | 'The translation quality of deepl is astounding!', 170 | ], 171 | }); 172 | }); 173 | -------------------------------------------------------------------------------- /src/deepl-translator.js: -------------------------------------------------------------------------------- 1 | const languages = require('./languages'); 2 | const { 3 | validateText, 4 | validateSourceLanguage, 5 | validateTargetLanguage, 6 | validateSourceTargetLanguage, 7 | validateBeginning, 8 | } = require('./validators'); 9 | 10 | const { 11 | splitSentences, 12 | getTranslation, 13 | getAlternatives, 14 | } = require('./deepl-api-helper'); 15 | const { EOL } = require('os'); 16 | 17 | function detectLanguage(text) { 18 | return translate(text, 'EN').then(({ resolvedSourceLanguage }) => { 19 | return { 20 | languageCode: resolvedSourceLanguage, 21 | languageName: resolvedSourceLanguage 22 | .split(',') 23 | .map(code => languages[code]) 24 | .join(','), 25 | }; 26 | }); 27 | } 28 | 29 | function validateInputs(validationArray) { 30 | return Promise.all(validationArray).then(validationResults => { 31 | const errors = validationResults 32 | .filter(validationResult => validationResult) 33 | .join('\n'); 34 | 35 | return errors.length 36 | ? Promise.reject( 37 | new Error( 38 | `Input parameter validation failed with error(s): ${errors}` 39 | ) 40 | ) 41 | : Promise.resolve(''); 42 | }); 43 | } 44 | 45 | function translate(text, targetLanguage, sourceLanguage = 'auto') { 46 | return validateInputs([ 47 | validateText(text), 48 | validateSourceLanguage(sourceLanguage), 49 | validateTargetLanguage(targetLanguage), 50 | validateSourceTargetLanguage(sourceLanguage, targetLanguage), 51 | ]) 52 | .then(valid => splitSentences(text.split(EOL), sourceLanguage)) 53 | .then(transformSplitSentencesResponse) 54 | .then(([paragraphs, resolvedSourceLanguage]) => { 55 | return Promise.all( 56 | paragraphs.map( 57 | paragraph => 58 | paragraph.length === 0 59 | ? [] 60 | : getTranslation( 61 | paragraph, 62 | targetLanguage, 63 | resolvedSourceLanguage || 'auto' 64 | ).then(transformTranslationResponse) 65 | ) 66 | ).then(translatedParagraphs => ({ 67 | targetLanguage, 68 | resolvedSourceLanguage: translatedParagraphs 69 | .map(paragraph => paragraph[1]) 70 | .reduce( 71 | (unique, current) => [ 72 | ...unique, 73 | unique.indexOf(current) < 0 && current, 74 | ], 75 | [] 76 | ) 77 | .filter(lang => lang) 78 | .join(','), 79 | translation: translatedParagraphs 80 | .map(([paragraph]) => paragraph || '') 81 | .join(EOL), 82 | })); 83 | }); 84 | } 85 | 86 | function translateWithAlternatives( 87 | text, 88 | targetLanguage, 89 | sourceLanguage = 'auto', 90 | beginning 91 | ) { 92 | return validateInputs([ 93 | validateText(text), 94 | validateSourceLanguage(sourceLanguage), 95 | validateTargetLanguage(targetLanguage), 96 | validateSourceTargetLanguage(sourceLanguage, targetLanguage), 97 | ]) 98 | .then(valid => 99 | getTranslation([text], targetLanguage, sourceLanguage, beginning) 100 | ) 101 | .then(({ result: { source_lang, translations: [{ beams }] } }) => ({ 102 | targetLanguage, 103 | resolvedSourceLanguage: source_lang, 104 | translation: beams[0].postprocessed_sentence, 105 | translationAlternatives: beams.map( 106 | ({ postprocessed_sentence }) => postprocessed_sentence 107 | ), 108 | })); 109 | } 110 | 111 | function wordAlternatives(text, targetLanguage, sourceLanguage, beginning) { 112 | return validateInputs([ 113 | validateText(text), 114 | validateSourceLanguage(sourceLanguage), 115 | validateTargetLanguage(targetLanguage), 116 | validateSourceTargetLanguage(sourceLanguage, targetLanguage), 117 | validateBeginning(beginning), 118 | ]) 119 | .then(valid => 120 | getAlternatives(text, targetLanguage, sourceLanguage, beginning) 121 | ) 122 | .then(res => { 123 | return { 124 | targetLanguage: res.result.target_lang, 125 | resolvedSourceLanguage: res.result.source_lang, 126 | alternatives: res.result.translations[0].beams.map(alt => { 127 | return alt.postprocessed_sentence; 128 | }), 129 | }; 130 | }); 131 | } 132 | 133 | function transformTranslationResponse(response) { 134 | try { 135 | const { 136 | result: { 137 | target_lang: targetLanguage, 138 | source_lang: resolvedSourceLanguage, 139 | translations, 140 | }, 141 | } = response; 142 | 143 | const translatedSentences = translations.map( 144 | ({ beams: [{ postprocessed_sentence: translation }] }) => translation 145 | ); 146 | 147 | return [translatedSentences.join(' '), resolvedSourceLanguage]; 148 | } catch (error) { 149 | throw new Error( 150 | `Unexpected error when parsing deepl translation response: ${JSON.stringify( 151 | response 152 | )}` 153 | ); 154 | } 155 | } 156 | 157 | function transformSplitSentencesResponse(response) { 158 | try { 159 | const { 160 | result: { splitted_texts: texts, lang_is_confident, lang }, 161 | } = response; 162 | 163 | return [texts, lang_is_confident && lang]; 164 | } catch (error) { 165 | throw new Error( 166 | `Unexpected error when parsing deepl split sentence response: ${JSON.stringify( 167 | response 168 | )}` 169 | ); 170 | } 171 | } 172 | 173 | module.exports = { 174 | translate, 175 | translateWithAlternatives, 176 | detectLanguage, 177 | wordAlternatives, 178 | }; 179 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | **Repository not maintained** 2 | 3 | # deepl-translator 4 | 5 | [![Coverage Status](https://coveralls.io/repos/github/vsetka/deepl-translator/badge.svg?branch=master)](https://coveralls.io/github/vsetka/deepl-translator?branch=master) 6 | [![Build Status](https://travis-ci.org/vsetka/deepl-translator.svg?branch=master)](https://travis-ci.org/vsetka/deepl-translator) 7 | [![Known Vulnerabilities](https://snyk.io/test/github/vsetka/deepl-translator/badge.svg)](https://snyk.io/test/github/vsetka/deepl-translator) 8 | [![npm version](https://img.shields.io/npm/v/deepl-translator.svg)](https://www.npmjs.com/package/deepl-translator) 9 | [![styled with prettier](https://img.shields.io/badge/styled_with-prettier-ff69b4.svg)](#badge) 10 | 11 | This unofficial node module provides promised methods for detecting language and translating text using DeepL Translator (https://www.deepl.com/translator) undocumented API. 12 | 13 | DeepL has done a great job with their deep learning translation model which outperforms the competition by a wide margin. An excerpt from their page on that topic: 14 | 15 | > ## Blind test 16 | > 100 sentences were translated by DeepL Translator, Google Translate, Microsoft Translator, and Facebook. Professional translators assessed the translations, without knowing which system produced which results. The translators preferred our translations over the competition's by a factor of 3:1. Here are the results of a test run in August 2017: 17 | 18 | ![Stats](https://raw.githubusercontent.com/vsetka/deepl-translator/c0076cf2b7324c310725ea615bf972a6289ffe83/stats.png) 19 | 20 | # Supported languages: 21 | 22 | | **Language code** | **Language** 23 | |:--------------------|:--------------------------------------------------------------- 24 | | `EN` | English 25 | | `DE` | German 26 | | `FR` | French 27 | | `ES` | Spanish 28 | | `IT` | Italian 29 | | `NL` | Dutch 30 | | `PL` | Polish 31 | 32 | ## Install 33 | 34 | ``` 35 | yarn add deepl-translator 36 | ``` 37 | 38 | This package can also be used on the client since it provides an XHR shim for the HTTP request helper implementation. The shim is defined as a mapping in the `browser` property of the `package.json` so it should be picked up automatically by most of the popular bundlers. 39 | 40 | ## Usage 41 | 42 | ```javascript 43 | const { translate, detectLanguage, wordAlternatives, translateWithAlternatives } = require('deepl-translator'); 44 | 45 | // Translate text with explicit source and target languages 46 | translate('Die Übersetzungsqualität von deepl ist erstaunlich!', 'EN', 'DE') 47 | .then(res => console.log(`Translation: ${res.translation}`)) 48 | .catch(console.error); 49 | 50 | // Translate short text with this method to get a few translation alternatives 51 | translateWithAlternatives( 52 | 'Die Übersetzungsqualität von deepl ist erstaunlich!', 53 | 'EN' 54 | ) 55 | .then(res => 56 | console.log( 57 | `Translation alternatives: ${res.translationAlternatives.join(', ')}` 58 | ) 59 | ) 60 | .catch(console.error); 61 | 62 | // Leave out the source language or specify 'auto' to autodetect the input 63 | translate('This is a representative chunk of text in english.', 'DE') 64 | .then(res => console.log(`Translation: ${res.translation}`)) 65 | .catch(console.error); 66 | 67 | // Detect the text language without giving back the translation 68 | detectLanguage('Deepl también puede detectar un idioma. ¿Qué idioma es este?') 69 | .then(res => console.log(`Detected language: ${res.languageName}`)) 70 | .catch(console.error); 71 | 72 | // Multi-line translations work as well, even with different source languages mixed in 73 | translate( 74 | `Das ist der erste Satz... Das der zweite. 75 | 76 | C'est la troisième phrase. 77 | 78 | 79 | Y ese es el cuarto. 80 | I piąta.`, 81 | 'EN' 82 | ) 83 | .then(res => console.log(`Translation: ${res.translation}, Resolved languages: ${res.resolvedSourceLanguage}`)) 84 | .catch(console.error); 85 | 86 | // This method allows for tweaking the translation. By providing a beginning, we define a word or a phrase 87 | // for which we want alternative translations within the context of a larger body of text (a sentence). 88 | // One of the returned alternatives can then be selected and passed into translateWithAlternatives 89 | // as an overriding word/phrase for the beginning of the whole translation. 90 | { 91 | const text = 'Die Übersetzungsqualität von deepl ist erstaunlich!'; 92 | // Translates to: 'The translation quality of deepl is amazing!' 93 | wordAlternatives(text, 'EN', 'DE', 'The translation') 94 | .then(res => { 95 | console.log(`3 Alternative beginnings:`); 96 | res.alternatives.slice(0, 3).forEach(alt => console.log(alt)); 97 | // Choose the third alternetive 98 | return res.alternatives[2]; 99 | }) 100 | .then(beginning => { 101 | // Request translation with selected alternative beginning 102 | return translateWithAlternatives(text, 'EN', 'DE', beginning); 103 | }) 104 | .then(res => console.log(`Alternative: ${res.translation}`)); 105 | } 106 | ``` 107 | 108 | ## API 109 | 110 | ### translate(text, targetLanguage, sourceLanguage) -> `object` 111 | This method translates the input text into a specified target language. Source language can be autodetected. Multi-line text translation is possible with 112 | line breaks preserved. 113 | 114 | **text** (`string`) *Input text to be translated* 115 | 116 | **targetLanguage** (`string`) *Language code of the language to translate to* 117 | 118 | **sourceLanguage** (`string`) *Language code of the input text language. Can be left out or set to `auto` for automatic language detection.* 119 | 120 | **Returns** 121 | ```javascript 122 | { 123 | targetLanguage: 'XY', // Language code(s) of the language that was translate to 124 | resolvedSourceLanguage: 'YZ', // Language code(s) of the input language (resolved automatically for autodetect) 125 | translation: 'Translated text' // Translated text 126 | } 127 | ``` 128 | 129 | ### translateWithAlternatives(text, targetLanguage, sourceLanguage, beginning) -> `object` 130 | This method translates the input text into a specified target language. Source language can be autodetected. Optionally, a sentence beginning override can be given (should be used in conjunction with `wordAlternatives` which gives contextual phrase/word translations). 131 | 132 | **text** (`string`) *Input text to be translated* 133 | 134 | **targetLanguage** (`string`) *Language code of the language to translate to* 135 | 136 | **sourceLanguage** (`string`) *Language code of the input text language. Can be left out or set to `auto` for automatic language detection.* 137 | 138 | **beginning** (`string`) *Override of the translation beginning* 139 | 140 | **Returns** 141 | ```javascript 142 | { 143 | targetLanguage: 'XY', // Language code of the language that was translate to 144 | resolvedSourceLanguage: 'YZ', // Language code of the input language (resolved automatically for autodetect) 145 | translation: 'Translated text', // Translated text 146 | translationAlternatives: ['First translated alternative', 'Second translated alternative'] 147 | } 148 | ``` 149 | 150 | ### detectLanguage(text) -> `object` 151 | This method detects the language of the input text. 152 | 153 | **text** (`string`) *Input text to detect the language on* 154 | 155 | **Returns** 156 | ```javascript 157 | { 158 | languageCode: 'XY', // Language code of the input text 159 | languageName: 'Some language', // Language name (in English) of the input text 160 | } 161 | ``` 162 | 163 | ### wordAlternatives(text, targetLanguage, sourceLanguage, beginning) -> `object` 164 | This method suggests alternative wordings for a subset of the beginning input text. This means we get alternative translations for the given word or a phrase within a context of the larger body of text (the input `text`). Languages cannot be autodetected. 165 | 166 | **text** (`string`) *Input text to be translated* 167 | 168 | **targetLanguage** (`string`) *Language code of the language to translate to* 169 | 170 | **sourceLanguage** (`string`) *Language code of the input text language* 171 | 172 | **beginning** (`string`) *Subset of the translation of `text` for which the contextual alternatives will be provided* 173 | 174 | **Returns** 175 | ```javascript 176 | { 177 | targetLanguage: 'XY', // Language code of the language that was translate to 178 | resolvedSourceLanguage: 'YZ', // Language code of the input language 179 | alternatives: ['An alternative', 'Yet another alternative'], // Array of alternative sentence beginnings 180 | } 181 | ``` 182 | 183 | ## License 184 | 185 | Apache License 2.0 186 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | Apache License 2 | Version 2.0, January 2004 3 | http://www.apache.org/licenses/ 4 | 5 | TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION 6 | 7 | 1. Definitions. 8 | 9 | "License" shall mean the terms and conditions for use, reproduction, 10 | and distribution as defined by Sections 1 through 9 of this document. 11 | 12 | "Licensor" shall mean the copyright owner or entity authorized by 13 | the copyright owner that is granting the License. 14 | 15 | "Legal Entity" shall mean the union of the acting entity and all 16 | other entities that control, are controlled by, or are under common 17 | control with that entity. For the purposes of this definition, 18 | "control" means (i) the power, direct or indirect, to cause the 19 | direction or management of such entity, whether by contract or 20 | otherwise, or (ii) ownership of fifty percent (50%) or more of the 21 | outstanding shares, or (iii) beneficial ownership of such entity. 22 | 23 | "You" (or "Your") shall mean an individual or Legal Entity 24 | exercising permissions granted by this License. 25 | 26 | "Source" form shall mean the preferred form for making modifications, 27 | including but not limited to software source code, documentation 28 | source, and configuration files. 29 | 30 | "Object" form shall mean any form resulting from mechanical 31 | transformation or translation of a Source form, including but 32 | not limited to compiled object code, generated documentation, 33 | and conversions to other media types. 34 | 35 | "Work" shall mean the work of authorship, whether in Source or 36 | Object form, made available under the License, as indicated by a 37 | copyright notice that is included in or attached to the work 38 | (an example is provided in the Appendix below). 39 | 40 | "Derivative Works" shall mean any work, whether in Source or Object 41 | form, that is based on (or derived from) the Work and for which the 42 | editorial revisions, annotations, elaborations, or other modifications 43 | represent, as a whole, an original work of authorship. For the purposes 44 | of this License, Derivative Works shall not include works that remain 45 | separable from, or merely link (or bind by name) to the interfaces of, 46 | the Work and Derivative Works thereof. 47 | 48 | "Contribution" shall mean any work of authorship, including 49 | the original version of the Work and any modifications or additions 50 | to that Work or Derivative Works thereof, that is intentionally 51 | submitted to Licensor for inclusion in the Work by the copyright owner 52 | or by an individual or Legal Entity authorized to submit on behalf of 53 | the copyright owner. For the purposes of this definition, "submitted" 54 | means any form of electronic, verbal, or written communication sent 55 | to the Licensor or its representatives, including but not limited to 56 | communication on electronic mailing lists, source code control systems, 57 | and issue tracking systems that are managed by, or on behalf of, the 58 | Licensor for the purpose of discussing and improving the Work, but 59 | excluding communication that is conspicuously marked or otherwise 60 | designated in writing by the copyright owner as "Not a Contribution." 61 | 62 | "Contributor" shall mean Licensor and any individual or Legal Entity 63 | on behalf of whom a Contribution has been received by Licensor and 64 | subsequently incorporated within the Work. 65 | 66 | 2. Grant of Copyright License. Subject to the terms and conditions of 67 | this License, each Contributor hereby grants to You a perpetual, 68 | worldwide, non-exclusive, no-charge, royalty-free, irrevocable 69 | copyright license to reproduce, prepare Derivative Works of, 70 | publicly display, publicly perform, sublicense, and distribute the 71 | Work and such Derivative Works in Source or Object form. 72 | 73 | 3. Grant of Patent License. Subject to the terms and conditions of 74 | this License, each Contributor hereby grants to You a perpetual, 75 | worldwide, non-exclusive, no-charge, royalty-free, irrevocable 76 | (except as stated in this section) patent license to make, have made, 77 | use, offer to sell, sell, import, and otherwise transfer the Work, 78 | where such license applies only to those patent claims licensable 79 | by such Contributor that are necessarily infringed by their 80 | Contribution(s) alone or by combination of their Contribution(s) 81 | with the Work to which such Contribution(s) was submitted. If You 82 | institute patent litigation against any entity (including a 83 | cross-claim or counterclaim in a lawsuit) alleging that the Work 84 | or a Contribution incorporated within the Work constitutes direct 85 | or contributory patent infringement, then any patent licenses 86 | granted to You under this License for that Work shall terminate 87 | as of the date such litigation is filed. 88 | 89 | 4. Redistribution. You may reproduce and distribute copies of the 90 | Work or Derivative Works thereof in any medium, with or without 91 | modifications, and in Source or Object form, provided that You 92 | meet the following conditions: 93 | 94 | (a) You must give any other recipients of the Work or 95 | Derivative Works a copy of this License; and 96 | 97 | (b) You must cause any modified files to carry prominent notices 98 | stating that You changed the files; and 99 | 100 | (c) You must retain, in the Source form of any Derivative Works 101 | that You distribute, all copyright, patent, trademark, and 102 | attribution notices from the Source form of the Work, 103 | excluding those notices that do not pertain to any part of 104 | the Derivative Works; and 105 | 106 | (d) If the Work includes a "NOTICE" text file as part of its 107 | distribution, then any Derivative Works that You distribute must 108 | include a readable copy of the attribution notices contained 109 | within such NOTICE file, excluding those notices that do not 110 | pertain to any part of the Derivative Works, in at least one 111 | of the following places: within a NOTICE text file distributed 112 | as part of the Derivative Works; within the Source form or 113 | documentation, if provided along with the Derivative Works; or, 114 | within a display generated by the Derivative Works, if and 115 | wherever such third-party notices normally appear. The contents 116 | of the NOTICE file are for informational purposes only and 117 | do not modify the License. You may add Your own attribution 118 | notices within Derivative Works that You distribute, alongside 119 | or as an addendum to the NOTICE text from the Work, provided 120 | that such additional attribution notices cannot be construed 121 | as modifying the License. 122 | 123 | You may add Your own copyright statement to Your modifications and 124 | may provide additional or different license terms and conditions 125 | for use, reproduction, or distribution of Your modifications, or 126 | for any such Derivative Works as a whole, provided Your use, 127 | reproduction, and distribution of the Work otherwise complies with 128 | the conditions stated in this License. 129 | 130 | 5. Submission of Contributions. Unless You explicitly state otherwise, 131 | any Contribution intentionally submitted for inclusion in the Work 132 | by You to the Licensor shall be under the terms and conditions of 133 | this License, without any additional terms or conditions. 134 | Notwithstanding the above, nothing herein shall supersede or modify 135 | the terms of any separate license agreement you may have executed 136 | with Licensor regarding such Contributions. 137 | 138 | 6. Trademarks. This License does not grant permission to use the trade 139 | names, trademarks, service marks, or product names of the Licensor, 140 | except as required for reasonable and customary use in describing the 141 | origin of the Work and reproducing the content of the NOTICE file. 142 | 143 | 7. Disclaimer of Warranty. Unless required by applicable law or 144 | agreed to in writing, Licensor provides the Work (and each 145 | Contributor provides its Contributions) on an "AS IS" BASIS, 146 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or 147 | implied, including, without limitation, any warranties or conditions 148 | of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A 149 | PARTICULAR PURPOSE. You are solely responsible for determining the 150 | appropriateness of using or redistributing the Work and assume any 151 | risks associated with Your exercise of permissions under this License. 152 | 153 | 8. Limitation of Liability. In no event and under no legal theory, 154 | whether in tort (including negligence), contract, or otherwise, 155 | unless required by applicable law (such as deliberate and grossly 156 | negligent acts) or agreed to in writing, shall any Contributor be 157 | liable to You for damages, including any direct, indirect, special, 158 | incidental, or consequential damages of any character arising as a 159 | result of this License or out of the use or inability to use the 160 | Work (including but not limited to damages for loss of goodwill, 161 | work stoppage, computer failure or malfunction, or any and all 162 | other commercial damages or losses), even if such Contributor 163 | has been advised of the possibility of such damages. 164 | 165 | 9. Accepting Warranty or Additional Liability. While redistributing 166 | the Work or Derivative Works thereof, You may choose to offer, 167 | and charge a fee for, acceptance of support, warranty, indemnity, 168 | or other liability obligations and/or rights consistent with this 169 | License. However, in accepting such obligations, You may act only 170 | on Your own behalf and on Your sole responsibility, not on behalf 171 | of any other Contributor, and only if You agree to indemnify, 172 | defend, and hold each Contributor harmless for any liability 173 | incurred by, or claims asserted against, such Contributor by reason 174 | of your accepting any such warranty or additional liability. 175 | 176 | END OF TERMS AND CONDITIONS 177 | 178 | APPENDIX: How to apply the Apache License to your work. 179 | 180 | To apply the Apache License to your work, attach the following 181 | boilerplate notice, with the fields enclosed by brackets "{}" 182 | replaced with your own identifying information. (Don't include 183 | the brackets!) The text should be enclosed in the appropriate 184 | comment syntax for the file format. We also recommend that a 185 | file or class name and description of purpose be included on the 186 | same "printed page" as the copyright notice for easier 187 | identification within third-party archives. 188 | 189 | Copyright {yyyy} {name of copyright owner} 190 | 191 | Licensed under the Apache License, Version 2.0 (the "License"); 192 | you may not use this file except in compliance with the License. 193 | You may obtain a copy of the License at 194 | 195 | http://www.apache.org/licenses/LICENSE-2.0 196 | 197 | Unless required by applicable law or agreed to in writing, software 198 | distributed under the License is distributed on an "AS IS" BASIS, 199 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 200 | See the License for the specific language governing permissions and 201 | limitations under the License. 202 | -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- 1 | # THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY. 2 | # yarn lockfile v1 3 | 4 | 5 | "@babel/code-frame@^7.0.0-beta.35": 6 | version "7.0.0-beta.54" 7 | resolved "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.0.0-beta.54.tgz#0024f96fdf7028a21d68e273afd4e953214a1ead" 8 | dependencies: 9 | "@babel/highlight" "7.0.0-beta.54" 10 | 11 | "@babel/highlight@7.0.0-beta.54": 12 | version "7.0.0-beta.54" 13 | resolved "https://registry.npmjs.org/@babel/highlight/-/highlight-7.0.0-beta.54.tgz#155d507358329b8e7068970017c3fd74a9b08584" 14 | dependencies: 15 | chalk "^2.0.0" 16 | esutils "^2.0.2" 17 | js-tokens "^3.0.0" 18 | 19 | abab@^1.0.4: 20 | version "1.0.4" 21 | resolved "https://registry.npmjs.org/abab/-/abab-1.0.4.tgz#5faad9c2c07f60dd76770f71cf025b62a63cfd4e" 22 | 23 | abab@^2.0.0: 24 | version "2.0.0" 25 | resolved "https://registry.npmjs.org/abab/-/abab-2.0.0.tgz#aba0ab4c5eee2d4c79d3487d85450fb2376ebb0f" 26 | 27 | abbrev@1: 28 | version "1.1.1" 29 | resolved "https://registry.npmjs.org/abbrev/-/abbrev-1.1.1.tgz#f8f2c887ad10bf67f634f005b6987fed3179aac8" 30 | 31 | acorn-globals@^4.1.0: 32 | version "4.1.0" 33 | resolved "https://registry.npmjs.org/acorn-globals/-/acorn-globals-4.1.0.tgz#ab716025dbe17c54d3ef81d32ece2b2d99fe2538" 34 | dependencies: 35 | acorn "^5.0.0" 36 | 37 | acorn@^5.0.0, acorn@^5.5.3: 38 | version "5.7.1" 39 | resolved "https://registry.npmjs.org/acorn/-/acorn-5.7.1.tgz#f095829297706a7c9776958c0afc8930a9b9d9d8" 40 | 41 | ajv@^5.1.0: 42 | version "5.5.2" 43 | resolved "https://registry.npmjs.org/ajv/-/ajv-5.5.2.tgz#73b5eeca3fab653e3d3f9422b341ad42205dc965" 44 | dependencies: 45 | co "^4.6.0" 46 | fast-deep-equal "^1.0.0" 47 | fast-json-stable-stringify "^2.0.0" 48 | json-schema-traverse "^0.3.0" 49 | 50 | align-text@^0.1.1, align-text@^0.1.3: 51 | version "0.1.4" 52 | resolved "https://registry.npmjs.org/align-text/-/align-text-0.1.4.tgz#0cd90a561093f35d0a99256c22b7069433fad117" 53 | dependencies: 54 | kind-of "^3.0.2" 55 | longest "^1.0.1" 56 | repeat-string "^1.5.2" 57 | 58 | amdefine@>=0.0.4: 59 | version "1.0.1" 60 | resolved "https://registry.npmjs.org/amdefine/-/amdefine-1.0.1.tgz#4a5282ac164729e93619bcfd3ad151f817ce91f5" 61 | 62 | ansi-escapes@^3.0.0: 63 | version "3.1.0" 64 | resolved "https://registry.npmjs.org/ansi-escapes/-/ansi-escapes-3.1.0.tgz#f73207bb81207d75fd6c83f125af26eea378ca30" 65 | 66 | ansi-regex@^2.0.0: 67 | version "2.1.1" 68 | resolved "https://registry.npmjs.org/ansi-regex/-/ansi-regex-2.1.1.tgz#c3b33ab5ee360d86e0e628f0468ae7ef27d654df" 69 | 70 | ansi-regex@^3.0.0: 71 | version "3.0.0" 72 | resolved "https://registry.npmjs.org/ansi-regex/-/ansi-regex-3.0.0.tgz#ed0317c322064f79466c02966bddb605ab37d998" 73 | 74 | ansi-styles@^2.2.1: 75 | version "2.2.1" 76 | resolved "https://registry.npmjs.org/ansi-styles/-/ansi-styles-2.2.1.tgz#b432dd3358b634cf75e1e4664368240533c1ddbe" 77 | 78 | ansi-styles@^3.0.0, ansi-styles@^3.2.0, ansi-styles@^3.2.1: 79 | version "3.2.1" 80 | resolved "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz#41fbb20243e50b12be0f04b8dedbf07520ce841d" 81 | dependencies: 82 | color-convert "^1.9.0" 83 | 84 | anymatch@^2.0.0: 85 | version "2.0.0" 86 | resolved "https://registry.npmjs.org/anymatch/-/anymatch-2.0.0.tgz#bcb24b4f37934d9aa7ac17b4adaf89e7c76ef2eb" 87 | dependencies: 88 | micromatch "^3.1.4" 89 | normalize-path "^2.1.1" 90 | 91 | append-transform@^1.0.0: 92 | version "1.0.0" 93 | resolved "https://registry.npmjs.org/append-transform/-/append-transform-1.0.0.tgz#046a52ae582a228bd72f58acfbe2967c678759ab" 94 | dependencies: 95 | default-require-extensions "^2.0.0" 96 | 97 | aproba@^1.0.3: 98 | version "1.2.0" 99 | resolved "https://registry.npmjs.org/aproba/-/aproba-1.2.0.tgz#6802e6264efd18c790a1b0d517f0f2627bf2c94a" 100 | 101 | are-we-there-yet@~1.1.2: 102 | version "1.1.5" 103 | resolved "https://registry.npmjs.org/are-we-there-yet/-/are-we-there-yet-1.1.5.tgz#4b35c2944f062a8bfcda66410760350fe9ddfc21" 104 | dependencies: 105 | delegates "^1.0.0" 106 | readable-stream "^2.0.6" 107 | 108 | argparse@^1.0.7: 109 | version "1.0.10" 110 | resolved "https://registry.npmjs.org/argparse/-/argparse-1.0.10.tgz#bcd6791ea5ae09725e17e5ad988134cd40b3d911" 111 | dependencies: 112 | sprintf-js "~1.0.2" 113 | 114 | arr-diff@^2.0.0: 115 | version "2.0.0" 116 | resolved "https://registry.npmjs.org/arr-diff/-/arr-diff-2.0.0.tgz#8f3b827f955a8bd669697e4a4256ac3ceae356cf" 117 | dependencies: 118 | arr-flatten "^1.0.1" 119 | 120 | arr-diff@^4.0.0: 121 | version "4.0.0" 122 | resolved "https://registry.npmjs.org/arr-diff/-/arr-diff-4.0.0.tgz#d6461074febfec71e7e15235761a329a5dc7c520" 123 | 124 | arr-flatten@^1.0.1, arr-flatten@^1.1.0: 125 | version "1.1.0" 126 | resolved "https://registry.npmjs.org/arr-flatten/-/arr-flatten-1.1.0.tgz#36048bbff4e7b47e136644316c99669ea5ae91f1" 127 | 128 | arr-union@^3.1.0: 129 | version "3.1.0" 130 | resolved "https://registry.npmjs.org/arr-union/-/arr-union-3.1.0.tgz#e39b09aea9def866a8f206e288af63919bae39c4" 131 | 132 | array-equal@^1.0.0: 133 | version "1.0.0" 134 | resolved "https://registry.npmjs.org/array-equal/-/array-equal-1.0.0.tgz#8c2a5ef2472fd9ea742b04c77a75093ba2757c93" 135 | 136 | array-unique@^0.2.1: 137 | version "0.2.1" 138 | resolved "https://registry.npmjs.org/array-unique/-/array-unique-0.2.1.tgz#a1d97ccafcbc2625cc70fadceb36a50c58b01a53" 139 | 140 | array-unique@^0.3.2: 141 | version "0.3.2" 142 | resolved "https://registry.npmjs.org/array-unique/-/array-unique-0.3.2.tgz#a894b75d4bc4f6cd679ef3244a9fd8f46ae2d428" 143 | 144 | arrify@^1.0.1: 145 | version "1.0.1" 146 | resolved "https://registry.npmjs.org/arrify/-/arrify-1.0.1.tgz#898508da2226f380df904728456849c1501a4b0d" 147 | 148 | asn1@~0.2.3: 149 | version "0.2.3" 150 | resolved "https://registry.npmjs.org/asn1/-/asn1-0.2.3.tgz#dac8787713c9966849fc8180777ebe9c1ddf3b86" 151 | 152 | assert-plus@1.0.0, assert-plus@^1.0.0: 153 | version "1.0.0" 154 | resolved "https://registry.npmjs.org/assert-plus/-/assert-plus-1.0.0.tgz#f12e0f3c5d77b0b1cdd9146942e4e96c1e4dd525" 155 | 156 | assert-plus@^0.2.0: 157 | version "0.2.0" 158 | resolved "https://registry.npmjs.org/assert-plus/-/assert-plus-0.2.0.tgz#d74e1b87e7affc0db8aadb7021f3fe48101ab234" 159 | 160 | assign-symbols@^1.0.0: 161 | version "1.0.0" 162 | resolved "https://registry.npmjs.org/assign-symbols/-/assign-symbols-1.0.0.tgz#59667f41fadd4f20ccbc2bb96b8d4f7f78ec0367" 163 | 164 | ast-types@0.8.18: 165 | version "0.8.18" 166 | resolved "https://registry.npmjs.org/ast-types/-/ast-types-0.8.18.tgz#c8b98574898e8914e9d8de74b947564a9fe929af" 167 | 168 | ast-types@0.9.4: 169 | version "0.9.4" 170 | resolved "https://registry.npmjs.org/ast-types/-/ast-types-0.9.4.tgz#410d1f81890aeb8e0a38621558ba5869ae53c91b" 171 | 172 | astral-regex@^1.0.0: 173 | version "1.0.0" 174 | resolved "https://registry.npmjs.org/astral-regex/-/astral-regex-1.0.0.tgz#6c8c3fb827dd43ee3918f27b82782ab7658a6fd9" 175 | 176 | async-limiter@~1.0.0: 177 | version "1.0.0" 178 | resolved "https://registry.npmjs.org/async-limiter/-/async-limiter-1.0.0.tgz#78faed8c3d074ab81f22b4e985d79e8738f720f8" 179 | 180 | async@^1.4.0: 181 | version "1.5.2" 182 | resolved "https://registry.npmjs.org/async/-/async-1.5.2.tgz#ec6a61ae56480c0c3cb241c95618e20892f9672a" 183 | 184 | async@^2.1.4: 185 | version "2.6.1" 186 | resolved "https://registry.npmjs.org/async/-/async-2.6.1.tgz#b245a23ca71930044ec53fa46aa00a3e87c6a610" 187 | dependencies: 188 | lodash "^4.17.10" 189 | 190 | asynckit@^0.4.0: 191 | version "0.4.0" 192 | resolved "https://registry.npmjs.org/asynckit/-/asynckit-0.4.0.tgz#c79ed97f7f34cb8f2ba1bc9790bcc366474b4b79" 193 | 194 | atob@^2.1.1: 195 | version "2.1.1" 196 | resolved "https://registry.npmjs.org/atob/-/atob-2.1.1.tgz#ae2d5a729477f289d60dd7f96a6314a22dd6c22a" 197 | 198 | aws-sign2@~0.6.0: 199 | version "0.6.0" 200 | resolved "https://registry.npmjs.org/aws-sign2/-/aws-sign2-0.6.0.tgz#14342dd38dbcc94d0e5b87d763cd63612c0e794f" 201 | 202 | aws-sign2@~0.7.0: 203 | version "0.7.0" 204 | resolved "https://registry.npmjs.org/aws-sign2/-/aws-sign2-0.7.0.tgz#b46e890934a9591f2d2f6f86d7e6a9f1b3fe76a8" 205 | 206 | aws4@^1.2.1, aws4@^1.6.0: 207 | version "1.7.0" 208 | resolved "https://registry.npmjs.org/aws4/-/aws4-1.7.0.tgz#d4d0e9b9dbfca77bf08eeb0a8a471550fe39e289" 209 | 210 | babel-code-frame@6.22.0: 211 | version "6.22.0" 212 | resolved "https://registry.npmjs.org/babel-code-frame/-/babel-code-frame-6.22.0.tgz#027620bee567a88c32561574e7fd0801d33118e4" 213 | dependencies: 214 | chalk "^1.1.0" 215 | esutils "^2.0.2" 216 | js-tokens "^3.0.0" 217 | 218 | babel-code-frame@^6.26.0: 219 | version "6.26.0" 220 | resolved "https://registry.npmjs.org/babel-code-frame/-/babel-code-frame-6.26.0.tgz#63fd43f7dc1e3bb7ce35947db8fe369a3f58c74b" 221 | dependencies: 222 | chalk "^1.1.3" 223 | esutils "^2.0.2" 224 | js-tokens "^3.0.2" 225 | 226 | babel-core@^6.0.0, babel-core@^6.26.0: 227 | version "6.26.3" 228 | resolved "https://registry.npmjs.org/babel-core/-/babel-core-6.26.3.tgz#b2e2f09e342d0f0c88e2f02e067794125e75c207" 229 | dependencies: 230 | babel-code-frame "^6.26.0" 231 | babel-generator "^6.26.0" 232 | babel-helpers "^6.24.1" 233 | babel-messages "^6.23.0" 234 | babel-register "^6.26.0" 235 | babel-runtime "^6.26.0" 236 | babel-template "^6.26.0" 237 | babel-traverse "^6.26.0" 238 | babel-types "^6.26.0" 239 | babylon "^6.18.0" 240 | convert-source-map "^1.5.1" 241 | debug "^2.6.9" 242 | json5 "^0.5.1" 243 | lodash "^4.17.4" 244 | minimatch "^3.0.4" 245 | path-is-absolute "^1.0.1" 246 | private "^0.1.8" 247 | slash "^1.0.0" 248 | source-map "^0.5.7" 249 | 250 | babel-generator@^6.18.0, babel-generator@^6.26.0: 251 | version "6.26.1" 252 | resolved "https://registry.npmjs.org/babel-generator/-/babel-generator-6.26.1.tgz#1844408d3b8f0d35a404ea7ac180f087a601bd90" 253 | dependencies: 254 | babel-messages "^6.23.0" 255 | babel-runtime "^6.26.0" 256 | babel-types "^6.26.0" 257 | detect-indent "^4.0.0" 258 | jsesc "^1.3.0" 259 | lodash "^4.17.4" 260 | source-map "^0.5.7" 261 | trim-right "^1.0.1" 262 | 263 | babel-helpers@^6.24.1: 264 | version "6.24.1" 265 | resolved "https://registry.npmjs.org/babel-helpers/-/babel-helpers-6.24.1.tgz#3471de9caec388e5c850e597e58a26ddf37602b2" 266 | dependencies: 267 | babel-runtime "^6.22.0" 268 | babel-template "^6.24.1" 269 | 270 | babel-jest@^23.4.0: 271 | version "23.4.0" 272 | resolved "https://registry.npmjs.org/babel-jest/-/babel-jest-23.4.0.tgz#22c34c392e2176f6a4c367992a7fcff69d2e8557" 273 | dependencies: 274 | babel-plugin-istanbul "^4.1.6" 275 | babel-preset-jest "^23.2.0" 276 | 277 | babel-messages@^6.23.0: 278 | version "6.23.0" 279 | resolved "https://registry.npmjs.org/babel-messages/-/babel-messages-6.23.0.tgz#f3cdf4703858035b2a2951c6ec5edf6c62f2630e" 280 | dependencies: 281 | babel-runtime "^6.22.0" 282 | 283 | babel-plugin-istanbul@^4.1.6: 284 | version "4.1.6" 285 | resolved "https://registry.npmjs.org/babel-plugin-istanbul/-/babel-plugin-istanbul-4.1.6.tgz#36c59b2192efce81c5b378321b74175add1c9a45" 286 | dependencies: 287 | babel-plugin-syntax-object-rest-spread "^6.13.0" 288 | find-up "^2.1.0" 289 | istanbul-lib-instrument "^1.10.1" 290 | test-exclude "^4.2.1" 291 | 292 | babel-plugin-jest-hoist@^23.2.0: 293 | version "23.2.0" 294 | resolved "https://registry.npmjs.org/babel-plugin-jest-hoist/-/babel-plugin-jest-hoist-23.2.0.tgz#e61fae05a1ca8801aadee57a6d66b8cefaf44167" 295 | 296 | babel-plugin-syntax-object-rest-spread@^6.13.0: 297 | version "6.13.0" 298 | resolved "https://registry.npmjs.org/babel-plugin-syntax-object-rest-spread/-/babel-plugin-syntax-object-rest-spread-6.13.0.tgz#fd6536f2bce13836ffa3a5458c4903a597bb3bf5" 299 | 300 | babel-preset-jest@^23.2.0: 301 | version "23.2.0" 302 | resolved "https://registry.npmjs.org/babel-preset-jest/-/babel-preset-jest-23.2.0.tgz#8ec7a03a138f001a1a8fb1e8113652bf1a55da46" 303 | dependencies: 304 | babel-plugin-jest-hoist "^23.2.0" 305 | babel-plugin-syntax-object-rest-spread "^6.13.0" 306 | 307 | babel-register@^6.26.0: 308 | version "6.26.0" 309 | resolved "https://registry.npmjs.org/babel-register/-/babel-register-6.26.0.tgz#6ed021173e2fcb486d7acb45c6009a856f647071" 310 | dependencies: 311 | babel-core "^6.26.0" 312 | babel-runtime "^6.26.0" 313 | core-js "^2.5.0" 314 | home-or-tmp "^2.0.0" 315 | lodash "^4.17.4" 316 | mkdirp "^0.5.1" 317 | source-map-support "^0.4.15" 318 | 319 | babel-runtime@^6.22.0, babel-runtime@^6.26.0: 320 | version "6.26.0" 321 | resolved "https://registry.npmjs.org/babel-runtime/-/babel-runtime-6.26.0.tgz#965c7058668e82b55d7bfe04ff2337bc8b5647fe" 322 | dependencies: 323 | core-js "^2.4.0" 324 | regenerator-runtime "^0.11.0" 325 | 326 | babel-template@^6.16.0, babel-template@^6.24.1, babel-template@^6.26.0: 327 | version "6.26.0" 328 | resolved "https://registry.npmjs.org/babel-template/-/babel-template-6.26.0.tgz#de03e2d16396b069f46dd9fff8521fb1a0e35e02" 329 | dependencies: 330 | babel-runtime "^6.26.0" 331 | babel-traverse "^6.26.0" 332 | babel-types "^6.26.0" 333 | babylon "^6.18.0" 334 | lodash "^4.17.4" 335 | 336 | babel-traverse@^6.0.0, babel-traverse@^6.18.0, babel-traverse@^6.26.0: 337 | version "6.26.0" 338 | resolved "https://registry.npmjs.org/babel-traverse/-/babel-traverse-6.26.0.tgz#46a9cbd7edcc62c8e5c064e2d2d8d0f4035766ee" 339 | dependencies: 340 | babel-code-frame "^6.26.0" 341 | babel-messages "^6.23.0" 342 | babel-runtime "^6.26.0" 343 | babel-types "^6.26.0" 344 | babylon "^6.18.0" 345 | debug "^2.6.8" 346 | globals "^9.18.0" 347 | invariant "^2.2.2" 348 | lodash "^4.17.4" 349 | 350 | babel-types@^6.0.0, babel-types@^6.18.0, babel-types@^6.26.0: 351 | version "6.26.0" 352 | resolved "https://registry.npmjs.org/babel-types/-/babel-types-6.26.0.tgz#a3b073f94ab49eb6fa55cd65227a334380632497" 353 | dependencies: 354 | babel-runtime "^6.26.0" 355 | esutils "^2.0.2" 356 | lodash "^4.17.4" 357 | to-fast-properties "^1.0.3" 358 | 359 | babylon@6.15.0: 360 | version "6.15.0" 361 | resolved "https://registry.npmjs.org/babylon/-/babylon-6.15.0.tgz#ba65cfa1a80e1759b0e89fb562e27dccae70348e" 362 | 363 | babylon@^6.18.0: 364 | version "6.18.0" 365 | resolved "https://registry.npmjs.org/babylon/-/babylon-6.18.0.tgz#af2f3b88fa6f5c1e4c634d1a0f8eac4f55b395e3" 366 | 367 | balanced-match@^1.0.0: 368 | version "1.0.0" 369 | resolved "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.0.tgz#89b4d199ab2bee49de164ea02b89ce462d71b767" 370 | 371 | base@^0.11.1: 372 | version "0.11.2" 373 | resolved "https://registry.npmjs.org/base/-/base-0.11.2.tgz#7bde5ced145b6d551a90db87f83c558b4eb48a8f" 374 | dependencies: 375 | cache-base "^1.0.1" 376 | class-utils "^0.3.5" 377 | component-emitter "^1.2.1" 378 | define-property "^1.0.0" 379 | isobject "^3.0.1" 380 | mixin-deep "^1.2.0" 381 | pascalcase "^0.1.1" 382 | 383 | bcrypt-pbkdf@^1.0.0: 384 | version "1.0.2" 385 | resolved "https://registry.npmjs.org/bcrypt-pbkdf/-/bcrypt-pbkdf-1.0.2.tgz#a4301d389b6a43f9b67ff3ca11a3f6637e360e9e" 386 | dependencies: 387 | tweetnacl "^0.14.3" 388 | 389 | bluebird@^3.0.6: 390 | version "3.5.1" 391 | resolved "https://registry.npmjs.org/bluebird/-/bluebird-3.5.1.tgz#d9551f9de98f1fcda1e683d17ee91a0602ee2eb9" 392 | 393 | boom@2.x.x: 394 | version "2.10.1" 395 | resolved "https://registry.npmjs.org/boom/-/boom-2.10.1.tgz#39c8918ceff5799f83f9492a848f625add0c766f" 396 | dependencies: 397 | hoek "2.x.x" 398 | 399 | brace-expansion@^1.1.7: 400 | version "1.1.11" 401 | resolved "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz#3c7fcbf529d87226f3d2f52b966ff5271eb441dd" 402 | dependencies: 403 | balanced-match "^1.0.0" 404 | concat-map "0.0.1" 405 | 406 | braces@^1.8.2: 407 | version "1.8.5" 408 | resolved "https://registry.npmjs.org/braces/-/braces-1.8.5.tgz#ba77962e12dff969d6b76711e914b737857bf6a7" 409 | dependencies: 410 | expand-range "^1.8.1" 411 | preserve "^0.2.0" 412 | repeat-element "^1.1.2" 413 | 414 | braces@^2.3.1: 415 | version "2.3.2" 416 | resolved "https://registry.npmjs.org/braces/-/braces-2.3.2.tgz#5979fd3f14cd531565e5fa2df1abfff1dfaee729" 417 | dependencies: 418 | arr-flatten "^1.1.0" 419 | array-unique "^0.3.2" 420 | extend-shallow "^2.0.1" 421 | fill-range "^4.0.0" 422 | isobject "^3.0.1" 423 | repeat-element "^1.1.2" 424 | snapdragon "^0.8.1" 425 | snapdragon-node "^2.0.1" 426 | split-string "^3.0.2" 427 | to-regex "^3.0.1" 428 | 429 | browser-process-hrtime@^0.1.2: 430 | version "0.1.2" 431 | resolved "https://registry.npmjs.org/browser-process-hrtime/-/browser-process-hrtime-0.1.2.tgz#425d68a58d3447f02a04aa894187fce8af8b7b8e" 432 | 433 | browser-resolve@^1.11.3: 434 | version "1.11.3" 435 | resolved "https://registry.npmjs.org/browser-resolve/-/browser-resolve-1.11.3.tgz#9b7cbb3d0f510e4cb86bdbd796124d28b5890af6" 436 | dependencies: 437 | resolve "1.1.7" 438 | 439 | bser@^2.0.0: 440 | version "2.0.0" 441 | resolved "https://registry.npmjs.org/bser/-/bser-2.0.0.tgz#9ac78d3ed5d915804fd87acb158bc797147a1719" 442 | dependencies: 443 | node-int64 "^0.4.0" 444 | 445 | buffer-from@^1.0.0: 446 | version "1.1.0" 447 | resolved "https://registry.npmjs.org/buffer-from/-/buffer-from-1.1.0.tgz#87fcaa3a298358e0ade6e442cfce840740d1ad04" 448 | 449 | builtin-modules@^1.0.0: 450 | version "1.1.1" 451 | resolved "https://registry.npmjs.org/builtin-modules/-/builtin-modules-1.1.1.tgz#270f076c5a72c02f5b65a47df94c5fe3a278892f" 452 | 453 | cache-base@^1.0.1: 454 | version "1.0.1" 455 | resolved "https://registry.npmjs.org/cache-base/-/cache-base-1.0.1.tgz#0a7f46416831c8b662ee36fe4e7c59d76f666ab2" 456 | dependencies: 457 | collection-visit "^1.0.0" 458 | component-emitter "^1.2.1" 459 | get-value "^2.0.6" 460 | has-value "^1.0.0" 461 | isobject "^3.0.1" 462 | set-value "^2.0.0" 463 | to-object-path "^0.3.0" 464 | union-value "^1.0.0" 465 | unset-value "^1.0.0" 466 | 467 | callsites@^2.0.0: 468 | version "2.0.0" 469 | resolved "https://registry.npmjs.org/callsites/-/callsites-2.0.0.tgz#06eb84f00eea413da86affefacbffb36093b3c50" 470 | 471 | camelcase@^1.0.2: 472 | version "1.2.1" 473 | resolved "https://registry.npmjs.org/camelcase/-/camelcase-1.2.1.tgz#9bb5304d2e0b56698b2c758b08a3eaa9daa58a39" 474 | 475 | camelcase@^4.1.0: 476 | version "4.1.0" 477 | resolved "https://registry.npmjs.org/camelcase/-/camelcase-4.1.0.tgz#d545635be1e33c542649c69173e5de6acfae34dd" 478 | 479 | capture-exit@^1.2.0: 480 | version "1.2.0" 481 | resolved "https://registry.npmjs.org/capture-exit/-/capture-exit-1.2.0.tgz#1c5fcc489fd0ab00d4f1ac7ae1072e3173fbab6f" 482 | dependencies: 483 | rsvp "^3.3.3" 484 | 485 | caseless@~0.11.0: 486 | version "0.11.0" 487 | resolved "https://registry.npmjs.org/caseless/-/caseless-0.11.0.tgz#715b96ea9841593cc33067923f5ec60ebda4f7d7" 488 | 489 | caseless@~0.12.0: 490 | version "0.12.0" 491 | resolved "https://registry.npmjs.org/caseless/-/caseless-0.12.0.tgz#1b681c21ff84033c826543090689420d187151dc" 492 | 493 | center-align@^0.1.1: 494 | version "0.1.3" 495 | resolved "https://registry.npmjs.org/center-align/-/center-align-0.1.3.tgz#aa0d32629b6ee972200411cbd4461c907bc2b7ad" 496 | dependencies: 497 | align-text "^0.1.3" 498 | lazy-cache "^1.0.3" 499 | 500 | chalk@1.1.3, chalk@^1.1.0, chalk@^1.1.1, chalk@^1.1.3: 501 | version "1.1.3" 502 | resolved "https://registry.npmjs.org/chalk/-/chalk-1.1.3.tgz#a8115c55e4a702fe4d150abd3872822a7e09fc98" 503 | dependencies: 504 | ansi-styles "^2.2.1" 505 | escape-string-regexp "^1.0.2" 506 | has-ansi "^2.0.0" 507 | strip-ansi "^3.0.0" 508 | supports-color "^2.0.0" 509 | 510 | chalk@^2.0.0, chalk@^2.0.1: 511 | version "2.4.1" 512 | resolved "https://registry.npmjs.org/chalk/-/chalk-2.4.1.tgz#18c49ab16a037b6eb0152cc83e3471338215b66e" 513 | dependencies: 514 | ansi-styles "^3.2.1" 515 | escape-string-regexp "^1.0.5" 516 | supports-color "^5.3.0" 517 | 518 | chownr@^1.0.1: 519 | version "1.0.1" 520 | resolved "https://registry.npmjs.org/chownr/-/chownr-1.0.1.tgz#e2a75042a9551908bebd25b8523d5f9769d79181" 521 | 522 | ci-info@^1.0.0: 523 | version "1.1.3" 524 | resolved "https://registry.npmjs.org/ci-info/-/ci-info-1.1.3.tgz#710193264bb05c77b8c90d02f5aaf22216a667b2" 525 | 526 | class-utils@^0.3.5: 527 | version "0.3.6" 528 | resolved "https://registry.npmjs.org/class-utils/-/class-utils-0.3.6.tgz#f93369ae8b9a7ce02fd41faad0ca83033190c463" 529 | dependencies: 530 | arr-union "^3.1.0" 531 | define-property "^0.2.5" 532 | isobject "^3.0.0" 533 | static-extend "^0.1.1" 534 | 535 | cliui@^2.1.0: 536 | version "2.1.0" 537 | resolved "https://registry.npmjs.org/cliui/-/cliui-2.1.0.tgz#4b475760ff80264c762c3a1719032e91c7fea0d1" 538 | dependencies: 539 | center-align "^0.1.1" 540 | right-align "^0.1.1" 541 | wordwrap "0.0.2" 542 | 543 | cliui@^4.0.0: 544 | version "4.1.0" 545 | resolved "https://registry.npmjs.org/cliui/-/cliui-4.1.0.tgz#348422dbe82d800b3022eef4f6ac10bf2e4d1b49" 546 | dependencies: 547 | string-width "^2.1.1" 548 | strip-ansi "^4.0.0" 549 | wrap-ansi "^2.0.0" 550 | 551 | co@^4.6.0: 552 | version "4.6.0" 553 | resolved "https://registry.npmjs.org/co/-/co-4.6.0.tgz#6ea6bdf3d853ae54ccb8e47bfa0bf3f9031fb184" 554 | 555 | code-point-at@^1.0.0: 556 | version "1.1.0" 557 | resolved "https://registry.npmjs.org/code-point-at/-/code-point-at-1.1.0.tgz#0d070b4d043a5bea33a2f1a40e2edb3d9a4ccf77" 558 | 559 | collection-visit@^1.0.0: 560 | version "1.0.0" 561 | resolved "https://registry.npmjs.org/collection-visit/-/collection-visit-1.0.0.tgz#4bc0373c164bc3291b4d368c829cf1a80a59dca0" 562 | dependencies: 563 | map-visit "^1.0.0" 564 | object-visit "^1.0.0" 565 | 566 | color-convert@^1.9.0: 567 | version "1.9.2" 568 | resolved "https://registry.npmjs.org/color-convert/-/color-convert-1.9.2.tgz#49881b8fba67df12a96bdf3f56c0aab9e7913147" 569 | dependencies: 570 | color-name "1.1.1" 571 | 572 | color-name@1.1.1: 573 | version "1.1.1" 574 | resolved "https://registry.npmjs.org/color-name/-/color-name-1.1.1.tgz#4b1415304cf50028ea81643643bd82ea05803689" 575 | 576 | colors@>=0.6.2: 577 | version "1.3.1" 578 | resolved "https://registry.npmjs.org/colors/-/colors-1.3.1.tgz#4accdb89cf2cabc7f982771925e9468784f32f3d" 579 | 580 | combined-stream@1.0.6, combined-stream@^1.0.5, combined-stream@~1.0.5: 581 | version "1.0.6" 582 | resolved "https://registry.npmjs.org/combined-stream/-/combined-stream-1.0.6.tgz#723e7df6e801ac5613113a7e445a9b69cb632818" 583 | dependencies: 584 | delayed-stream "~1.0.0" 585 | 586 | commander@^2.9.0: 587 | version "2.16.0" 588 | resolved "https://registry.npmjs.org/commander/-/commander-2.16.0.tgz#f16390593996ceb4f3eeb020b31d78528f7f8a50" 589 | 590 | compare-versions@^3.1.0: 591 | version "3.3.0" 592 | resolved "https://registry.npmjs.org/compare-versions/-/compare-versions-3.3.0.tgz#af93ea705a96943f622ab309578b9b90586f39c3" 593 | 594 | component-emitter@^1.2.1: 595 | version "1.2.1" 596 | resolved "https://registry.npmjs.org/component-emitter/-/component-emitter-1.2.1.tgz#137918d6d78283f7df7a6b7c5a63e140e69425e6" 597 | 598 | concat-map@0.0.1: 599 | version "0.0.1" 600 | resolved "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz#d8a96bd77fd68df7793a73036a3ba0d5405d477b" 601 | 602 | console-control-strings@^1.0.0, console-control-strings@~1.1.0: 603 | version "1.1.0" 604 | resolved "https://registry.npmjs.org/console-control-strings/-/console-control-strings-1.1.0.tgz#3d7cf4464db6446ea644bf4b39507f9851008e8e" 605 | 606 | convert-source-map@^1.4.0, convert-source-map@^1.5.1: 607 | version "1.5.1" 608 | resolved "https://registry.npmjs.org/convert-source-map/-/convert-source-map-1.5.1.tgz#b8278097b9bc229365de5c62cf5fcaed8b5599e5" 609 | 610 | copy-descriptor@^0.1.0: 611 | version "0.1.1" 612 | resolved "https://registry.npmjs.org/copy-descriptor/-/copy-descriptor-0.1.1.tgz#676f6eb3c39997c2ee1ac3a924fd6124748f578d" 613 | 614 | core-js@^2.4.0, core-js@^2.5.0: 615 | version "2.5.7" 616 | resolved "https://registry.npmjs.org/core-js/-/core-js-2.5.7.tgz#f972608ff0cead68b841a16a932d0b183791814e" 617 | 618 | core-util-is@1.0.2, core-util-is@~1.0.0: 619 | version "1.0.2" 620 | resolved "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.2.tgz#b5fd54220aa2bc5ab57aab7140c940754503c1a7" 621 | 622 | coveralls@^2.13.1: 623 | version "2.13.3" 624 | resolved "https://registry.npmjs.org/coveralls/-/coveralls-2.13.3.tgz#9ad7c2ae527417f361e8b626483f48ee92dd2bc7" 625 | dependencies: 626 | js-yaml "3.6.1" 627 | lcov-parse "0.0.10" 628 | log-driver "1.2.5" 629 | minimist "1.2.0" 630 | request "2.79.0" 631 | 632 | cross-spawn@^5.0.1: 633 | version "5.1.0" 634 | resolved "https://registry.npmjs.org/cross-spawn/-/cross-spawn-5.1.0.tgz#e8bd0efee58fcff6f8f94510a0a554bbfa235449" 635 | dependencies: 636 | lru-cache "^4.0.1" 637 | shebang-command "^1.2.0" 638 | which "^1.2.9" 639 | 640 | cryptiles@2.x.x: 641 | version "2.0.5" 642 | resolved "https://registry.npmjs.org/cryptiles/-/cryptiles-2.0.5.tgz#3bdfecdc608147c1c67202fa291e7dca59eaa3b8" 643 | dependencies: 644 | boom "2.x.x" 645 | 646 | cssom@0.3.x, "cssom@>= 0.3.2 < 0.4.0": 647 | version "0.3.4" 648 | resolved "https://registry.npmjs.org/cssom/-/cssom-0.3.4.tgz#8cd52e8a3acfd68d3aed38ee0a640177d2f9d797" 649 | 650 | cssstyle@^1.0.0: 651 | version "1.0.0" 652 | resolved "https://registry.npmjs.org/cssstyle/-/cssstyle-1.0.0.tgz#79b16d51ec5591faec60e688891f15d2a5705129" 653 | dependencies: 654 | cssom "0.3.x" 655 | 656 | dashdash@^1.12.0: 657 | version "1.14.1" 658 | resolved "https://registry.npmjs.org/dashdash/-/dashdash-1.14.1.tgz#853cfa0f7cbe2fed5de20326b8dd581035f6e2f0" 659 | dependencies: 660 | assert-plus "^1.0.0" 661 | 662 | data-urls@^1.0.0: 663 | version "1.0.0" 664 | resolved "https://registry.npmjs.org/data-urls/-/data-urls-1.0.0.tgz#24802de4e81c298ea8a9388bb0d8e461c774684f" 665 | dependencies: 666 | abab "^1.0.4" 667 | whatwg-mimetype "^2.0.0" 668 | whatwg-url "^6.4.0" 669 | 670 | debug@^2.1.2, debug@^2.2.0, debug@^2.3.3, debug@^2.6.8, debug@^2.6.9: 671 | version "2.6.9" 672 | resolved "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz#5d128515df134ff327e90a4c93f4e077a536341f" 673 | dependencies: 674 | ms "2.0.0" 675 | 676 | debug@^3.1.0: 677 | version "3.1.0" 678 | resolved "https://registry.npmjs.org/debug/-/debug-3.1.0.tgz#5bb5a0672628b64149566ba16819e61518c67261" 679 | dependencies: 680 | ms "2.0.0" 681 | 682 | decamelize@^1.0.0, decamelize@^1.1.1: 683 | version "1.2.0" 684 | resolved "https://registry.npmjs.org/decamelize/-/decamelize-1.2.0.tgz#f6534d15148269b20352e7bee26f501f9a191290" 685 | 686 | decode-uri-component@^0.2.0: 687 | version "0.2.0" 688 | resolved "https://registry.npmjs.org/decode-uri-component/-/decode-uri-component-0.2.0.tgz#eb3913333458775cb84cd1a1fae062106bb87545" 689 | 690 | deep-extend@^0.6.0: 691 | version "0.6.0" 692 | resolved "https://registry.npmjs.org/deep-extend/-/deep-extend-0.6.0.tgz#c4fa7c95404a17a9c3e8ca7e1537312b736330ac" 693 | 694 | deep-is@~0.1.3: 695 | version "0.1.3" 696 | resolved "https://registry.npmjs.org/deep-is/-/deep-is-0.1.3.tgz#b369d6fb5dbc13eecf524f91b070feedc357cf34" 697 | 698 | default-require-extensions@^2.0.0: 699 | version "2.0.0" 700 | resolved "https://registry.npmjs.org/default-require-extensions/-/default-require-extensions-2.0.0.tgz#f5f8fbb18a7d6d50b21f641f649ebb522cfe24f7" 701 | dependencies: 702 | strip-bom "^3.0.0" 703 | 704 | define-properties@^1.1.2: 705 | version "1.1.2" 706 | resolved "https://registry.npmjs.org/define-properties/-/define-properties-1.1.2.tgz#83a73f2fea569898fb737193c8f873caf6d45c94" 707 | dependencies: 708 | foreach "^2.0.5" 709 | object-keys "^1.0.8" 710 | 711 | define-property@^0.2.5: 712 | version "0.2.5" 713 | resolved "https://registry.npmjs.org/define-property/-/define-property-0.2.5.tgz#c35b1ef918ec3c990f9a5bc57be04aacec5c8116" 714 | dependencies: 715 | is-descriptor "^0.1.0" 716 | 717 | define-property@^1.0.0: 718 | version "1.0.0" 719 | resolved "https://registry.npmjs.org/define-property/-/define-property-1.0.0.tgz#769ebaaf3f4a63aad3af9e8d304c9bbe79bfb0e6" 720 | dependencies: 721 | is-descriptor "^1.0.0" 722 | 723 | define-property@^2.0.2: 724 | version "2.0.2" 725 | resolved "https://registry.npmjs.org/define-property/-/define-property-2.0.2.tgz#d459689e8d654ba77e02a817f8710d702cb16e9d" 726 | dependencies: 727 | is-descriptor "^1.0.2" 728 | isobject "^3.0.1" 729 | 730 | delayed-stream@~1.0.0: 731 | version "1.0.0" 732 | resolved "https://registry.npmjs.org/delayed-stream/-/delayed-stream-1.0.0.tgz#df3ae199acadfb7d440aaae0b29e2272b24ec619" 733 | 734 | delegates@^1.0.0: 735 | version "1.0.0" 736 | resolved "https://registry.npmjs.org/delegates/-/delegates-1.0.0.tgz#84c6e159b81904fdca59a0ef44cd870d31250f9a" 737 | 738 | detect-indent@^4.0.0: 739 | version "4.0.0" 740 | resolved "https://registry.npmjs.org/detect-indent/-/detect-indent-4.0.0.tgz#f76d064352cdf43a1cb6ce619c4ee3a9475de208" 741 | dependencies: 742 | repeating "^2.0.0" 743 | 744 | detect-libc@^1.0.2: 745 | version "1.0.3" 746 | resolved "https://registry.npmjs.org/detect-libc/-/detect-libc-1.0.3.tgz#fa137c4bd698edf55cd5cd02ac559f91a4c4ba9b" 747 | 748 | detect-newline@^2.1.0: 749 | version "2.1.0" 750 | resolved "https://registry.npmjs.org/detect-newline/-/detect-newline-2.1.0.tgz#f41f1c10be4b00e87b5f13da680759f2c5bfd3e2" 751 | 752 | diff@^3.2.0: 753 | version "3.5.0" 754 | resolved "https://registry.npmjs.org/diff/-/diff-3.5.0.tgz#800c0dd1e0a8bfbc95835c202ad220fe317e5a12" 755 | 756 | domexception@^1.0.1: 757 | version "1.0.1" 758 | resolved "https://registry.npmjs.org/domexception/-/domexception-1.0.1.tgz#937442644ca6a31261ef36e3ec677fe805582c90" 759 | dependencies: 760 | webidl-conversions "^4.0.2" 761 | 762 | ecc-jsbn@~0.1.1: 763 | version "0.1.1" 764 | resolved "https://registry.npmjs.org/ecc-jsbn/-/ecc-jsbn-0.1.1.tgz#0fc73a9ed5f0d53c38193398523ef7e543777505" 765 | dependencies: 766 | jsbn "~0.1.0" 767 | 768 | error-ex@^1.2.0: 769 | version "1.3.2" 770 | resolved "https://registry.npmjs.org/error-ex/-/error-ex-1.3.2.tgz#b4ac40648107fdcdcfae242f428bea8a14d4f1bf" 771 | dependencies: 772 | is-arrayish "^0.2.1" 773 | 774 | es-abstract@^1.5.1: 775 | version "1.12.0" 776 | resolved "https://registry.npmjs.org/es-abstract/-/es-abstract-1.12.0.tgz#9dbbdd27c6856f0001421ca18782d786bf8a6165" 777 | dependencies: 778 | es-to-primitive "^1.1.1" 779 | function-bind "^1.1.1" 780 | has "^1.0.1" 781 | is-callable "^1.1.3" 782 | is-regex "^1.0.4" 783 | 784 | es-to-primitive@^1.1.1: 785 | version "1.1.1" 786 | resolved "https://registry.npmjs.org/es-to-primitive/-/es-to-primitive-1.1.1.tgz#45355248a88979034b6792e19bb81f2b7975dd0d" 787 | dependencies: 788 | is-callable "^1.1.1" 789 | is-date-object "^1.0.1" 790 | is-symbol "^1.0.1" 791 | 792 | escape-string-regexp@^1.0.2, escape-string-regexp@^1.0.5: 793 | version "1.0.5" 794 | resolved "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz#1b61c0562190a8dff6ae3bb2cf0200ca130b86d4" 795 | 796 | escodegen@^1.9.1: 797 | version "1.11.0" 798 | resolved "https://registry.npmjs.org/escodegen/-/escodegen-1.11.0.tgz#b27a9389481d5bfd5bec76f7bb1eb3f8f4556589" 799 | dependencies: 800 | esprima "^3.1.3" 801 | estraverse "^4.2.0" 802 | esutils "^2.0.2" 803 | optionator "^0.8.1" 804 | optionalDependencies: 805 | source-map "~0.6.1" 806 | 807 | esprima@^2.6.0: 808 | version "2.7.3" 809 | resolved "https://registry.npmjs.org/esprima/-/esprima-2.7.3.tgz#96e3b70d5779f6ad49cd032673d1c312767ba581" 810 | 811 | esprima@^3.1.3: 812 | version "3.1.3" 813 | resolved "https://registry.npmjs.org/esprima/-/esprima-3.1.3.tgz#fdca51cee6133895e3c88d535ce49dbff62a4633" 814 | 815 | esprima@^4.0.0: 816 | version "4.0.1" 817 | resolved "https://registry.npmjs.org/esprima/-/esprima-4.0.1.tgz#13b04cdb3e6c5d19df91ab6987a8695619b0aa71" 818 | 819 | estraverse@^4.2.0: 820 | version "4.2.0" 821 | resolved "https://registry.npmjs.org/estraverse/-/estraverse-4.2.0.tgz#0dee3fed31fcd469618ce7342099fc1afa0bdb13" 822 | 823 | esutils@2.0.2, esutils@^2.0.2: 824 | version "2.0.2" 825 | resolved "https://registry.npmjs.org/esutils/-/esutils-2.0.2.tgz#0abf4f1caa5bcb1f7a9d8acc6dea4faaa04bac9b" 826 | 827 | exec-sh@^0.2.0: 828 | version "0.2.2" 829 | resolved "https://registry.npmjs.org/exec-sh/-/exec-sh-0.2.2.tgz#2a5e7ffcbd7d0ba2755bdecb16e5a427dfbdec36" 830 | dependencies: 831 | merge "^1.2.0" 832 | 833 | execa@^0.6.0: 834 | version "0.6.3" 835 | resolved "https://registry.npmjs.org/execa/-/execa-0.6.3.tgz#57b69a594f081759c69e5370f0d17b9cb11658fe" 836 | dependencies: 837 | cross-spawn "^5.0.1" 838 | get-stream "^3.0.0" 839 | is-stream "^1.1.0" 840 | npm-run-path "^2.0.0" 841 | p-finally "^1.0.0" 842 | signal-exit "^3.0.0" 843 | strip-eof "^1.0.0" 844 | 845 | execa@^0.7.0: 846 | version "0.7.0" 847 | resolved "https://registry.npmjs.org/execa/-/execa-0.7.0.tgz#944becd34cc41ee32a63a9faf27ad5a65fc59777" 848 | dependencies: 849 | cross-spawn "^5.0.1" 850 | get-stream "^3.0.0" 851 | is-stream "^1.1.0" 852 | npm-run-path "^2.0.0" 853 | p-finally "^1.0.0" 854 | signal-exit "^3.0.0" 855 | strip-eof "^1.0.0" 856 | 857 | exit@^0.1.2: 858 | version "0.1.2" 859 | resolved "https://registry.npmjs.org/exit/-/exit-0.1.2.tgz#0632638f8d877cc82107d30a0fff1a17cba1cd0c" 860 | 861 | expand-brackets@^0.1.4: 862 | version "0.1.5" 863 | resolved "https://registry.npmjs.org/expand-brackets/-/expand-brackets-0.1.5.tgz#df07284e342a807cd733ac5af72411e581d1177b" 864 | dependencies: 865 | is-posix-bracket "^0.1.0" 866 | 867 | expand-brackets@^2.1.4: 868 | version "2.1.4" 869 | resolved "https://registry.npmjs.org/expand-brackets/-/expand-brackets-2.1.4.tgz#b77735e315ce30f6b6eff0f83b04151a22449622" 870 | dependencies: 871 | debug "^2.3.3" 872 | define-property "^0.2.5" 873 | extend-shallow "^2.0.1" 874 | posix-character-classes "^0.1.0" 875 | regex-not "^1.0.0" 876 | snapdragon "^0.8.1" 877 | to-regex "^3.0.1" 878 | 879 | expand-range@^1.8.1: 880 | version "1.8.2" 881 | resolved "https://registry.npmjs.org/expand-range/-/expand-range-1.8.2.tgz#a299effd335fe2721ebae8e257ec79644fc85337" 882 | dependencies: 883 | fill-range "^2.1.0" 884 | 885 | expect@^23.4.0: 886 | version "23.4.0" 887 | resolved "https://registry.npmjs.org/expect/-/expect-23.4.0.tgz#6da4ecc99c1471253e7288338983ad1ebadb60c3" 888 | dependencies: 889 | ansi-styles "^3.2.0" 890 | jest-diff "^23.2.0" 891 | jest-get-type "^22.1.0" 892 | jest-matcher-utils "^23.2.0" 893 | jest-message-util "^23.4.0" 894 | jest-regex-util "^23.3.0" 895 | 896 | extend-shallow@^2.0.1: 897 | version "2.0.1" 898 | resolved "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz#51af7d614ad9a9f610ea1bafbb989d6b1c56890f" 899 | dependencies: 900 | is-extendable "^0.1.0" 901 | 902 | extend-shallow@^3.0.0, extend-shallow@^3.0.2: 903 | version "3.0.2" 904 | resolved "https://registry.npmjs.org/extend-shallow/-/extend-shallow-3.0.2.tgz#26a71aaf073b39fb2127172746131c2704028db8" 905 | dependencies: 906 | assign-symbols "^1.0.0" 907 | is-extendable "^1.0.1" 908 | 909 | extend@~3.0.0, extend@~3.0.1: 910 | version "3.0.2" 911 | resolved "https://registry.npmjs.org/extend/-/extend-3.0.2.tgz#f8b1136b4071fbd8eb140aff858b1019ec2915fa" 912 | 913 | extglob@^0.3.1: 914 | version "0.3.2" 915 | resolved "https://registry.npmjs.org/extglob/-/extglob-0.3.2.tgz#2e18ff3d2f49ab2765cec9023f011daa8d8349a1" 916 | dependencies: 917 | is-extglob "^1.0.0" 918 | 919 | extglob@^2.0.4: 920 | version "2.0.4" 921 | resolved "https://registry.npmjs.org/extglob/-/extglob-2.0.4.tgz#ad00fe4dc612a9232e8718711dc5cb5ab0285543" 922 | dependencies: 923 | array-unique "^0.3.2" 924 | define-property "^1.0.0" 925 | expand-brackets "^2.1.4" 926 | extend-shallow "^2.0.1" 927 | fragment-cache "^0.2.1" 928 | regex-not "^1.0.0" 929 | snapdragon "^0.8.1" 930 | to-regex "^3.0.1" 931 | 932 | extsprintf@1.3.0: 933 | version "1.3.0" 934 | resolved "https://registry.npmjs.org/extsprintf/-/extsprintf-1.3.0.tgz#96918440e3041a7a414f8c52e3c574eb3c3e1e05" 935 | 936 | extsprintf@^1.2.0: 937 | version "1.4.0" 938 | resolved "https://registry.npmjs.org/extsprintf/-/extsprintf-1.4.0.tgz#e2689f8f356fad62cca65a3a91c5df5f9551692f" 939 | 940 | fast-deep-equal@^1.0.0: 941 | version "1.1.0" 942 | resolved "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-1.1.0.tgz#c053477817c86b51daa853c81e059b733d023614" 943 | 944 | fast-json-stable-stringify@^2.0.0: 945 | version "2.0.0" 946 | resolved "https://registry.npmjs.org/fast-json-stable-stringify/-/fast-json-stable-stringify-2.0.0.tgz#d5142c0caee6b1189f87d3a76111064f86c8bbf2" 947 | 948 | fast-levenshtein@~2.0.4: 949 | version "2.0.6" 950 | resolved "https://registry.npmjs.org/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz#3d8a5c66883a16a30ca8643e851f19baa7797917" 951 | 952 | fb-watchman@^2.0.0: 953 | version "2.0.0" 954 | resolved "https://registry.npmjs.org/fb-watchman/-/fb-watchman-2.0.0.tgz#54e9abf7dfa2f26cd9b1636c588c1afc05de5d58" 955 | dependencies: 956 | bser "^2.0.0" 957 | 958 | filename-regex@^2.0.0: 959 | version "2.0.1" 960 | resolved "https://registry.npmjs.org/filename-regex/-/filename-regex-2.0.1.tgz#c1c4b9bee3e09725ddb106b75c1e301fe2f18b26" 961 | 962 | fileset@^2.0.2: 963 | version "2.0.3" 964 | resolved "https://registry.npmjs.org/fileset/-/fileset-2.0.3.tgz#8e7548a96d3cc2327ee5e674168723a333bba2a0" 965 | dependencies: 966 | glob "^7.0.3" 967 | minimatch "^3.0.3" 968 | 969 | fill-range@^2.1.0: 970 | version "2.2.4" 971 | resolved "https://registry.npmjs.org/fill-range/-/fill-range-2.2.4.tgz#eb1e773abb056dcd8df2bfdf6af59b8b3a936565" 972 | dependencies: 973 | is-number "^2.1.0" 974 | isobject "^2.0.0" 975 | randomatic "^3.0.0" 976 | repeat-element "^1.1.2" 977 | repeat-string "^1.5.2" 978 | 979 | fill-range@^4.0.0: 980 | version "4.0.0" 981 | resolved "https://registry.npmjs.org/fill-range/-/fill-range-4.0.0.tgz#d544811d428f98eb06a63dc402d2403c328c38f7" 982 | dependencies: 983 | extend-shallow "^2.0.1" 984 | is-number "^3.0.0" 985 | repeat-string "^1.6.1" 986 | to-regex-range "^2.1.0" 987 | 988 | find-up@^1.0.0: 989 | version "1.1.2" 990 | resolved "https://registry.npmjs.org/find-up/-/find-up-1.1.2.tgz#6b2e9822b1a2ce0a60ab64d610eccad53cb24d0f" 991 | dependencies: 992 | path-exists "^2.0.0" 993 | pinkie-promise "^2.0.0" 994 | 995 | find-up@^2.1.0: 996 | version "2.1.0" 997 | resolved "https://registry.npmjs.org/find-up/-/find-up-2.1.0.tgz#45d1b7e506c717ddd482775a2b77920a3c0c57a7" 998 | dependencies: 999 | locate-path "^2.0.0" 1000 | 1001 | flow-parser@0.40.0: 1002 | version "0.40.0" 1003 | resolved "https://registry.npmjs.org/flow-parser/-/flow-parser-0.40.0.tgz#b3444742189093323c4319c4fe9d35391f46bcbc" 1004 | dependencies: 1005 | ast-types "0.8.18" 1006 | colors ">=0.6.2" 1007 | minimist ">=0.2.0" 1008 | 1009 | for-in@^1.0.1, for-in@^1.0.2: 1010 | version "1.0.2" 1011 | resolved "https://registry.npmjs.org/for-in/-/for-in-1.0.2.tgz#81068d295a8142ec0ac726c6e2200c30fb6d5e80" 1012 | 1013 | for-own@^0.1.4: 1014 | version "0.1.5" 1015 | resolved "https://registry.npmjs.org/for-own/-/for-own-0.1.5.tgz#5265c681a4f294dabbf17c9509b6763aa84510ce" 1016 | dependencies: 1017 | for-in "^1.0.1" 1018 | 1019 | foreach@^2.0.5: 1020 | version "2.0.5" 1021 | resolved "https://registry.npmjs.org/foreach/-/foreach-2.0.5.tgz#0bee005018aeb260d0a3af3ae658dd0136ec1b99" 1022 | 1023 | forever-agent@~0.6.1: 1024 | version "0.6.1" 1025 | resolved "https://registry.npmjs.org/forever-agent/-/forever-agent-0.6.1.tgz#fbc71f0c41adeb37f96c577ad1ed42d8fdacca91" 1026 | 1027 | form-data@~2.1.1: 1028 | version "2.1.4" 1029 | resolved "https://registry.npmjs.org/form-data/-/form-data-2.1.4.tgz#33c183acf193276ecaa98143a69e94bfee1750d1" 1030 | dependencies: 1031 | asynckit "^0.4.0" 1032 | combined-stream "^1.0.5" 1033 | mime-types "^2.1.12" 1034 | 1035 | form-data@~2.3.1: 1036 | version "2.3.2" 1037 | resolved "https://registry.npmjs.org/form-data/-/form-data-2.3.2.tgz#4970498be604c20c005d4f5c23aecd21d6b49099" 1038 | dependencies: 1039 | asynckit "^0.4.0" 1040 | combined-stream "1.0.6" 1041 | mime-types "^2.1.12" 1042 | 1043 | fragment-cache@^0.2.1: 1044 | version "0.2.1" 1045 | resolved "https://registry.npmjs.org/fragment-cache/-/fragment-cache-0.2.1.tgz#4290fad27f13e89be7f33799c6bc5a0abfff0d19" 1046 | dependencies: 1047 | map-cache "^0.2.2" 1048 | 1049 | fs-minipass@^1.2.5: 1050 | version "1.2.5" 1051 | resolved "https://registry.npmjs.org/fs-minipass/-/fs-minipass-1.2.5.tgz#06c277218454ec288df77ada54a03b8702aacb9d" 1052 | dependencies: 1053 | minipass "^2.2.1" 1054 | 1055 | fs.realpath@^1.0.0: 1056 | version "1.0.0" 1057 | resolved "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz#1504ad2523158caa40db4a2787cb01411994ea4f" 1058 | 1059 | fsevents@^1.2.3: 1060 | version "1.2.4" 1061 | resolved "https://registry.npmjs.org/fsevents/-/fsevents-1.2.4.tgz#f41dcb1af2582af3692da36fc55cbd8e1041c426" 1062 | dependencies: 1063 | nan "^2.9.2" 1064 | node-pre-gyp "^0.10.0" 1065 | 1066 | function-bind@^1.1.1: 1067 | version "1.1.1" 1068 | resolved "https://registry.npmjs.org/function-bind/-/function-bind-1.1.1.tgz#a56899d3ea3c9bab874bb9773b7c5ede92f4895d" 1069 | 1070 | gauge@~2.7.3: 1071 | version "2.7.4" 1072 | resolved "https://registry.npmjs.org/gauge/-/gauge-2.7.4.tgz#2c03405c7538c39d7eb37b317022e325fb018bf7" 1073 | dependencies: 1074 | aproba "^1.0.3" 1075 | console-control-strings "^1.0.0" 1076 | has-unicode "^2.0.0" 1077 | object-assign "^4.1.0" 1078 | signal-exit "^3.0.0" 1079 | string-width "^1.0.1" 1080 | strip-ansi "^3.0.1" 1081 | wide-align "^1.1.0" 1082 | 1083 | generate-changelog@^1.5.0: 1084 | version "1.7.1" 1085 | resolved "https://registry.npmjs.org/generate-changelog/-/generate-changelog-1.7.1.tgz#c0b549de34177e6a5d6414af3d74daea9a3cdc0f" 1086 | dependencies: 1087 | bluebird "^3.0.6" 1088 | commander "^2.9.0" 1089 | github-url-from-git "^1.4.0" 1090 | 1091 | generate-function@^2.0.0: 1092 | version "2.0.0" 1093 | resolved "https://registry.npmjs.org/generate-function/-/generate-function-2.0.0.tgz#6858fe7c0969b7d4e9093337647ac79f60dfbe74" 1094 | 1095 | generate-object-property@^1.1.0: 1096 | version "1.2.0" 1097 | resolved "https://registry.npmjs.org/generate-object-property/-/generate-object-property-1.2.0.tgz#9c0e1c40308ce804f4783618b937fa88f99d50d0" 1098 | dependencies: 1099 | is-property "^1.0.0" 1100 | 1101 | get-caller-file@^1.0.1: 1102 | version "1.0.3" 1103 | resolved "https://registry.npmjs.org/get-caller-file/-/get-caller-file-1.0.3.tgz#f978fa4c90d1dfe7ff2d6beda2a515e713bdcf4a" 1104 | 1105 | get-stdin@5.0.1: 1106 | version "5.0.1" 1107 | resolved "https://registry.npmjs.org/get-stdin/-/get-stdin-5.0.1.tgz#122e161591e21ff4c52530305693f20e6393a398" 1108 | 1109 | get-stream@^3.0.0: 1110 | version "3.0.0" 1111 | resolved "https://registry.npmjs.org/get-stream/-/get-stream-3.0.0.tgz#8e943d1358dc37555054ecbe2edb05aa174ede14" 1112 | 1113 | get-value@^2.0.3, get-value@^2.0.6: 1114 | version "2.0.6" 1115 | resolved "https://registry.npmjs.org/get-value/-/get-value-2.0.6.tgz#dc15ca1c672387ca76bd37ac0a395ba2042a2c28" 1116 | 1117 | getpass@^0.1.1: 1118 | version "0.1.7" 1119 | resolved "https://registry.npmjs.org/getpass/-/getpass-0.1.7.tgz#5eff8e3e684d569ae4cb2b1282604e8ba62149fa" 1120 | dependencies: 1121 | assert-plus "^1.0.0" 1122 | 1123 | github-url-from-git@^1.4.0: 1124 | version "1.5.0" 1125 | resolved "https://registry.npmjs.org/github-url-from-git/-/github-url-from-git-1.5.0.tgz#f985fedcc0a9aa579dc88d7aff068d55cc6251a0" 1126 | 1127 | glob-base@^0.3.0: 1128 | version "0.3.0" 1129 | resolved "https://registry.npmjs.org/glob-base/-/glob-base-0.3.0.tgz#dbb164f6221b1c0b1ccf82aea328b497df0ea3c4" 1130 | dependencies: 1131 | glob-parent "^2.0.0" 1132 | is-glob "^2.0.0" 1133 | 1134 | glob-parent@^2.0.0: 1135 | version "2.0.0" 1136 | resolved "https://registry.npmjs.org/glob-parent/-/glob-parent-2.0.0.tgz#81383d72db054fcccf5336daa902f182f6edbb28" 1137 | dependencies: 1138 | is-glob "^2.0.0" 1139 | 1140 | glob@7.1.1: 1141 | version "7.1.1" 1142 | resolved "https://registry.npmjs.org/glob/-/glob-7.1.1.tgz#805211df04faaf1c63a3600306cdf5ade50b2ec8" 1143 | dependencies: 1144 | fs.realpath "^1.0.0" 1145 | inflight "^1.0.4" 1146 | inherits "2" 1147 | minimatch "^3.0.2" 1148 | once "^1.3.0" 1149 | path-is-absolute "^1.0.0" 1150 | 1151 | glob@^7.0.3, glob@^7.0.5, glob@^7.1.1, glob@^7.1.2: 1152 | version "7.1.2" 1153 | resolved "https://registry.npmjs.org/glob/-/glob-7.1.2.tgz#c19c9df9a028702d678612384a6552404c636d15" 1154 | dependencies: 1155 | fs.realpath "^1.0.0" 1156 | inflight "^1.0.4" 1157 | inherits "2" 1158 | minimatch "^3.0.4" 1159 | once "^1.3.0" 1160 | path-is-absolute "^1.0.0" 1161 | 1162 | globals@^9.18.0: 1163 | version "9.18.0" 1164 | resolved "https://registry.npmjs.org/globals/-/globals-9.18.0.tgz#aa3896b3e69b487f17e31ed2143d69a8e30c2d8a" 1165 | 1166 | graceful-fs@^4.1.11, graceful-fs@^4.1.2: 1167 | version "4.1.11" 1168 | resolved "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.1.11.tgz#0e8bdfe4d1ddb8854d64e04ea7c00e2a026e5658" 1169 | 1170 | growly@^1.3.0: 1171 | version "1.3.0" 1172 | resolved "https://registry.npmjs.org/growly/-/growly-1.3.0.tgz#f10748cbe76af964b7c96c93c6bcc28af120c081" 1173 | 1174 | handlebars@^4.0.3: 1175 | version "4.0.11" 1176 | resolved "https://registry.npmjs.org/handlebars/-/handlebars-4.0.11.tgz#630a35dfe0294bc281edae6ffc5d329fc7982dcc" 1177 | dependencies: 1178 | async "^1.4.0" 1179 | optimist "^0.6.1" 1180 | source-map "^0.4.4" 1181 | optionalDependencies: 1182 | uglify-js "^2.6" 1183 | 1184 | har-schema@^2.0.0: 1185 | version "2.0.0" 1186 | resolved "https://registry.npmjs.org/har-schema/-/har-schema-2.0.0.tgz#a94c2224ebcac04782a0d9035521f24735b7ec92" 1187 | 1188 | har-validator@~2.0.6: 1189 | version "2.0.6" 1190 | resolved "https://registry.npmjs.org/har-validator/-/har-validator-2.0.6.tgz#cdcbc08188265ad119b6a5a7c8ab70eecfb5d27d" 1191 | dependencies: 1192 | chalk "^1.1.1" 1193 | commander "^2.9.0" 1194 | is-my-json-valid "^2.12.4" 1195 | pinkie-promise "^2.0.0" 1196 | 1197 | har-validator@~5.0.3: 1198 | version "5.0.3" 1199 | resolved "https://registry.npmjs.org/har-validator/-/har-validator-5.0.3.tgz#ba402c266194f15956ef15e0fcf242993f6a7dfd" 1200 | dependencies: 1201 | ajv "^5.1.0" 1202 | har-schema "^2.0.0" 1203 | 1204 | has-ansi@^2.0.0: 1205 | version "2.0.0" 1206 | resolved "https://registry.npmjs.org/has-ansi/-/has-ansi-2.0.0.tgz#34f5049ce1ecdf2b0649af3ef24e45ed35416d91" 1207 | dependencies: 1208 | ansi-regex "^2.0.0" 1209 | 1210 | has-flag@^1.0.0: 1211 | version "1.0.0" 1212 | resolved "https://registry.npmjs.org/has-flag/-/has-flag-1.0.0.tgz#9d9e793165ce017a00f00418c43f942a7b1d11fa" 1213 | 1214 | has-flag@^3.0.0: 1215 | version "3.0.0" 1216 | resolved "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz#b5d454dc2199ae225699f3467e5a07f3b955bafd" 1217 | 1218 | has-unicode@^2.0.0: 1219 | version "2.0.1" 1220 | resolved "https://registry.npmjs.org/has-unicode/-/has-unicode-2.0.1.tgz#e0e6fe6a28cf51138855e086d1691e771de2a8b9" 1221 | 1222 | has-value@^0.3.1: 1223 | version "0.3.1" 1224 | resolved "https://registry.npmjs.org/has-value/-/has-value-0.3.1.tgz#7b1f58bada62ca827ec0a2078025654845995e1f" 1225 | dependencies: 1226 | get-value "^2.0.3" 1227 | has-values "^0.1.4" 1228 | isobject "^2.0.0" 1229 | 1230 | has-value@^1.0.0: 1231 | version "1.0.0" 1232 | resolved "https://registry.npmjs.org/has-value/-/has-value-1.0.0.tgz#18b281da585b1c5c51def24c930ed29a0be6b177" 1233 | dependencies: 1234 | get-value "^2.0.6" 1235 | has-values "^1.0.0" 1236 | isobject "^3.0.0" 1237 | 1238 | has-values@^0.1.4: 1239 | version "0.1.4" 1240 | resolved "https://registry.npmjs.org/has-values/-/has-values-0.1.4.tgz#6d61de95d91dfca9b9a02089ad384bff8f62b771" 1241 | 1242 | has-values@^1.0.0: 1243 | version "1.0.0" 1244 | resolved "https://registry.npmjs.org/has-values/-/has-values-1.0.0.tgz#95b0b63fec2146619a6fe57fe75628d5a39efe4f" 1245 | dependencies: 1246 | is-number "^3.0.0" 1247 | kind-of "^4.0.0" 1248 | 1249 | has@^1.0.1: 1250 | version "1.0.3" 1251 | resolved "https://registry.npmjs.org/has/-/has-1.0.3.tgz#722d7cbfc1f6aa8241f16dd814e011e1f41e8796" 1252 | dependencies: 1253 | function-bind "^1.1.1" 1254 | 1255 | hawk@~3.1.3: 1256 | version "3.1.3" 1257 | resolved "https://registry.npmjs.org/hawk/-/hawk-3.1.3.tgz#078444bd7c1640b0fe540d2c9b73d59678e8e1c4" 1258 | dependencies: 1259 | boom "2.x.x" 1260 | cryptiles "2.x.x" 1261 | hoek "2.x.x" 1262 | sntp "1.x.x" 1263 | 1264 | hoek@2.x.x: 1265 | version "2.16.3" 1266 | resolved "https://registry.npmjs.org/hoek/-/hoek-2.16.3.tgz#20bb7403d3cea398e91dc4710a8ff1b8274a25ed" 1267 | 1268 | home-or-tmp@^2.0.0: 1269 | version "2.0.0" 1270 | resolved "https://registry.npmjs.org/home-or-tmp/-/home-or-tmp-2.0.0.tgz#e36c3f2d2cae7d746a857e38d18d5f32a7882db8" 1271 | dependencies: 1272 | os-homedir "^1.0.0" 1273 | os-tmpdir "^1.0.1" 1274 | 1275 | hosted-git-info@^2.1.4: 1276 | version "2.7.1" 1277 | resolved "https://registry.npmjs.org/hosted-git-info/-/hosted-git-info-2.7.1.tgz#97f236977bd6e125408930ff6de3eec6281ec047" 1278 | 1279 | html-encoding-sniffer@^1.0.2: 1280 | version "1.0.2" 1281 | resolved "https://registry.npmjs.org/html-encoding-sniffer/-/html-encoding-sniffer-1.0.2.tgz#e70d84b94da53aa375e11fe3a351be6642ca46f8" 1282 | dependencies: 1283 | whatwg-encoding "^1.0.1" 1284 | 1285 | http-signature@~1.1.0: 1286 | version "1.1.1" 1287 | resolved "https://registry.npmjs.org/http-signature/-/http-signature-1.1.1.tgz#df72e267066cd0ac67fb76adf8e134a8fbcf91bf" 1288 | dependencies: 1289 | assert-plus "^0.2.0" 1290 | jsprim "^1.2.2" 1291 | sshpk "^1.7.0" 1292 | 1293 | http-signature@~1.2.0: 1294 | version "1.2.0" 1295 | resolved "https://registry.npmjs.org/http-signature/-/http-signature-1.2.0.tgz#9aecd925114772f3d95b65a60abb8f7c18fbace1" 1296 | dependencies: 1297 | assert-plus "^1.0.0" 1298 | jsprim "^1.2.2" 1299 | sshpk "^1.7.0" 1300 | 1301 | iconv-lite@0.4.19: 1302 | version "0.4.19" 1303 | resolved "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.19.tgz#f7468f60135f5e5dad3399c0a81be9a1603a082b" 1304 | 1305 | iconv-lite@^0.4.4: 1306 | version "0.4.23" 1307 | resolved "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.23.tgz#297871f63be507adcfbfca715d0cd0eed84e9a63" 1308 | dependencies: 1309 | safer-buffer ">= 2.1.2 < 3" 1310 | 1311 | ignore-walk@^3.0.1: 1312 | version "3.0.1" 1313 | resolved "https://registry.npmjs.org/ignore-walk/-/ignore-walk-3.0.1.tgz#a83e62e7d272ac0e3b551aaa82831a19b69f82f8" 1314 | dependencies: 1315 | minimatch "^3.0.4" 1316 | 1317 | import-local@^1.0.0: 1318 | version "1.0.0" 1319 | resolved "https://registry.npmjs.org/import-local/-/import-local-1.0.0.tgz#5e4ffdc03f4fe6c009c6729beb29631c2f8227bc" 1320 | dependencies: 1321 | pkg-dir "^2.0.0" 1322 | resolve-cwd "^2.0.0" 1323 | 1324 | imurmurhash@^0.1.4: 1325 | version "0.1.4" 1326 | resolved "https://registry.npmjs.org/imurmurhash/-/imurmurhash-0.1.4.tgz#9218b9b2b928a238b13dc4fb6b6d576f231453ea" 1327 | 1328 | inflight@^1.0.4: 1329 | version "1.0.6" 1330 | resolved "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz#49bd6331d7d02d0c09bc910a1075ba8165b56df9" 1331 | dependencies: 1332 | once "^1.3.0" 1333 | wrappy "1" 1334 | 1335 | inherits@2, inherits@~2.0.3: 1336 | version "2.0.3" 1337 | resolved "https://registry.npmjs.org/inherits/-/inherits-2.0.3.tgz#633c2c83e3da42a502f52466022480f4208261de" 1338 | 1339 | ini@~1.3.0: 1340 | version "1.3.5" 1341 | resolved "https://registry.npmjs.org/ini/-/ini-1.3.5.tgz#eee25f56db1c9ec6085e0c22778083f596abf927" 1342 | 1343 | invariant@^2.2.2: 1344 | version "2.2.4" 1345 | resolved "https://registry.npmjs.org/invariant/-/invariant-2.2.4.tgz#610f3c92c9359ce1db616e538008d23ff35158e6" 1346 | dependencies: 1347 | loose-envify "^1.0.0" 1348 | 1349 | invert-kv@^1.0.0: 1350 | version "1.0.0" 1351 | resolved "https://registry.npmjs.org/invert-kv/-/invert-kv-1.0.0.tgz#104a8e4aaca6d3d8cd157a8ef8bfab2d7a3ffdb6" 1352 | 1353 | is-accessor-descriptor@^0.1.6: 1354 | version "0.1.6" 1355 | resolved "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-0.1.6.tgz#a9e12cb3ae8d876727eeef3843f8a0897b5c98d6" 1356 | dependencies: 1357 | kind-of "^3.0.2" 1358 | 1359 | is-accessor-descriptor@^1.0.0: 1360 | version "1.0.0" 1361 | resolved "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-1.0.0.tgz#169c2f6d3df1f992618072365c9b0ea1f6878656" 1362 | dependencies: 1363 | kind-of "^6.0.0" 1364 | 1365 | is-arrayish@^0.2.1: 1366 | version "0.2.1" 1367 | resolved "https://registry.npmjs.org/is-arrayish/-/is-arrayish-0.2.1.tgz#77c99840527aa8ecb1a8ba697b80645a7a926a9d" 1368 | 1369 | is-buffer@^1.1.5: 1370 | version "1.1.6" 1371 | resolved "https://registry.npmjs.org/is-buffer/-/is-buffer-1.1.6.tgz#efaa2ea9daa0d7ab2ea13a97b2b8ad51fefbe8be" 1372 | 1373 | is-builtin-module@^1.0.0: 1374 | version "1.0.0" 1375 | resolved "https://registry.npmjs.org/is-builtin-module/-/is-builtin-module-1.0.0.tgz#540572d34f7ac3119f8f76c30cbc1b1e037affbe" 1376 | dependencies: 1377 | builtin-modules "^1.0.0" 1378 | 1379 | is-callable@^1.1.1, is-callable@^1.1.3: 1380 | version "1.1.4" 1381 | resolved "https://registry.npmjs.org/is-callable/-/is-callable-1.1.4.tgz#1e1adf219e1eeb684d691f9d6a05ff0d30a24d75" 1382 | 1383 | is-ci@^1.0.10: 1384 | version "1.1.0" 1385 | resolved "https://registry.npmjs.org/is-ci/-/is-ci-1.1.0.tgz#247e4162e7860cebbdaf30b774d6b0ac7dcfe7a5" 1386 | dependencies: 1387 | ci-info "^1.0.0" 1388 | 1389 | is-data-descriptor@^0.1.4: 1390 | version "0.1.4" 1391 | resolved "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-0.1.4.tgz#0b5ee648388e2c860282e793f1856fec3f301b56" 1392 | dependencies: 1393 | kind-of "^3.0.2" 1394 | 1395 | is-data-descriptor@^1.0.0: 1396 | version "1.0.0" 1397 | resolved "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-1.0.0.tgz#d84876321d0e7add03990406abbbbd36ba9268c7" 1398 | dependencies: 1399 | kind-of "^6.0.0" 1400 | 1401 | is-date-object@^1.0.1: 1402 | version "1.0.1" 1403 | resolved "https://registry.npmjs.org/is-date-object/-/is-date-object-1.0.1.tgz#9aa20eb6aeebbff77fbd33e74ca01b33581d3a16" 1404 | 1405 | is-descriptor@^0.1.0: 1406 | version "0.1.6" 1407 | resolved "https://registry.npmjs.org/is-descriptor/-/is-descriptor-0.1.6.tgz#366d8240dde487ca51823b1ab9f07a10a78251ca" 1408 | dependencies: 1409 | is-accessor-descriptor "^0.1.6" 1410 | is-data-descriptor "^0.1.4" 1411 | kind-of "^5.0.0" 1412 | 1413 | is-descriptor@^1.0.0, is-descriptor@^1.0.2: 1414 | version "1.0.2" 1415 | resolved "https://registry.npmjs.org/is-descriptor/-/is-descriptor-1.0.2.tgz#3b159746a66604b04f8c81524ba365c5f14d86ec" 1416 | dependencies: 1417 | is-accessor-descriptor "^1.0.0" 1418 | is-data-descriptor "^1.0.0" 1419 | kind-of "^6.0.2" 1420 | 1421 | is-dotfile@^1.0.0: 1422 | version "1.0.3" 1423 | resolved "https://registry.npmjs.org/is-dotfile/-/is-dotfile-1.0.3.tgz#a6a2f32ffd2dfb04f5ca25ecd0f6b83cf798a1e1" 1424 | 1425 | is-equal-shallow@^0.1.3: 1426 | version "0.1.3" 1427 | resolved "https://registry.npmjs.org/is-equal-shallow/-/is-equal-shallow-0.1.3.tgz#2238098fc221de0bcfa5d9eac4c45d638aa1c534" 1428 | dependencies: 1429 | is-primitive "^2.0.0" 1430 | 1431 | is-extendable@^0.1.0, is-extendable@^0.1.1: 1432 | version "0.1.1" 1433 | resolved "https://registry.npmjs.org/is-extendable/-/is-extendable-0.1.1.tgz#62b110e289a471418e3ec36a617d472e301dfc89" 1434 | 1435 | is-extendable@^1.0.1: 1436 | version "1.0.1" 1437 | resolved "https://registry.npmjs.org/is-extendable/-/is-extendable-1.0.1.tgz#a7470f9e426733d81bd81e1155264e3a3507cab4" 1438 | dependencies: 1439 | is-plain-object "^2.0.4" 1440 | 1441 | is-extglob@^1.0.0: 1442 | version "1.0.0" 1443 | resolved "https://registry.npmjs.org/is-extglob/-/is-extglob-1.0.0.tgz#ac468177c4943405a092fc8f29760c6ffc6206c0" 1444 | 1445 | is-finite@^1.0.0: 1446 | version "1.0.2" 1447 | resolved "https://registry.npmjs.org/is-finite/-/is-finite-1.0.2.tgz#cc6677695602be550ef11e8b4aa6305342b6d0aa" 1448 | dependencies: 1449 | number-is-nan "^1.0.0" 1450 | 1451 | is-fullwidth-code-point@^1.0.0: 1452 | version "1.0.0" 1453 | resolved "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-1.0.0.tgz#ef9e31386f031a7f0d643af82fde50c457ef00cb" 1454 | dependencies: 1455 | number-is-nan "^1.0.0" 1456 | 1457 | is-fullwidth-code-point@^2.0.0: 1458 | version "2.0.0" 1459 | resolved "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz#a3b30a5c4f199183167aaab93beefae3ddfb654f" 1460 | 1461 | is-generator-fn@^1.0.0: 1462 | version "1.0.0" 1463 | resolved "https://registry.npmjs.org/is-generator-fn/-/is-generator-fn-1.0.0.tgz#969d49e1bb3329f6bb7f09089be26578b2ddd46a" 1464 | 1465 | is-glob@^2.0.0, is-glob@^2.0.1: 1466 | version "2.0.1" 1467 | resolved "https://registry.npmjs.org/is-glob/-/is-glob-2.0.1.tgz#d096f926a3ded5600f3fdfd91198cb0888c2d863" 1468 | dependencies: 1469 | is-extglob "^1.0.0" 1470 | 1471 | is-my-ip-valid@^1.0.0: 1472 | version "1.0.0" 1473 | resolved "https://registry.npmjs.org/is-my-ip-valid/-/is-my-ip-valid-1.0.0.tgz#7b351b8e8edd4d3995d4d066680e664d94696824" 1474 | 1475 | is-my-json-valid@^2.12.4: 1476 | version "2.17.2" 1477 | resolved "https://registry.npmjs.org/is-my-json-valid/-/is-my-json-valid-2.17.2.tgz#6b2103a288e94ef3de5cf15d29dd85fc4b78d65c" 1478 | dependencies: 1479 | generate-function "^2.0.0" 1480 | generate-object-property "^1.1.0" 1481 | is-my-ip-valid "^1.0.0" 1482 | jsonpointer "^4.0.0" 1483 | xtend "^4.0.0" 1484 | 1485 | is-number@^2.1.0: 1486 | version "2.1.0" 1487 | resolved "https://registry.npmjs.org/is-number/-/is-number-2.1.0.tgz#01fcbbb393463a548f2f466cce16dece49db908f" 1488 | dependencies: 1489 | kind-of "^3.0.2" 1490 | 1491 | is-number@^3.0.0: 1492 | version "3.0.0" 1493 | resolved "https://registry.npmjs.org/is-number/-/is-number-3.0.0.tgz#24fd6201a4782cf50561c810276afc7d12d71195" 1494 | dependencies: 1495 | kind-of "^3.0.2" 1496 | 1497 | is-number@^4.0.0: 1498 | version "4.0.0" 1499 | resolved "https://registry.npmjs.org/is-number/-/is-number-4.0.0.tgz#0026e37f5454d73e356dfe6564699867c6a7f0ff" 1500 | 1501 | is-plain-object@^2.0.1, is-plain-object@^2.0.3, is-plain-object@^2.0.4: 1502 | version "2.0.4" 1503 | resolved "https://registry.npmjs.org/is-plain-object/-/is-plain-object-2.0.4.tgz#2c163b3fafb1b606d9d17928f05c2a1c38e07677" 1504 | dependencies: 1505 | isobject "^3.0.1" 1506 | 1507 | is-posix-bracket@^0.1.0: 1508 | version "0.1.1" 1509 | resolved "https://registry.npmjs.org/is-posix-bracket/-/is-posix-bracket-0.1.1.tgz#3334dc79774368e92f016e6fbc0a88f5cd6e6bc4" 1510 | 1511 | is-primitive@^2.0.0: 1512 | version "2.0.0" 1513 | resolved "https://registry.npmjs.org/is-primitive/-/is-primitive-2.0.0.tgz#207bab91638499c07b2adf240a41a87210034575" 1514 | 1515 | is-property@^1.0.0: 1516 | version "1.0.2" 1517 | resolved "https://registry.npmjs.org/is-property/-/is-property-1.0.2.tgz#57fe1c4e48474edd65b09911f26b1cd4095dda84" 1518 | 1519 | is-regex@^1.0.4: 1520 | version "1.0.4" 1521 | resolved "https://registry.npmjs.org/is-regex/-/is-regex-1.0.4.tgz#5517489b547091b0930e095654ced25ee97e9491" 1522 | dependencies: 1523 | has "^1.0.1" 1524 | 1525 | is-stream@^1.1.0: 1526 | version "1.1.0" 1527 | resolved "https://registry.npmjs.org/is-stream/-/is-stream-1.1.0.tgz#12d4a3dd4e68e0b79ceb8dbc84173ae80d91ca44" 1528 | 1529 | is-symbol@^1.0.1: 1530 | version "1.0.1" 1531 | resolved "https://registry.npmjs.org/is-symbol/-/is-symbol-1.0.1.tgz#3cc59f00025194b6ab2e38dbae6689256b660572" 1532 | 1533 | is-typedarray@~1.0.0: 1534 | version "1.0.0" 1535 | resolved "https://registry.npmjs.org/is-typedarray/-/is-typedarray-1.0.0.tgz#e479c80858df0c1b11ddda6940f96011fcda4a9a" 1536 | 1537 | is-utf8@^0.2.0: 1538 | version "0.2.1" 1539 | resolved "https://registry.npmjs.org/is-utf8/-/is-utf8-0.2.1.tgz#4b0da1442104d1b336340e80797e865cf39f7d72" 1540 | 1541 | is-windows@^1.0.2: 1542 | version "1.0.2" 1543 | resolved "https://registry.npmjs.org/is-windows/-/is-windows-1.0.2.tgz#d1850eb9791ecd18e6182ce12a30f396634bb19d" 1544 | 1545 | isarray@1.0.0, isarray@~1.0.0: 1546 | version "1.0.0" 1547 | resolved "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz#bb935d48582cba168c06834957a54a3e07124f11" 1548 | 1549 | isexe@^2.0.0: 1550 | version "2.0.0" 1551 | resolved "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz#e8fbf374dc556ff8947a10dcb0572d633f2cfa10" 1552 | 1553 | isobject@^2.0.0: 1554 | version "2.1.0" 1555 | resolved "https://registry.npmjs.org/isobject/-/isobject-2.1.0.tgz#f065561096a3f1da2ef46272f815c840d87e0c89" 1556 | dependencies: 1557 | isarray "1.0.0" 1558 | 1559 | isobject@^3.0.0, isobject@^3.0.1: 1560 | version "3.0.1" 1561 | resolved "https://registry.npmjs.org/isobject/-/isobject-3.0.1.tgz#4e431e92b11a9731636aa1f9c8d1ccbcfdab78df" 1562 | 1563 | isstream@~0.1.2: 1564 | version "0.1.2" 1565 | resolved "https://registry.npmjs.org/isstream/-/isstream-0.1.2.tgz#47e63f7af55afa6f92e1500e690eb8b8529c099a" 1566 | 1567 | istanbul-api@^1.3.1: 1568 | version "1.3.1" 1569 | resolved "https://registry.npmjs.org/istanbul-api/-/istanbul-api-1.3.1.tgz#4c3b05d18c0016d1022e079b98dc82c40f488954" 1570 | dependencies: 1571 | async "^2.1.4" 1572 | compare-versions "^3.1.0" 1573 | fileset "^2.0.2" 1574 | istanbul-lib-coverage "^1.2.0" 1575 | istanbul-lib-hook "^1.2.0" 1576 | istanbul-lib-instrument "^1.10.1" 1577 | istanbul-lib-report "^1.1.4" 1578 | istanbul-lib-source-maps "^1.2.4" 1579 | istanbul-reports "^1.3.0" 1580 | js-yaml "^3.7.0" 1581 | mkdirp "^0.5.1" 1582 | once "^1.4.0" 1583 | 1584 | istanbul-lib-coverage@^1.2.0: 1585 | version "1.2.0" 1586 | resolved "https://registry.npmjs.org/istanbul-lib-coverage/-/istanbul-lib-coverage-1.2.0.tgz#f7d8f2e42b97e37fe796114cb0f9d68b5e3a4341" 1587 | 1588 | istanbul-lib-hook@^1.2.0: 1589 | version "1.2.1" 1590 | resolved "https://registry.npmjs.org/istanbul-lib-hook/-/istanbul-lib-hook-1.2.1.tgz#f614ec45287b2a8fc4f07f5660af787575601805" 1591 | dependencies: 1592 | append-transform "^1.0.0" 1593 | 1594 | istanbul-lib-instrument@^1.10.1: 1595 | version "1.10.1" 1596 | resolved "https://registry.npmjs.org/istanbul-lib-instrument/-/istanbul-lib-instrument-1.10.1.tgz#724b4b6caceba8692d3f1f9d0727e279c401af7b" 1597 | dependencies: 1598 | babel-generator "^6.18.0" 1599 | babel-template "^6.16.0" 1600 | babel-traverse "^6.18.0" 1601 | babel-types "^6.18.0" 1602 | babylon "^6.18.0" 1603 | istanbul-lib-coverage "^1.2.0" 1604 | semver "^5.3.0" 1605 | 1606 | istanbul-lib-report@^1.1.4: 1607 | version "1.1.4" 1608 | resolved "https://registry.npmjs.org/istanbul-lib-report/-/istanbul-lib-report-1.1.4.tgz#e886cdf505c4ebbd8e099e4396a90d0a28e2acb5" 1609 | dependencies: 1610 | istanbul-lib-coverage "^1.2.0" 1611 | mkdirp "^0.5.1" 1612 | path-parse "^1.0.5" 1613 | supports-color "^3.1.2" 1614 | 1615 | istanbul-lib-source-maps@^1.2.4: 1616 | version "1.2.5" 1617 | resolved "https://registry.npmjs.org/istanbul-lib-source-maps/-/istanbul-lib-source-maps-1.2.5.tgz#ffe6be4e7ab86d3603e4290d54990b14506fc9b1" 1618 | dependencies: 1619 | debug "^3.1.0" 1620 | istanbul-lib-coverage "^1.2.0" 1621 | mkdirp "^0.5.1" 1622 | rimraf "^2.6.1" 1623 | source-map "^0.5.3" 1624 | 1625 | istanbul-reports@^1.3.0: 1626 | version "1.3.0" 1627 | resolved "https://registry.npmjs.org/istanbul-reports/-/istanbul-reports-1.3.0.tgz#2f322e81e1d9520767597dca3c20a0cce89a3554" 1628 | dependencies: 1629 | handlebars "^4.0.3" 1630 | 1631 | jest-changed-files@^23.4.0: 1632 | version "23.4.0" 1633 | resolved "https://registry.npmjs.org/jest-changed-files/-/jest-changed-files-23.4.0.tgz#f1b304f98c235af5d9a31ec524262c5e4de3c6ff" 1634 | dependencies: 1635 | throat "^4.0.0" 1636 | 1637 | jest-cli@^23.4.1: 1638 | version "23.4.1" 1639 | resolved "https://registry.npmjs.org/jest-cli/-/jest-cli-23.4.1.tgz#c1ffd33254caee376990aa2abe2963e0de4ca76b" 1640 | dependencies: 1641 | ansi-escapes "^3.0.0" 1642 | chalk "^2.0.1" 1643 | exit "^0.1.2" 1644 | glob "^7.1.2" 1645 | graceful-fs "^4.1.11" 1646 | import-local "^1.0.0" 1647 | is-ci "^1.0.10" 1648 | istanbul-api "^1.3.1" 1649 | istanbul-lib-coverage "^1.2.0" 1650 | istanbul-lib-instrument "^1.10.1" 1651 | istanbul-lib-source-maps "^1.2.4" 1652 | jest-changed-files "^23.4.0" 1653 | jest-config "^23.4.1" 1654 | jest-environment-jsdom "^23.4.0" 1655 | jest-get-type "^22.1.0" 1656 | jest-haste-map "^23.4.1" 1657 | jest-message-util "^23.4.0" 1658 | jest-regex-util "^23.3.0" 1659 | jest-resolve-dependencies "^23.4.1" 1660 | jest-runner "^23.4.1" 1661 | jest-runtime "^23.4.1" 1662 | jest-snapshot "^23.4.1" 1663 | jest-util "^23.4.0" 1664 | jest-validate "^23.4.0" 1665 | jest-watcher "^23.4.0" 1666 | jest-worker "^23.2.0" 1667 | micromatch "^2.3.11" 1668 | node-notifier "^5.2.1" 1669 | prompts "^0.1.9" 1670 | realpath-native "^1.0.0" 1671 | rimraf "^2.5.4" 1672 | slash "^1.0.0" 1673 | string-length "^2.0.0" 1674 | strip-ansi "^4.0.0" 1675 | which "^1.2.12" 1676 | yargs "^11.0.0" 1677 | 1678 | jest-config@^23.4.1: 1679 | version "23.4.1" 1680 | resolved "https://registry.npmjs.org/jest-config/-/jest-config-23.4.1.tgz#3172fa21f0507d7f8a088ed1dbe4157057f201e9" 1681 | dependencies: 1682 | babel-core "^6.0.0" 1683 | babel-jest "^23.4.0" 1684 | chalk "^2.0.1" 1685 | glob "^7.1.1" 1686 | jest-environment-jsdom "^23.4.0" 1687 | jest-environment-node "^23.4.0" 1688 | jest-get-type "^22.1.0" 1689 | jest-jasmine2 "^23.4.1" 1690 | jest-regex-util "^23.3.0" 1691 | jest-resolve "^23.4.1" 1692 | jest-util "^23.4.0" 1693 | jest-validate "^23.4.0" 1694 | pretty-format "^23.2.0" 1695 | 1696 | jest-diff@^23.2.0: 1697 | version "23.2.0" 1698 | resolved "https://registry.npmjs.org/jest-diff/-/jest-diff-23.2.0.tgz#9f2cf4b51e12c791550200abc16b47130af1062a" 1699 | dependencies: 1700 | chalk "^2.0.1" 1701 | diff "^3.2.0" 1702 | jest-get-type "^22.1.0" 1703 | pretty-format "^23.2.0" 1704 | 1705 | jest-docblock@^23.2.0: 1706 | version "23.2.0" 1707 | resolved "https://registry.npmjs.org/jest-docblock/-/jest-docblock-23.2.0.tgz#f085e1f18548d99fdd69b20207e6fd55d91383a7" 1708 | dependencies: 1709 | detect-newline "^2.1.0" 1710 | 1711 | jest-each@^23.4.0: 1712 | version "23.4.0" 1713 | resolved "https://registry.npmjs.org/jest-each/-/jest-each-23.4.0.tgz#2fa9edd89daa1a4edc9ff9bf6062a36b71345143" 1714 | dependencies: 1715 | chalk "^2.0.1" 1716 | pretty-format "^23.2.0" 1717 | 1718 | jest-environment-jsdom@^23.4.0: 1719 | version "23.4.0" 1720 | resolved "https://registry.npmjs.org/jest-environment-jsdom/-/jest-environment-jsdom-23.4.0.tgz#056a7952b3fea513ac62a140a2c368c79d9e6023" 1721 | dependencies: 1722 | jest-mock "^23.2.0" 1723 | jest-util "^23.4.0" 1724 | jsdom "^11.5.1" 1725 | 1726 | jest-environment-node@^23.4.0: 1727 | version "23.4.0" 1728 | resolved "https://registry.npmjs.org/jest-environment-node/-/jest-environment-node-23.4.0.tgz#57e80ed0841dea303167cce8cd79521debafde10" 1729 | dependencies: 1730 | jest-mock "^23.2.0" 1731 | jest-util "^23.4.0" 1732 | 1733 | jest-get-type@^22.1.0: 1734 | version "22.4.3" 1735 | resolved "https://registry.npmjs.org/jest-get-type/-/jest-get-type-22.4.3.tgz#e3a8504d8479342dd4420236b322869f18900ce4" 1736 | 1737 | jest-haste-map@^23.4.1: 1738 | version "23.4.1" 1739 | resolved "https://registry.npmjs.org/jest-haste-map/-/jest-haste-map-23.4.1.tgz#43a174ba7ac079ae1dd74eaf5a5fe78989474dd2" 1740 | dependencies: 1741 | fb-watchman "^2.0.0" 1742 | graceful-fs "^4.1.11" 1743 | jest-docblock "^23.2.0" 1744 | jest-serializer "^23.0.1" 1745 | jest-worker "^23.2.0" 1746 | micromatch "^2.3.11" 1747 | sane "^2.0.0" 1748 | 1749 | jest-jasmine2@^23.4.1: 1750 | version "23.4.1" 1751 | resolved "https://registry.npmjs.org/jest-jasmine2/-/jest-jasmine2-23.4.1.tgz#fa192262430d418e827636e4a98423e5e7ff0fce" 1752 | dependencies: 1753 | chalk "^2.0.1" 1754 | co "^4.6.0" 1755 | expect "^23.4.0" 1756 | is-generator-fn "^1.0.0" 1757 | jest-diff "^23.2.0" 1758 | jest-each "^23.4.0" 1759 | jest-matcher-utils "^23.2.0" 1760 | jest-message-util "^23.4.0" 1761 | jest-snapshot "^23.4.1" 1762 | jest-util "^23.4.0" 1763 | pretty-format "^23.2.0" 1764 | 1765 | jest-leak-detector@^23.2.0: 1766 | version "23.2.0" 1767 | resolved "https://registry.npmjs.org/jest-leak-detector/-/jest-leak-detector-23.2.0.tgz#c289d961dc638f14357d4ef96e0431ecc1aa377d" 1768 | dependencies: 1769 | pretty-format "^23.2.0" 1770 | 1771 | jest-matcher-utils@^19.0.0: 1772 | version "19.0.0" 1773 | resolved "https://registry.npmjs.org/jest-matcher-utils/-/jest-matcher-utils-19.0.0.tgz#5ecd9b63565d2b001f61fbf7ec4c7f537964564d" 1774 | dependencies: 1775 | chalk "^1.1.3" 1776 | pretty-format "^19.0.0" 1777 | 1778 | jest-matcher-utils@^23.2.0: 1779 | version "23.2.0" 1780 | resolved "https://registry.npmjs.org/jest-matcher-utils/-/jest-matcher-utils-23.2.0.tgz#4d4981f23213e939e3cedf23dc34c747b5ae1913" 1781 | dependencies: 1782 | chalk "^2.0.1" 1783 | jest-get-type "^22.1.0" 1784 | pretty-format "^23.2.0" 1785 | 1786 | jest-message-util@^23.4.0: 1787 | version "23.4.0" 1788 | resolved "https://registry.npmjs.org/jest-message-util/-/jest-message-util-23.4.0.tgz#17610c50942349508d01a3d1e0bda2c079086a9f" 1789 | dependencies: 1790 | "@babel/code-frame" "^7.0.0-beta.35" 1791 | chalk "^2.0.1" 1792 | micromatch "^2.3.11" 1793 | slash "^1.0.0" 1794 | stack-utils "^1.0.1" 1795 | 1796 | jest-mock@^23.2.0: 1797 | version "23.2.0" 1798 | resolved "https://registry.npmjs.org/jest-mock/-/jest-mock-23.2.0.tgz#ad1c60f29e8719d47c26e1138098b6d18b261134" 1799 | 1800 | jest-regex-util@^23.3.0: 1801 | version "23.3.0" 1802 | resolved "https://registry.npmjs.org/jest-regex-util/-/jest-regex-util-23.3.0.tgz#5f86729547c2785c4002ceaa8f849fe8ca471bc5" 1803 | 1804 | jest-resolve-dependencies@^23.4.1: 1805 | version "23.4.1" 1806 | resolved "https://registry.npmjs.org/jest-resolve-dependencies/-/jest-resolve-dependencies-23.4.1.tgz#a1d85247e2963f8b3859f6b0ec61b741b359378e" 1807 | dependencies: 1808 | jest-regex-util "^23.3.0" 1809 | jest-snapshot "^23.4.1" 1810 | 1811 | jest-resolve@^23.4.1: 1812 | version "23.4.1" 1813 | resolved "https://registry.npmjs.org/jest-resolve/-/jest-resolve-23.4.1.tgz#7f3c17104732a2c0c940a01256025ed745814982" 1814 | dependencies: 1815 | browser-resolve "^1.11.3" 1816 | chalk "^2.0.1" 1817 | realpath-native "^1.0.0" 1818 | 1819 | jest-runner@^23.4.1: 1820 | version "23.4.1" 1821 | resolved "https://registry.npmjs.org/jest-runner/-/jest-runner-23.4.1.tgz#d41fd1459b95d35d6df685f1468c09e617c8c260" 1822 | dependencies: 1823 | exit "^0.1.2" 1824 | graceful-fs "^4.1.11" 1825 | jest-config "^23.4.1" 1826 | jest-docblock "^23.2.0" 1827 | jest-haste-map "^23.4.1" 1828 | jest-jasmine2 "^23.4.1" 1829 | jest-leak-detector "^23.2.0" 1830 | jest-message-util "^23.4.0" 1831 | jest-runtime "^23.4.1" 1832 | jest-util "^23.4.0" 1833 | jest-worker "^23.2.0" 1834 | source-map-support "^0.5.6" 1835 | throat "^4.0.0" 1836 | 1837 | jest-runtime@^23.4.1: 1838 | version "23.4.1" 1839 | resolved "https://registry.npmjs.org/jest-runtime/-/jest-runtime-23.4.1.tgz#c1822eba5eb19294debe6b25b2760d0a8c532fd1" 1840 | dependencies: 1841 | babel-core "^6.0.0" 1842 | babel-plugin-istanbul "^4.1.6" 1843 | chalk "^2.0.1" 1844 | convert-source-map "^1.4.0" 1845 | exit "^0.1.2" 1846 | fast-json-stable-stringify "^2.0.0" 1847 | graceful-fs "^4.1.11" 1848 | jest-config "^23.4.1" 1849 | jest-haste-map "^23.4.1" 1850 | jest-message-util "^23.4.0" 1851 | jest-regex-util "^23.3.0" 1852 | jest-resolve "^23.4.1" 1853 | jest-snapshot "^23.4.1" 1854 | jest-util "^23.4.0" 1855 | jest-validate "^23.4.0" 1856 | micromatch "^2.3.11" 1857 | realpath-native "^1.0.0" 1858 | slash "^1.0.0" 1859 | strip-bom "3.0.0" 1860 | write-file-atomic "^2.1.0" 1861 | yargs "^11.0.0" 1862 | 1863 | jest-serializer@^23.0.1: 1864 | version "23.0.1" 1865 | resolved "https://registry.npmjs.org/jest-serializer/-/jest-serializer-23.0.1.tgz#a3776aeb311e90fe83fab9e533e85102bd164165" 1866 | 1867 | jest-snapshot@^23.4.1: 1868 | version "23.4.1" 1869 | resolved "https://registry.npmjs.org/jest-snapshot/-/jest-snapshot-23.4.1.tgz#090de9acae927f6a3af3005bda40d912b83e9c96" 1870 | dependencies: 1871 | babel-traverse "^6.0.0" 1872 | babel-types "^6.0.0" 1873 | chalk "^2.0.1" 1874 | jest-diff "^23.2.0" 1875 | jest-matcher-utils "^23.2.0" 1876 | jest-message-util "^23.4.0" 1877 | jest-resolve "^23.4.1" 1878 | mkdirp "^0.5.1" 1879 | natural-compare "^1.4.0" 1880 | pretty-format "^23.2.0" 1881 | semver "^5.5.0" 1882 | 1883 | jest-util@^23.4.0: 1884 | version "23.4.0" 1885 | resolved "https://registry.npmjs.org/jest-util/-/jest-util-23.4.0.tgz#4d063cb927baf0a23831ff61bec2cbbf49793561" 1886 | dependencies: 1887 | callsites "^2.0.0" 1888 | chalk "^2.0.1" 1889 | graceful-fs "^4.1.11" 1890 | is-ci "^1.0.10" 1891 | jest-message-util "^23.4.0" 1892 | mkdirp "^0.5.1" 1893 | slash "^1.0.0" 1894 | source-map "^0.6.0" 1895 | 1896 | jest-validate@19.0.0: 1897 | version "19.0.0" 1898 | resolved "https://registry.npmjs.org/jest-validate/-/jest-validate-19.0.0.tgz#8c6318a20ecfeaba0ba5378bfbb8277abded4173" 1899 | dependencies: 1900 | chalk "^1.1.1" 1901 | jest-matcher-utils "^19.0.0" 1902 | leven "^2.0.0" 1903 | pretty-format "^19.0.0" 1904 | 1905 | jest-validate@^23.4.0: 1906 | version "23.4.0" 1907 | resolved "https://registry.npmjs.org/jest-validate/-/jest-validate-23.4.0.tgz#d96eede01ef03ac909c009e9c8e455197d48c201" 1908 | dependencies: 1909 | chalk "^2.0.1" 1910 | jest-get-type "^22.1.0" 1911 | leven "^2.1.0" 1912 | pretty-format "^23.2.0" 1913 | 1914 | jest-watcher@^23.4.0: 1915 | version "23.4.0" 1916 | resolved "https://registry.npmjs.org/jest-watcher/-/jest-watcher-23.4.0.tgz#d2e28ce74f8dad6c6afc922b92cabef6ed05c91c" 1917 | dependencies: 1918 | ansi-escapes "^3.0.0" 1919 | chalk "^2.0.1" 1920 | string-length "^2.0.0" 1921 | 1922 | jest-worker@^23.2.0: 1923 | version "23.2.0" 1924 | resolved "https://registry.npmjs.org/jest-worker/-/jest-worker-23.2.0.tgz#faf706a8da36fae60eb26957257fa7b5d8ea02b9" 1925 | dependencies: 1926 | merge-stream "^1.0.1" 1927 | 1928 | jest@^23.4.1: 1929 | version "23.4.1" 1930 | resolved "https://registry.npmjs.org/jest/-/jest-23.4.1.tgz#39550c72f3237f63ae1b434d8d122cdf6fa007b6" 1931 | dependencies: 1932 | import-local "^1.0.0" 1933 | jest-cli "^23.4.1" 1934 | 1935 | js-tokens@^3.0.0, js-tokens@^3.0.2: 1936 | version "3.0.2" 1937 | resolved "https://registry.npmjs.org/js-tokens/-/js-tokens-3.0.2.tgz#9866df395102130e38f7f996bceb65443209c25b" 1938 | 1939 | "js-tokens@^3.0.0 || ^4.0.0": 1940 | version "4.0.0" 1941 | resolved "https://registry.npmjs.org/js-tokens/-/js-tokens-4.0.0.tgz#19203fb59991df98e3a287050d4647cdeaf32499" 1942 | 1943 | js-yaml@3.6.1: 1944 | version "3.6.1" 1945 | resolved "https://registry.npmjs.org/js-yaml/-/js-yaml-3.6.1.tgz#6e5fe67d8b205ce4d22fad05b7781e8dadcc4b30" 1946 | dependencies: 1947 | argparse "^1.0.7" 1948 | esprima "^2.6.0" 1949 | 1950 | js-yaml@^3.7.0: 1951 | version "3.12.0" 1952 | resolved "https://registry.npmjs.org/js-yaml/-/js-yaml-3.12.0.tgz#eaed656ec8344f10f527c6bfa1b6e2244de167d1" 1953 | dependencies: 1954 | argparse "^1.0.7" 1955 | esprima "^4.0.0" 1956 | 1957 | jsbn@~0.1.0: 1958 | version "0.1.1" 1959 | resolved "https://registry.npmjs.org/jsbn/-/jsbn-0.1.1.tgz#a5e654c2e5a2deb5f201d96cefbca80c0ef2f513" 1960 | 1961 | jsdom@^11.5.1: 1962 | version "11.12.0" 1963 | resolved "https://registry.npmjs.org/jsdom/-/jsdom-11.12.0.tgz#1a80d40ddd378a1de59656e9e6dc5a3ba8657bc8" 1964 | dependencies: 1965 | abab "^2.0.0" 1966 | acorn "^5.5.3" 1967 | acorn-globals "^4.1.0" 1968 | array-equal "^1.0.0" 1969 | cssom ">= 0.3.2 < 0.4.0" 1970 | cssstyle "^1.0.0" 1971 | data-urls "^1.0.0" 1972 | domexception "^1.0.1" 1973 | escodegen "^1.9.1" 1974 | html-encoding-sniffer "^1.0.2" 1975 | left-pad "^1.3.0" 1976 | nwsapi "^2.0.7" 1977 | parse5 "4.0.0" 1978 | pn "^1.1.0" 1979 | request "^2.87.0" 1980 | request-promise-native "^1.0.5" 1981 | sax "^1.2.4" 1982 | symbol-tree "^3.2.2" 1983 | tough-cookie "^2.3.4" 1984 | w3c-hr-time "^1.0.1" 1985 | webidl-conversions "^4.0.2" 1986 | whatwg-encoding "^1.0.3" 1987 | whatwg-mimetype "^2.1.0" 1988 | whatwg-url "^6.4.1" 1989 | ws "^5.2.0" 1990 | xml-name-validator "^3.0.0" 1991 | 1992 | jsesc@^1.3.0: 1993 | version "1.3.0" 1994 | resolved "https://registry.npmjs.org/jsesc/-/jsesc-1.3.0.tgz#46c3fec8c1892b12b0833db9bc7622176dbab34b" 1995 | 1996 | json-schema-traverse@^0.3.0: 1997 | version "0.3.1" 1998 | resolved "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.3.1.tgz#349a6d44c53a51de89b40805c5d5e59b417d3340" 1999 | 2000 | json-schema@0.2.3: 2001 | version "0.2.3" 2002 | resolved "https://registry.npmjs.org/json-schema/-/json-schema-0.2.3.tgz#b480c892e59a2f05954ce727bd3f2a4e882f9e13" 2003 | 2004 | json-stringify-safe@~5.0.1: 2005 | version "5.0.1" 2006 | resolved "https://registry.npmjs.org/json-stringify-safe/-/json-stringify-safe-5.0.1.tgz#1296a2d58fd45f19a0f6ce01d65701e2c735b6eb" 2007 | 2008 | json5@^0.5.1: 2009 | version "0.5.1" 2010 | resolved "https://registry.npmjs.org/json5/-/json5-0.5.1.tgz#1eade7acc012034ad84e2396767ead9fa5495821" 2011 | 2012 | jsonpointer@^4.0.0: 2013 | version "4.0.1" 2014 | resolved "https://registry.npmjs.org/jsonpointer/-/jsonpointer-4.0.1.tgz#4fd92cb34e0e9db3c89c8622ecf51f9b978c6cb9" 2015 | 2016 | jsprim@^1.2.2: 2017 | version "1.4.1" 2018 | resolved "https://registry.npmjs.org/jsprim/-/jsprim-1.4.1.tgz#313e66bc1e5cc06e438bc1b7499c2e5c56acb6a2" 2019 | dependencies: 2020 | assert-plus "1.0.0" 2021 | extsprintf "1.3.0" 2022 | json-schema "0.2.3" 2023 | verror "1.10.0" 2024 | 2025 | kind-of@^3.0.2, kind-of@^3.0.3, kind-of@^3.2.0: 2026 | version "3.2.2" 2027 | resolved "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz#31ea21a734bab9bbb0f32466d893aea51e4a3c64" 2028 | dependencies: 2029 | is-buffer "^1.1.5" 2030 | 2031 | kind-of@^4.0.0: 2032 | version "4.0.0" 2033 | resolved "https://registry.npmjs.org/kind-of/-/kind-of-4.0.0.tgz#20813df3d712928b207378691a45066fae72dd57" 2034 | dependencies: 2035 | is-buffer "^1.1.5" 2036 | 2037 | kind-of@^5.0.0: 2038 | version "5.1.0" 2039 | resolved "https://registry.npmjs.org/kind-of/-/kind-of-5.1.0.tgz#729c91e2d857b7a419a1f9aa65685c4c33f5845d" 2040 | 2041 | kind-of@^6.0.0, kind-of@^6.0.2: 2042 | version "6.0.2" 2043 | resolved "https://registry.npmjs.org/kind-of/-/kind-of-6.0.2.tgz#01146b36a6218e64e58f3a8d66de5d7fc6f6d051" 2044 | 2045 | kleur@^2.0.1: 2046 | version "2.0.1" 2047 | resolved "https://registry.npmjs.org/kleur/-/kleur-2.0.1.tgz#7cc64b0d188d0dcbc98bdcdfdda2cc10619ddce8" 2048 | 2049 | lazy-cache@^1.0.3: 2050 | version "1.0.4" 2051 | resolved "https://registry.npmjs.org/lazy-cache/-/lazy-cache-1.0.4.tgz#a1d78fc3a50474cb80845d3b3b6e1da49a446e8e" 2052 | 2053 | lcid@^1.0.0: 2054 | version "1.0.0" 2055 | resolved "https://registry.npmjs.org/lcid/-/lcid-1.0.0.tgz#308accafa0bc483a3867b4b6f2b9506251d1b835" 2056 | dependencies: 2057 | invert-kv "^1.0.0" 2058 | 2059 | lcov-parse@0.0.10: 2060 | version "0.0.10" 2061 | resolved "https://registry.npmjs.org/lcov-parse/-/lcov-parse-0.0.10.tgz#1b0b8ff9ac9c7889250582b70b71315d9da6d9a3" 2062 | 2063 | left-pad@^1.3.0: 2064 | version "1.3.0" 2065 | resolved "https://registry.npmjs.org/left-pad/-/left-pad-1.3.0.tgz#5b8a3a7765dfe001261dde915589e782f8c94d1e" 2066 | 2067 | leven@^2.0.0, leven@^2.1.0: 2068 | version "2.1.0" 2069 | resolved "https://registry.npmjs.org/leven/-/leven-2.1.0.tgz#c2e7a9f772094dee9d34202ae8acce4687875580" 2070 | 2071 | levn@~0.3.0: 2072 | version "0.3.0" 2073 | resolved "https://registry.npmjs.org/levn/-/levn-0.3.0.tgz#3b09924edf9f083c0490fdd4c0bc4421e04764ee" 2074 | dependencies: 2075 | prelude-ls "~1.1.2" 2076 | type-check "~0.3.2" 2077 | 2078 | load-json-file@^1.0.0: 2079 | version "1.1.0" 2080 | resolved "https://registry.npmjs.org/load-json-file/-/load-json-file-1.1.0.tgz#956905708d58b4bab4c2261b04f59f31c99374c0" 2081 | dependencies: 2082 | graceful-fs "^4.1.2" 2083 | parse-json "^2.2.0" 2084 | pify "^2.0.0" 2085 | pinkie-promise "^2.0.0" 2086 | strip-bom "^2.0.0" 2087 | 2088 | locate-path@^2.0.0: 2089 | version "2.0.0" 2090 | resolved "https://registry.npmjs.org/locate-path/-/locate-path-2.0.0.tgz#2b568b265eec944c6d9c0de9c3dbbbca0354cd8e" 2091 | dependencies: 2092 | p-locate "^2.0.0" 2093 | path-exists "^3.0.0" 2094 | 2095 | lodash.sortby@^4.7.0: 2096 | version "4.7.0" 2097 | resolved "https://registry.npmjs.org/lodash.sortby/-/lodash.sortby-4.7.0.tgz#edd14c824e2cc9c1e0b0a1b42bb5210516a42438" 2098 | 2099 | lodash@^4.13.1, lodash@^4.17.10, lodash@^4.17.4: 2100 | version "4.17.10" 2101 | resolved "https://registry.npmjs.org/lodash/-/lodash-4.17.10.tgz#1b7793cf7259ea38fb3661d4d38b3260af8ae4e7" 2102 | 2103 | log-driver@1.2.5: 2104 | version "1.2.5" 2105 | resolved "https://registry.npmjs.org/log-driver/-/log-driver-1.2.5.tgz#7ae4ec257302fd790d557cb10c97100d857b0056" 2106 | 2107 | longest@^1.0.1: 2108 | version "1.0.1" 2109 | resolved "https://registry.npmjs.org/longest/-/longest-1.0.1.tgz#30a0b2da38f73770e8294a0d22e6625ed77d0097" 2110 | 2111 | loose-envify@^1.0.0: 2112 | version "1.4.0" 2113 | resolved "https://registry.npmjs.org/loose-envify/-/loose-envify-1.4.0.tgz#71ee51fa7be4caec1a63839f7e682d8132d30caf" 2114 | dependencies: 2115 | js-tokens "^3.0.0 || ^4.0.0" 2116 | 2117 | lru-cache@^4.0.1: 2118 | version "4.1.3" 2119 | resolved "https://registry.npmjs.org/lru-cache/-/lru-cache-4.1.3.tgz#a1175cf3496dfc8436c156c334b4955992bce69c" 2120 | dependencies: 2121 | pseudomap "^1.0.2" 2122 | yallist "^2.1.2" 2123 | 2124 | makeerror@1.0.x: 2125 | version "1.0.11" 2126 | resolved "https://registry.npmjs.org/makeerror/-/makeerror-1.0.11.tgz#e01a5c9109f2af79660e4e8b9587790184f5a96c" 2127 | dependencies: 2128 | tmpl "1.0.x" 2129 | 2130 | map-cache@^0.2.2: 2131 | version "0.2.2" 2132 | resolved "https://registry.npmjs.org/map-cache/-/map-cache-0.2.2.tgz#c32abd0bd6525d9b051645bb4f26ac5dc98a0dbf" 2133 | 2134 | map-visit@^1.0.0: 2135 | version "1.0.0" 2136 | resolved "https://registry.npmjs.org/map-visit/-/map-visit-1.0.0.tgz#ecdca8f13144e660f1b5bd41f12f3479d98dfb8f" 2137 | dependencies: 2138 | object-visit "^1.0.0" 2139 | 2140 | math-random@^1.0.1: 2141 | version "1.0.1" 2142 | resolved "https://registry.npmjs.org/math-random/-/math-random-1.0.1.tgz#8b3aac588b8a66e4975e3cdea67f7bb329601fac" 2143 | 2144 | mem@^1.1.0: 2145 | version "1.1.0" 2146 | resolved "https://registry.npmjs.org/mem/-/mem-1.1.0.tgz#5edd52b485ca1d900fe64895505399a0dfa45f76" 2147 | dependencies: 2148 | mimic-fn "^1.0.0" 2149 | 2150 | merge-stream@^1.0.1: 2151 | version "1.0.1" 2152 | resolved "https://registry.npmjs.org/merge-stream/-/merge-stream-1.0.1.tgz#4041202d508a342ba00174008df0c251b8c135e1" 2153 | dependencies: 2154 | readable-stream "^2.0.1" 2155 | 2156 | merge@^1.2.0: 2157 | version "1.2.0" 2158 | resolved "https://registry.npmjs.org/merge/-/merge-1.2.0.tgz#7531e39d4949c281a66b8c5a6e0265e8b05894da" 2159 | 2160 | micromatch@^2.3.11: 2161 | version "2.3.11" 2162 | resolved "https://registry.npmjs.org/micromatch/-/micromatch-2.3.11.tgz#86677c97d1720b363431d04d0d15293bd38c1565" 2163 | dependencies: 2164 | arr-diff "^2.0.0" 2165 | array-unique "^0.2.1" 2166 | braces "^1.8.2" 2167 | expand-brackets "^0.1.4" 2168 | extglob "^0.3.1" 2169 | filename-regex "^2.0.0" 2170 | is-extglob "^1.0.0" 2171 | is-glob "^2.0.1" 2172 | kind-of "^3.0.2" 2173 | normalize-path "^2.0.1" 2174 | object.omit "^2.0.0" 2175 | parse-glob "^3.0.4" 2176 | regex-cache "^0.4.2" 2177 | 2178 | micromatch@^3.1.4, micromatch@^3.1.8: 2179 | version "3.1.10" 2180 | resolved "https://registry.npmjs.org/micromatch/-/micromatch-3.1.10.tgz#70859bc95c9840952f359a068a3fc49f9ecfac23" 2181 | dependencies: 2182 | arr-diff "^4.0.0" 2183 | array-unique "^0.3.2" 2184 | braces "^2.3.1" 2185 | define-property "^2.0.2" 2186 | extend-shallow "^3.0.2" 2187 | extglob "^2.0.4" 2188 | fragment-cache "^0.2.1" 2189 | kind-of "^6.0.2" 2190 | nanomatch "^1.2.9" 2191 | object.pick "^1.3.0" 2192 | regex-not "^1.0.0" 2193 | snapdragon "^0.8.1" 2194 | to-regex "^3.0.2" 2195 | 2196 | mime-db@~1.35.0: 2197 | version "1.35.0" 2198 | resolved "https://registry.npmjs.org/mime-db/-/mime-db-1.35.0.tgz#0569d657466491283709663ad379a99b90d9ab47" 2199 | 2200 | mime-types@^2.1.12, mime-types@~2.1.17, mime-types@~2.1.7: 2201 | version "2.1.19" 2202 | resolved "https://registry.npmjs.org/mime-types/-/mime-types-2.1.19.tgz#71e464537a7ef81c15f2db9d97e913fc0ff606f0" 2203 | dependencies: 2204 | mime-db "~1.35.0" 2205 | 2206 | mimic-fn@^1.0.0: 2207 | version "1.2.0" 2208 | resolved "https://registry.npmjs.org/mimic-fn/-/mimic-fn-1.2.0.tgz#820c86a39334640e99516928bd03fca88057d022" 2209 | 2210 | minimatch@^3.0.2, minimatch@^3.0.3, minimatch@^3.0.4: 2211 | version "3.0.4" 2212 | resolved "https://registry.npmjs.org/minimatch/-/minimatch-3.0.4.tgz#5166e286457f03306064be5497e8dbb0c3d32083" 2213 | dependencies: 2214 | brace-expansion "^1.1.7" 2215 | 2216 | minimist@0.0.8: 2217 | version "0.0.8" 2218 | resolved "https://registry.npmjs.org/minimist/-/minimist-0.0.8.tgz#857fcabfc3397d2625b8228262e86aa7a011b05d" 2219 | 2220 | minimist@1.2.0, minimist@>=0.2.0, minimist@^1.1.1, minimist@^1.2.0: 2221 | version "1.2.0" 2222 | resolved "https://registry.npmjs.org/minimist/-/minimist-1.2.0.tgz#a35008b20f41383eec1fb914f4cd5df79a264284" 2223 | 2224 | minimist@~0.0.1: 2225 | version "0.0.10" 2226 | resolved "https://registry.npmjs.org/minimist/-/minimist-0.0.10.tgz#de3f98543dbf96082be48ad1a0c7cda836301dcf" 2227 | 2228 | minipass@^2.2.1, minipass@^2.3.3: 2229 | version "2.3.3" 2230 | resolved "https://registry.npmjs.org/minipass/-/minipass-2.3.3.tgz#a7dcc8b7b833f5d368759cce544dccb55f50f233" 2231 | dependencies: 2232 | safe-buffer "^5.1.2" 2233 | yallist "^3.0.0" 2234 | 2235 | minizlib@^1.1.0: 2236 | version "1.1.0" 2237 | resolved "https://registry.npmjs.org/minizlib/-/minizlib-1.1.0.tgz#11e13658ce46bc3a70a267aac58359d1e0c29ceb" 2238 | dependencies: 2239 | minipass "^2.2.1" 2240 | 2241 | mixin-deep@^1.2.0: 2242 | version "1.3.1" 2243 | resolved "https://registry.npmjs.org/mixin-deep/-/mixin-deep-1.3.1.tgz#a49e7268dce1a0d9698e45326c5626df3543d0fe" 2244 | dependencies: 2245 | for-in "^1.0.2" 2246 | is-extendable "^1.0.1" 2247 | 2248 | mkdirp@^0.5.0, mkdirp@^0.5.1: 2249 | version "0.5.1" 2250 | resolved "https://registry.npmjs.org/mkdirp/-/mkdirp-0.5.1.tgz#30057438eac6cf7f8c4767f38648d6697d75c903" 2251 | dependencies: 2252 | minimist "0.0.8" 2253 | 2254 | ms@2.0.0: 2255 | version "2.0.0" 2256 | resolved "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz#5608aeadfc00be6c2901df5f9861788de0d597c8" 2257 | 2258 | nan@^2.9.2: 2259 | version "2.10.0" 2260 | resolved "https://registry.npmjs.org/nan/-/nan-2.10.0.tgz#96d0cd610ebd58d4b4de9cc0c6828cda99c7548f" 2261 | 2262 | nanomatch@^1.2.9: 2263 | version "1.2.13" 2264 | resolved "https://registry.npmjs.org/nanomatch/-/nanomatch-1.2.13.tgz#b87a8aa4fc0de8fe6be88895b38983ff265bd119" 2265 | dependencies: 2266 | arr-diff "^4.0.0" 2267 | array-unique "^0.3.2" 2268 | define-property "^2.0.2" 2269 | extend-shallow "^3.0.2" 2270 | fragment-cache "^0.2.1" 2271 | is-windows "^1.0.2" 2272 | kind-of "^6.0.2" 2273 | object.pick "^1.3.0" 2274 | regex-not "^1.0.0" 2275 | snapdragon "^0.8.1" 2276 | to-regex "^3.0.1" 2277 | 2278 | natural-compare@^1.4.0: 2279 | version "1.4.0" 2280 | resolved "https://registry.npmjs.org/natural-compare/-/natural-compare-1.4.0.tgz#4abebfeed7541f2c27acfb29bdbbd15c8d5ba4f7" 2281 | 2282 | needle@^2.2.1: 2283 | version "2.2.1" 2284 | resolved "https://registry.npmjs.org/needle/-/needle-2.2.1.tgz#b5e325bd3aae8c2678902fa296f729455d1d3a7d" 2285 | dependencies: 2286 | debug "^2.1.2" 2287 | iconv-lite "^0.4.4" 2288 | sax "^1.2.4" 2289 | 2290 | node-int64@^0.4.0: 2291 | version "0.4.0" 2292 | resolved "https://registry.npmjs.org/node-int64/-/node-int64-0.4.0.tgz#87a9065cdb355d3182d8f94ce11188b825c68a3b" 2293 | 2294 | node-notifier@^5.2.1: 2295 | version "5.2.1" 2296 | resolved "https://registry.npmjs.org/node-notifier/-/node-notifier-5.2.1.tgz#fa313dd08f5517db0e2502e5758d664ac69f9dea" 2297 | dependencies: 2298 | growly "^1.3.0" 2299 | semver "^5.4.1" 2300 | shellwords "^0.1.1" 2301 | which "^1.3.0" 2302 | 2303 | node-pre-gyp@^0.10.0: 2304 | version "0.10.3" 2305 | resolved "https://registry.npmjs.org/node-pre-gyp/-/node-pre-gyp-0.10.3.tgz#3070040716afdc778747b61b6887bf78880b80fc" 2306 | dependencies: 2307 | detect-libc "^1.0.2" 2308 | mkdirp "^0.5.1" 2309 | needle "^2.2.1" 2310 | nopt "^4.0.1" 2311 | npm-packlist "^1.1.6" 2312 | npmlog "^4.0.2" 2313 | rc "^1.2.7" 2314 | rimraf "^2.6.1" 2315 | semver "^5.3.0" 2316 | tar "^4" 2317 | 2318 | nopt@^4.0.1: 2319 | version "4.0.1" 2320 | resolved "https://registry.npmjs.org/nopt/-/nopt-4.0.1.tgz#d0d4685afd5415193c8c7505602d0d17cd64474d" 2321 | dependencies: 2322 | abbrev "1" 2323 | osenv "^0.1.4" 2324 | 2325 | normalize-package-data@^2.3.2: 2326 | version "2.4.0" 2327 | resolved "https://registry.npmjs.org/normalize-package-data/-/normalize-package-data-2.4.0.tgz#12f95a307d58352075a04907b84ac8be98ac012f" 2328 | dependencies: 2329 | hosted-git-info "^2.1.4" 2330 | is-builtin-module "^1.0.0" 2331 | semver "2 || 3 || 4 || 5" 2332 | validate-npm-package-license "^3.0.1" 2333 | 2334 | normalize-path@^2.0.1, normalize-path@^2.1.1: 2335 | version "2.1.1" 2336 | resolved "https://registry.npmjs.org/normalize-path/-/normalize-path-2.1.1.tgz#1ab28b556e198363a8c1a6f7e6fa20137fe6aed9" 2337 | dependencies: 2338 | remove-trailing-separator "^1.0.1" 2339 | 2340 | npm-bundled@^1.0.1: 2341 | version "1.0.3" 2342 | resolved "https://registry.npmjs.org/npm-bundled/-/npm-bundled-1.0.3.tgz#7e71703d973af3370a9591bafe3a63aca0be2308" 2343 | 2344 | npm-packlist@^1.1.6: 2345 | version "1.1.11" 2346 | resolved "https://registry.npmjs.org/npm-packlist/-/npm-packlist-1.1.11.tgz#84e8c683cbe7867d34b1d357d893ce29e28a02de" 2347 | dependencies: 2348 | ignore-walk "^3.0.1" 2349 | npm-bundled "^1.0.1" 2350 | 2351 | npm-run-path@^2.0.0: 2352 | version "2.0.2" 2353 | resolved "https://registry.npmjs.org/npm-run-path/-/npm-run-path-2.0.2.tgz#35a9232dfa35d7067b4cb2ddf2357b1871536c5f" 2354 | dependencies: 2355 | path-key "^2.0.0" 2356 | 2357 | npmlog@^4.0.2: 2358 | version "4.1.2" 2359 | resolved "https://registry.npmjs.org/npmlog/-/npmlog-4.1.2.tgz#08a7f2a8bf734604779a9efa4ad5cc717abb954b" 2360 | dependencies: 2361 | are-we-there-yet "~1.1.2" 2362 | console-control-strings "~1.1.0" 2363 | gauge "~2.7.3" 2364 | set-blocking "~2.0.0" 2365 | 2366 | number-is-nan@^1.0.0: 2367 | version "1.0.1" 2368 | resolved "https://registry.npmjs.org/number-is-nan/-/number-is-nan-1.0.1.tgz#097b602b53422a522c1afb8790318336941a011d" 2369 | 2370 | nwsapi@^2.0.7: 2371 | version "2.0.7" 2372 | resolved "https://registry.npmjs.org/nwsapi/-/nwsapi-2.0.7.tgz#6fc54c254621f10cac5225b76e81c74120139b78" 2373 | 2374 | oauth-sign@~0.8.1, oauth-sign@~0.8.2: 2375 | version "0.8.2" 2376 | resolved "https://registry.npmjs.org/oauth-sign/-/oauth-sign-0.8.2.tgz#46a6ab7f0aead8deae9ec0565780b7d4efeb9d43" 2377 | 2378 | object-assign@^4.1.0: 2379 | version "4.1.1" 2380 | resolved "https://registry.npmjs.org/object-assign/-/object-assign-4.1.1.tgz#2109adc7965887cfc05cbbd442cac8bfbb360863" 2381 | 2382 | object-copy@^0.1.0: 2383 | version "0.1.0" 2384 | resolved "https://registry.npmjs.org/object-copy/-/object-copy-0.1.0.tgz#7e7d858b781bd7c991a41ba975ed3812754e998c" 2385 | dependencies: 2386 | copy-descriptor "^0.1.0" 2387 | define-property "^0.2.5" 2388 | kind-of "^3.0.3" 2389 | 2390 | object-keys@^1.0.8: 2391 | version "1.0.12" 2392 | resolved "https://registry.npmjs.org/object-keys/-/object-keys-1.0.12.tgz#09c53855377575310cca62f55bb334abff7b3ed2" 2393 | 2394 | object-visit@^1.0.0: 2395 | version "1.0.1" 2396 | resolved "https://registry.npmjs.org/object-visit/-/object-visit-1.0.1.tgz#f79c4493af0c5377b59fe39d395e41042dd045bb" 2397 | dependencies: 2398 | isobject "^3.0.0" 2399 | 2400 | object.getownpropertydescriptors@^2.0.3: 2401 | version "2.0.3" 2402 | resolved "https://registry.npmjs.org/object.getownpropertydescriptors/-/object.getownpropertydescriptors-2.0.3.tgz#8758c846f5b407adab0f236e0986f14b051caa16" 2403 | dependencies: 2404 | define-properties "^1.1.2" 2405 | es-abstract "^1.5.1" 2406 | 2407 | object.omit@^2.0.0: 2408 | version "2.0.1" 2409 | resolved "https://registry.npmjs.org/object.omit/-/object.omit-2.0.1.tgz#1a9c744829f39dbb858c76ca3579ae2a54ebd1fa" 2410 | dependencies: 2411 | for-own "^0.1.4" 2412 | is-extendable "^0.1.1" 2413 | 2414 | object.pick@^1.3.0: 2415 | version "1.3.0" 2416 | resolved "https://registry.npmjs.org/object.pick/-/object.pick-1.3.0.tgz#87a10ac4c1694bd2e1cbf53591a66141fb5dd747" 2417 | dependencies: 2418 | isobject "^3.0.1" 2419 | 2420 | once@^1.3.0, once@^1.4.0: 2421 | version "1.4.0" 2422 | resolved "https://registry.npmjs.org/once/-/once-1.4.0.tgz#583b1aa775961d4b113ac17d9c50baef9dd76bd1" 2423 | dependencies: 2424 | wrappy "1" 2425 | 2426 | optimist@^0.6.1: 2427 | version "0.6.1" 2428 | resolved "https://registry.npmjs.org/optimist/-/optimist-0.6.1.tgz#da3ea74686fa21a19a111c326e90eb15a0196686" 2429 | dependencies: 2430 | minimist "~0.0.1" 2431 | wordwrap "~0.0.2" 2432 | 2433 | optionator@^0.8.1: 2434 | version "0.8.2" 2435 | resolved "https://registry.npmjs.org/optionator/-/optionator-0.8.2.tgz#364c5e409d3f4d6301d6c0b4c05bba50180aeb64" 2436 | dependencies: 2437 | deep-is "~0.1.3" 2438 | fast-levenshtein "~2.0.4" 2439 | levn "~0.3.0" 2440 | prelude-ls "~1.1.2" 2441 | type-check "~0.3.2" 2442 | wordwrap "~1.0.0" 2443 | 2444 | os-homedir@^1.0.0: 2445 | version "1.0.2" 2446 | resolved "https://registry.npmjs.org/os-homedir/-/os-homedir-1.0.2.tgz#ffbc4988336e0e833de0c168c7ef152121aa7fb3" 2447 | 2448 | os-locale@^2.0.0: 2449 | version "2.1.0" 2450 | resolved "https://registry.npmjs.org/os-locale/-/os-locale-2.1.0.tgz#42bc2900a6b5b8bd17376c8e882b65afccf24bf2" 2451 | dependencies: 2452 | execa "^0.7.0" 2453 | lcid "^1.0.0" 2454 | mem "^1.1.0" 2455 | 2456 | os-tmpdir@^1.0.0, os-tmpdir@^1.0.1: 2457 | version "1.0.2" 2458 | resolved "https://registry.npmjs.org/os-tmpdir/-/os-tmpdir-1.0.2.tgz#bbe67406c79aa85c5cfec766fe5734555dfa1274" 2459 | 2460 | osenv@^0.1.4: 2461 | version "0.1.5" 2462 | resolved "https://registry.npmjs.org/osenv/-/osenv-0.1.5.tgz#85cdfafaeb28e8677f416e287592b5f3f49ea410" 2463 | dependencies: 2464 | os-homedir "^1.0.0" 2465 | os-tmpdir "^1.0.0" 2466 | 2467 | p-finally@^1.0.0: 2468 | version "1.0.0" 2469 | resolved "https://registry.npmjs.org/p-finally/-/p-finally-1.0.0.tgz#3fbcfb15b899a44123b34b6dcc18b724336a2cae" 2470 | 2471 | p-limit@^1.1.0: 2472 | version "1.3.0" 2473 | resolved "https://registry.npmjs.org/p-limit/-/p-limit-1.3.0.tgz#b86bd5f0c25690911c7590fcbfc2010d54b3ccb8" 2474 | dependencies: 2475 | p-try "^1.0.0" 2476 | 2477 | p-locate@^2.0.0: 2478 | version "2.0.0" 2479 | resolved "https://registry.npmjs.org/p-locate/-/p-locate-2.0.0.tgz#20a0103b222a70c8fd39cc2e580680f3dde5ec43" 2480 | dependencies: 2481 | p-limit "^1.1.0" 2482 | 2483 | p-try@^1.0.0: 2484 | version "1.0.0" 2485 | resolved "https://registry.npmjs.org/p-try/-/p-try-1.0.0.tgz#cbc79cdbaf8fd4228e13f621f2b1a237c1b207b3" 2486 | 2487 | parse-glob@^3.0.4: 2488 | version "3.0.4" 2489 | resolved "https://registry.npmjs.org/parse-glob/-/parse-glob-3.0.4.tgz#b2c376cfb11f35513badd173ef0bb6e3a388391c" 2490 | dependencies: 2491 | glob-base "^0.3.0" 2492 | is-dotfile "^1.0.0" 2493 | is-extglob "^1.0.0" 2494 | is-glob "^2.0.0" 2495 | 2496 | parse-json@^2.2.0: 2497 | version "2.2.0" 2498 | resolved "https://registry.npmjs.org/parse-json/-/parse-json-2.2.0.tgz#f480f40434ef80741f8469099f8dea18f55a4dc9" 2499 | dependencies: 2500 | error-ex "^1.2.0" 2501 | 2502 | parse5@4.0.0: 2503 | version "4.0.0" 2504 | resolved "https://registry.npmjs.org/parse5/-/parse5-4.0.0.tgz#6d78656e3da8d78b4ec0b906f7c08ef1dfe3f608" 2505 | 2506 | pascalcase@^0.1.1: 2507 | version "0.1.1" 2508 | resolved "https://registry.npmjs.org/pascalcase/-/pascalcase-0.1.1.tgz#b363e55e8006ca6fe21784d2db22bd15d7917f14" 2509 | 2510 | path-exists@^2.0.0: 2511 | version "2.1.0" 2512 | resolved "https://registry.npmjs.org/path-exists/-/path-exists-2.1.0.tgz#0feb6c64f0fc518d9a754dd5efb62c7022761f4b" 2513 | dependencies: 2514 | pinkie-promise "^2.0.0" 2515 | 2516 | path-exists@^3.0.0: 2517 | version "3.0.0" 2518 | resolved "https://registry.npmjs.org/path-exists/-/path-exists-3.0.0.tgz#ce0ebeaa5f78cb18925ea7d810d7b59b010fd515" 2519 | 2520 | path-is-absolute@^1.0.0, path-is-absolute@^1.0.1: 2521 | version "1.0.1" 2522 | resolved "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz#174b9268735534ffbc7ace6bf53a5a9e1b5c5f5f" 2523 | 2524 | path-key@^2.0.0: 2525 | version "2.0.1" 2526 | resolved "https://registry.npmjs.org/path-key/-/path-key-2.0.1.tgz#411cadb574c5a140d3a4b1910d40d80cc9f40b40" 2527 | 2528 | path-parse@^1.0.5: 2529 | version "1.0.5" 2530 | resolved "https://registry.npmjs.org/path-parse/-/path-parse-1.0.5.tgz#3c1adf871ea9cd6c9431b6ea2bd74a0ff055c4c1" 2531 | 2532 | path-type@^1.0.0: 2533 | version "1.1.0" 2534 | resolved "https://registry.npmjs.org/path-type/-/path-type-1.1.0.tgz#59c44f7ee491da704da415da5a4070ba4f8fe441" 2535 | dependencies: 2536 | graceful-fs "^4.1.2" 2537 | pify "^2.0.0" 2538 | pinkie-promise "^2.0.0" 2539 | 2540 | performance-now@^2.1.0: 2541 | version "2.1.0" 2542 | resolved "https://registry.npmjs.org/performance-now/-/performance-now-2.1.0.tgz#6309f4e0e5fa913ec1c69307ae364b4b377c9e7b" 2543 | 2544 | pify@^2.0.0: 2545 | version "2.3.0" 2546 | resolved "https://registry.npmjs.org/pify/-/pify-2.3.0.tgz#ed141a6ac043a849ea588498e7dca8b15330e90c" 2547 | 2548 | pinkie-promise@^2.0.0: 2549 | version "2.0.1" 2550 | resolved "https://registry.npmjs.org/pinkie-promise/-/pinkie-promise-2.0.1.tgz#2135d6dfa7a358c069ac9b178776288228450ffa" 2551 | dependencies: 2552 | pinkie "^2.0.0" 2553 | 2554 | pinkie@^2.0.0: 2555 | version "2.0.4" 2556 | resolved "https://registry.npmjs.org/pinkie/-/pinkie-2.0.4.tgz#72556b80cfa0d48a974e80e77248e80ed4f7f870" 2557 | 2558 | pkg-dir@^2.0.0: 2559 | version "2.0.0" 2560 | resolved "https://registry.npmjs.org/pkg-dir/-/pkg-dir-2.0.0.tgz#f6d5d1109e19d63edf428e0bd57e12777615334b" 2561 | dependencies: 2562 | find-up "^2.1.0" 2563 | 2564 | pn@^1.1.0: 2565 | version "1.1.0" 2566 | resolved "https://registry.npmjs.org/pn/-/pn-1.1.0.tgz#e2f4cef0e219f463c179ab37463e4e1ecdccbafb" 2567 | 2568 | posix-character-classes@^0.1.0: 2569 | version "0.1.1" 2570 | resolved "https://registry.npmjs.org/posix-character-classes/-/posix-character-classes-0.1.1.tgz#01eac0fe3b5af71a2a6c02feabb8c1fef7e00eab" 2571 | 2572 | prelude-ls@~1.1.2: 2573 | version "1.1.2" 2574 | resolved "https://registry.npmjs.org/prelude-ls/-/prelude-ls-1.1.2.tgz#21932a549f5e52ffd9a827f570e04be62a97da54" 2575 | 2576 | preserve@^0.2.0: 2577 | version "0.2.0" 2578 | resolved "https://registry.npmjs.org/preserve/-/preserve-0.2.0.tgz#815ed1f6ebc65926f865b310c0713bcb3315ce4b" 2579 | 2580 | prettier-check@^1.0.0: 2581 | version "1.0.0" 2582 | resolved "https://registry.npmjs.org/prettier-check/-/prettier-check-1.0.0.tgz#4d1d36428aff3586213df328e22e8f6b34d51916" 2583 | dependencies: 2584 | execa "^0.6.0" 2585 | prettier "^0.21.0" 2586 | 2587 | prettier@^0.21.0: 2588 | version "0.21.0" 2589 | resolved "https://registry.npmjs.org/prettier/-/prettier-0.21.0.tgz#5187ab95fdd9ca63dccf6217ed03b434d72771f8" 2590 | dependencies: 2591 | ast-types "0.9.4" 2592 | babel-code-frame "6.22.0" 2593 | babylon "6.15.0" 2594 | chalk "1.1.3" 2595 | esutils "2.0.2" 2596 | flow-parser "0.40.0" 2597 | get-stdin "5.0.1" 2598 | glob "7.1.1" 2599 | jest-validate "19.0.0" 2600 | minimist "1.2.0" 2601 | 2602 | prettier@^1.6.1: 2603 | version "1.13.7" 2604 | resolved "https://registry.npmjs.org/prettier/-/prettier-1.13.7.tgz#850f3b8af784a49a6ea2d2eaa7ed1428a34b7281" 2605 | 2606 | pretty-format@^19.0.0: 2607 | version "19.0.0" 2608 | resolved "https://registry.npmjs.org/pretty-format/-/pretty-format-19.0.0.tgz#56530d32acb98a3fa4851c4e2b9d37b420684c84" 2609 | dependencies: 2610 | ansi-styles "^3.0.0" 2611 | 2612 | pretty-format@^23.2.0: 2613 | version "23.2.0" 2614 | resolved "https://registry.npmjs.org/pretty-format/-/pretty-format-23.2.0.tgz#3b0aaa63c018a53583373c1cb3a5d96cc5e83017" 2615 | dependencies: 2616 | ansi-regex "^3.0.0" 2617 | ansi-styles "^3.2.0" 2618 | 2619 | private@^0.1.8: 2620 | version "0.1.8" 2621 | resolved "https://registry.npmjs.org/private/-/private-0.1.8.tgz#2381edb3689f7a53d653190060fcf822d2f368ff" 2622 | 2623 | process-nextick-args@~2.0.0: 2624 | version "2.0.0" 2625 | resolved "https://registry.npmjs.org/process-nextick-args/-/process-nextick-args-2.0.0.tgz#a37d732f4271b4ab1ad070d35508e8290788ffaa" 2626 | 2627 | prompts@^0.1.9: 2628 | version "0.1.13" 2629 | resolved "https://registry.npmjs.org/prompts/-/prompts-0.1.13.tgz#7fad7ee1c6cafe49834ca0b2a6a471262de57620" 2630 | dependencies: 2631 | kleur "^2.0.1" 2632 | sisteransi "^0.1.1" 2633 | 2634 | pseudomap@^1.0.2: 2635 | version "1.0.2" 2636 | resolved "https://registry.npmjs.org/pseudomap/-/pseudomap-1.0.2.tgz#f052a28da70e618917ef0a8ac34c1ae5a68286b3" 2637 | 2638 | psl@^1.1.24: 2639 | version "1.1.28" 2640 | resolved "https://registry.npmjs.org/psl/-/psl-1.1.28.tgz#4fb6ceb08a1e2214d4fd4de0ca22dae13740bc7b" 2641 | 2642 | punycode@^1.4.1: 2643 | version "1.4.1" 2644 | resolved "https://registry.npmjs.org/punycode/-/punycode-1.4.1.tgz#c0d5a63b2718800ad8e1eb0fa5269c84dd41845e" 2645 | 2646 | punycode@^2.1.0: 2647 | version "2.1.1" 2648 | resolved "https://registry.npmjs.org/punycode/-/punycode-2.1.1.tgz#b58b010ac40c22c5657616c8d2c2c02c7bf479ec" 2649 | 2650 | qs@~6.3.0: 2651 | version "6.3.2" 2652 | resolved "https://registry.npmjs.org/qs/-/qs-6.3.2.tgz#e75bd5f6e268122a2a0e0bda630b2550c166502c" 2653 | 2654 | qs@~6.5.1: 2655 | version "6.5.2" 2656 | resolved "https://registry.npmjs.org/qs/-/qs-6.5.2.tgz#cb3ae806e8740444584ef154ce8ee98d403f3e36" 2657 | 2658 | randomatic@^3.0.0: 2659 | version "3.0.0" 2660 | resolved "https://registry.npmjs.org/randomatic/-/randomatic-3.0.0.tgz#d35490030eb4f7578de292ce6dfb04a91a128923" 2661 | dependencies: 2662 | is-number "^4.0.0" 2663 | kind-of "^6.0.0" 2664 | math-random "^1.0.1" 2665 | 2666 | rc@^1.2.7: 2667 | version "1.2.8" 2668 | resolved "https://registry.npmjs.org/rc/-/rc-1.2.8.tgz#cd924bf5200a075b83c188cd6b9e211b7fc0d3ed" 2669 | dependencies: 2670 | deep-extend "^0.6.0" 2671 | ini "~1.3.0" 2672 | minimist "^1.2.0" 2673 | strip-json-comments "~2.0.1" 2674 | 2675 | read-pkg-up@^1.0.1: 2676 | version "1.0.1" 2677 | resolved "https://registry.npmjs.org/read-pkg-up/-/read-pkg-up-1.0.1.tgz#9d63c13276c065918d57f002a57f40a1b643fb02" 2678 | dependencies: 2679 | find-up "^1.0.0" 2680 | read-pkg "^1.0.0" 2681 | 2682 | read-pkg@^1.0.0: 2683 | version "1.1.0" 2684 | resolved "https://registry.npmjs.org/read-pkg/-/read-pkg-1.1.0.tgz#f5ffaa5ecd29cb31c0474bca7d756b6bb29e3f28" 2685 | dependencies: 2686 | load-json-file "^1.0.0" 2687 | normalize-package-data "^2.3.2" 2688 | path-type "^1.0.0" 2689 | 2690 | readable-stream@^2.0.1, readable-stream@^2.0.6: 2691 | version "2.3.6" 2692 | resolved "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.6.tgz#b11c27d88b8ff1fbe070643cf94b0c79ae1b0aaf" 2693 | dependencies: 2694 | core-util-is "~1.0.0" 2695 | inherits "~2.0.3" 2696 | isarray "~1.0.0" 2697 | process-nextick-args "~2.0.0" 2698 | safe-buffer "~5.1.1" 2699 | string_decoder "~1.1.1" 2700 | util-deprecate "~1.0.1" 2701 | 2702 | realpath-native@^1.0.0: 2703 | version "1.0.1" 2704 | resolved "https://registry.npmjs.org/realpath-native/-/realpath-native-1.0.1.tgz#07f40a0cce8f8261e2e8b7ebebf5c95965d7b633" 2705 | dependencies: 2706 | util.promisify "^1.0.0" 2707 | 2708 | regenerator-runtime@^0.11.0: 2709 | version "0.11.1" 2710 | resolved "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.11.1.tgz#be05ad7f9bf7d22e056f9726cee5017fbf19e2e9" 2711 | 2712 | regex-cache@^0.4.2: 2713 | version "0.4.4" 2714 | resolved "https://registry.npmjs.org/regex-cache/-/regex-cache-0.4.4.tgz#75bdc58a2a1496cec48a12835bc54c8d562336dd" 2715 | dependencies: 2716 | is-equal-shallow "^0.1.3" 2717 | 2718 | regex-not@^1.0.0, regex-not@^1.0.2: 2719 | version "1.0.2" 2720 | resolved "https://registry.npmjs.org/regex-not/-/regex-not-1.0.2.tgz#1f4ece27e00b0b65e0247a6810e6a85d83a5752c" 2721 | dependencies: 2722 | extend-shallow "^3.0.2" 2723 | safe-regex "^1.1.0" 2724 | 2725 | remove-trailing-separator@^1.0.1: 2726 | version "1.1.0" 2727 | resolved "https://registry.npmjs.org/remove-trailing-separator/-/remove-trailing-separator-1.1.0.tgz#c24bce2a283adad5bc3f58e0d48249b92379d8ef" 2728 | 2729 | repeat-element@^1.1.2: 2730 | version "1.1.2" 2731 | resolved "https://registry.npmjs.org/repeat-element/-/repeat-element-1.1.2.tgz#ef089a178d1483baae4d93eb98b4f9e4e11d990a" 2732 | 2733 | repeat-string@^1.5.2, repeat-string@^1.6.1: 2734 | version "1.6.1" 2735 | resolved "https://registry.npmjs.org/repeat-string/-/repeat-string-1.6.1.tgz#8dcae470e1c88abc2d600fff4a776286da75e637" 2736 | 2737 | repeating@^2.0.0: 2738 | version "2.0.1" 2739 | resolved "https://registry.npmjs.org/repeating/-/repeating-2.0.1.tgz#5214c53a926d3552707527fbab415dbc08d06dda" 2740 | dependencies: 2741 | is-finite "^1.0.0" 2742 | 2743 | request-promise-core@1.1.1: 2744 | version "1.1.1" 2745 | resolved "https://registry.npmjs.org/request-promise-core/-/request-promise-core-1.1.1.tgz#3eee00b2c5aa83239cfb04c5700da36f81cd08b6" 2746 | dependencies: 2747 | lodash "^4.13.1" 2748 | 2749 | request-promise-native@^1.0.5: 2750 | version "1.0.5" 2751 | resolved "https://registry.npmjs.org/request-promise-native/-/request-promise-native-1.0.5.tgz#5281770f68e0c9719e5163fd3fab482215f4fda5" 2752 | dependencies: 2753 | request-promise-core "1.1.1" 2754 | stealthy-require "^1.1.0" 2755 | tough-cookie ">=2.3.3" 2756 | 2757 | request@2.79.0: 2758 | version "2.79.0" 2759 | resolved "https://registry.npmjs.org/request/-/request-2.79.0.tgz#4dfe5bf6be8b8cdc37fcf93e04b65577722710de" 2760 | dependencies: 2761 | aws-sign2 "~0.6.0" 2762 | aws4 "^1.2.1" 2763 | caseless "~0.11.0" 2764 | combined-stream "~1.0.5" 2765 | extend "~3.0.0" 2766 | forever-agent "~0.6.1" 2767 | form-data "~2.1.1" 2768 | har-validator "~2.0.6" 2769 | hawk "~3.1.3" 2770 | http-signature "~1.1.0" 2771 | is-typedarray "~1.0.0" 2772 | isstream "~0.1.2" 2773 | json-stringify-safe "~5.0.1" 2774 | mime-types "~2.1.7" 2775 | oauth-sign "~0.8.1" 2776 | qs "~6.3.0" 2777 | stringstream "~0.0.4" 2778 | tough-cookie "~2.3.0" 2779 | tunnel-agent "~0.4.1" 2780 | uuid "^3.0.0" 2781 | 2782 | request@^2.87.0: 2783 | version "2.87.0" 2784 | resolved "https://registry.npmjs.org/request/-/request-2.87.0.tgz#32f00235cd08d482b4d0d68db93a829c0ed5756e" 2785 | dependencies: 2786 | aws-sign2 "~0.7.0" 2787 | aws4 "^1.6.0" 2788 | caseless "~0.12.0" 2789 | combined-stream "~1.0.5" 2790 | extend "~3.0.1" 2791 | forever-agent "~0.6.1" 2792 | form-data "~2.3.1" 2793 | har-validator "~5.0.3" 2794 | http-signature "~1.2.0" 2795 | is-typedarray "~1.0.0" 2796 | isstream "~0.1.2" 2797 | json-stringify-safe "~5.0.1" 2798 | mime-types "~2.1.17" 2799 | oauth-sign "~0.8.2" 2800 | performance-now "^2.1.0" 2801 | qs "~6.5.1" 2802 | safe-buffer "^5.1.1" 2803 | tough-cookie "~2.3.3" 2804 | tunnel-agent "^0.6.0" 2805 | uuid "^3.1.0" 2806 | 2807 | require-directory@^2.1.1: 2808 | version "2.1.1" 2809 | resolved "https://registry.npmjs.org/require-directory/-/require-directory-2.1.1.tgz#8c64ad5fd30dab1c976e2344ffe7f792a6a6df42" 2810 | 2811 | require-main-filename@^1.0.1: 2812 | version "1.0.1" 2813 | resolved "https://registry.npmjs.org/require-main-filename/-/require-main-filename-1.0.1.tgz#97f717b69d48784f5f526a6c5aa8ffdda055a4d1" 2814 | 2815 | resolve-cwd@^2.0.0: 2816 | version "2.0.0" 2817 | resolved "https://registry.npmjs.org/resolve-cwd/-/resolve-cwd-2.0.0.tgz#00a9f7387556e27038eae232caa372a6a59b665a" 2818 | dependencies: 2819 | resolve-from "^3.0.0" 2820 | 2821 | resolve-from@^3.0.0: 2822 | version "3.0.0" 2823 | resolved "https://registry.npmjs.org/resolve-from/-/resolve-from-3.0.0.tgz#b22c7af7d9d6881bc8b6e653335eebcb0a188748" 2824 | 2825 | resolve-url@^0.2.1: 2826 | version "0.2.1" 2827 | resolved "https://registry.npmjs.org/resolve-url/-/resolve-url-0.2.1.tgz#2c637fe77c893afd2a663fe21aa9080068e2052a" 2828 | 2829 | resolve@1.1.7: 2830 | version "1.1.7" 2831 | resolved "https://registry.npmjs.org/resolve/-/resolve-1.1.7.tgz#203114d82ad2c5ed9e8e0411b3932875e889e97b" 2832 | 2833 | ret@~0.1.10: 2834 | version "0.1.15" 2835 | resolved "https://registry.npmjs.org/ret/-/ret-0.1.15.tgz#b8a4825d5bdb1fc3f6f53c2bc33f81388681c7bc" 2836 | 2837 | right-align@^0.1.1: 2838 | version "0.1.3" 2839 | resolved "https://registry.npmjs.org/right-align/-/right-align-0.1.3.tgz#61339b722fe6a3515689210d24e14c96148613ef" 2840 | dependencies: 2841 | align-text "^0.1.1" 2842 | 2843 | rimraf@^2.5.4, rimraf@^2.6.1: 2844 | version "2.6.2" 2845 | resolved "https://registry.npmjs.org/rimraf/-/rimraf-2.6.2.tgz#2ed8150d24a16ea8651e6d6ef0f47c4158ce7a36" 2846 | dependencies: 2847 | glob "^7.0.5" 2848 | 2849 | rsvp@^3.3.3: 2850 | version "3.6.2" 2851 | resolved "https://registry.npmjs.org/rsvp/-/rsvp-3.6.2.tgz#2e96491599a96cde1b515d5674a8f7a91452926a" 2852 | 2853 | safe-buffer@^5.0.1, safe-buffer@^5.1.1, safe-buffer@^5.1.2, safe-buffer@~5.1.0, safe-buffer@~5.1.1: 2854 | version "5.1.2" 2855 | resolved "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz#991ec69d296e0313747d59bdfd2b745c35f8828d" 2856 | 2857 | safe-regex@^1.1.0: 2858 | version "1.1.0" 2859 | resolved "https://registry.npmjs.org/safe-regex/-/safe-regex-1.1.0.tgz#40a3669f3b077d1e943d44629e157dd48023bf2e" 2860 | dependencies: 2861 | ret "~0.1.10" 2862 | 2863 | "safer-buffer@>= 2.1.2 < 3", safer-buffer@^2.0.2: 2864 | version "2.1.2" 2865 | resolved "https://registry.npmjs.org/safer-buffer/-/safer-buffer-2.1.2.tgz#44fa161b0187b9549dd84bb91802f9bd8385cd6a" 2866 | 2867 | sane@^2.0.0: 2868 | version "2.5.2" 2869 | resolved "https://registry.npmjs.org/sane/-/sane-2.5.2.tgz#b4dc1861c21b427e929507a3e751e2a2cb8ab3fa" 2870 | dependencies: 2871 | anymatch "^2.0.0" 2872 | capture-exit "^1.2.0" 2873 | exec-sh "^0.2.0" 2874 | fb-watchman "^2.0.0" 2875 | micromatch "^3.1.4" 2876 | minimist "^1.1.1" 2877 | walker "~1.0.5" 2878 | watch "~0.18.0" 2879 | optionalDependencies: 2880 | fsevents "^1.2.3" 2881 | 2882 | sax@^1.2.4: 2883 | version "1.2.4" 2884 | resolved "https://registry.npmjs.org/sax/-/sax-1.2.4.tgz#2816234e2378bddc4e5354fab5caa895df7100d9" 2885 | 2886 | "semver@2 || 3 || 4 || 5", semver@^5.3.0, semver@^5.4.1, semver@^5.5.0: 2887 | version "5.5.0" 2888 | resolved "https://registry.npmjs.org/semver/-/semver-5.5.0.tgz#dc4bbc7a6ca9d916dee5d43516f0092b58f7b8ab" 2889 | 2890 | set-blocking@^2.0.0, set-blocking@~2.0.0: 2891 | version "2.0.0" 2892 | resolved "https://registry.npmjs.org/set-blocking/-/set-blocking-2.0.0.tgz#045f9782d011ae9a6803ddd382b24392b3d890f7" 2893 | 2894 | set-value@^0.4.3: 2895 | version "0.4.3" 2896 | resolved "https://registry.npmjs.org/set-value/-/set-value-0.4.3.tgz#7db08f9d3d22dc7f78e53af3c3bf4666ecdfccf1" 2897 | dependencies: 2898 | extend-shallow "^2.0.1" 2899 | is-extendable "^0.1.1" 2900 | is-plain-object "^2.0.1" 2901 | to-object-path "^0.3.0" 2902 | 2903 | set-value@^2.0.0: 2904 | version "2.0.0" 2905 | resolved "https://registry.npmjs.org/set-value/-/set-value-2.0.0.tgz#71ae4a88f0feefbbf52d1ea604f3fb315ebb6274" 2906 | dependencies: 2907 | extend-shallow "^2.0.1" 2908 | is-extendable "^0.1.1" 2909 | is-plain-object "^2.0.3" 2910 | split-string "^3.0.1" 2911 | 2912 | shebang-command@^1.2.0: 2913 | version "1.2.0" 2914 | resolved "https://registry.npmjs.org/shebang-command/-/shebang-command-1.2.0.tgz#44aac65b695b03398968c39f363fee5deafdf1ea" 2915 | dependencies: 2916 | shebang-regex "^1.0.0" 2917 | 2918 | shebang-regex@^1.0.0: 2919 | version "1.0.0" 2920 | resolved "https://registry.npmjs.org/shebang-regex/-/shebang-regex-1.0.0.tgz#da42f49740c0b42db2ca9728571cb190c98efea3" 2921 | 2922 | shellwords@^0.1.1: 2923 | version "0.1.1" 2924 | resolved "https://registry.npmjs.org/shellwords/-/shellwords-0.1.1.tgz#d6b9181c1a48d397324c84871efbcfc73fc0654b" 2925 | 2926 | signal-exit@^3.0.0, signal-exit@^3.0.2: 2927 | version "3.0.2" 2928 | resolved "https://registry.npmjs.org/signal-exit/-/signal-exit-3.0.2.tgz#b5fdc08f1287ea1178628e415e25132b73646c6d" 2929 | 2930 | sisteransi@^0.1.1: 2931 | version "0.1.1" 2932 | resolved "https://registry.npmjs.org/sisteransi/-/sisteransi-0.1.1.tgz#5431447d5f7d1675aac667ccd0b865a4994cb3ce" 2933 | 2934 | slash@^1.0.0: 2935 | version "1.0.0" 2936 | resolved "https://registry.npmjs.org/slash/-/slash-1.0.0.tgz#c41f2f6c39fc16d1cd17ad4b5d896114ae470d55" 2937 | 2938 | snapdragon-node@^2.0.1: 2939 | version "2.1.1" 2940 | resolved "https://registry.npmjs.org/snapdragon-node/-/snapdragon-node-2.1.1.tgz#6c175f86ff14bdb0724563e8f3c1b021a286853b" 2941 | dependencies: 2942 | define-property "^1.0.0" 2943 | isobject "^3.0.0" 2944 | snapdragon-util "^3.0.1" 2945 | 2946 | snapdragon-util@^3.0.1: 2947 | version "3.0.1" 2948 | resolved "https://registry.npmjs.org/snapdragon-util/-/snapdragon-util-3.0.1.tgz#f956479486f2acd79700693f6f7b805e45ab56e2" 2949 | dependencies: 2950 | kind-of "^3.2.0" 2951 | 2952 | snapdragon@^0.8.1: 2953 | version "0.8.2" 2954 | resolved "https://registry.npmjs.org/snapdragon/-/snapdragon-0.8.2.tgz#64922e7c565b0e14204ba1aa7d6964278d25182d" 2955 | dependencies: 2956 | base "^0.11.1" 2957 | debug "^2.2.0" 2958 | define-property "^0.2.5" 2959 | extend-shallow "^2.0.1" 2960 | map-cache "^0.2.2" 2961 | source-map "^0.5.6" 2962 | source-map-resolve "^0.5.0" 2963 | use "^3.1.0" 2964 | 2965 | sntp@1.x.x: 2966 | version "1.0.9" 2967 | resolved "https://registry.npmjs.org/sntp/-/sntp-1.0.9.tgz#6541184cc90aeea6c6e7b35e2659082443c66198" 2968 | dependencies: 2969 | hoek "2.x.x" 2970 | 2971 | source-map-resolve@^0.5.0: 2972 | version "0.5.2" 2973 | resolved "https://registry.npmjs.org/source-map-resolve/-/source-map-resolve-0.5.2.tgz#72e2cc34095543e43b2c62b2c4c10d4a9054f259" 2974 | dependencies: 2975 | atob "^2.1.1" 2976 | decode-uri-component "^0.2.0" 2977 | resolve-url "^0.2.1" 2978 | source-map-url "^0.4.0" 2979 | urix "^0.1.0" 2980 | 2981 | source-map-support@^0.4.15: 2982 | version "0.4.18" 2983 | resolved "https://registry.npmjs.org/source-map-support/-/source-map-support-0.4.18.tgz#0286a6de8be42641338594e97ccea75f0a2c585f" 2984 | dependencies: 2985 | source-map "^0.5.6" 2986 | 2987 | source-map-support@^0.5.6: 2988 | version "0.5.6" 2989 | resolved "https://registry.npmjs.org/source-map-support/-/source-map-support-0.5.6.tgz#4435cee46b1aab62b8e8610ce60f788091c51c13" 2990 | dependencies: 2991 | buffer-from "^1.0.0" 2992 | source-map "^0.6.0" 2993 | 2994 | source-map-url@^0.4.0: 2995 | version "0.4.0" 2996 | resolved "https://registry.npmjs.org/source-map-url/-/source-map-url-0.4.0.tgz#3e935d7ddd73631b97659956d55128e87b5084a3" 2997 | 2998 | source-map@^0.4.4: 2999 | version "0.4.4" 3000 | resolved "https://registry.npmjs.org/source-map/-/source-map-0.4.4.tgz#eba4f5da9c0dc999de68032d8b4f76173652036b" 3001 | dependencies: 3002 | amdefine ">=0.0.4" 3003 | 3004 | source-map@^0.5.3, source-map@^0.5.6, source-map@^0.5.7, source-map@~0.5.1: 3005 | version "0.5.7" 3006 | resolved "https://registry.npmjs.org/source-map/-/source-map-0.5.7.tgz#8a039d2d1021d22d1ea14c80d8ea468ba2ef3fcc" 3007 | 3008 | source-map@^0.6.0, source-map@~0.6.1: 3009 | version "0.6.1" 3010 | resolved "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz#74722af32e9614e9c287a8d0bbde48b5e2f1a263" 3011 | 3012 | spdx-correct@^3.0.0: 3013 | version "3.0.0" 3014 | resolved "https://registry.npmjs.org/spdx-correct/-/spdx-correct-3.0.0.tgz#05a5b4d7153a195bc92c3c425b69f3b2a9524c82" 3015 | dependencies: 3016 | spdx-expression-parse "^3.0.0" 3017 | spdx-license-ids "^3.0.0" 3018 | 3019 | spdx-exceptions@^2.1.0: 3020 | version "2.1.0" 3021 | resolved "https://registry.npmjs.org/spdx-exceptions/-/spdx-exceptions-2.1.0.tgz#2c7ae61056c714a5b9b9b2b2af7d311ef5c78fe9" 3022 | 3023 | spdx-expression-parse@^3.0.0: 3024 | version "3.0.0" 3025 | resolved "https://registry.npmjs.org/spdx-expression-parse/-/spdx-expression-parse-3.0.0.tgz#99e119b7a5da00e05491c9fa338b7904823b41d0" 3026 | dependencies: 3027 | spdx-exceptions "^2.1.0" 3028 | spdx-license-ids "^3.0.0" 3029 | 3030 | spdx-license-ids@^3.0.0: 3031 | version "3.0.0" 3032 | resolved "https://registry.npmjs.org/spdx-license-ids/-/spdx-license-ids-3.0.0.tgz#7a7cd28470cc6d3a1cfe6d66886f6bc430d3ac87" 3033 | 3034 | split-string@^3.0.1, split-string@^3.0.2: 3035 | version "3.1.0" 3036 | resolved "https://registry.npmjs.org/split-string/-/split-string-3.1.0.tgz#7cb09dda3a86585705c64b39a6466038682e8fe2" 3037 | dependencies: 3038 | extend-shallow "^3.0.0" 3039 | 3040 | sprintf-js@~1.0.2: 3041 | version "1.0.3" 3042 | resolved "https://registry.npmjs.org/sprintf-js/-/sprintf-js-1.0.3.tgz#04e6926f662895354f3dd015203633b857297e2c" 3043 | 3044 | sshpk@^1.7.0: 3045 | version "1.14.2" 3046 | resolved "https://registry.npmjs.org/sshpk/-/sshpk-1.14.2.tgz#c6fc61648a3d9c4e764fd3fcdf4ea105e492ba98" 3047 | dependencies: 3048 | asn1 "~0.2.3" 3049 | assert-plus "^1.0.0" 3050 | dashdash "^1.12.0" 3051 | getpass "^0.1.1" 3052 | safer-buffer "^2.0.2" 3053 | optionalDependencies: 3054 | bcrypt-pbkdf "^1.0.0" 3055 | ecc-jsbn "~0.1.1" 3056 | jsbn "~0.1.0" 3057 | tweetnacl "~0.14.0" 3058 | 3059 | stack-utils@^1.0.1: 3060 | version "1.0.1" 3061 | resolved "https://registry.npmjs.org/stack-utils/-/stack-utils-1.0.1.tgz#d4f33ab54e8e38778b0ca5cfd3b3afb12db68620" 3062 | 3063 | static-extend@^0.1.1: 3064 | version "0.1.2" 3065 | resolved "https://registry.npmjs.org/static-extend/-/static-extend-0.1.2.tgz#60809c39cbff55337226fd5e0b520f341f1fb5c6" 3066 | dependencies: 3067 | define-property "^0.2.5" 3068 | object-copy "^0.1.0" 3069 | 3070 | stealthy-require@^1.1.0: 3071 | version "1.1.1" 3072 | resolved "https://registry.npmjs.org/stealthy-require/-/stealthy-require-1.1.1.tgz#35b09875b4ff49f26a777e509b3090a3226bf24b" 3073 | 3074 | string-length@^2.0.0: 3075 | version "2.0.0" 3076 | resolved "https://registry.npmjs.org/string-length/-/string-length-2.0.0.tgz#d40dbb686a3ace960c1cffca562bf2c45f8363ed" 3077 | dependencies: 3078 | astral-regex "^1.0.0" 3079 | strip-ansi "^4.0.0" 3080 | 3081 | string-width@^1.0.1: 3082 | version "1.0.2" 3083 | resolved "https://registry.npmjs.org/string-width/-/string-width-1.0.2.tgz#118bdf5b8cdc51a2a7e70d211e07e2b0b9b107d3" 3084 | dependencies: 3085 | code-point-at "^1.0.0" 3086 | is-fullwidth-code-point "^1.0.0" 3087 | strip-ansi "^3.0.0" 3088 | 3089 | "string-width@^1.0.2 || 2", string-width@^2.0.0, string-width@^2.1.1: 3090 | version "2.1.1" 3091 | resolved "https://registry.npmjs.org/string-width/-/string-width-2.1.1.tgz#ab93f27a8dc13d28cac815c462143a6d9012ae9e" 3092 | dependencies: 3093 | is-fullwidth-code-point "^2.0.0" 3094 | strip-ansi "^4.0.0" 3095 | 3096 | string_decoder@~1.1.1: 3097 | version "1.1.1" 3098 | resolved "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz#9cf1611ba62685d7030ae9e4ba34149c3af03fc8" 3099 | dependencies: 3100 | safe-buffer "~5.1.0" 3101 | 3102 | stringstream@~0.0.4: 3103 | version "0.0.6" 3104 | resolved "https://registry.npmjs.org/stringstream/-/stringstream-0.0.6.tgz#7880225b0d4ad10e30927d167a1d6f2fd3b33a72" 3105 | 3106 | strip-ansi@^3.0.0, strip-ansi@^3.0.1: 3107 | version "3.0.1" 3108 | resolved "https://registry.npmjs.org/strip-ansi/-/strip-ansi-3.0.1.tgz#6a385fb8853d952d5ff05d0e8aaf94278dc63dcf" 3109 | dependencies: 3110 | ansi-regex "^2.0.0" 3111 | 3112 | strip-ansi@^4.0.0: 3113 | version "4.0.0" 3114 | resolved "https://registry.npmjs.org/strip-ansi/-/strip-ansi-4.0.0.tgz#a8479022eb1ac368a871389b635262c505ee368f" 3115 | dependencies: 3116 | ansi-regex "^3.0.0" 3117 | 3118 | strip-bom@3.0.0, strip-bom@^3.0.0: 3119 | version "3.0.0" 3120 | resolved "https://registry.npmjs.org/strip-bom/-/strip-bom-3.0.0.tgz#2334c18e9c759f7bdd56fdef7e9ae3d588e68ed3" 3121 | 3122 | strip-bom@^2.0.0: 3123 | version "2.0.0" 3124 | resolved "https://registry.npmjs.org/strip-bom/-/strip-bom-2.0.0.tgz#6219a85616520491f35788bdbf1447a99c7e6b0e" 3125 | dependencies: 3126 | is-utf8 "^0.2.0" 3127 | 3128 | strip-eof@^1.0.0: 3129 | version "1.0.0" 3130 | resolved "https://registry.npmjs.org/strip-eof/-/strip-eof-1.0.0.tgz#bb43ff5598a6eb05d89b59fcd129c983313606bf" 3131 | 3132 | strip-json-comments@~2.0.1: 3133 | version "2.0.1" 3134 | resolved "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-2.0.1.tgz#3c531942e908c2697c0ec344858c286c7ca0a60a" 3135 | 3136 | supports-color@^2.0.0: 3137 | version "2.0.0" 3138 | resolved "https://registry.npmjs.org/supports-color/-/supports-color-2.0.0.tgz#535d045ce6b6363fa40117084629995e9df324c7" 3139 | 3140 | supports-color@^3.1.2: 3141 | version "3.2.3" 3142 | resolved "https://registry.npmjs.org/supports-color/-/supports-color-3.2.3.tgz#65ac0504b3954171d8a64946b2ae3cbb8a5f54f6" 3143 | dependencies: 3144 | has-flag "^1.0.0" 3145 | 3146 | supports-color@^5.3.0: 3147 | version "5.4.0" 3148 | resolved "https://registry.npmjs.org/supports-color/-/supports-color-5.4.0.tgz#1c6b337402c2137605efe19f10fec390f6faab54" 3149 | dependencies: 3150 | has-flag "^3.0.0" 3151 | 3152 | symbol-tree@^3.2.2: 3153 | version "3.2.2" 3154 | resolved "https://registry.npmjs.org/symbol-tree/-/symbol-tree-3.2.2.tgz#ae27db38f660a7ae2e1c3b7d1bc290819b8519e6" 3155 | 3156 | tar@^4: 3157 | version "4.4.4" 3158 | resolved "https://registry.npmjs.org/tar/-/tar-4.4.4.tgz#ec8409fae9f665a4355cc3b4087d0820232bb8cd" 3159 | dependencies: 3160 | chownr "^1.0.1" 3161 | fs-minipass "^1.2.5" 3162 | minipass "^2.3.3" 3163 | minizlib "^1.1.0" 3164 | mkdirp "^0.5.0" 3165 | safe-buffer "^5.1.2" 3166 | yallist "^3.0.2" 3167 | 3168 | test-exclude@^4.2.1: 3169 | version "4.2.1" 3170 | resolved "https://registry.npmjs.org/test-exclude/-/test-exclude-4.2.1.tgz#dfa222f03480bca69207ca728b37d74b45f724fa" 3171 | dependencies: 3172 | arrify "^1.0.1" 3173 | micromatch "^3.1.8" 3174 | object-assign "^4.1.0" 3175 | read-pkg-up "^1.0.1" 3176 | require-main-filename "^1.0.1" 3177 | 3178 | throat@^4.0.0: 3179 | version "4.1.0" 3180 | resolved "https://registry.npmjs.org/throat/-/throat-4.1.0.tgz#89037cbc92c56ab18926e6ba4cbb200e15672a6a" 3181 | 3182 | tmpl@1.0.x: 3183 | version "1.0.4" 3184 | resolved "https://registry.npmjs.org/tmpl/-/tmpl-1.0.4.tgz#23640dd7b42d00433911140820e5cf440e521dd1" 3185 | 3186 | to-fast-properties@^1.0.3: 3187 | version "1.0.3" 3188 | resolved "https://registry.npmjs.org/to-fast-properties/-/to-fast-properties-1.0.3.tgz#b83571fa4d8c25b82e231b06e3a3055de4ca1a47" 3189 | 3190 | to-object-path@^0.3.0: 3191 | version "0.3.0" 3192 | resolved "https://registry.npmjs.org/to-object-path/-/to-object-path-0.3.0.tgz#297588b7b0e7e0ac08e04e672f85c1f4999e17af" 3193 | dependencies: 3194 | kind-of "^3.0.2" 3195 | 3196 | to-regex-range@^2.1.0: 3197 | version "2.1.1" 3198 | resolved "https://registry.npmjs.org/to-regex-range/-/to-regex-range-2.1.1.tgz#7c80c17b9dfebe599e27367e0d4dd5590141db38" 3199 | dependencies: 3200 | is-number "^3.0.0" 3201 | repeat-string "^1.6.1" 3202 | 3203 | to-regex@^3.0.1, to-regex@^3.0.2: 3204 | version "3.0.2" 3205 | resolved "https://registry.npmjs.org/to-regex/-/to-regex-3.0.2.tgz#13cfdd9b336552f30b51f33a8ae1b42a7a7599ce" 3206 | dependencies: 3207 | define-property "^2.0.2" 3208 | extend-shallow "^3.0.2" 3209 | regex-not "^1.0.2" 3210 | safe-regex "^1.1.0" 3211 | 3212 | tough-cookie@>=2.3.3, tough-cookie@^2.3.4: 3213 | version "2.4.3" 3214 | resolved "https://registry.npmjs.org/tough-cookie/-/tough-cookie-2.4.3.tgz#53f36da3f47783b0925afa06ff9f3b165280f781" 3215 | dependencies: 3216 | psl "^1.1.24" 3217 | punycode "^1.4.1" 3218 | 3219 | tough-cookie@~2.3.0, tough-cookie@~2.3.3: 3220 | version "2.3.4" 3221 | resolved "https://registry.npmjs.org/tough-cookie/-/tough-cookie-2.3.4.tgz#ec60cee38ac675063ffc97a5c18970578ee83655" 3222 | dependencies: 3223 | punycode "^1.4.1" 3224 | 3225 | tr46@^1.0.1: 3226 | version "1.0.1" 3227 | resolved "https://registry.npmjs.org/tr46/-/tr46-1.0.1.tgz#a8b13fd6bfd2489519674ccde55ba3693b706d09" 3228 | dependencies: 3229 | punycode "^2.1.0" 3230 | 3231 | trim-right@^1.0.1: 3232 | version "1.0.1" 3233 | resolved "https://registry.npmjs.org/trim-right/-/trim-right-1.0.1.tgz#cb2e1203067e0c8de1f614094b9fe45704ea6003" 3234 | 3235 | tunnel-agent@^0.6.0: 3236 | version "0.6.0" 3237 | resolved "https://registry.npmjs.org/tunnel-agent/-/tunnel-agent-0.6.0.tgz#27a5dea06b36b04a0a9966774b290868f0fc40fd" 3238 | dependencies: 3239 | safe-buffer "^5.0.1" 3240 | 3241 | tunnel-agent@~0.4.1: 3242 | version "0.4.3" 3243 | resolved "https://registry.npmjs.org/tunnel-agent/-/tunnel-agent-0.4.3.tgz#6373db76909fe570e08d73583365ed828a74eeeb" 3244 | 3245 | tweetnacl@^0.14.3, tweetnacl@~0.14.0: 3246 | version "0.14.5" 3247 | resolved "https://registry.npmjs.org/tweetnacl/-/tweetnacl-0.14.5.tgz#5ae68177f192d4456269d108afa93ff8743f4f64" 3248 | 3249 | type-check@~0.3.2: 3250 | version "0.3.2" 3251 | resolved "https://registry.npmjs.org/type-check/-/type-check-0.3.2.tgz#5884cab512cf1d355e3fb784f30804b2b520db72" 3252 | dependencies: 3253 | prelude-ls "~1.1.2" 3254 | 3255 | uglify-js@^2.6: 3256 | version "2.8.29" 3257 | resolved "https://registry.npmjs.org/uglify-js/-/uglify-js-2.8.29.tgz#29c5733148057bb4e1f75df35b7a9cb72e6a59dd" 3258 | dependencies: 3259 | source-map "~0.5.1" 3260 | yargs "~3.10.0" 3261 | optionalDependencies: 3262 | uglify-to-browserify "~1.0.0" 3263 | 3264 | uglify-to-browserify@~1.0.0: 3265 | version "1.0.2" 3266 | resolved "https://registry.npmjs.org/uglify-to-browserify/-/uglify-to-browserify-1.0.2.tgz#6e0924d6bda6b5afe349e39a6d632850a0f882b7" 3267 | 3268 | union-value@^1.0.0: 3269 | version "1.0.0" 3270 | resolved "https://registry.npmjs.org/union-value/-/union-value-1.0.0.tgz#5c71c34cb5bad5dcebe3ea0cd08207ba5aa1aea4" 3271 | dependencies: 3272 | arr-union "^3.1.0" 3273 | get-value "^2.0.6" 3274 | is-extendable "^0.1.1" 3275 | set-value "^0.4.3" 3276 | 3277 | unset-value@^1.0.0: 3278 | version "1.0.0" 3279 | resolved "https://registry.npmjs.org/unset-value/-/unset-value-1.0.0.tgz#8376873f7d2335179ffb1e6fc3a8ed0dfc8ab559" 3280 | dependencies: 3281 | has-value "^0.3.1" 3282 | isobject "^3.0.0" 3283 | 3284 | urix@^0.1.0: 3285 | version "0.1.0" 3286 | resolved "https://registry.npmjs.org/urix/-/urix-0.1.0.tgz#da937f7a62e21fec1fd18d49b35c2935067a6c72" 3287 | 3288 | use@^3.1.0: 3289 | version "3.1.1" 3290 | resolved "https://registry.npmjs.org/use/-/use-3.1.1.tgz#d50c8cac79a19fbc20f2911f56eb973f4e10070f" 3291 | 3292 | util-deprecate@~1.0.1: 3293 | version "1.0.2" 3294 | resolved "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz#450d4dc9fa70de732762fbd2d4a28981419a0ccf" 3295 | 3296 | util.promisify@^1.0.0: 3297 | version "1.0.0" 3298 | resolved "https://registry.npmjs.org/util.promisify/-/util.promisify-1.0.0.tgz#440f7165a459c9a16dc145eb8e72f35687097030" 3299 | dependencies: 3300 | define-properties "^1.1.2" 3301 | object.getownpropertydescriptors "^2.0.3" 3302 | 3303 | uuid@^3.0.0, uuid@^3.1.0: 3304 | version "3.3.2" 3305 | resolved "https://registry.npmjs.org/uuid/-/uuid-3.3.2.tgz#1b4af4955eb3077c501c23872fc6513811587131" 3306 | 3307 | validate-npm-package-license@^3.0.1: 3308 | version "3.0.3" 3309 | resolved "https://registry.npmjs.org/validate-npm-package-license/-/validate-npm-package-license-3.0.3.tgz#81643bcbef1bdfecd4623793dc4648948ba98338" 3310 | dependencies: 3311 | spdx-correct "^3.0.0" 3312 | spdx-expression-parse "^3.0.0" 3313 | 3314 | verror@1.10.0: 3315 | version "1.10.0" 3316 | resolved "https://registry.npmjs.org/verror/-/verror-1.10.0.tgz#3a105ca17053af55d6e270c1f8288682e18da400" 3317 | dependencies: 3318 | assert-plus "^1.0.0" 3319 | core-util-is "1.0.2" 3320 | extsprintf "^1.2.0" 3321 | 3322 | w3c-hr-time@^1.0.1: 3323 | version "1.0.1" 3324 | resolved "https://registry.npmjs.org/w3c-hr-time/-/w3c-hr-time-1.0.1.tgz#82ac2bff63d950ea9e3189a58a65625fedf19045" 3325 | dependencies: 3326 | browser-process-hrtime "^0.1.2" 3327 | 3328 | walker@~1.0.5: 3329 | version "1.0.7" 3330 | resolved "https://registry.npmjs.org/walker/-/walker-1.0.7.tgz#2f7f9b8fd10d677262b18a884e28d19618e028fb" 3331 | dependencies: 3332 | makeerror "1.0.x" 3333 | 3334 | watch@~0.18.0: 3335 | version "0.18.0" 3336 | resolved "https://registry.npmjs.org/watch/-/watch-0.18.0.tgz#28095476c6df7c90c963138990c0a5423eb4b986" 3337 | dependencies: 3338 | exec-sh "^0.2.0" 3339 | minimist "^1.2.0" 3340 | 3341 | webidl-conversions@^4.0.2: 3342 | version "4.0.2" 3343 | resolved "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-4.0.2.tgz#a855980b1f0b6b359ba1d5d9fb39ae941faa63ad" 3344 | 3345 | whatwg-encoding@^1.0.1, whatwg-encoding@^1.0.3: 3346 | version "1.0.3" 3347 | resolved "https://registry.npmjs.org/whatwg-encoding/-/whatwg-encoding-1.0.3.tgz#57c235bc8657e914d24e1a397d3c82daee0a6ba3" 3348 | dependencies: 3349 | iconv-lite "0.4.19" 3350 | 3351 | whatwg-mimetype@^2.0.0, whatwg-mimetype@^2.1.0: 3352 | version "2.1.0" 3353 | resolved "https://registry.npmjs.org/whatwg-mimetype/-/whatwg-mimetype-2.1.0.tgz#f0f21d76cbba72362eb609dbed2a30cd17fcc7d4" 3354 | 3355 | whatwg-url@^6.4.0, whatwg-url@^6.4.1: 3356 | version "6.5.0" 3357 | resolved "https://registry.npmjs.org/whatwg-url/-/whatwg-url-6.5.0.tgz#f2df02bff176fd65070df74ad5ccbb5a199965a8" 3358 | dependencies: 3359 | lodash.sortby "^4.7.0" 3360 | tr46 "^1.0.1" 3361 | webidl-conversions "^4.0.2" 3362 | 3363 | which-module@^2.0.0: 3364 | version "2.0.0" 3365 | resolved "https://registry.npmjs.org/which-module/-/which-module-2.0.0.tgz#d9ef07dce77b9902b8a3a8fa4b31c3e3f7e6e87a" 3366 | 3367 | which@^1.2.12, which@^1.2.9, which@^1.3.0: 3368 | version "1.3.1" 3369 | resolved "https://registry.npmjs.org/which/-/which-1.3.1.tgz#a45043d54f5805316da8d62f9f50918d3da70b0a" 3370 | dependencies: 3371 | isexe "^2.0.0" 3372 | 3373 | wide-align@^1.1.0: 3374 | version "1.1.3" 3375 | resolved "https://registry.npmjs.org/wide-align/-/wide-align-1.1.3.tgz#ae074e6bdc0c14a431e804e624549c633b000457" 3376 | dependencies: 3377 | string-width "^1.0.2 || 2" 3378 | 3379 | window-size@0.1.0: 3380 | version "0.1.0" 3381 | resolved "https://registry.npmjs.org/window-size/-/window-size-0.1.0.tgz#5438cd2ea93b202efa3a19fe8887aee7c94f9c9d" 3382 | 3383 | wordwrap@0.0.2: 3384 | version "0.0.2" 3385 | resolved "https://registry.npmjs.org/wordwrap/-/wordwrap-0.0.2.tgz#b79669bb42ecb409f83d583cad52ca17eaa1643f" 3386 | 3387 | wordwrap@~0.0.2: 3388 | version "0.0.3" 3389 | resolved "https://registry.npmjs.org/wordwrap/-/wordwrap-0.0.3.tgz#a3d5da6cd5c0bc0008d37234bbaf1bed63059107" 3390 | 3391 | wordwrap@~1.0.0: 3392 | version "1.0.0" 3393 | resolved "https://registry.npmjs.org/wordwrap/-/wordwrap-1.0.0.tgz#27584810891456a4171c8d0226441ade90cbcaeb" 3394 | 3395 | wrap-ansi@^2.0.0: 3396 | version "2.1.0" 3397 | resolved "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-2.1.0.tgz#d8fc3d284dd05794fe84973caecdd1cf824fdd85" 3398 | dependencies: 3399 | string-width "^1.0.1" 3400 | strip-ansi "^3.0.1" 3401 | 3402 | wrappy@1: 3403 | version "1.0.2" 3404 | resolved "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz#b5243d8f3ec1aa35f1364605bc0d1036e30ab69f" 3405 | 3406 | write-file-atomic@^2.1.0: 3407 | version "2.3.0" 3408 | resolved "https://registry.npmjs.org/write-file-atomic/-/write-file-atomic-2.3.0.tgz#1ff61575c2e2a4e8e510d6fa4e243cce183999ab" 3409 | dependencies: 3410 | graceful-fs "^4.1.11" 3411 | imurmurhash "^0.1.4" 3412 | signal-exit "^3.0.2" 3413 | 3414 | ws@^5.2.0: 3415 | version "5.2.2" 3416 | resolved "https://registry.npmjs.org/ws/-/ws-5.2.2.tgz#dffef14866b8e8dc9133582514d1befaf96e980f" 3417 | dependencies: 3418 | async-limiter "~1.0.0" 3419 | 3420 | xml-name-validator@^3.0.0: 3421 | version "3.0.0" 3422 | resolved "https://registry.npmjs.org/xml-name-validator/-/xml-name-validator-3.0.0.tgz#6ae73e06de4d8c6e47f9fb181f78d648ad457c6a" 3423 | 3424 | xtend@^4.0.0: 3425 | version "4.0.1" 3426 | resolved "https://registry.npmjs.org/xtend/-/xtend-4.0.1.tgz#a5c6d532be656e23db820efb943a1f04998d63af" 3427 | 3428 | y18n@^3.2.1: 3429 | version "3.2.1" 3430 | resolved "https://registry.npmjs.org/y18n/-/y18n-3.2.1.tgz#6d15fba884c08679c0d77e88e7759e811e07fa41" 3431 | 3432 | yallist@^2.1.2: 3433 | version "2.1.2" 3434 | resolved "https://registry.npmjs.org/yallist/-/yallist-2.1.2.tgz#1c11f9218f076089a47dd512f93c6699a6a81d52" 3435 | 3436 | yallist@^3.0.0, yallist@^3.0.2: 3437 | version "3.0.2" 3438 | resolved "https://registry.npmjs.org/yallist/-/yallist-3.0.2.tgz#8452b4bb7e83c7c188d8041c1a837c773d6d8bb9" 3439 | 3440 | yargs-parser@^9.0.2: 3441 | version "9.0.2" 3442 | resolved "https://registry.npmjs.org/yargs-parser/-/yargs-parser-9.0.2.tgz#9ccf6a43460fe4ed40a9bb68f48d43b8a68cc077" 3443 | dependencies: 3444 | camelcase "^4.1.0" 3445 | 3446 | yargs@^11.0.0: 3447 | version "11.1.0" 3448 | resolved "https://registry.npmjs.org/yargs/-/yargs-11.1.0.tgz#90b869934ed6e871115ea2ff58b03f4724ed2d77" 3449 | dependencies: 3450 | cliui "^4.0.0" 3451 | decamelize "^1.1.1" 3452 | find-up "^2.1.0" 3453 | get-caller-file "^1.0.1" 3454 | os-locale "^2.0.0" 3455 | require-directory "^2.1.1" 3456 | require-main-filename "^1.0.1" 3457 | set-blocking "^2.0.0" 3458 | string-width "^2.0.0" 3459 | which-module "^2.0.0" 3460 | y18n "^3.2.1" 3461 | yargs-parser "^9.0.2" 3462 | 3463 | yargs@~3.10.0: 3464 | version "3.10.0" 3465 | resolved "https://registry.npmjs.org/yargs/-/yargs-3.10.0.tgz#f7ee7bd857dd7c1d2d38c0e74efbd681d1431fd1" 3466 | dependencies: 3467 | camelcase "^1.0.2" 3468 | cliui "^2.1.0" 3469 | decamelize "^1.0.0" 3470 | window-size "0.1.0" 3471 | --------------------------------------------------------------------------------