diff --git a/.gitignore b/.gitignore index cc5d70dff..3c27c8bc5 100644 --- a/.gitignore +++ b/.gitignore @@ -23,4 +23,4 @@ test/test-project/node_modules/* test/test-project/node_modules/@asyncapi/* !test/test-project/node_modules/@asyncapi/html-template/ test/test-project/package-lock.json -test/test-project/verdaccio/storage/.verdaccio-db.json \ No newline at end of file +test/test-project/verdaccio/storage/ \ No newline at end of file diff --git a/lib/generator.js b/lib/generator.js index d8c3b0824..53c155e03 100644 --- a/lib/generator.js +++ b/lib/generator.js @@ -374,6 +374,13 @@ class Generator { if (!document) { const err = new Error('Input is not a correct AsyncAPI document so it cannot be processed.'); err.diagnostics = diagnostics; + for (const diag of diagnostics) { + console.error( + `Diagnostic err: ${diag['message']} in path ${JSON.stringify(diag['path'])} starting `+ + `L${diag['range']['start']['line'] + 1} C${diag['range']['start']['character']}, ending `+ + `L${diag['range']['end']['line'] + 1} C${diag['range']['end']['character']}` + ); + } throw err; } else { this.asyncapi = document; @@ -1055,4 +1062,4 @@ class Generator { Generator.DEFAULT_TEMPLATES_DIR = DEFAULT_TEMPLATES_DIR; Generator.TRANSPILED_TEMPLATE_LOCATION = TRANSPILED_TEMPLATE_LOCATION; -module.exports = Generator; \ No newline at end of file +module.exports = Generator; diff --git a/lib/index.js b/lib/index.js deleted file mode 100644 index 807283193..000000000 --- a/lib/index.js +++ /dev/null @@ -1,8 +0,0 @@ - -const path = require('path'); -const tempOutputResults = '../temp/integrationTestResult'; -const outputDir = path.resolve(tempOutputResults, Math.random().toString(36).substring(7)); -const templateName = '@asyncapi/html-template'; -const Generator = require('../lib/generator'); -const gen = new Generator(templateName, outputDir, __dirname, {debug: true, registry: {url: 'http://localhost:4873/', username: 'admin', password: 'nimda'}}); -console.log(gen.installTemplate()); \ No newline at end of file diff --git a/test/test-project/storage/@asyncapi/html-template/filters/all.js b/test/test-project/storage/@asyncapi/html-template/filters/all.js new file mode 100644 index 000000000..51712991f --- /dev/null +++ b/test/test-project/storage/@asyncapi/html-template/filters/all.js @@ -0,0 +1,117 @@ +const filter = module.exports; + +function isExpandable(obj) { + const fun = (obj) => typeof obj === 'function'; + if ( + (fun(obj.type) && obj.type() === 'object') || + (fun(obj.type) && obj.type() === 'array') || + (fun(obj.oneOf) && obj.oneOf() && obj.oneOf().length) || + (fun(obj.anyOf) && obj.anyOf() && obj.anyOf().length) || + (fun(obj.allOf) && obj.allOf() && obj.allOf().length) || + (fun(obj.items) && obj.items()) || + (fun(obj.additionalItems) && obj.additionalItems()) || + (fun(obj.properties) && obj.properties() && Object.keys(obj.properties()).length) || + (fun(obj.additionalProperties) && obj.additionalProperties()) || + (fun(obj.extensions) && obj.extensions() && + Object.keys(obj.extensions()).filter(e => !e.startsWith('x-parser-')).length) || + (fun(obj.patternProperties) && Object.keys(obj.patternProperties()).length) + ) return true; + + return false; +} +filter.isExpandable = isExpandable; + +function nonParserExtensions(schema) { + if (!schema || !schema.extensions || typeof schema.extensions !== 'function') return new Map(); + const extensions = Object.entries(schema.extensions()); + return new Map(extensions.filter(e => !e[0].startsWith('x-parser-')).filter(Boolean)); +} +filter.nonParserExtensions = nonParserExtensions; + +/** + * Check if there is a channel which does not have one of the tags specified. + */ +function containTags(object, tagsToCheck) { + if (!object) { + throw new Error('object for containsTag was not provided?'); + } + + if (!tagsToCheck) { + throw new Error('tagsToCheck for containsTag was not provided?'); + } + + //Ensure if only 1 tag are provided it is converted to array. + if (tagsToCheck && !Array.isArray(tagsToCheck)) { + tagsToCheck = [tagsToCheck]; + } + //Check if pubsub contain one of the tags to check. + const check = (tag) => { + let found = false; + for (const tagToCheckIndex in tagsToCheck) { + const tagToCheck = tagsToCheck[tagToCheckIndex]._json; + const tagName = tag.name; + if ((tagToCheck && tagToCheck.name === tagName) || + tagsToCheck[tagToCheckIndex] === tagName) { + found = true; + } + } + return found; + }; + + //Ensure tags are checked for the group tags + return object._json.tags ? object._json.tags.find(check) != null : false; +} +filter.containTags = containTags; + +/** + * Check if there is a channel which does not have one of the tags specified. + */ +function containNoTag(channels, tagsToCheck) { + if (!channels) { + throw new Error('Channels for containNoTag was not provided?'); + } + for (const channelIndex in channels) { + const channel = channels[channelIndex]._json; + //Check if the channel contains publish or subscribe which does not contain tags + if (channel.publish && (!channel.publish.tags || channel.publish.tags.length == 0) || + channel.subscribe && (!channel.subscribe.tags || channel.subscribe.tags.length == 0) + ) { + //one does not contain tags + return true; + } + + //Check if channel publish or subscribe does not contain one of the tags to check. + const check = (tag) => { + let found = false; + for (const tagToCheckIndex in tagsToCheck) { + const tagToCheck = tagsToCheck[tagToCheckIndex]._json; + const tagName = tag.name; + if ((typeof tagToCheck !== 'undefined' && tagToCheck.name === tagName) || + tagsToCheck[tagToCheckIndex] === tagName) { + found = true; + } + } + return found; + }; + + //Ensure pubsub tags are checked for the group tags + const publishContainsNoTag = channel.publish && channel.publish.tags ? channel.publish.tags.find(check) == null : false; + if (publishContainsNoTag === true) return true; + const subscribeContainsNoTag = channel.subscribe && channel.subscribe.tags ? channel.subscribe.tags.find(check) == null : false; + if (subscribeContainsNoTag === true) return true; + } + return false; +} +filter.containNoTag = containNoTag; + +function operationsTags(object) { + const tags = new Set(); + const extractName = (tags, acc) => tags.forEach((tag) => acc.add(tag.name())); + object.channelNames().forEach(channelName => { + const channel = object.channel(channelName); + if (channel.hasPublish() && channel.publish().hasTags()) extractName(channel.publish().tags(), tags); + if (channel.hasSubscribe() && channel.subscribe().hasTags()) extractName(channel.subscribe().tags(), tags); + }); + return Array.from(tags); +} +filter.operationsTags = operationsTags; diff --git a/test/test-project/storage/@asyncapi/html-template/hooks/01_removeNotRelevantParts.js b/test/test-project/storage/@asyncapi/html-template/hooks/01_removeNotRelevantParts.js new file mode 100644 index 000000000..2f180e759 --- /dev/null +++ b/test/test-project/storage/@asyncapi/html-template/hooks/01_removeNotRelevantParts.js @@ -0,0 +1,28 @@ +const path = require('path'); +const rimraf = require('rimraf'); + +module.exports = { + 'generate:after': generator => { + const params = generator.templateParams; + const singleFile = params.singleFile === 'true'; + + if (singleFile) { + const jsDir = path.resolve(generator.targetDir, 'js'); + const cssDir = path.resolve(generator.targetDir, 'css'); + + const callback = (error) => { + if (error) { + throw error; + } + }; + + const opts = { + disableGlob: true, + maxBusyTries: 3 + }; + + rimraf(jsDir, opts, callback); + rimraf(cssDir, opts, callback); + } + } +}; diff --git a/test/test-project/storage/@asyncapi/html-template/hooks/02_renameOutFile.js b/test/test-project/storage/@asyncapi/html-template/hooks/02_renameOutFile.js new file mode 100644 index 000000000..32b17520c --- /dev/null +++ b/test/test-project/storage/@asyncapi/html-template/hooks/02_renameOutFile.js @@ -0,0 +1,10 @@ +const fs = require('fs'); + +module.exports = { + 'generate:after': generator => { + if (generator.templateParams.outFilename !== 'index.html') { + fs.renameSync(`${generator.targetDir}/index.html`, + `${generator.targetDir}/${generator.templateParams.outFilename}`); + } + } +}; diff --git a/test/test-project/storage/@asyncapi/html-template/hooks/generatePdf.js b/test/test-project/storage/@asyncapi/html-template/hooks/generatePdf.js new file mode 100644 index 000000000..0aea6b332 --- /dev/null +++ b/test/test-project/storage/@asyncapi/html-template/hooks/generatePdf.js @@ -0,0 +1,27 @@ +const puppeteer = require('puppeteer'); +const path = require('path'); + +module.exports = { + 'generate:after': generatePdf +}; + +async function generatePdf(generator) { + const targetDir = generator.targetDir; + const parameters = generator.templateParams; + + //all actions of this hook depend on parameters passed by the user, if non are provided we should just stop the hook + if (!parameters || parameters.pdf !== 'true') return; + + const browser = await puppeteer.launch({args: ['--no-sandbox', '--disable-setuid-sandbox']}); + const page = await browser.newPage(); + + await page.goto(`file://${path.join(targetDir, 'index.html')}`, { waitUntil: 'networkidle0' }); + + await page.$$eval('div.payload-examples > div.js-prop', links => links.forEach(link => link.click())); + await page.$$eval('div.headers-examples > div.js-prop', links => links.forEach(link => link.click())); + await page.$$eval('div.all-messages div.js-prop', links => links.forEach(link => link.click())); + + await page.pdf({ format: 'A4', path: `${targetDir}/index.pdf`, printBackground: true }); + + browser.close(); +} diff --git a/test/test-project/storage/@asyncapi/html-template/tailwind.config.js b/test/test-project/storage/@asyncapi/html-template/tailwind.config.js new file mode 100644 index 000000000..529004ac2 --- /dev/null +++ b/test/test-project/storage/@asyncapi/html-template/tailwind.config.js @@ -0,0 +1,145 @@ +module.exports = { + purge: ['./template/**/*.html', './partials/**/*.html'], + darkMode: false, // or 'media' or 'class' + theme: { + // use default styles of tailwind v1: https://tailwindcss.com/docs/upgrading-to-v2#configure-your-color-palette-explicitly + colors: { + transparent: 'transparent', + current: 'currentColor', + + black: '#000', + white: '#fff', + gray: { + 100: '#f7fafc', + 200: '#edf2f7', + 300: '#e2e8f0', + 400: '#cbd5e0', + 500: '#a0aec0', + 600: '#718096', + 700: '#4a5568', + 800: '#2d3748', + 900: '#1a202c', + }, + red: { + 100: '#fff5f5', + 200: '#fed7d7', + 300: '#feb2b2', + 400: '#fc8181', + 500: '#f56565', + 600: '#e53e3e', + 700: '#c53030', + 800: '#9b2c2c', + 900: '#742a2a', + }, + orange: { + 100: '#fffaf0', + 200: '#feebc8', + 300: '#fbd38d', + 400: '#f6ad55', + 500: '#ed8936', + 600: '#dd6b20', + 700: '#c05621', + 800: '#9c4221', + 900: '#7b341e', + }, + yellow: { + 100: '#fffff0', + 200: '#fefcbf', + 300: '#faf089', + 400: '#f6e05e', + 500: '#ecc94b', + 600: '#d69e2e', + 700: '#b7791f', + 800: '#975a16', + 900: '#744210', + }, + green: { + 100: '#f0fff4', + 200: '#c6f6d5', + 300: '#9ae6b4', + 400: '#68d391', + 500: '#48bb78', + 600: '#38a169', + 700: '#2f855a', + 800: '#276749', + 900: '#22543d', + }, + teal: { + 100: '#e6fffa', + 200: '#b2f5ea', + 300: '#81e6d9', + 400: '#4fd1c5', + 500: '#38b2ac', + 600: '#319795', + 700: '#2c7a7b', + 800: '#285e61', + 900: '#234e52', + }, + blue: { + 100: '#ebf8ff', + 200: '#bee3f8', + 300: '#90cdf4', + 400: '#63b3ed', + 500: '#4299e1', + 600: '#3182ce', + 700: '#2b6cb0', + 800: '#2c5282', + 900: '#2a4365', + }, + indigo: { + 100: '#ebf4ff', + 200: '#c3dafe', + 300: '#a3bffa', + 400: '#7f9cf5', + 500: '#667eea', + 600: '#5a67d8', + 700: '#4c51bf', + 800: '#434190', + 900: '#3c366b', + }, + purple: { + 100: '#faf5ff', + 200: '#e9d8fd', + 300: '#d6bcfa', + 400: '#b794f4', + 500: '#9f7aea', + 600: '#805ad5', + 700: '#6b46c1', + 800: '#553c9a', + 900: '#44337a', + }, + pink: { + 100: '#fff5f7', + 200: '#fed7e2', + 300: '#fbb6ce', + 400: '#f687b3', + 500: '#ed64a6', + 600: '#d53f8c', + 700: '#b83280', + 800: '#97266d', + 900: '#702459', + }, + }, + fontSize: { + xs: '0.75rem', + sm: '0.875rem', + base: '1rem', + lg: '1.125rem', + xl: '1.25rem', + '2xl': '1.5rem', + '3xl': '1.875rem', + '4xl': '2.25rem', + '5xl': '3rem', + '6xl': '4rem', + }, + borderColor: (theme) => ({ + ...theme('colors'), + DEFAULT: theme('colors.gray.400', 'currentColor'), + }), + extend: {}, + }, + variants: { + extend: {}, + }, + plugins: [], +}; diff --git a/test/test-project/storage/@asyncapi/html-template/template/js/highlight.min.js b/test/test-project/storage/@asyncapi/html-template/template/js/highlight.min.js new file mode 100644 index 000000000..10f188c31 --- /dev/null +++ b/test/test-project/storage/@asyncapi/html-template/template/js/highlight.min.js @@ -0,0 +1,44 @@ +/* + Highlight.js 10.2.0 (da7d149b) + License: BSD-3-Clause + Copyright (c) 2006-2020, Ivan Sagalaev +*/ +var hljs=(function() {'use strict'; function e(n) {Object.freeze(n); const t='function'===typeof n; return Object.getOwnPropertyNames(n).forEach(((r) => {!Object.hasOwnProperty.call(n,r)||null===n[r]||'object'!==typeof n[r]&&'function'!==typeof n[r]||t&&('caller'===r||'callee'===r||'arguments'===r)||Object.isFrozen(n[r])||e(n[r]);})),n;} class n {constructor(e) {void 0===e.data&&(e.data={}),this.data=e.data;}ignoreMatch() {this.ignore=!0;}} function t(e) {return e.replace(/&/g,'&').replace(//g,'>').replace(/"/g,'"').replace(/'/g,''');} function r(e,...n) {const t={}; for (const n in e)t[n]=e[n]; return n.forEach(((e) => {for (const n in e)t[n]=e[n];})),t;} function a(e) {return e.nodeName.toLowerCase();} const i=Object.freeze({__proto__: null,escapeHTML: t,inherit: r,nodeStream(e) {const n=[]; return (function e(t,r) {for (let i=t.firstChild; i; i=i.nextSibling)3===i.nodeType?r+=i.nodeValue.length:1===i.nodeType&&(n.push({event: 'start',offset: r,node: i}),r=e(i,r),a(i).match(/br|hr|img|input/)||n.push({event: 'stop',offset: r,node: i})); return r;}(e,0)),n;},mergeStreams(e,n,r) {let i=0,s='',o=[]; function l() {return e.length&&n.length?e[0].offset!==n[0].offset?e[0].offset {return ` ${e.nodeName}="${t(e.value)}"`;})).join('')}>`;} function u(e) {s+=``;} function g(e) {('start'===e.event?c:u)(e.node);} while (e.length||n.length) {let d=l(); if (s+=t(r.substring(i,d[0].offset)),i=d[0].offset,d===e) {o.reverse().forEach(u); do {g(d.splice(0,1)[0]),d=l();} while (d===e&&d.length&&d[0].offset===i);o.reverse().forEach(c);} else 'start'===d[0].event?o.push(d[0].node):o.pop(),g(d.splice(0,1)[0]);} return s+t(r.substr(i));}}); const s='',o=e => !!e.kind; class l {constructor(e,n) {this.buffer='',this.classPrefix=n.classPrefix,e.walk(this);}addText(e) {this.buffer+=t(e);}openNode(e) {if (!o(e)) return; let n=e.kind; e.sublanguage||(n=`${this.classPrefix}${n}`),this.span(n);}closeNode(e) {o(e)&&(this.buffer+=s);}value() {return this.buffer;}span(e) {this.buffer+=``;}} class c {constructor() {this.rootNode={children: []},this.stack=[this.rootNode];} get top() {return this.stack[this.stack.length-1];} get root() {return this.rootNode;}add(e) {this.top.children.push(e);}openNode(e) {const n={kind: e,children: []}; this.add(n),this.stack.push(n);}closeNode() {if (this.stack.length>1) return this.stack.pop();}closeAllNodes() {while (this.closeNode());}toJSON() {return JSON.stringify(this.rootNode,null,4);}walk(e) {return this.constructor._walk(e,this.rootNode);} static _walk(e,n) {return 'string'===typeof n?e.addText(n):n.children&&(e.openNode(n),n.children.forEach(n => this._walk(e,n)),e.closeNode(n)),e;} static _collapse(e) {'string'!==typeof e&&e.children&&(e.children.every(e => 'string'===typeof e)?e.children=[e.children.join('')]:e.children.forEach(e => {c._collapse(e);}));}} class u extends c {constructor(e) {super(),this.options=e;}addKeyword(e,n) {''!==e&&(this.openNode(n),this.addText(e),this.closeNode());}addText(e) {''!==e&&this.add(e);}addSublanguage(e,n) {const t=e.root; t.kind=n,t.sublanguage=!0,this.add(t);}toHTML() {return new l(this,this.options).value();}finalize() {return !0;}} function g(e) {return e?'string'===typeof e?e:e.source:null;} const d='(-?)(\\b0[xX][a-fA-F0-9]+|(\\b\\d+(\\.\\d*)?|\\.\\d+)([eE][-+]?\\d+)?)',h={begin: '\\\\[\\s\\S]',relevance: 0},f={className: 'string',begin: '\'',end: '\'',illegal: '\\n',contains: [h]},p={className: 'string',begin: '"',end: '"',illegal: '\\n',contains: [h]},m={begin: /\b(a|an|the|are|I'm|isn't|don't|doesn't|won't|but|just|should|pretty|simply|enough|gonna|going|wtf|so|such|will|you|your|they|like|more)\b/},b=function(e,n,t={}) {const a=r({className: 'comment',begin: e,end: n,contains: []},t); return a.contains.push(m),a.contains.push({className: 'doctag',begin: '(?:TODO|FIXME|NOTE|BUG|OPTIMIZE|HACK|XXX):',relevance: 0}),a;},v=b('//','$'),x=b('/\\*','\\*/'),E=b('#','$'); const _=Object.freeze({__proto__: null,IDENT_RE: '[a-zA-Z]\\w*',UNDERSCORE_IDENT_RE: '[a-zA-Z_]\\w*',NUMBER_RE: '\\b\\d+(\\.\\d+)?',C_NUMBER_RE: d,BINARY_NUMBER_RE: '\\b(0b[01]+)',RE_STARTERS_RE: '!|!=|!==|%|%=|&|&&|&=|\\*|\\*=|\\+|\\+=|,|-|-=|/=|/|:|;|<<|<<=|<=|<|===|==|=|>>>=|>>=|>=|>>>|>>|>|\\?|\\[|\\{|\\(|\\^|\\^=|\\||\\|=|\\|\\||~',SHEBANG: (e={}) => {const n=/^#![ ]*\//; return e.binary&&(e.begin=(function(...e) {return e.map(e => g(e)).join('');}(n,/.*\b/,e.binary,/\b.*/))),r({className: 'meta',begin: n,end: /$/,relevance: 0,'on:begin': (e,n) => {0!==e.index&&n.ignoreMatch();}},e);},BACKSLASH_ESCAPE: h,APOS_STRING_MODE: f,QUOTE_STRING_MODE: p,PHRASAL_WORDS_MODE: m,COMMENT: b,C_LINE_COMMENT_MODE: v,C_BLOCK_COMMENT_MODE: x,HASH_COMMENT_MODE: E,NUMBER_MODE: {className: 'number',begin: '\\b\\d+(\\.\\d+)?',relevance: 0},C_NUMBER_MODE: {className: 'number',begin: d,relevance: 0},BINARY_NUMBER_MODE: {className: 'number',begin: '\\b(0b[01]+)',relevance: 0},CSS_NUMBER_MODE: {className: 'number',begin: '\\b\\d+(\\.\\d+)?(%|em|ex|ch|rem|vw|vh|vmin|vmax|cm|mm|in|pt|pc|px|deg|grad|rad|turn|s|ms|Hz|kHz|dpi|dpcm|dppx)?',relevance: 0},REGEXP_MODE: {begin: /(?=\/[^/\n]*\/)/,contains: [{className: 'regexp',begin: /\//,end: /\/[gimuy]*/,illegal: /\n/,contains: [h,{begin: /\[/,end: /\]/,relevance: 0,contains: [h]}]}]},TITLE_MODE: {className: 'title',begin: '[a-zA-Z]\\w*',relevance: 0},UNDERSCORE_TITLE_MODE: {className: 'title',begin: '[a-zA-Z_]\\w*',relevance: 0},METHOD_GUARD: {begin: '\\.\\s*[a-zA-Z_]\\w*',relevance: 0},END_SAME_AS_BEGIN(e) {return Object.assign(e,{'on:begin': (e,n) => {n.data._beginMatch=e[1];},'on:end': (e,n) => {n.data._beginMatch!==e[1]&&n.ignoreMatch();}});}}),w='of and for in not or if then'.split(' '); function N(e,n) {return n?+n:(function(e) {return w.includes(e.toLowerCase());}(e))?0:1;} const y={props: ['language','code','autodetect'],data() {return {detectedLanguage: '',unknownLanguage: !1};},computed: {className() {return this.unknownLanguage?'':`hljs ${this.detectedLanguage}`;},highlighted() {if (!this.autoDetect&&!hljs.getLanguage(this.language)) return console.warn(`The language "${this.language}" you specified could not be found.`),this.unknownLanguage=!0,t(this.code); let e; return this.autoDetect?(e=hljs.highlightAuto(this.code),this.detectedLanguage=e.language):(e=hljs.highlight(this.language,this.code,this.ignoreIllegals),this.detectectLanguage=this.language),e.value;},autoDetect() {return !(this.language&&(e=this.autodetect,!e&&''!==e)); let e;},ignoreIllegals: () => !0},render(e) {return e('pre',{},[e('code',{class: this.className,domProps: {innerHTML: this.highlighted}})]);}},R={install(e) {e.component('highlightjs',y);}},k=t,O=r,{nodeStream: M,mergeStreams: L}=i,T=Symbol('nomatch'); return (function(t) {let a=[],i=Object.create(null),s=Object.create(null),o=[],l=!0,c=/(^(<[^>]+>|\t|)+|\n)/gm,d='Could not find the language \'{}\', did you forget to load/include a language module?'; const h={disableAutodetect: !0,name: 'Plain text',contains: []}; let f={noHighlightRe: /^(no-?highlight)$/i,languageDetectRe: /\blang(?:uage)?-([\w-]+)\b/i,classPrefix: 'hljs-',tabReplace: null,useBR: !1,languages: null,__emitter: u}; function p(e) {return f.noHighlightRe.test(e);} function m(e,n,t,r) {const a={code: n,language: e}; S('before:highlight',a); const i=a.result?a.result:b(a.language,a.code,t,r); return i.code=a.code,S('after:highlight',i),i;} function b(e,t,a,s) {const o=t; function c(e,n) {const t=E.case_insensitive?n[0].toLowerCase():n[0]; return Object.prototype.hasOwnProperty.call(e.keywords,t)&&e.keywords[t];} function u() {null!=R.subLanguage?(function() {if (''!==L) {let e=null; if ('string'===typeof R.subLanguage) {if (!i[R.subLanguage]) return void M.addText(L); e=b(R.subLanguage,L,!0,O[R.subLanguage]),O[R.subLanguage]=e.top;} else e=v(L,R.subLanguage.length?R.subLanguage:null); R.relevance>0&&(j+=e.relevance),M.addSublanguage(e.emitter,e.language);}}()):(function() {if (!R.keywords) return void M.addText(L); let e=0; R.keywordPatternRe.lastIndex=0; let n=R.keywordPatternRe.exec(L),t=''; while (n) {t+=L.substring(e,n.index); const r=c(R,n); if (r) {const [e,a]=r; M.addText(t),t='',j+=a,M.addKeyword(n[0],e);} else t+=n[0]; e=R.keywordPatternRe.lastIndex,n=R.keywordPatternRe.exec(L);}t+=L.substr(e),M.addText(t);}()),L='';} function h(e) {return e.className&&M.openNode(e.className),R=Object.create(e,{parent: {value: R}});} function p(e) {return 0===R.matcher.regexIndex?(L+=e[0],1):(I=!0,0);} let m={}; function x(t,r) {const i=r&&r[0]; if (L+=t,null==i) return u(),0; if ('begin'===m.type&&'end'===r.type&&m.index===r.index&&''===i) {if (L+=o.slice(r.index,r.index+1),!l) {const n=Error('0 width match regex'); throw n.languageName=e,n.badRule=m.rule,n;} return 1;} if (m=r,'begin'===r.type) return (function(e) {const t=e[0],r=e.rule; const a=new n(r),i=[r.__beforeBegin,r['on:begin']]; for (const n of i) if (n&&(n(e,a),a.ignore)) return p(t); return r&&r.endSameAsBegin&&(r.endRe=RegExp(t.replace(/[-/\\^$*+?.()|[\]{}]/g,'\\$&'),'m')),r.skip?L+=t:(r.excludeBegin&&(L+=t),u(),r.returnBegin||r.excludeBegin||(L=t)),h(r),r.returnBegin?0:t.length;}(r)); if ('illegal'===r.type&&!a) {const e=Error(`Illegal lexeme "${i}" for mode "${R.className||''}"`); throw e.mode=R,e;} if ('end'===r.type) {const s=(function(e) {const t=e[0],r=o.substr(e.index),a=(function e(t,r,a) {let i=(function(e,n) {const t=e&&e.exec(n); return t&&0===t.index;}(t.endRe,a)); if (i) {if (t['on:end']) {const e=new n(t); t['on:end'](r,e),e.ignore&&(i=!1);} if (i) {while (t.endsParent&&t.parent)t=t.parent; return t;}} if (t.endsWithParent) return e(t.parent,r,a);}(R,e,r)); if (!a) return T; const i=R; i.skip?L+=t:(i.returnEnd||i.excludeEnd||(L+=t),u(),i.excludeEnd&&(L=t)); do {R.className&&M.closeNode(),R.skip||R.subLanguage||(j+=R.relevance),R=R.parent;} while (R!==a.parent);return a.starts&&(a.endSameAsBegin&&(a.starts.endRe=a.endRe),h(a.starts)),i.returnEnd?0:t.length;}(r)); if (s!==T) return s;} if ('illegal'===r.type&&''===i) return 1; if (S>1e5&&S>3*r.index) throw Error('potential infinite loop, way more iterations than matches'); return L+=i,i.length;} var E=y(e); if (!E) throw console.error(d.replace('{}',e)),Error(`Unknown language: "${e}"`); var _=(function(e) {function n(n,t) {return RegExp(g(n),`m${e.case_insensitive?'i':''}${t?'g':''}`);} class t {constructor() {this.matchIndexes={},this.regexes=[],this.matchAt=1,this.position=0;}addRule(e,n) {n.position=this.position++,this.matchIndexes[this.matchAt]=n,this.regexes.push([n,e]),this.matchAt+=(function(e) {return RegExp(`${e.toString()}|`).exec('').length-1;}(e))+1;}compile() {0===this.regexes.length&&(this.exec=() => null); const e=this.regexes.map(e => e[1]); this.matcherRe=n((function(e,n='|') {for (var t=/\[(?:[^\\\]]|\\.)*\]|\(\??|\\([1-9][0-9]*)|\\./,r=0,a='',i=0; i0&&(a+=n),a+='('; o.length>0;) {const l=t.exec(o); if (null==l) {a+=o; break;}a+=o.substring(0,l.index),o=o.substring(l.index+l[0].length),'\\'===l[0][0]&&l[1]?a+=`\\${+l[1]+s}`:(a+=l[0],'('===l[0]&&r++);}a+=')';} return a;}(e)),!0),this.lastIndex=0;}exec(e) {this.matcherRe.lastIndex=this.lastIndex; const n=this.matcherRe.exec(e); if (!n) return null; const t=n.findIndex((e,n) => n>0&&void 0!==e),r=this.matchIndexes[t]; return n.splice(0,t),Object.assign(n,r);}} class a {constructor() {this.rules=[],this.multiRegexes=[],this.count=0,this.lastIndex=0,this.regexIndex=0;}getMatcher(e) {if (this.multiRegexes[e]) return this.multiRegexes[e]; const n=new t; return this.rules.slice(e).forEach(([e,t]) => n.addRule(e,t)),n.compile(),this.multiRegexes[e]=n,n;}resumingScanAtSamePosition() {return 0!=this.regexIndex;}considerAll() {this.regexIndex=0;}addRule(e,n) {this.rules.push([e,n]),'begin'===n.type&&this.count++;}exec(e) {const n=this.getMatcher(this.regexIndex); n.lastIndex=this.lastIndex; const t=n.exec(e); return t&&(this.regexIndex+=t.position+1,this.regexIndex===this.count&&(this.regexIndex=0)),t;}} function i(e,n) {const t=e.input[e.index-1],r=e.input[e.index+e[0].length]; '.'!==t&&'.'!==r||n.ignoreMatch();} if (e.contains&&e.contains.includes('self')) throw Error('ERR: contains `self` is not supported at the top-level of a language. See documentation.'); return (function t(s,o) {const l=s; if (s.compiled) return l; s.compiled=!0,s.__beforeBegin=null,s.keywords=s.keywords||s.beginKeywords; let c=null; if ('object'===typeof s.keywords&&(c=s.keywords.$pattern,delete s.keywords.$pattern),s.keywords&&(s.keywords=(function(e,n) {const t={}; return 'string'===typeof e?r('keyword',e):Object.keys(e).forEach(((n) => {r(n,e[n]);})),t; function r(e,r) {n&&(r=r.toLowerCase()),r.split(' ').forEach(((n) => {const r=n.split('|'); t[r[0]]=[e,N(r[0],r[1])];}));}}(s.keywords,e.case_insensitive))),s.lexemes&&c) throw Error('ERR: Prefer `keywords.$pattern` to `mode.lexemes`, BOTH are not allowed. (see mode reference) '); return l.keywordPatternRe=n(s.lexemes||c||/\w+/,!0),o&&(s.beginKeywords&&(s.begin=`\\b(${s.beginKeywords.split(' ').join('|')})(?=\\b|\\s)`,s.__beforeBegin=i),s.begin||(s.begin=/\B|\b/),l.beginRe=n(s.begin),s.endSameAsBegin&&(s.end=s.begin),s.end||s.endsWithParent||(s.end=/\B|\b/),s.end&&(l.endRe=n(s.end)),l.terminator_end=g(s.end)||'',s.endsWithParent&&o.terminator_end&&(l.terminator_end+=(s.end?'|':'')+o.terminator_end)),s.illegal&&(l.illegalRe=n(s.illegal)),void 0===s.relevance&&(s.relevance=1),s.contains||(s.contains=[]),s.contains=[].concat(...s.contains.map(((e) => {return (function(e) {return e.variants&&!e.cached_variants&&(e.cached_variants=e.variants.map(((n) => {return r(e,{variants: null},n);}))),e.cached_variants?e.cached_variants:(function e(n) {return !!n&&(n.endsWithParent||e(n.starts));}(e))?r(e,{starts: e.starts?r(e.starts):null}):Object.isFrozen(e)?r(e):e;}('self'===e?s:e));}))),s.contains.forEach(((e) => {t(e,l);})),s.starts&&t(s.starts,o),l.matcher=(function(e) {const n=new a; return e.contains.forEach(e => n.addRule(e.begin,{rule: e,type: 'begin'})),e.terminator_end&&n.addRule(e.terminator_end,{type: 'end'}),e.illegal&&n.addRule(e.illegal,{type: 'illegal'}),n;}(l)),l;}(e));}(E)),w='',R=s||_,O={},M=new f.__emitter(f); !(function() {for (var e=[],n=R; n!==E; n=n.parent)n.className&&e.unshift(n.className); e.forEach(e => M.openNode(e));}()); var L='',j=0,A=0,S=0,I=!1; try {for (R.matcher.considerAll(); ;) {S++,I?I=!1:(R.matcher.lastIndex=A,R.matcher.considerAll()); const e=R.matcher.exec(o); if (!e&&R.matcher.resumingScanAtSamePosition()) {L+=o[A],A+=1; continue;} if (!e) break; const n=x(o.substring(A,e.index),e); A=e.index+n;} return x(o.substr(A)),M.closeAllNodes(),M.finalize(),w=M.toHTML(),{relevance: j,value: w,language: e,illegal: !1,emitter: M,top: R};} catch (n) {if (n.message&&n.message.includes('Illegal')) return {illegal: !0,illegalBy: {msg: n.message,context: o.slice(A-100,A+100),mode: n.mode},sofar: w,relevance: 0,value: k(o),emitter: M}; if (l) return {illegal: !1,relevance: 0,value: k(o),emitter: M,language: e,top: R,errorRaised: n}; throw n;}} function v(e,n) {n=n||f.languages||Object.keys(i); let t=(function(e) {const n={relevance: 0,emitter: new f.__emitter(f),value: k(e),illegal: !1,top: h}; return n.emitter.addText(e),n;}(e)),r=t; return n.filter(y).filter(A).forEach(((n) => {const a=b(n,e,!1); a.language=n,a.relevance>r.relevance&&(r=a),a.relevance>t.relevance&&(r=t,t=a);})),r.language&&(t.second_best=r),t;} function x(e) {return f.tabReplace||f.useBR?e.replace(c,e => '\n'===e?f.useBR?'
':e:f.tabReplace?e.replace(/\t/g,f.tabReplace):e):e;} function E(e) {let n=null; const t=(function(e) {let n=`${e.className} `; n+=e.parentNode?e.parentNode.className:''; const t=f.languageDetectRe.exec(n); if (t) {const r=y(t[1]); return r||(console.warn(d.replace('{}',t[1])),console.warn('Falling back to no-highlight mode for this block.',e)),r?t[1]:'no-highlight';} return n.split(/\s+/).find(e => p(e)||y(e));}(e)); if (p(t)) return; S('before:highlightBlock',{block: e,language: t}),f.useBR?(n=document.createElement('div')).innerHTML=e.innerHTML.replace(/\n/g,'').replace(//g,'\n'):n=e; const r=n.textContent,a=t?m(t,r,!0):v(r),i=M(n); if (i.length) {const e=document.createElement('div'); e.innerHTML=a.value,a.value=L(i,M(e),r);}a.value=x(a.value),S('after:highlightBlock',{block: e,result: a}),e.innerHTML=a.value,e.className=(function(e,n,t) {const r=n?s[n]:t,a=[e.trim()]; return e.match(/\bhljs\b/)||a.push('hljs'),e.includes(r)||a.push(r),a.join(' ').trim();}(e.className,t,a.language)),e.result={language: a.language,re: a.relevance,relavance: a.relevance},a.second_best&&(e.second_best={language: a.second_best.language,re: a.second_best.relevance,relavance: a.second_best.relevance});} const w=() => {if (!w.called) {w.called=!0; const e=document.querySelectorAll('pre code'); a.forEach.call(e,E);}}; function y(e) {return e=(e||'').toLowerCase(),i[e]||i[s[e]];} function j(e,{languageName: n}) {'string'===typeof e&&(e=[e]),e.forEach(e => {s[e]=n;});} function A(e) {const n=y(e); return n&&!n.disableAutodetect;} function S(e,n) {const t=e; o.forEach(((e) => {e[t]&&e[t](n);}));}Object.assign(t,{highlight: m,highlightAuto: v,fixMarkup(e) {return console.warn('fixMarkup is deprecated and will be removed entirely in v11.0'),console.warn('Please see https://github.com/highlightjs/highlight.js/issues/2534'),x(e);},highlightBlock: E,configure(e) {f=O(f,e);},initHighlighting: w,initHighlightingOnLoad() {window.addEventListener('DOMContentLoaded',w,!1);},registerLanguage(e,n) {let r=null; try {r=n(t);} catch (n) {if (console.error('Language definition for \'{}\' could not be registered.'.replace('{}',e)),!l) throw n; console.error(n),r=h;}r.name||(r.name=e),i[e]=r,r.rawDefinition=n.bind(null,t),r.aliases&&j(r.aliases,{languageName: e});},listLanguages() {return Object.keys(i);},getLanguage: y,registerAliases: j,requireLanguage(e) {const n=y(e); if (n) return n; throw Error('The \'{}\' language is required, but not loaded.'.replace('{}',e));},autoDetection: A,inherit: O,addPlugin(e) {o.push(e);},vuePlugin: R}),t.debugMode=function() {l=!1;},t.safeMode=function() {l=!0;},t.versionString='10.2.0'; for (const n in _)'object'===typeof _[n]&&e(_[n]); return Object.assign(t,_),t;}({}));}()); 'object'===typeof exports&&'undefined'!==typeof module&&(module.exports=hljs); +hljs.registerLanguage('apache',(function() {'use strict'; return function(e) {const n={className: 'number',begin: '\\d{1,3}\\.\\d{1,3}\\.\\d{1,3}\\.\\d{1,3}(:\\d{1,5})?'}; return {name: 'Apache config',aliases: ['apacheconf'],case_insensitive: !0,contains: [e.HASH_COMMENT_MODE,{className: 'section',begin: '',contains: [n,{className: 'number',begin: ':\\d{1,5}'},e.inherit(e.QUOTE_STRING_MODE,{relevance: 0})]},{className: 'attribute',begin: /\w+/,relevance: 0,keywords: {nomarkup: 'order deny allow setenv rewriterule rewriteengine rewritecond documentroot sethandler errordocument loadmodule options header listen serverroot servername'},starts: {end: /$/,relevance: 0,keywords: {literal: 'on off all deny allow'},contains: [{className: 'meta',begin: '\\s\\[',end: '\\]$'},{className: 'variable',begin: '[\\$%]\\{',end: '\\}',contains: ['self',{className: 'number',begin: '[\\$%]\\d+'}]},n,{className: 'number',begin: '\\d+'},e.QUOTE_STRING_MODE]}}],illegal: /\S/};};}())); +hljs.registerLanguage('bash',(function() {'use strict'; return function(e) {const s={}; Object.assign(s,{className: 'variable',variants: [{begin: /\$[\w\d#@][\w\d_]*/},{begin: /\$\{/,end: /\}/,contains: [{begin: /:-/,contains: [s]}]}]}); const t={className: 'subst',begin: /\$\(/,end: /\)/,contains: [e.BACKSLASH_ESCAPE]},n={className: 'string',begin: /"/,end: /"/,contains: [e.BACKSLASH_ESCAPE,s,t]}; t.contains.push(n); const a={begin: /\$\(\(/,end: /\)\)/,contains: [{begin: /\d+#[0-9a-f]+/,className: 'number'},e.NUMBER_MODE,s]},i=e.SHEBANG({binary: '(fish|bash|zsh|sh|csh|ksh|tcsh|dash|scsh)',relevance: 10}),c={className: 'function',begin: /\w[\w\d_]*\s*\(\s*\)\s*\{/,returnBegin: !0,contains: [e.inherit(e.TITLE_MODE,{begin: /\w[\w\d_]*/})],relevance: 0}; return {name: 'Bash',aliases: ['sh','zsh'],keywords: {$pattern: /\b-?[a-z\._-]+\b/,keyword: 'if then else elif fi for while in do done case esac function',literal: 'true false',built_in: 'break cd continue eval exec exit export getopts hash pwd readonly return shift test times trap umask unset alias bind builtin caller command declare echo enable help let local logout mapfile printf read readarray source type typeset ulimit unalias set shopt autoload bg bindkey bye cap chdir clone comparguments compcall compctl compdescribe compfiles compgroups compquote comptags comptry compvalues dirs disable disown echotc echoti emulate fc fg float functions getcap getln history integer jobs kill limit log noglob popd print pushd pushln rehash sched setcap setopt stat suspend ttyctl unfunction unhash unlimit unsetopt vared wait whence where which zcompile zformat zftp zle zmodload zparseopts zprof zpty zregexparse zsocket zstyle ztcp',_: '-ne -eq -lt -gt -f -d -e -s -l -a'},contains: [i,e.SHEBANG(),c,a,e.HASH_COMMENT_MODE,n,{className: '',begin: /\\"/},{className: 'string',begin: /'/,end: /'/},s]};};}())); +hljs.registerLanguage('c-like',(function() {'use strict'; return function(e) {function t(e) {return `(?:${e})?`;} const n=`(decltype\\(auto\\)|${t('[a-zA-Z_]\\w*::')}[a-zA-Z_]\\w*${t('<.*?>')})`,r={className: 'keyword',begin: '\\b[a-z\\d_]*_t\\b'},a={className: 'string',variants: [{begin: '(u8?|U|L)?"',end: '"',illegal: '\\n',contains: [e.BACKSLASH_ESCAPE]},{begin: '(u8?|U|L)?\'(\\\\(x[0-9A-Fa-f]{2}|u[0-9A-Fa-f]{4,8}|[0-7]{3}|\\S)|.)',end: '\'',illegal: '.'},e.END_SAME_AS_BEGIN({begin: /(?:u8?|U|L)?R"([^()\\ ]{0,16})\(/,end: /\)([^()\\ ]{0,16})"/})]},i={className: 'number',variants: [{begin: '\\b(0b[01\']+)'},{begin: '(-?)\\b([\\d\']+(\\.[\\d\']*)?|\\.[\\d\']+)(u|U|l|L|ul|UL|f|F|b|B)'},{begin: '(-?)(\\b0[xX][a-fA-F0-9\']+|(\\b[\\d\']+(\\.[\\d\']*)?|\\.[\\d\']+)([eE][-+]?[\\d\']+)?)'}],relevance: 0},s={className: 'meta',begin: /#\s*[a-z]+\b/,end: /$/,keywords: {'meta-keyword': 'if else elif endif define undef warning error line pragma _Pragma ifdef ifndef include'},contains: [{begin: /\\\n/,relevance: 0},e.inherit(a,{className: 'meta-string'}),{className: 'meta-string',begin: /<.*?>/,end: /$/,illegal: '\\n'},e.C_LINE_COMMENT_MODE,e.C_BLOCK_COMMENT_MODE]},o={className: 'title',begin: t('[a-zA-Z_]\\w*::')+e.IDENT_RE,relevance: 0},c=`${t('[a-zA-Z_]\\w*::')+e.IDENT_RE}\\s*\\(`,l={keyword: 'int float while private char char8_t char16_t char32_t catch import module export virtual operator sizeof dynamic_cast|10 typedef const_cast|10 const for static_cast|10 union namespace unsigned long volatile static protected bool template mutable if public friend do goto auto void enum else break extern using asm case typeid wchar_t short reinterpret_cast|10 default double register explicit signed typename try this switch continue inline delete alignas alignof constexpr consteval constinit decltype concept co_await co_return co_yield requires noexcept static_assert thread_local restrict final override atomic_bool atomic_char atomic_schar atomic_uchar atomic_short atomic_ushort atomic_int atomic_uint atomic_long atomic_ulong atomic_llong atomic_ullong new throw return and and_eq bitand bitor compl not not_eq or or_eq xor xor_eq',built_in: 'std string wstring cin cout cerr clog stdin stdout stderr stringstream istringstream ostringstream auto_ptr deque list queue stack vector map set pair bitset multiset multimap unordered_set unordered_map unordered_multiset unordered_multimap priority_queue make_pair array shared_ptr abort terminate abs acos asin atan2 atan calloc ceil cosh cos exit exp fabs floor fmod fprintf fputs free frexp fscanf future isalnum isalpha iscntrl isdigit isgraph islower isprint ispunct isspace isupper isxdigit tolower toupper labs ldexp log10 log malloc realloc memchr memcmp memcpy memset modf pow printf putchar puts scanf sinh sin snprintf sprintf sqrt sscanf strcat strchr strcmp strcpy strcspn strlen strncat strncmp strncpy strpbrk strrchr strspn strstr tanh tan vfprintf vprintf vsprintf endl initializer_list unique_ptr _Bool complex _Complex imaginary _Imaginary',literal: 'true false nullptr NULL'},d=[r,e.C_LINE_COMMENT_MODE,e.C_BLOCK_COMMENT_MODE,i,a],_={variants: [{begin: /=/,end: /;/},{begin: /\(/,end: /\)/},{beginKeywords: 'new throw return else',end: /;/}],keywords: l,contains: d.concat([{begin: /\(/,end: /\)/,keywords: l,contains: d.concat(['self']),relevance: 0}]),relevance: 0},u={className: 'function',begin: `(${n}[\\*&\\s]+)+${c}`,returnBegin: !0,end: /[{;=]/,excludeEnd: !0,keywords: l,illegal: /[^\w\s\*&:<>]/,contains: [{begin: 'decltype\\(auto\\)',keywords: l,relevance: 0},{begin: c,returnBegin: !0,contains: [o],relevance: 0},{className: 'params',begin: /\(/,end: /\)/,keywords: l,relevance: 0,contains: [e.C_LINE_COMMENT_MODE,e.C_BLOCK_COMMENT_MODE,a,i,r,{begin: /\(/,end: /\)/,keywords: l,relevance: 0,contains: ['self',e.C_LINE_COMMENT_MODE,e.C_BLOCK_COMMENT_MODE,a,i,r]}]},r,e.C_LINE_COMMENT_MODE,e.C_BLOCK_COMMENT_MODE,s]}; return {aliases: ['c','cc','h','c++','h++','hpp','hh','hxx','cxx'],keywords: l,disableAutodetect: !0,illegal: '',keywords: l,contains: ['self',r]},{begin: `${e.IDENT_RE}::`,keywords: l},{className: 'class',beginKeywords: 'class struct',end: /[{;:]/,contains: [{begin: //,contains: ['self']},e.TITLE_MODE]}]),exports: {preprocessor: s,strings: a,keywords: l}};};}())); +hljs.registerLanguage('c',(function() {'use strict'; return function(e) {const n=e.requireLanguage('c-like').rawDefinition(); return n.name='C',n.aliases=['c','h'],n;};}())); +hljs.registerLanguage('coffeescript',(function() {'use strict'; const e=['as','in','of','if','for','while','finally','var','new','function','do','return','void','else','break','catch','instanceof','with','throw','case','default','try','switch','continue','typeof','delete','let','yield','const','class','debugger','async','await','static','import','from','export','extends'],n=['true','false','null','undefined','NaN','Infinity'],a=[].concat(['setInterval','setTimeout','clearInterval','clearTimeout','require','exports','eval','isFinite','isNaN','parseFloat','parseInt','decodeURI','decodeURIComponent','encodeURI','encodeURIComponent','escape','unescape'],['arguments','this','super','console','window','document','localStorage','module','global'],['Intl','DataView','Number','Math','Date','String','RegExp','Object','Function','Boolean','Error','Symbol','Set','Map','WeakSet','WeakMap','Proxy','Reflect','JSON','Promise','Float64Array','Int16Array','Int32Array','Int8Array','Uint16Array','Uint32Array','Float32Array','Array','Uint8Array','Uint8ClampedArray','ArrayBuffer'],['EvalError','InternalError','RangeError','ReferenceError','SyntaxError','TypeError','URIError']); return function(r) {const t={keyword: e.concat(['then','unless','until','loop','by','when','and','or','is','isnt','not']).filter((e => n => !e.includes(n))(['var','const','let','function','static'])).join(' '),literal: n.concat(['yes','no','on','off']).join(' '),built_in: a.concat(['npm','print']).join(' ')},i='[A-Za-z$_][0-9A-Za-z$_]*',s={className: 'subst',begin: /#\{/,end: /}/,keywords: t},o=[r.BINARY_NUMBER_MODE,r.inherit(r.C_NUMBER_MODE,{starts: {end: '(\\s*/)?',relevance: 0}}),{className: 'string',variants: [{begin: /'''/,end: /'''/,contains: [r.BACKSLASH_ESCAPE]},{begin: /'/,end: /'/,contains: [r.BACKSLASH_ESCAPE]},{begin: /"""/,end: /"""/,contains: [r.BACKSLASH_ESCAPE,s]},{begin: /"/,end: /"/,contains: [r.BACKSLASH_ESCAPE,s]}]},{className: 'regexp',variants: [{begin: '///',end: '///',contains: [s,r.HASH_COMMENT_MODE]},{begin: '//[gim]{0,3}(?=\\W)',relevance: 0},{begin: /\/(?![ *]).*?(?![\\]).\/[gim]{0,3}(?=\W)/}]},{begin: `@${i}`},{subLanguage: 'javascript',excludeBegin: !0,excludeEnd: !0,variants: [{begin: '```',end: '```'},{begin: '`',end: '`'}]}]; s.contains=o; const c=r.inherit(r.TITLE_MODE,{begin: i}),l={className: 'params',begin: '\\([^\\(]',returnBegin: !0,contains: [{begin: /\(/,end: /\)/,keywords: t,contains: ['self'].concat(o)}]}; return {name: 'CoffeeScript',aliases: ['coffee','cson','iced'],keywords: t,illegal: /\/\*/,contains: o.concat([r.COMMENT('###','###'),r.HASH_COMMENT_MODE,{className: 'function',begin: `^\\s*${i}\\s*=\\s*(\\(.*\\))?\\s*\\B[-=]>`,end: '[-=]>',returnBegin: !0,contains: [c,l]},{begin: /[:\(,=]\s*/,relevance: 0,contains: [{className: 'function',begin: '(\\(.*\\))?\\s*\\B[-=]>',end: '[-=]>',returnBegin: !0,contains: [l]}]},{className: 'class',beginKeywords: 'class',end: '$',illegal: /[:="\[\]]/,contains: [{beginKeywords: 'extends',endsWithParent: !0,illegal: /[:="\[\]]/,contains: [c]},c]},{begin: `${i}:`,end: ':',returnBegin: !0,returnEnd: !0,relevance: 0}])};};}())); +hljs.registerLanguage('cpp',(function() {'use strict'; return function(e) {const i=e.requireLanguage('c-like').rawDefinition(); return i.disableAutodetect=!1,i.name='C++',i.aliases=['cc','c++','h++','hpp','hh','hxx','cxx'],i;};}())); +hljs.registerLanguage('csharp',(function() {'use strict'; return function(e) {const n={keyword: 'abstract as base bool break byte case catch char checked const continue decimal default delegate do double enum event explicit extern finally fixed float for foreach goto if implicit in init int interface internal is lock long object operator out override params private protected public readonly ref sbyte sealed short sizeof stackalloc static string struct switch this try typeof uint ulong unchecked unsafe ushort using virtual void volatile while add alias ascending async await by descending dynamic equals from get global group into join let nameof on orderby partial remove select set value var when where yield',literal: 'null false true'},i=e.inherit(e.TITLE_MODE,{begin: '[a-zA-Z](\\.?\\w)*'}),a={className: 'number',variants: [{begin: '\\b(0b[01\']+)'},{begin: '(-?)\\b([\\d\']+(\\.[\\d\']*)?|\\.[\\d\']+)(u|U|l|L|ul|UL|f|F|b|B)'},{begin: '(-?)(\\b0[xX][a-fA-F0-9\']+|(\\b[\\d\']+(\\.[\\d\']*)?|\\.[\\d\']+)([eE][-+]?[\\d\']+)?)'}],relevance: 0},s={className: 'string',begin: '@"',end: '"',contains: [{begin: '""'}]},t=e.inherit(s,{illegal: /\n/}),l={className: 'subst',begin: '{',end: '}',keywords: n},r=e.inherit(l,{illegal: /\n/}),c={className: 'string',begin: /\$"/,end: '"',illegal: /\n/,contains: [{begin: '{{'},{begin: '}}'},e.BACKSLASH_ESCAPE,r]},o={className: 'string',begin: /\$@"/,end: '"',contains: [{begin: '{{'},{begin: '}}'},{begin: '""'},l]},g=e.inherit(o,{illegal: /\n/,contains: [{begin: '{{'},{begin: '}}'},{begin: '""'},r]}); l.contains=[o,c,s,e.APOS_STRING_MODE,e.QUOTE_STRING_MODE,a,e.C_BLOCK_COMMENT_MODE],r.contains=[g,c,t,e.APOS_STRING_MODE,e.QUOTE_STRING_MODE,a,e.inherit(e.C_BLOCK_COMMENT_MODE,{illegal: /\n/})]; const d={variants: [o,c,s,e.APOS_STRING_MODE,e.QUOTE_STRING_MODE]},E={begin: '<',end: '>',contains: [{beginKeywords: 'in out'},i]},_=`${e.IDENT_RE}(<${e.IDENT_RE}(\\s*,\\s*${e.IDENT_RE})*>)?(\\[\\])?`,b={begin: `@${e.IDENT_RE}`,relevance: 0}; return {name: 'C#',aliases: ['cs','c#'],keywords: n,illegal: /::/,contains: [e.COMMENT('///','$',{returnBegin: !0,contains: [{className: 'doctag',variants: [{begin: '///',relevance: 0},{begin: '\x3c!--|--\x3e'},{begin: ''}]}]}),e.C_LINE_COMMENT_MODE,e.C_BLOCK_COMMENT_MODE,{className: 'meta',begin: '#',end: '$',keywords: {'meta-keyword': 'if else elif endif define undef warning error line region endregion pragma checksum'}},d,a,{beginKeywords: 'class interface',end: /[{;=]/,illegal: /[^\s:,]/,contains: [{beginKeywords: 'where class'},i,E,e.C_LINE_COMMENT_MODE,e.C_BLOCK_COMMENT_MODE]},{beginKeywords: 'namespace',end: /[{;=]/,illegal: /[^\s:]/,contains: [i,e.C_LINE_COMMENT_MODE,e.C_BLOCK_COMMENT_MODE]},{beginKeywords: 'record',end: /[{;=]/,illegal: /[^\s:]/,contains: [i,E,e.C_LINE_COMMENT_MODE,e.C_BLOCK_COMMENT_MODE]},{className: 'meta',begin: '^\\s*\\[',excludeBegin: !0,end: '\\]',excludeEnd: !0,contains: [{className: 'meta-string',begin: /"/,end: /"/}]},{beginKeywords: 'new return throw await else',relevance: 0},{className: 'function',begin: `(${_}\\s+)+${e.IDENT_RE}\\s*(\\<.+\\>)?\\s*\\(`,returnBegin: !0,end: /\s*[{;=]/,excludeEnd: !0,keywords: n,contains: [{begin: `${e.IDENT_RE}\\s*(\\<.+\\>)?\\s*\\(`,returnBegin: !0,contains: [e.TITLE_MODE,E],relevance: 0},{className: 'params',begin: /\(/,end: /\)/,excludeBegin: !0,excludeEnd: !0,keywords: n,relevance: 0,contains: [d,a,e.C_BLOCK_COMMENT_MODE]},e.C_LINE_COMMENT_MODE,e.C_BLOCK_COMMENT_MODE]},b]};};}())); +hljs.registerLanguage('css',(function() {'use strict'; return function(e) {const n={begin: /(?:[A-Z\_\.\-]+|--[a-zA-Z0-9_-]+)\s*:/,returnBegin: !0,end: ';',endsWithParent: !0,contains: [{className: 'attribute',begin: /\S/,end: ':',excludeEnd: !0,starts: {endsWithParent: !0,excludeEnd: !0,contains: [{begin: /[\w-]+\(/,returnBegin: !0,contains: [{className: 'built_in',begin: /[\w-]+/},{begin: /\(/,end: /\)/,contains: [e.APOS_STRING_MODE,e.QUOTE_STRING_MODE,e.CSS_NUMBER_MODE]}]},e.CSS_NUMBER_MODE,e.QUOTE_STRING_MODE,e.APOS_STRING_MODE,e.C_BLOCK_COMMENT_MODE,{className: 'number',begin: '#[0-9A-Fa-f]+'},{className: 'meta',begin: '!important'}]}}]}; return {name: 'CSS',case_insensitive: !0,illegal: /[=\/|'\$]/,contains: [e.C_BLOCK_COMMENT_MODE,{className: 'selector-id',begin: /#[A-Za-z0-9_-]+/},{className: 'selector-class',begin: /\.[A-Za-z0-9_-]+/},{className: 'selector-attr',begin: /\[/,end: /\]/,illegal: '$',contains: [e.APOS_STRING_MODE,e.QUOTE_STRING_MODE]},{className: 'selector-pseudo',begin: /:(:)?[a-zA-Z0-9\_\-\+\(\)"'.]+/},{begin: '@(page|font-face)',lexemes: '@[a-z-]+',keywords: '@page @font-face'},{begin: '@',end: '[{;]',illegal: /:/,returnBegin: !0,contains: [{className: 'keyword',begin: /@\-?\w[\w]*(\-\w+)*/},{begin: /\s/,endsWithParent: !0,excludeEnd: !0,relevance: 0,keywords: 'and or not only',contains: [{begin: /[a-z-]+:/,className: 'attribute'},e.APOS_STRING_MODE,e.QUOTE_STRING_MODE,e.CSS_NUMBER_MODE]}]},{className: 'selector-tag',begin: '[a-zA-Z-][a-zA-Z0-9_-]*',relevance: 0},{begin: '{',end: '}',illegal: /\S/,contains: [e.C_BLOCK_COMMENT_MODE,n]}]};};}())); +hljs.registerLanguage('diff',(function() {'use strict'; return function(e) {return {name: 'Diff',aliases: ['patch'],contains: [{className: 'meta',relevance: 10,variants: [{begin: /^@@ +\-\d+,\d+ +\+\d+,\d+ +@@$/},{begin: /^\*\*\* +\d+,\d+ +\*\*\*\*$/},{begin: /^\-\-\- +\d+,\d+ +\-\-\-\-$/}]},{className: 'comment',variants: [{begin: /Index: /,end: /$/},{begin: /={3,}/,end: /$/},{begin: /^\-{3}/,end: /$/},{begin: /^\*{3} /,end: /$/},{begin: /^\+{3}/,end: /$/},{begin: /^\*{15}$/}]},{className: 'addition',begin: '^\\+',end: '$'},{className: 'deletion',begin: '^\\-',end: '$'},{className: 'addition',begin: '^\\!',end: '$'}]};};}())); +hljs.registerLanguage('go',(function() {'use strict'; return function(e) {const n={keyword: 'break default func interface select case map struct chan else goto package switch const fallthrough if range type continue for import return var go defer bool byte complex64 complex128 float32 float64 int8 int16 int32 int64 string uint8 uint16 uint32 uint64 int uint uintptr rune',literal: 'true false iota nil',built_in: 'append cap close complex copy imag len make new panic print println real recover delete'}; return {name: 'Go',aliases: ['golang'],keywords: n,illegal: ' e(n)).join('');} return function(a) {const s={className: 'number',relevance: 0,variants: [{begin: /([\+\-]+)?[\d]+_[\d_]+/},{begin: a.NUMBER_RE}]},i=a.COMMENT(); i.variants=[{begin: /;/,end: /$/},{begin: /#/,end: /$/}]; const t={className: 'variable',variants: [{begin: /\$[\w\d"][\w\d_]*/},{begin: /\$\{(.*?)}/}]},r={className: 'literal',begin: /\bon|off|true|false|yes|no\b/},l={className: 'string',contains: [a.BACKSLASH_ESCAPE],variants: [{begin: '\'\'\'',end: '\'\'\'',relevance: 10},{begin: '"""',end: '"""',relevance: 10},{begin: '"',end: '"'},{begin: '\'',end: '\''}]},c={begin: /\[/,end: /\]/,contains: [i,r,t,l,s,'self'],relevance: 0},g=`(${[/[A-Za-z0-9_-]+/,/"(\\"|[^"])*"/,/'[^']*'/].map(n => e(n)).join('|')})`; return {name: 'TOML, also INI',aliases: ['toml'],case_insensitive: !0,illegal: /\S/,contains: [i,{className: 'section',begin: /\[+/,end: /\]+/},{begin: n(g,'(\\s*\\.\\s*',g,')*',n('(?=',/\s*=\s*[^#\s]/,')')),className: 'attr',starts: {end: /$/,contains: [i,c,r,t,l,s]}}]};};}())); +hljs.registerLanguage('java',(function() {'use strict'; function e(e) {return e?'string'===typeof e?e:e.source:null;} function n(e) {return a('(',e,')?');} function a(...n) {return n.map(n => e(n)).join('');} function s(...n) {return `(${n.map(n => e(n)).join('|')})`;} return function(e) {const t='false synchronized int abstract float private char boolean var static null if const for true while long strictfp finally protected import native final void enum else break transient catch instanceof byte super volatile case assert short package default double public try this switch continue throws protected public private module requires exports do',i={className: 'meta',begin: '@[À-ʸa-zA-Z_$][À-ʸa-zA-Z_$0-9]*',contains: [{begin: /\(/,end: /\)/,contains: ['self']}]},r=e => a('[',e,']+([',e,'_]*[',e,']+)?'),c={className: 'number',variants: [{begin: `\\b(0[bB]${r('01')})[lL]?`},{begin: `\\b(0${r('0-7')})[dDfFlL]?`},{begin: a(/\b0[xX]/,s(a(r('a-fA-F0-9'),/\./,r('a-fA-F0-9')),a(r('a-fA-F0-9'),/\.?/),a(/\./,r('a-fA-F0-9'))),/([pP][+-]?(\d+))?/,/[fFdDlL]?/)},{begin: a(/\b/,s(a(/\d*\./,r('\\d')),r('\\d')),/[eE][+-]?[\d]+[dDfF]?/)},{begin: a(/\b/,r(/\d/),n(/\.?/),n(r(/\d/)),/[dDfFlL]?/)}],relevance: 0}; return {name: 'Java',aliases: ['jsp'],keywords: t,illegal: /<\/|#/,contains: [e.COMMENT('/\\*\\*','\\*/',{relevance: 0,contains: [{begin: /\w+@/,relevance: 0},{className: 'doctag',begin: '@[A-Za-z]+'}]}),e.C_LINE_COMMENT_MODE,e.C_BLOCK_COMMENT_MODE,e.APOS_STRING_MODE,e.QUOTE_STRING_MODE,{className: 'class',beginKeywords: 'class interface enum',end: /[{;=]/,excludeEnd: !0,keywords: 'class interface enum',illegal: /[:"\[\]]/,contains: [{beginKeywords: 'extends implements'},e.UNDERSCORE_TITLE_MODE]},{beginKeywords: 'new throw return else',relevance: 0},{className: 'function',begin: `([À-ʸa-zA-Z_$][À-ʸa-zA-Z_$0-9]*(<[À-ʸa-zA-Z_$][À-ʸa-zA-Z_$0-9]*(\\s*,\\s*[À-ʸa-zA-Z_$][À-ʸa-zA-Z_$0-9]*)*>)?\\s+)+${e.UNDERSCORE_IDENT_RE}\\s*\\(`,returnBegin: !0,end: /[{;=]/,excludeEnd: !0,keywords: t,contains: [{begin: `${e.UNDERSCORE_IDENT_RE}\\s*\\(`,returnBegin: !0,relevance: 0,contains: [e.UNDERSCORE_TITLE_MODE]},{className: 'params',begin: /\(/,end: /\)/,keywords: t,relevance: 0,contains: [i,e.APOS_STRING_MODE,e.QUOTE_STRING_MODE,e.C_NUMBER_MODE,e.C_BLOCK_COMMENT_MODE]},e.C_LINE_COMMENT_MODE,e.C_BLOCK_COMMENT_MODE]},c,i]};};}())); +hljs.registerLanguage('javascript',(function() {'use strict'; const e=['as','in','of','if','for','while','finally','var','new','function','do','return','void','else','break','catch','instanceof','with','throw','case','default','try','switch','continue','typeof','delete','let','yield','const','class','debugger','async','await','static','import','from','export','extends'],n=['true','false','null','undefined','NaN','Infinity'],a=[].concat(['setInterval','setTimeout','clearInterval','clearTimeout','require','exports','eval','isFinite','isNaN','parseFloat','parseInt','decodeURI','decodeURIComponent','encodeURI','encodeURIComponent','escape','unescape'],['arguments','this','super','console','window','document','localStorage','module','global'],['Intl','DataView','Number','Math','Date','String','RegExp','Object','Function','Boolean','Error','Symbol','Set','Map','WeakSet','WeakMap','Proxy','Reflect','JSON','Promise','Float64Array','Int16Array','Int32Array','Int8Array','Uint16Array','Uint32Array','Float32Array','Array','Uint8Array','Uint8ClampedArray','ArrayBuffer'],['EvalError','InternalError','RangeError','ReferenceError','SyntaxError','TypeError','URIError']); function s(e) {return r('(?=',e,')');} function r(...e) {return e.map(e => (function(e) {return e?'string'===typeof e?e:e.source:null;}(e))).join('');} return function(t) {const i='[A-Za-z$_][0-9A-Za-z$_]*',c={begin: /<[A-Za-z0-9\\._:-]+/,end: /\/[A-Za-z0-9\\._:-]+>|\/>/},o={$pattern: '[A-Za-z$_][0-9A-Za-z$_]*',keyword: e.join(' '),literal: n.join(' '),built_in: a.join(' ')},l={className: 'number',variants: [{begin: '\\b(0[bB][01]+)n?'},{begin: '\\b(0[oO][0-7]+)n?'},{begin: `${t.C_NUMBER_RE}n?`}],relevance: 0},E={className: 'subst',begin: '\\$\\{',end: '\\}',keywords: o,contains: []},d={begin: 'html`',end: '',starts: {end: '`',returnEnd: !1,contains: [t.BACKSLASH_ESCAPE,E],subLanguage: 'xml'}},g={begin: 'css`',end: '',starts: {end: '`',returnEnd: !1,contains: [t.BACKSLASH_ESCAPE,E],subLanguage: 'css'}},u={className: 'string',begin: '`',end: '`',contains: [t.BACKSLASH_ESCAPE,E]}; E.contains=[t.APOS_STRING_MODE,t.QUOTE_STRING_MODE,d,g,u,l,t.REGEXP_MODE]; const b=E.contains.concat([{begin: /\(/,end: /\)/,contains: ['self'].concat(E.contains,[t.C_BLOCK_COMMENT_MODE,t.C_LINE_COMMENT_MODE])},t.C_BLOCK_COMMENT_MODE,t.C_LINE_COMMENT_MODE]),_={className: 'params',begin: /\(/,end: /\)/,excludeBegin: !0,excludeEnd: !0,contains: b}; return {name: 'JavaScript',aliases: ['js','jsx','mjs','cjs'],keywords: o,contains: [t.SHEBANG({binary: 'node',relevance: 5}),{className: 'meta',relevance: 10,begin: /^\s*['"]use (strict|asm)['"]/},t.APOS_STRING_MODE,t.QUOTE_STRING_MODE,d,g,u,t.C_LINE_COMMENT_MODE,t.COMMENT('/\\*\\*','\\*/',{relevance: 0,contains: [{className: 'doctag',begin: '@[A-Za-z]+',contains: [{className: 'type',begin: '\\{',end: '\\}',relevance: 0},{className: 'variable',begin: `${i}(?=\\s*(-)|$)`,endsParent: !0,relevance: 0},{begin: /(?=[^\n])\s/,relevance: 0}]}]}),t.C_BLOCK_COMMENT_MODE,l,{begin: r(/[{,\n]\s*/,s(r(/(((\/\/.*$)|(\/\*(.|\n)*\*\/))\s*)*/,`${i}\\s*:`))),relevance: 0,contains: [{className: 'attr',begin: i+s('\\s*:'),relevance: 0}]},{begin: `(${t.RE_STARTERS_RE}|\\b(case|return|throw)\\b)\\s*`,keywords: 'return throw case',contains: [t.C_LINE_COMMENT_MODE,t.C_BLOCK_COMMENT_MODE,t.REGEXP_MODE,{className: 'function',begin: `(\\([^(]*(\\([^(]*(\\([^(]*\\))?\\))?\\)|${t.UNDERSCORE_IDENT_RE})\\s*=>`,returnBegin: !0,end: '\\s*=>',contains: [{className: 'params',variants: [{begin: t.UNDERSCORE_IDENT_RE},{className: null,begin: /\(\s*\)/,skip: !0},{begin: /\(/,end: /\)/,excludeBegin: !0,excludeEnd: !0,keywords: o,contains: b}]}]},{begin: /,/,relevance: 0},{className: '',begin: /\s/,end: /\s*/,skip: !0},{variants: [{begin: '<>',end: ''},{begin: c.begin,end: c.end}],subLanguage: 'xml',contains: [{begin: c.begin,end: c.end,skip: !0,contains: ['self']}]}],relevance: 0},{className: 'function',beginKeywords: 'function',end: /\{/,excludeEnd: !0,contains: [t.inherit(t.TITLE_MODE,{begin: i}),_],illegal: /\[|%/},{begin: /\$[(.]/},t.METHOD_GUARD,{className: 'class',beginKeywords: 'class',end: /[{;=]/,excludeEnd: !0,illegal: /[:"\[\]]/,contains: [{beginKeywords: 'extends'},t.UNDERSCORE_TITLE_MODE]},{beginKeywords: 'constructor',end: /\{/,excludeEnd: !0},{begin: `(get|set)\\s+(?=${i}\\()`,end: /{/,keywords: 'get set',contains: [t.inherit(t.TITLE_MODE,{begin: i}),{begin: /\(\)/},_]}],illegal: /#(?!!)/};};}())); +hljs.registerLanguage('json',(function() {'use strict'; return function(n) {const e={literal: 'true false null'},i=[n.C_LINE_COMMENT_MODE,n.C_BLOCK_COMMENT_MODE],t=[n.QUOTE_STRING_MODE,n.C_NUMBER_MODE],a={end: ',',endsWithParent: !0,excludeEnd: !0,contains: t,keywords: e},l={begin: '{',end: '}',contains: [{className: 'attr',begin: /"/,end: /"/,contains: [n.BACKSLASH_ESCAPE],illegal: '\\n'},n.inherit(a,{begin: /:/})].concat(i),illegal: '\\S'},s={begin: '\\[',end: '\\]',contains: [n.inherit(a)],illegal: '\\S'}; return t.push(l,s),i.forEach(((n) => {t.push(n);})),{name: 'JSON',contains: t,keywords: e,illegal: '\\S'};};}())); +hljs.registerLanguage('kotlin',(function() {'use strict'; return function(e) {const n={keyword: 'abstract as val var vararg get set class object open private protected public noinline crossinline dynamic final enum if else do while for when throw try catch finally import package is in fun override companion reified inline lateinit init interface annotation data sealed internal infix operator out by constructor super tailrec where const inner suspend typealias external expect actual',built_in: 'Byte Short Char Int Long Boolean Float Double Void Unit Nothing',literal: 'true false null'},a={className: 'symbol',begin: `${e.UNDERSCORE_IDENT_RE}@`},i={className: 'subst',begin: '\\${',end: '}',contains: [e.C_NUMBER_MODE]},s={className: 'variable',begin: `\\$${e.UNDERSCORE_IDENT_RE}`},t={className: 'string',variants: [{begin: '"""',end: '"""(?=[^"])',contains: [s,i]},{begin: '\'',end: '\'',illegal: /\n/,contains: [e.BACKSLASH_ESCAPE]},{begin: '"',end: '"',illegal: /\n/,contains: [e.BACKSLASH_ESCAPE,s,i]}]}; i.contains.push(t); const r={className: 'meta',begin: `@(?:file|property|field|get|set|receiver|param|setparam|delegate)\\s*:(?:\\s*${e.UNDERSCORE_IDENT_RE})?`},l={className: 'meta',begin: `@${e.UNDERSCORE_IDENT_RE}`,contains: [{begin: /\(/,end: /\)/,contains: [e.inherit(t,{className: 'meta-string'})]}]},c=e.COMMENT('/\\*','\\*/',{contains: [e.C_BLOCK_COMMENT_MODE]}),o={variants: [{className: 'type',begin: e.UNDERSCORE_IDENT_RE},{begin: /\(/,end: /\)/,contains: []}]},d=o; return d.variants[1].contains=[o],o.variants[1].contains=[d],{name: 'Kotlin',aliases: ['kt'],keywords: n,contains: [e.COMMENT('/\\*\\*','\\*/',{relevance: 0,contains: [{className: 'doctag',begin: '@[A-Za-z]+'}]}),e.C_LINE_COMMENT_MODE,c,{className: 'keyword',begin: /\b(break|continue|return|this)\b/,starts: {contains: [{className: 'symbol',begin: /@\w+/}]}},a,r,l,{className: 'function',beginKeywords: 'fun',end: '[(]|$',returnBegin: !0,excludeEnd: !0,keywords: n,illegal: /fun\s+(<.*>)?[^\s\(]+(\s+[^\s\(]+)\s*=/,relevance: 5,contains: [{begin: `${e.UNDERSCORE_IDENT_RE}\\s*\\(`,returnBegin: !0,relevance: 0,contains: [e.UNDERSCORE_TITLE_MODE]},{className: 'type',begin: //,keywords: 'reified',relevance: 0},{className: 'params',begin: /\(/,end: /\)/,endsParent: !0,keywords: n,relevance: 0,contains: [{begin: /:/,end: /[=,\/]/,endsWithParent: !0,contains: [o,e.C_LINE_COMMENT_MODE,c],relevance: 0},e.C_LINE_COMMENT_MODE,c,r,l,t,e.C_NUMBER_MODE]},c]},{className: 'class',beginKeywords: 'class interface trait',end: /[:\{(]|$/,excludeEnd: !0,illegal: 'extends implements',contains: [{beginKeywords: 'public protected internal private constructor'},e.UNDERSCORE_TITLE_MODE,{className: 'type',begin: //,excludeBegin: !0,excludeEnd: !0,relevance: 0},{className: 'type',begin: /[,:]\s*/,end: /[<\(,]|$/,excludeBegin: !0,returnEnd: !0},r,l]},t,{className: 'meta',begin: '^#!/usr/bin/env',end: '$',illegal: '\n'},{className: 'number',begin: '\\b(0[bB]([01]+[01_]+[01]+|[01]+)|0[xX]([a-fA-F0-9]+[a-fA-F0-9_]+[a-fA-F0-9]+|[a-fA-F0-9]+)|(([\\d]+[\\d_]+[\\d]+|[\\d]+)(\\.([\\d]+[\\d_]+[\\d]+|[\\d]+))?|\\.([\\d]+[\\d_]+[\\d]+|[\\d]+))([eE][-+]?\\d+)?)[lLfF]?',relevance: 0}]};};}())); +hljs.registerLanguage('less',(function() {'use strict'; return function(e) {const n='([\\w-]+|@{[\\w-]+})',a=[],s=[],t=function(e) {return {className: 'string',begin: `~?${e}.*?${e}`};},r=function(e,n,a) {return {className: e,begin: n,relevance: a};},i={begin: '\\(',end: '\\)',contains: s,relevance: 0}; s.push(e.C_LINE_COMMENT_MODE,e.C_BLOCK_COMMENT_MODE,t('\''),t('"'),e.CSS_NUMBER_MODE,{begin: '(url|data-uri)\\(',starts: {className: 'string',end: '[\\)\\n]',excludeEnd: !0}},r('number','#[0-9A-Fa-f]+\\b'),i,r('variable','@@?[\\w-]+',10),r('variable','@{[\\w-]+}'),r('built_in','~?`[^`]*?`'),{className: 'attribute',begin: '[\\w-]+\\s*:',end: ':',returnBegin: !0,excludeEnd: !0},{className: 'meta',begin: '!important'}); const c=s.concat({begin: '{',end: '}',contains: a}),l={beginKeywords: 'when',endsWithParent: !0,contains: [{beginKeywords: 'and not'}].concat(s)},o={begin: `${n}\\s*:`,returnBegin: !0,end: '[;}]',relevance: 0,contains: [{className: 'attribute',begin: n,end: ':',excludeEnd: !0,starts: {endsWithParent: !0,illegal: '[<=$]',relevance: 0,contains: s}}]},g={className: 'keyword',begin: '@(import|media|charset|font-face|(-[a-z]+-)?keyframes|supports|document|namespace|page|viewport|host)\\b',starts: {end: '[;{}]',returnEnd: !0,contains: s,relevance: 0}},d={className: 'variable',variants: [{begin: '@[\\w-]+\\s*:',relevance: 15},{begin: '@[\\w-]+'}],starts: {end: '[;}]',returnEnd: !0,contains: c}},b={variants: [{begin: '[\\.#:&\\[>]',end: '[;{}]'},{begin: n,end: '{'}],returnBegin: !0,returnEnd: !0,illegal: '[<=\'$"]',relevance: 0,contains: [e.C_LINE_COMMENT_MODE,e.C_BLOCK_COMMENT_MODE,l,r('keyword','all\\b'),r('variable','@{[\\w-]+}'),r('selector-tag',`${n}%?`,0),r('selector-id',`#${n}`),r('selector-class',`\\.${n}`,0),r('selector-tag','&',0),{className: 'selector-attr',begin: '\\[',end: '\\]'},{className: 'selector-pseudo',begin: /:(:)?[a-zA-Z0-9\_\-\+\(\)"'.]+/},{begin: '\\(',end: '\\)',contains: c},{begin: '!important'}]}; return a.push(e.C_LINE_COMMENT_MODE,e.C_BLOCK_COMMENT_MODE,g,d,o,b),{name: 'Less',case_insensitive: !0,illegal: '[=>\'/<($"]',contains: a};};}())); +hljs.registerLanguage('lua',(function() {'use strict'; return function(e) {const t={begin: '\\[=*\\[',end: '\\]=*\\]',contains: ['self']},a=[e.COMMENT('--(?!\\[=*\\[)','$'),e.COMMENT('--\\[=*\\[','\\]=*\\]',{contains: [t],relevance: 10})]; return {name: 'Lua',keywords: {$pattern: e.UNDERSCORE_IDENT_RE,literal: 'true false nil',keyword: 'and break do else elseif end for goto if in local not or repeat return then until while',built_in: '_G _ENV _VERSION __index __newindex __mode __call __metatable __tostring __len __gc __add __sub __mul __div __mod __pow __concat __unm __eq __lt __le assert collectgarbage dofile error getfenv getmetatable ipairs load loadfile loadstring module next pairs pcall print rawequal rawget rawset require select setfenv setmetatable tonumber tostring type unpack xpcall arg self coroutine resume yield status wrap create running debug getupvalue debug sethook getmetatable gethook setmetatable setlocal traceback setfenv getinfo setupvalue getlocal getregistry getfenv io lines write close flush open output type read stderr stdin input stdout popen tmpfile math log max acos huge ldexp pi cos tanh pow deg tan cosh sinh random randomseed frexp ceil floor rad abs sqrt modf asin min mod fmod log10 atan2 exp sin atan os exit setlocale date getenv difftime remove time clock tmpname rename execute package preload loadlib loaded loaders cpath config path seeall string sub upper len gfind rep find match char dump gmatch reverse byte format gsub lower table setn insert getn foreachi maxn foreach concat sort remove'},contains: a.concat([{className: 'function',beginKeywords: 'function',end: '\\)',contains: [e.inherit(e.TITLE_MODE,{begin: '([_a-zA-Z]\\w*\\.)*([_a-zA-Z]\\w*:)?[_a-zA-Z]\\w*'}),{className: 'params',begin: '\\(',endsWithParent: !0,contains: a}].concat(a)},e.C_NUMBER_MODE,e.APOS_STRING_MODE,e.QUOTE_STRING_MODE,{className: 'string',begin: '\\[=*\\[',end: '\\]=*\\]',contains: [t],relevance: 5}])};};}())); +hljs.registerLanguage('makefile',(function() {'use strict'; return function(e) {const i={className: 'variable',variants: [{begin: `\\$\\(${e.UNDERSCORE_IDENT_RE}\\)`,contains: [e.BACKSLASH_ESCAPE]},{begin: /\$[@%`]+/}]}]}]}; return {name: 'HTML, XML',aliases: ['html','xhtml','rss','atom','xjb','xsd','xsl','plist','wsf','svg'],case_insensitive: !0,contains: [{className: 'meta',begin: '',relevance: 10,contains: [a,i,t,s,{begin: '\\[',end: '\\]',contains: [{className: 'meta',begin: '',contains: [a,s,i,t]}]}]},e.COMMENT('\x3c!--','--\x3e',{relevance: 10}),{begin: '<\\!\\[CDATA\\[',end: '\\]\\]>',relevance: 10},n,{className: 'meta',begin: /<\?xml/,end: /\?>/,relevance: 10},{className: 'tag',begin: ')',end: '>',keywords: {name: 'style'},contains: [c],starts: {end: '',returnEnd: !0,subLanguage: ['css','xml']}},{className: 'tag',begin: ')',end: '>',keywords: {name: 'script'},contains: [c],starts: {end: '<\/script>',returnEnd: !0,subLanguage: ['javascript','handlebars','xml']}},{className: 'tag',begin: '',contains: [{className: 'name',begin: /[^\/><\s]+/,relevance: 0},c]}]};};}())); +hljs.registerLanguage('markdown',(function() {'use strict'; return function(n) {const e={begin: '<',end: '>',subLanguage: 'xml',relevance: 0},a={begin: '\\[.+?\\][\\(\\[].*?[\\)\\]]',returnBegin: !0,contains: [{className: 'string',begin: '\\[',end: '\\]',excludeBegin: !0,returnEnd: !0,relevance: 0},{className: 'link',begin: '\\]\\(',end: '\\)',excludeBegin: !0,excludeEnd: !0},{className: 'symbol',begin: '\\]\\[',end: '\\]',excludeBegin: !0,excludeEnd: !0}],relevance: 10},i={className: 'strong',contains: [],variants: [{begin: /_{2}/,end: /_{2}/},{begin: /\*{2}/,end: /\*{2}/}]},s={className: 'emphasis',contains: [],variants: [{begin: /\*(?!\*)/,end: /\*/},{begin: /_(?!_)/,end: /_/,relevance: 0}]}; i.contains.push(s),s.contains.push(i); let c=[e,a]; return i.contains=i.contains.concat(c),s.contains=s.contains.concat(c),{name: 'Markdown',aliases: ['md','mkdown','mkd'],contains: [{className: 'section',variants: [{begin: '^#{1,6}',end: '$',contains: c=c.concat(i,s)},{begin: '(?=^.+?\\n[=-]{2,}$)',contains: [{begin: '^[=-]*$'},{begin: '^',end: '\\n',contains: c}]}]},e,{className: 'bullet',begin: '^[ \t]*([*+-]|(\\d+\\.))(?=\\s+)',end: '\\s+',excludeEnd: !0},i,s,{className: 'quote',begin: '^>\\s+',contains: c,end: '$'},{className: 'code',variants: [{begin: '(`{3,})(.|\\n)*?\\1`*[ ]*'},{begin: '(~{3,})(.|\\n)*?\\1~*[ ]*'},{begin: '```',end: '```+[ ]*$'},{begin: '~~~',end: '~~~+[ ]*$'},{begin: '`.+?`'},{begin: '(?=^( {4}|\\t))',contains: [{begin: '^( {4}|\\t)',end: '(\\n)$'}],relevance: 0}]},{begin: '^[-\\*]{3,}',end: '$'},a,{begin: /^\[[^\n]+\]:/,returnBegin: !0,contains: [{className: 'symbol',begin: /\[/,end: /\]/,excludeBegin: !0,excludeEnd: !0},{className: 'link',begin: /:\s*/,end: /$/,excludeBegin: !0}]}]};};}())); +hljs.registerLanguage('nginx',(function() {'use strict'; return function(e) {const n={className: 'variable',variants: [{begin: /\$\d+/},{begin: /\$\{/,end: /}/},{begin: `[\\$\\@]${e.UNDERSCORE_IDENT_RE}`}]},a={endsWithParent: !0,keywords: {$pattern: '[a-z/_]+',literal: 'on off yes no true false none blocked debug info notice warn error crit select break last permanent redirect kqueue rtsig epoll poll /dev/poll'},relevance: 0,illegal: '=>',contains: [e.HASH_COMMENT_MODE,{className: 'string',contains: [e.BACKSLASH_ESCAPE,n],variants: [{begin: /"/,end: /"/},{begin: /'/,end: /'/}]},{begin: '([a-z]+):/',end: '\\s',endsWithParent: !0,excludeEnd: !0,contains: [n]},{className: 'regexp',contains: [e.BACKSLASH_ESCAPE,n],variants: [{begin: '\\s\\^',end: '\\s|{|;',returnEnd: !0},{begin: '~\\*?\\s+',end: '\\s|{|;',returnEnd: !0},{begin: '\\*(\\.[a-z\\-]+)+'},{begin: '([a-z\\-]+\\.)+\\*'}]},{className: 'number',begin: '\\b\\d{1,3}\\.\\d{1,3}\\.\\d{1,3}\\.\\d{1,3}(:\\d{1,5})?\\b'},{className: 'number',begin: '\\b\\d+[kKmMgGdshdwy]*\\b',relevance: 0},n]}; return {name: 'Nginx config',aliases: ['nginxconf'],contains: [e.HASH_COMMENT_MODE,{begin: `${e.UNDERSCORE_IDENT_RE}\\s+{`,returnBegin: !0,end: '{',contains: [{className: 'section',begin: e.UNDERSCORE_IDENT_RE}],relevance: 0},{begin: `${e.UNDERSCORE_IDENT_RE}\\s`,end: ';|{',returnBegin: !0,contains: [{className: 'attribute',begin: e.UNDERSCORE_IDENT_RE,starts: a}],relevance: 0}],illegal: '[^\\s\\}]'};};}())); +hljs.registerLanguage('objectivec',(function() {'use strict'; return function(e) {const n=/[a-zA-Z@][a-zA-Z0-9_]*/,_={$pattern: n,keyword: '@interface @class @protocol @implementation'}; return {name: 'Objective-C',aliases: ['mm','objc','obj-c'],keywords: {$pattern: n,keyword: 'int float while char export sizeof typedef const struct for union unsigned long volatile static bool mutable if do return goto void enum else break extern asm case short default double register explicit signed typename this switch continue wchar_t inline readonly assign readwrite self @synchronized id typeof nonatomic super unichar IBOutlet IBAction strong weak copy in out inout bycopy byref oneway __strong __weak __block __autoreleasing @private @protected @public @try @property @end @throw @catch @finally @autoreleasepool @synthesize @dynamic @selector @optional @required @encode @package @import @defs @compatibility_alias __bridge __bridge_transfer __bridge_retained __bridge_retain __covariant __contravariant __kindof _Nonnull _Nullable _Null_unspecified __FUNCTION__ __PRETTY_FUNCTION__ __attribute__ getter setter retain unsafe_unretained nonnull nullable null_unspecified null_resettable class instancetype NS_DESIGNATED_INITIALIZER NS_UNAVAILABLE NS_REQUIRES_SUPER NS_RETURNS_INNER_POINTER NS_INLINE NS_AVAILABLE NS_DEPRECATED NS_ENUM NS_OPTIONS NS_SWIFT_UNAVAILABLE NS_ASSUME_NONNULL_BEGIN NS_ASSUME_NONNULL_END NS_REFINED_FOR_SWIFT NS_SWIFT_NAME NS_SWIFT_NOTHROW NS_DURING NS_HANDLER NS_ENDHANDLER NS_VALUERETURN NS_VOIDRETURN',literal: 'false true FALSE TRUE nil YES NO NULL',built_in: 'BOOL dispatch_once_t dispatch_queue_t dispatch_sync dispatch_async dispatch_once'},illegal: '/,end: /$/,illegal: '\\n'},e.C_LINE_COMMENT_MODE,e.C_BLOCK_COMMENT_MODE]},{className: 'class',begin: `(${_.keyword.split(' ').join('|')})\\b`,end: '({|$)',excludeEnd: !0,keywords: _,contains: [e.UNDERSCORE_TITLE_MODE]},{begin: `\\.${e.UNDERSCORE_IDENT_RE}`,relevance: 0}]};};}())); +hljs.registerLanguage('perl',(function() {'use strict'; return function(e) {const n={$pattern: /[\w.]+/,keyword: 'getpwent getservent quotemeta msgrcv scalar kill dbmclose undef lc ma syswrite tr send umask sysopen shmwrite vec qx utime local oct semctl localtime readpipe do return format read sprintf dbmopen pop getpgrp not getpwnam rewinddir qq fileno qw endprotoent wait sethostent bless s|0 opendir continue each sleep endgrent shutdown dump chomp connect getsockname die socketpair close flock exists index shmget sub for endpwent redo lstat msgctl setpgrp abs exit select print ref gethostbyaddr unshift fcntl syscall goto getnetbyaddr join gmtime symlink semget splice x|0 getpeername recv log setsockopt cos last reverse gethostbyname getgrnam study formline endhostent times chop length gethostent getnetent pack getprotoent getservbyname rand mkdir pos chmod y|0 substr endnetent printf next open msgsnd readdir use unlink getsockopt getpriority rindex wantarray hex system getservbyport endservent int chr untie rmdir prototype tell listen fork shmread ucfirst setprotoent else sysseek link getgrgid shmctl waitpid unpack getnetbyname reset chdir grep split require caller lcfirst until warn while values shift telldir getpwuid my getprotobynumber delete and sort uc defined srand accept package seekdir getprotobyname semop our rename seek if q|0 chroot sysread setpwent no crypt getc chown sqrt write setnetent setpriority foreach tie sin msgget map stat getlogin unless elsif truncate exec keys glob tied closedir ioctl socket readlink eval xor readline binmode setservent eof ord bind alarm pipe atan2 getgrent exp time push setgrent gt lt or ne m|0 break given say state when'},t={className: 'subst',begin: '[$@]\\{',end: '\\}',keywords: n},s={begin: '->{',end: '}'},r={variants: [{begin: /\$\d/},{begin: /[\$%@](\^\w\b|#\w+(::\w+)*|{\w+}|\w+(::\w*)*)/},{begin: /[\$%@][^\s\w{]/,relevance: 0}]},i=[e.BACKSLASH_ESCAPE,t,r],a=[r,e.HASH_COMMENT_MODE,e.COMMENT('^\\=\\w','\\=cut',{endsWithParent: !0}),s,{className: 'string',contains: i,variants: [{begin: 'q[qwxr]?\\s*\\(',end: '\\)',relevance: 5},{begin: 'q[qwxr]?\\s*\\[',end: '\\]',relevance: 5},{begin: 'q[qwxr]?\\s*\\{',end: '\\}',relevance: 5},{begin: 'q[qwxr]?\\s*\\|',end: '\\|',relevance: 5},{begin: 'q[qwxr]?\\s*\\<',end: '\\>',relevance: 5},{begin: 'qw\\s+q',end: 'q',relevance: 5},{begin: '\'',end: '\'',contains: [e.BACKSLASH_ESCAPE]},{begin: '"',end: '"'},{begin: '`',end: '`',contains: [e.BACKSLASH_ESCAPE]},{begin: '{\\w+}',contains: [],relevance: 0},{begin: '-?\\w+\\s*\\=\\>',contains: [],relevance: 0}]},{className: 'number',begin: '(\\b0[0-7_]+)|(\\b0x[0-9a-fA-F_]+)|(\\b[1-9][0-9_]*(\\.[0-9_]+)?)|[0_]\\b',relevance: 0},{begin: `(\\/\\/|${e.RE_STARTERS_RE}|\\b(split|return|print|reverse|grep)\\b)\\s*`,keywords: 'split return print reverse grep',relevance: 0,contains: [e.HASH_COMMENT_MODE,{className: 'regexp',begin: '(s|tr|y)/(\\\\.|[^/])*/(\\\\.|[^/])*/[a-z]*',relevance: 10},{className: 'regexp',begin: '(m|qr)?/',end: '/[a-z]*',contains: [e.BACKSLASH_ESCAPE],relevance: 0}]},{className: 'function',beginKeywords: 'sub',end: '(\\s*\\(.*?\\))?[;{]',excludeEnd: !0,relevance: 5,contains: [e.TITLE_MODE]},{begin: '-\\w\\b',relevance: 0},{begin: '^__DATA__$',end: '^__END__$',subLanguage: 'mojolicious',contains: [{begin: '^@@.*',end: '$',className: 'comment'}]}]; return t.contains=a,s.contains=a,{name: 'Perl',aliases: ['pl','pm'],keywords: n,contains: a};};}())); +hljs.registerLanguage('php',(function() {'use strict'; return function(e) {const r={begin: '\\$+[a-zA-Z_-ÿ][a-zA-Z0-9_-ÿ]*'},t={className: 'meta',variants: [{begin: /<\?php/,relevance: 10},{begin: /<\?[=]?/},{begin: /\?>/}]},a={className: 'subst',variants: [{begin: /\$\w+/},{begin: /\{\$/,end: /\}/}]},n=e.inherit(e.APOS_STRING_MODE,{illegal: null}),i=e.inherit(e.QUOTE_STRING_MODE,{illegal: null,contains: e.QUOTE_STRING_MODE.contains.concat(a)}),o=e.END_SAME_AS_BEGIN({begin: /<<<[ \t]*(\w+)\n/,end: /[ \t]*(\w+)\b/,contains: e.QUOTE_STRING_MODE.contains.concat(a)}),l={className: 'string',contains: [e.BACKSLASH_ESCAPE,t],variants: [e.inherit(n,{begin: 'b\'',end: '\''}),e.inherit(i,{begin: 'b"',end: '"'}),i,n,o]},s={variants: [e.BINARY_NUMBER_MODE,e.C_NUMBER_MODE]},c={keyword: '__CLASS__ __DIR__ __FILE__ __FUNCTION__ __LINE__ __METHOD__ __NAMESPACE__ __TRAIT__ die echo exit include include_once print require require_once array abstract and as binary bool boolean break callable case catch class clone const continue declare default do double else elseif empty enddeclare endfor endforeach endif endswitch endwhile eval extends final finally float for foreach from global goto if implements instanceof insteadof int integer interface isset iterable list new object or private protected public real return string switch throw trait try unset use var void while xor yield',literal: 'false null true',built_in: 'Error|0 AppendIterator ArgumentCountError ArithmeticError ArrayIterator ArrayObject AssertionError BadFunctionCallException BadMethodCallException CachingIterator CallbackFilterIterator CompileError Countable DirectoryIterator DivisionByZeroError DomainException EmptyIterator ErrorException Exception FilesystemIterator FilterIterator GlobIterator InfiniteIterator InvalidArgumentException IteratorIterator LengthException LimitIterator LogicException MultipleIterator NoRewindIterator OutOfBoundsException OutOfRangeException OuterIterator OverflowException ParentIterator ParseError RangeException RecursiveArrayIterator RecursiveCachingIterator RecursiveCallbackFilterIterator RecursiveDirectoryIterator RecursiveFilterIterator RecursiveIterator RecursiveIteratorIterator RecursiveRegexIterator RecursiveTreeIterator RegexIterator RuntimeException SeekableIterator SplDoublyLinkedList SplFileInfo SplFileObject SplFixedArray SplHeap SplMaxHeap SplMinHeap SplObjectStorage SplObserver SplObserver SplPriorityQueue SplQueue SplStack SplSubject SplSubject SplTempFileObject TypeError UnderflowException UnexpectedValueException ArrayAccess Closure Generator Iterator IteratorAggregate Serializable Throwable Traversable WeakReference Directory __PHP_Incomplete_Class parent php_user_filter self static stdClass'}; return {aliases: ['php','php3','php4','php5','php6','php7'],case_insensitive: !0,keywords: c,contains: [e.HASH_COMMENT_MODE,e.COMMENT('//','$',{contains: [t]}),e.COMMENT('/\\*','\\*/',{contains: [{className: 'doctag',begin: '@[A-Za-z]+'}]}),e.COMMENT('__halt_compiler.+?;',!1,{endsWithParent: !0,keywords: '__halt_compiler'}),t,{className: 'keyword',begin: /\$this\b/},r,{begin: /(::|->)+[a-zA-Z_\x7f-\xff][a-zA-Z0-9_\x7f-\xff]*/},{className: 'function',beginKeywords: 'fn function',end: /[;{]/,excludeEnd: !0,illegal: '[$%\\[]',contains: [e.UNDERSCORE_TITLE_MODE,{className: 'params',begin: '\\(',end: '\\)',excludeBegin: !0,excludeEnd: !0,keywords: c,contains: ['self',r,e.C_BLOCK_COMMENT_MODE,l,s]}]},{className: 'class',beginKeywords: 'class interface',end: '{',excludeEnd: !0,illegal: /[:\(\$"]/,contains: [{beginKeywords: 'extends implements'},e.UNDERSCORE_TITLE_MODE]},{beginKeywords: 'namespace',end: ';',illegal: /[\.']/,contains: [e.UNDERSCORE_TITLE_MODE]},{beginKeywords: 'use',end: ';',contains: [e.UNDERSCORE_TITLE_MODE]},{begin: '=>'},l,s]};};}())); +hljs.registerLanguage('php-template',(function() {'use strict'; return function(n) {return {name: 'PHP template',subLanguage: 'xml',contains: [{begin: /<\?(php|=)?/,end: /\?>/,subLanguage: 'php',contains: [{begin: '/\\*',end: '\\*/',skip: !0},{begin: 'b"',end: '"',skip: !0},{begin: 'b\'',end: '\'',skip: !0},n.inherit(n.APOS_STRING_MODE,{illegal: null,className: null,contains: null,skip: !0}),n.inherit(n.QUOTE_STRING_MODE,{illegal: null,className: null,contains: null,skip: !0})]}]};};}())); +hljs.registerLanguage('plaintext',(function() {'use strict'; return function(t) {return {name: 'Plain text',aliases: ['text','txt'],disableAutodetect: !0};};}())); +hljs.registerLanguage('properties',(function() {'use strict'; return function(e) {const n='[ \\t\\f]*',t=`(${n}[:=]${n}|[ \\t\\f]+)`,a='([^\\\\:= \\t\\f\\n]|\\\\.)+',s={end: t,relevance: 0,starts: {className: 'string',end: /$/,relevance: 0,contains: [{begin: '\\\\\\n'}]}}; return {name: '.properties',case_insensitive: !0,illegal: /\S/,contains: [e.COMMENT('^\\s*[!#]','$'),{begin: `([^\\\\\\W:= \\t\\f\\n]|\\\\.)+${t}`,returnBegin: !0,contains: [{className: 'attr',begin: '([^\\\\\\W:= \\t\\f\\n]|\\\\.)+',endsParent: !0,relevance: 0}],starts: s},{begin: a+t,returnBegin: !0,relevance: 0,contains: [{className: 'meta',begin: a,endsParent: !0,relevance: 0}],starts: s},{className: 'attr',relevance: 0,begin: `${a+n}$`}]};};}())); +hljs.registerLanguage('python',(function() {'use strict'; return function(e) {const n={keyword: 'and elif is global as in if from raise for except finally print import pass return exec else break not with class assert yield try while continue del or def lambda async await nonlocal|10',built_in: 'Ellipsis NotImplemented',literal: 'False None True'},a={className: 'meta',begin: /^(>>>|\.\.\.) /},i={className: 'subst',begin: /\{/,end: /\}/,keywords: n,illegal: /#/},s={begin: /\{\{/,relevance: 0},r={className: 'string',contains: [e.BACKSLASH_ESCAPE],variants: [{begin: /(u|b)?r?'''/,end: /'''/,contains: [e.BACKSLASH_ESCAPE,a],relevance: 10},{begin: /(u|b)?r?"""/,end: /"""/,contains: [e.BACKSLASH_ESCAPE,a],relevance: 10},{begin: /(fr|rf|f)'''/,end: /'''/,contains: [e.BACKSLASH_ESCAPE,a,s,i]},{begin: /(fr|rf|f)"""/,end: /"""/,contains: [e.BACKSLASH_ESCAPE,a,s,i]},{begin: /(u|r|ur)'/,end: /'/,relevance: 10},{begin: /(u|r|ur)"/,end: /"/,relevance: 10},{begin: /(b|br)'/,end: /'/},{begin: /(b|br)"/,end: /"/},{begin: /(fr|rf|f)'/,end: /'/,contains: [e.BACKSLASH_ESCAPE,s,i]},{begin: /(fr|rf|f)"/,end: /"/,contains: [e.BACKSLASH_ESCAPE,s,i]},e.APOS_STRING_MODE,e.QUOTE_STRING_MODE]},l={className: 'number',relevance: 0,variants: [{begin: `${e.BINARY_NUMBER_RE}[lLjJ]?`},{begin: '\\b(0o[0-7]+)[lLjJ]?'},{begin: `${e.C_NUMBER_RE}[lLjJ]?`}]},t={className: 'params',variants: [{begin: /\(\s*\)/,skip: !0,className: null},{begin: /\(/,end: /\)/,excludeBegin: !0,excludeEnd: !0,contains: ['self',a,l,r,e.HASH_COMMENT_MODE]}]}; return i.contains=[r,l,a],{name: 'Python',aliases: ['py','gyp','ipython'],keywords: n,illegal: /(<\/|->|\?)|=>/,contains: [a,l,{beginKeywords: 'if',relevance: 0},r,e.HASH_COMMENT_MODE,{variants: [{className: 'function',beginKeywords: 'def'},{className: 'class',beginKeywords: 'class'}],end: /:/,illegal: /[${=;\n,]/,contains: [e.UNDERSCORE_TITLE_MODE,t,{begin: /->/,endsWithParent: !0,keywords: 'None'}]},{className: 'meta',begin: /^[\t ]*@/,end: /$/},{begin: /\b(print|exec)\(/}]};};}())); +hljs.registerLanguage('python-repl',(function() {'use strict'; return function(n) {return {aliases: ['pycon'],contains: [{className: 'meta',starts: {end: / |$/,starts: {end: '$',subLanguage: 'python'}},variants: [{begin: /^>>>(?=[ ]|$)/},{begin: /^\.\.\.(?=[ ]|$)/}]}]};};}())); +hljs.registerLanguage('ruby',(function() {'use strict'; return function(e) {const n='[a-zA-Z_]\\w*[!?=]?|[-+~]\\@|<<|>>|=~|===?|<=>|[<>]=?|\\*\\*|[-/+%^&*~`|]|\\[\\]=?',a={keyword: 'and then defined module in return redo if BEGIN retry end for self when next until do begin unless END rescue else break undef not super class case require yield alias while ensure elsif or include attr_reader attr_writer attr_accessor',literal: 'true false nil'},s={className: 'doctag',begin: '@[A-Za-z]+'},i={begin: '#<',end: '>'},r=[e.COMMENT('#','$',{contains: [s]}),e.COMMENT('^\\=begin','^\\=end',{contains: [s],relevance: 10}),e.COMMENT('^__END__','\\n$')],c={className: 'subst',begin: '#\\{',end: '}',keywords: a},t={className: 'string',contains: [e.BACKSLASH_ESCAPE,c],variants: [{begin: /'/,end: /'/},{begin: /"/,end: /"/},{begin: /`/,end: /`/},{begin: '%[qQwWx]?\\(',end: '\\)'},{begin: '%[qQwWx]?\\[',end: '\\]'},{begin: '%[qQwWx]?{',end: '}'},{begin: '%[qQwWx]?<',end: '>'},{begin: '%[qQwWx]?/',end: '/'},{begin: '%[qQwWx]?%',end: '%'},{begin: '%[qQwWx]?-',end: '-'},{begin: '%[qQwWx]?\\|',end: '\\|'},{begin: /\B\?(\\\d{1,3}|\\x[A-Fa-f0-9]{1,2}|\\u[A-Fa-f0-9]{4}|\\?\S)\b/},{begin: /<<[-~]?'?(\w+)(?:.|\n)*?\n\s*\1\b/,returnBegin: !0,contains: [{begin: /<<[-~]?'?/},e.END_SAME_AS_BEGIN({begin: /(\w+)/,end: /(\w+)/,contains: [e.BACKSLASH_ESCAPE,c]})]}]},b={className: 'params',begin: '\\(',end: '\\)',endsParent: !0,keywords: a},d=[t,i,{className: 'class',beginKeywords: 'class module',end: '$|;',illegal: /=/,contains: [e.inherit(e.TITLE_MODE,{begin: '[A-Za-z_]\\w*(::\\w+)*(\\?|\\!)?'}),{begin: '<\\s*',contains: [{begin: `(${e.IDENT_RE}::)?${e.IDENT_RE}`}]}].concat(r)},{className: 'function',beginKeywords: 'def',end: '$|;',contains: [e.inherit(e.TITLE_MODE,{begin: n}),b].concat(r)},{begin: `${e.IDENT_RE}::`},{className: 'symbol',begin: `${e.UNDERSCORE_IDENT_RE}(\\!|\\?)?:`,relevance: 0},{className: 'symbol',begin: ':(?!\\s)',contains: [t,{begin: n}],relevance: 0},{className: 'number',begin: '(\\b0[0-7_]+)|(\\b0x[0-9a-fA-F_]+)|(\\b[1-9][0-9_]*(\\.[0-9_]+)?)|[0_]\\b',relevance: 0},{begin: '(\\$\\W)|((\\$|\\@\\@?)(\\w+))'},{className: 'params',begin: /\|/,end: /\|/,keywords: a},{begin: `(${e.RE_STARTERS_RE}|unless)\\s*`,keywords: 'unless',contains: [i,{className: 'regexp',contains: [e.BACKSLASH_ESCAPE,c],illegal: /\n/,variants: [{begin: '/',end: '/[a-z]*'},{begin: '%r{',end: '}[a-z]*'},{begin: '%r\\(',end: '\\)[a-z]*'},{begin: '%r!',end: '![a-z]*'},{begin: '%r\\[',end: '\\][a-z]*'}]}].concat(r),relevance: 0}].concat(r); c.contains=d,b.contains=d; const g=[{begin: /^\s*=>/,starts: {end: '$',contains: d}},{className: 'meta',begin: '^([>?]>|[\\w#]+\\(\\w+\\):\\d+:\\d+>|(\\w+-)?\\d+\\.\\d+\\.\\d(p\\d+)?[^>]+>)',starts: {end: '$',contains: d}}]; return {name: 'Ruby',aliases: ['rb','gemspec','podspec','thor','irb'],keywords: a,illegal: /\/\*/,contains: r.concat(g).concat(d)};};}())); +hljs.registerLanguage('rust',(function() {'use strict'; return function(e) {const n='([ui](8|16|32|64|128|size)|f(32|64))?',t='drop i8 i16 i32 i64 i128 isize u8 u16 u32 u64 u128 usize f32 f64 str char bool Box Option Result String Vec Copy Send Sized Sync Drop Fn FnMut FnOnce ToOwned Clone Debug PartialEq PartialOrd Eq Ord AsRef AsMut Into From Default Iterator Extend IntoIterator DoubleEndedIterator ExactSizeIterator SliceConcatExt ToString assert! assert_eq! bitflags! bytes! cfg! col! concat! concat_idents! debug_assert! debug_assert_eq! env! panic! file! format! format_args! include_bin! include_str! line! local_data_key! module_path! option_env! print! println! select! stringify! try! unimplemented! unreachable! vec! write! writeln! macro_rules! assert_ne! debug_assert_ne!'; return {name: 'Rust',aliases: ['rs'],keywords: {$pattern: `${e.IDENT_RE}!?`,keyword: 'abstract as async await become box break const continue crate do dyn else enum extern false final fn for if impl in let loop macro match mod move mut override priv pub ref return self Self static struct super trait true try type typeof unsafe unsized use virtual where while yield',literal: 'true false Some None Ok Err',built_in: t},illegal: ''}]};};}())); +hljs.registerLanguage('scss',(function() {'use strict'; return function(e) {const t={className: 'variable',begin: '(\\$[a-zA-Z-][a-zA-Z0-9_-]*)\\b'},i={className: 'number',begin: '#[0-9A-Fa-f]+'}; return e.CSS_NUMBER_MODE,e.QUOTE_STRING_MODE,e.APOS_STRING_MODE,e.C_BLOCK_COMMENT_MODE,{name: 'SCSS',case_insensitive: !0,illegal: '[=/|\']',contains: [e.C_LINE_COMMENT_MODE,e.C_BLOCK_COMMENT_MODE,{className: 'selector-id',begin: '\\#[A-Za-z0-9_-]+',relevance: 0},{className: 'selector-class',begin: '\\.[A-Za-z0-9_-]+',relevance: 0},{className: 'selector-attr',begin: '\\[',end: '\\]',illegal: '$'},{className: 'selector-tag',begin: '\\b(a|abbr|acronym|address|area|article|aside|audio|b|base|big|blockquote|body|br|button|canvas|caption|cite|code|col|colgroup|command|datalist|dd|del|details|dfn|div|dl|dt|em|embed|fieldset|figcaption|figure|footer|form|frame|frameset|(h[1-6])|head|header|hgroup|hr|html|i|iframe|img|input|ins|kbd|keygen|label|legend|li|link|map|mark|meta|meter|nav|noframes|noscript|object|ol|optgroup|option|output|p|param|pre|progress|q|rp|rt|ruby|samp|script|section|select|small|span|strike|strong|style|sub|sup|table|tbody|td|textarea|tfoot|th|thead|time|title|tr|tt|ul|var|video)\\b',relevance: 0},{className: 'selector-pseudo',begin: ':(visited|valid|root|right|required|read-write|read-only|out-range|optional|only-of-type|only-child|nth-of-type|nth-last-of-type|nth-last-child|nth-child|not|link|left|last-of-type|last-child|lang|invalid|indeterminate|in-range|hover|focus|first-of-type|first-line|first-letter|first-child|first|enabled|empty|disabled|default|checked|before|after|active)'},{className: 'selector-pseudo',begin: '::(after|before|choices|first-letter|first-line|repeat-index|repeat-item|selection|value)'},t,{className: 'attribute',begin: '\\b(src|z-index|word-wrap|word-spacing|word-break|width|widows|white-space|visibility|vertical-align|unicode-bidi|transition-timing-function|transition-property|transition-duration|transition-delay|transition|transform-style|transform-origin|transform|top|text-underline-position|text-transform|text-shadow|text-rendering|text-overflow|text-indent|text-decoration-style|text-decoration-line|text-decoration-color|text-decoration|text-align-last|text-align|tab-size|table-layout|right|resize|quotes|position|pointer-events|perspective-origin|perspective|page-break-inside|page-break-before|page-break-after|padding-top|padding-right|padding-left|padding-bottom|padding|overflow-y|overflow-x|overflow-wrap|overflow|outline-width|outline-style|outline-offset|outline-color|outline|orphans|order|opacity|object-position|object-fit|normal|none|nav-up|nav-right|nav-left|nav-index|nav-down|min-width|min-height|max-width|max-height|mask|marks|margin-top|margin-right|margin-left|margin-bottom|margin|list-style-type|list-style-position|list-style-image|list-style|line-height|letter-spacing|left|justify-content|initial|inherit|ime-mode|image-orientation|image-resolution|image-rendering|icon|hyphens|height|font-weight|font-variant-ligatures|font-variant|font-style|font-stretch|font-size-adjust|font-size|font-language-override|font-kerning|font-feature-settings|font-family|font|float|flex-wrap|flex-shrink|flex-grow|flex-flow|flex-direction|flex-basis|flex|filter|empty-cells|display|direction|cursor|counter-reset|counter-increment|content|column-width|column-span|column-rule-width|column-rule-style|column-rule-color|column-rule|column-gap|column-fill|column-count|columns|color|clip-path|clip|clear|caption-side|break-inside|break-before|break-after|box-sizing|box-shadow|box-decoration-break|bottom|border-width|border-top-width|border-top-style|border-top-right-radius|border-top-left-radius|border-top-color|border-top|border-style|border-spacing|border-right-width|border-right-style|border-right-color|border-right|border-radius|border-left-width|border-left-style|border-left-color|border-left|border-image-width|border-image-source|border-image-slice|border-image-repeat|border-image-outset|border-image|border-color|border-collapse|border-bottom-width|border-bottom-style|border-bottom-right-radius|border-bottom-left-radius|border-bottom-color|border-bottom|border|background-size|background-repeat|background-position|background-origin|background-image|background-color|background-clip|background-attachment|background-blend-mode|background|backface-visibility|auto|animation-timing-function|animation-play-state|animation-name|animation-iteration-count|animation-fill-mode|animation-duration|animation-direction|animation-delay|animation|align-self|align-items|align-content)\\b',illegal: '[^\\s]'},{begin: '\\b(whitespace|wait|w-resize|visible|vertical-text|vertical-ideographic|uppercase|upper-roman|upper-alpha|underline|transparent|top|thin|thick|text|text-top|text-bottom|tb-rl|table-header-group|table-footer-group|sw-resize|super|strict|static|square|solid|small-caps|separate|se-resize|scroll|s-resize|rtl|row-resize|ridge|right|repeat|repeat-y|repeat-x|relative|progress|pointer|overline|outside|outset|oblique|nowrap|not-allowed|normal|none|nw-resize|no-repeat|no-drop|newspaper|ne-resize|n-resize|move|middle|medium|ltr|lr-tb|lowercase|lower-roman|lower-alpha|loose|list-item|line|line-through|line-edge|lighter|left|keep-all|justify|italic|inter-word|inter-ideograph|inside|inset|inline|inline-block|inherit|inactive|ideograph-space|ideograph-parenthesis|ideograph-numeric|ideograph-alpha|horizontal|hidden|help|hand|groove|fixed|ellipsis|e-resize|double|dotted|distribute|distribute-space|distribute-letter|distribute-all-lines|disc|disabled|default|decimal|dashed|crosshair|collapse|col-resize|circle|char|center|capitalize|break-word|break-all|bottom|both|bolder|bold|block|bidi-override|below|baseline|auto|always|all-scroll|absolute|table|table-cell)\\b'},{begin: ':',end: ';',contains: [t,i,e.CSS_NUMBER_MODE,e.QUOTE_STRING_MODE,e.APOS_STRING_MODE,{className: 'meta',begin: '!important'}]},{begin: '@(page|font-face)',lexemes: '@[a-z-]+',keywords: '@page @font-face'},{begin: '@',end: '[{;]',returnBegin: !0,keywords: 'and or not only',contains: [{begin: '@[a-z-]+',className: 'keyword'},t,e.QUOTE_STRING_MODE,e.APOS_STRING_MODE,i,e.CSS_NUMBER_MODE]}]};};}())); +hljs.registerLanguage('shell',(function() {'use strict'; return function(s) {return {name: 'Shell Session',aliases: ['console'],contains: [{className: 'meta',begin: '^\\s{0,3}[/\\w\\d\\[\\]()@-]*[>%$#]',starts: {end: '$',subLanguage: 'bash'}}]};};}())); +hljs.registerLanguage('sql',(function() {'use strict'; return function(e) {const t=e.COMMENT('--','$'); return {name: 'SQL',case_insensitive: !0,illegal: /[<>{}*]/,contains: [{beginKeywords: 'begin end start commit rollback savepoint lock alter create drop rename call delete do handler insert load replace select truncate update set show pragma grant merge describe use explain help declare prepare execute deallocate release unlock purge reset change stop analyze cache flush optimize repair kill install uninstall checksum restore check backup revoke comment values with',end: /;/,endsWithParent: !0,keywords: {$pattern: /[\w\.]+/,keyword: 'as abort abs absolute acc acce accep accept access accessed accessible account acos action activate add addtime admin administer advanced advise aes_decrypt aes_encrypt after agent aggregate ali alia alias all allocate allow alter always analyze ancillary and anti any anydata anydataset anyschema anytype apply archive archived archivelog are as asc ascii asin assembly assertion associate asynchronous at atan atn2 attr attri attrib attribu attribut attribute attributes audit authenticated authentication authid authors auto autoallocate autodblink autoextend automatic availability avg backup badfile basicfile before begin beginning benchmark between bfile bfile_base big bigfile bin binary_double binary_float binlog bit_and bit_count bit_length bit_or bit_xor bitmap blob_base block blocksize body both bound bucket buffer_cache buffer_pool build bulk by byte byteordermark bytes cache caching call calling cancel capacity cascade cascaded case cast catalog category ceil ceiling chain change changed char_base char_length character_length characters characterset charindex charset charsetform charsetid check checksum checksum_agg child choose chr chunk class cleanup clear client clob clob_base clone close cluster_id cluster_probability cluster_set clustering coalesce coercibility col collate collation collect colu colum column column_value columns columns_updated comment commit compact compatibility compiled complete composite_limit compound compress compute concat concat_ws concurrent confirm conn connec connect connect_by_iscycle connect_by_isleaf connect_by_root connect_time connection consider consistent constant constraint constraints constructor container content contents context contributors controlfile conv convert convert_tz corr corr_k corr_s corresponding corruption cos cost count count_big counted covar_pop covar_samp cpu_per_call cpu_per_session crc32 create creation critical cross cube cume_dist curdate current current_date current_time current_timestamp current_user cursor curtime customdatum cycle data database databases datafile datafiles datalength date_add date_cache date_format date_sub dateadd datediff datefromparts datename datepart datetime2fromparts day day_to_second dayname dayofmonth dayofweek dayofyear days db_role_change dbtimezone ddl deallocate declare decode decompose decrement decrypt deduplicate def defa defau defaul default defaults deferred defi defin define degrees delayed delegate delete delete_all delimited demand dense_rank depth dequeue des_decrypt des_encrypt des_key_file desc descr descri describ describe descriptor deterministic diagnostics difference dimension direct_load directory disable disable_all disallow disassociate discardfile disconnect diskgroup distinct distinctrow distribute distributed div do document domain dotnet double downgrade drop dumpfile duplicate duration each edition editionable editions element ellipsis else elsif elt empty enable enable_all enclosed encode encoding encrypt end end-exec endian enforced engine engines enqueue enterprise entityescaping eomonth error errors escaped evalname evaluate event eventdata events except exception exceptions exchange exclude excluding execu execut execute exempt exists exit exp expire explain explode export export_set extended extent external external_1 external_2 externally extract failed failed_login_attempts failover failure far fast feature_set feature_value fetch field fields file file_name_convert filesystem_like_logging final finish first first_value fixed flash_cache flashback floor flush following follows for forall force foreign form forma format found found_rows freelist freelists freepools fresh from from_base64 from_days ftp full function general generated get get_format get_lock getdate getutcdate global global_name globally go goto grant grants greatest group group_concat group_id grouping grouping_id groups gtid_subtract guarantee guard handler hash hashkeys having hea head headi headin heading heap help hex hierarchy high high_priority hosts hour hours http id ident_current ident_incr ident_seed identified identity idle_time if ifnull ignore iif ilike ilm immediate import in include including increment index indexes indexing indextype indicator indices inet6_aton inet6_ntoa inet_aton inet_ntoa infile initial initialized initially initrans inmemory inner innodb input insert install instance instantiable instr interface interleaved intersect into invalidate invisible is is_free_lock is_ipv4 is_ipv4_compat is_not is_not_null is_used_lock isdate isnull isolation iterate java join json json_exists keep keep_duplicates key keys kill language large last last_day last_insert_id last_value lateral lax lcase lead leading least leaves left len lenght length less level levels library like like2 like4 likec limit lines link list listagg little ln load load_file lob lobs local localtime localtimestamp locate locator lock locked log log10 log2 logfile logfiles logging logical logical_reads_per_call logoff logon logs long loop low low_priority lower lpad lrtrim ltrim main make_set makedate maketime managed management manual map mapping mask master master_pos_wait match matched materialized max maxextents maximize maxinstances maxlen maxlogfiles maxloghistory maxlogmembers maxsize maxtrans md5 measures median medium member memcompress memory merge microsecond mid migration min minextents minimum mining minus minute minutes minvalue missing mod mode model modification modify module monitoring month months mount move movement multiset mutex name name_const names nan national native natural nav nchar nclob nested never new newline next nextval no no_write_to_binlog noarchivelog noaudit nobadfile nocheck nocompress nocopy nocycle nodelay nodiscardfile noentityescaping noguarantee nokeep nologfile nomapping nomaxvalue nominimize nominvalue nomonitoring none noneditionable nonschema noorder nopr nopro noprom nopromp noprompt norely noresetlogs noreverse normal norowdependencies noschemacheck noswitch not nothing notice notnull notrim novalidate now nowait nth_value nullif nulls num numb numbe nvarchar nvarchar2 object ocicoll ocidate ocidatetime ociduration ociinterval ociloblocator ocinumber ociref ocirefcursor ocirowid ocistring ocitype oct octet_length of off offline offset oid oidindex old on online only opaque open operations operator optimal optimize option optionally or oracle oracle_date oradata ord ordaudio orddicom orddoc order ordimage ordinality ordvideo organization orlany orlvary out outer outfile outline output over overflow overriding package pad parallel parallel_enable parameters parent parse partial partition partitions pascal passing password password_grace_time password_lock_time password_reuse_max password_reuse_time password_verify_function patch path patindex pctincrease pctthreshold pctused pctversion percent percent_rank percentile_cont percentile_disc performance period period_add period_diff permanent physical pi pipe pipelined pivot pluggable plugin policy position post_transaction pow power pragma prebuilt precedes preceding precision prediction prediction_cost prediction_details prediction_probability prediction_set prepare present preserve prior priority private private_sga privileges procedural procedure procedure_analyze processlist profiles project prompt protection public publishingservername purge quarter query quick quiesce quota quotename radians raise rand range rank raw read reads readsize rebuild record records recover recovery recursive recycle redo reduced ref reference referenced references referencing refresh regexp_like register regr_avgx regr_avgy regr_count regr_intercept regr_r2 regr_slope regr_sxx regr_sxy reject rekey relational relative relaylog release release_lock relies_on relocate rely rem remainder rename repair repeat replace replicate replication required reset resetlogs resize resource respect restore restricted result result_cache resumable resume retention return returning returns reuse reverse revoke right rlike role roles rollback rolling rollup round row row_count rowdependencies rowid rownum rows rtrim rules safe salt sample save savepoint sb1 sb2 sb4 scan schema schemacheck scn scope scroll sdo_georaster sdo_topo_geometry search sec_to_time second seconds section securefile security seed segment select self semi sequence sequential serializable server servererror session session_user sessions_per_user set sets settings sha sha1 sha2 share shared shared_pool short show shrink shutdown si_averagecolor si_colorhistogram si_featurelist si_positionalcolor si_stillimage si_texture siblings sid sign sin size size_t sizes skip slave sleep smalldatetimefromparts smallfile snapshot some soname sort soundex source space sparse spfile split sql sql_big_result sql_buffer_result sql_cache sql_calc_found_rows sql_small_result sql_variant_property sqlcode sqldata sqlerror sqlname sqlstate sqrt square standalone standby start starting startup statement static statistics stats_binomial_test stats_crosstab stats_ks_test stats_mode stats_mw_test stats_one_way_anova stats_t_test_ stats_t_test_indep stats_t_test_one stats_t_test_paired stats_wsr_test status std stddev stddev_pop stddev_samp stdev stop storage store stored str str_to_date straight_join strcmp strict string struct stuff style subdate subpartition subpartitions substitutable substr substring subtime subtring_index subtype success sum suspend switch switchoffset switchover sync synchronous synonym sys sys_xmlagg sysasm sysaux sysdate sysdatetimeoffset sysdba sysoper system system_user sysutcdatetime table tables tablespace tablesample tan tdo template temporary terminated tertiary_weights test than then thread through tier ties time time_format time_zone timediff timefromparts timeout timestamp timestampadd timestampdiff timezone_abbr timezone_minute timezone_region to to_base64 to_date to_days to_seconds todatetimeoffset trace tracking transaction transactional translate translation treat trigger trigger_nestlevel triggers trim truncate try_cast try_convert try_parse type ub1 ub2 ub4 ucase unarchived unbounded uncompress under undo unhex unicode uniform uninstall union unique unix_timestamp unknown unlimited unlock unnest unpivot unrecoverable unsafe unsigned until untrusted unusable unused update updated upgrade upped upper upsert url urowid usable usage use use_stored_outlines user user_data user_resources users using utc_date utc_timestamp uuid uuid_short validate validate_password_strength validation valist value values var var_samp varcharc vari varia variab variabl variable variables variance varp varraw varrawc varray verify version versions view virtual visible void wait wallet warning warnings week weekday weekofyear wellformed when whene whenev wheneve whenever where while whitespace window with within without work wrapped xdb xml xmlagg xmlattributes xmlcast xmlcolattval xmlelement xmlexists xmlforest xmlindex xmlnamespaces xmlpi xmlquery xmlroot xmlschema xmlserialize xmltable xmltype xor year year_to_month years yearweek',literal: 'true false null unknown',built_in: 'array bigint binary bit blob bool boolean char character date dec decimal float int int8 integer interval number numeric real record serial serial8 smallint text time timestamp tinyint varchar varchar2 varying void'},contains: [{className: 'string',begin: '\'',end: '\'',contains: [{begin: '\'\''}]},{className: 'string',begin: '"',end: '"',contains: [{begin: '""'}]},{className: 'string',begin: '`',end: '`'},e.C_NUMBER_MODE,e.C_BLOCK_COMMENT_MODE,t,e.HASH_COMMENT_MODE]},e.C_BLOCK_COMMENT_MODE,t,e.HASH_COMMENT_MODE]};};}())); +hljs.registerLanguage('swift',(function() {'use strict'; return function(e) {const i={keyword: '#available #colorLiteral #column #else #elseif #endif #file #fileLiteral #function #if #imageLiteral #line #selector #sourceLocation _ __COLUMN__ __FILE__ __FUNCTION__ __LINE__ Any as as! as? associatedtype associativity break case catch class continue convenience default defer deinit didSet do dynamic dynamicType else enum extension fallthrough false fileprivate final for func get guard if import in indirect infix init inout internal is lazy left let mutating nil none nonmutating open operator optional override postfix precedence prefix private protocol Protocol public repeat required rethrows return right self Self set static struct subscript super switch throw throws true try try! try? Type typealias unowned var weak where while willSet',literal: 'true false nil',built_in: 'abs advance alignof alignofValue anyGenerator assert assertionFailure bridgeFromObjectiveC bridgeFromObjectiveCUnconditional bridgeToObjectiveC bridgeToObjectiveCUnconditional c compactMap contains count countElements countLeadingZeros debugPrint debugPrintln distance dropFirst dropLast dump encodeBitsAsWords enumerate equal fatalError filter find getBridgedObjectiveCType getVaList indices insertionSort isBridgedToObjectiveC isBridgedVerbatimToObjectiveC isUniquelyReferenced isUniquelyReferencedNonObjC join lazy lexicographicalCompare map max maxElement min minElement numericCast overlaps partition posix precondition preconditionFailure print println quickSort readLine reduce reflect reinterpretCast reverse roundUpToAlignment sizeof sizeofValue sort split startsWith stride strideof strideofValue swap toString transcode underestimateCount unsafeAddressOf unsafeBitCast unsafeDowncast unsafeUnwrap unsafeReflect withExtendedLifetime withObjectAtPlusZero withUnsafePointer withUnsafePointerToObject withUnsafeMutablePointer withUnsafeMutablePointers withUnsafePointer withUnsafePointers withVaList zip'},n=e.COMMENT('/\\*','\\*/',{contains: ['self']}),t={className: 'subst',begin: /\\\(/,end: '\\)',keywords: i,contains: []},a={className: 'string',contains: [e.BACKSLASH_ESCAPE,t],variants: [{begin: /"""/,end: /"""/},{begin: /"/,end: /"/}]},r={className: 'number',begin: '\\b([\\d_]+(\\.[\\deE_]+)?|0x[a-fA-F0-9_]+(\\.[a-fA-F0-9p_]+)?|0b[01_]+|0o[0-7_]+)\\b',relevance: 0}; return t.contains=[r],{name: 'Swift',keywords: i,contains: [a,e.C_LINE_COMMENT_MODE,n,{className: 'type',begin: '\\b[A-Z][\\wÀ-ʸ\']*[!?]'},{className: 'type',begin: '\\b[A-Z][\\wÀ-ʸ\']*',relevance: 0},r,{className: 'function',beginKeywords: 'func',end: '{',excludeEnd: !0,contains: [e.inherit(e.TITLE_MODE,{begin: /[A-Za-z$_][0-9A-Za-z$_]*/}),{begin: //},{className: 'params',begin: /\(/,end: /\)/,endsParent: !0,keywords: i,contains: ['self',r,a,e.C_BLOCK_COMMENT_MODE,{begin: ':'}],illegal: /["']/}],illegal: /\[|%/},{className: 'class',beginKeywords: 'struct protocol class extension enum',keywords: i,end: '\\{',excludeEnd: !0,contains: [e.inherit(e.TITLE_MODE,{begin: /[A-Za-z$_][\u00C0-\u02B80-9A-Za-z$_]*/})]},{className: 'meta',begin: '(@discardableResult|@warn_unused_result|@exported|@lazy|@noescape|@NSCopying|@NSManaged|@objc|@objcMembers|@convention|@required|@noreturn|@IBAction|@IBDesignable|@IBInspectable|@IBOutlet|@infix|@prefix|@postfix|@autoclosure|@testable|@available|@nonobjc|@NSApplicationMain|@UIApplicationMain|@dynamicMemberLookup|@propertyWrapper)\\b'},{beginKeywords: 'import',end: /$/,contains: [e.C_LINE_COMMENT_MODE,n]}]};};}())); +hljs.registerLanguage('typescript',(function() {'use strict'; const e=['as','in','of','if','for','while','finally','var','new','function','do','return','void','else','break','catch','instanceof','with','throw','case','default','try','switch','continue','typeof','delete','let','yield','const','class','debugger','async','await','static','import','from','export','extends'],n=['true','false','null','undefined','NaN','Infinity'],a=[].concat(['setInterval','setTimeout','clearInterval','clearTimeout','require','exports','eval','isFinite','isNaN','parseFloat','parseInt','decodeURI','decodeURIComponent','encodeURI','encodeURIComponent','escape','unescape'],['arguments','this','super','console','window','document','localStorage','module','global'],['Intl','DataView','Number','Math','Date','String','RegExp','Object','Function','Boolean','Error','Symbol','Set','Map','WeakSet','WeakMap','Proxy','Reflect','JSON','Promise','Float64Array','Int16Array','Int32Array','Int8Array','Uint16Array','Uint32Array','Float32Array','Array','Uint8Array','Uint8ClampedArray','ArrayBuffer'],['EvalError','InternalError','RangeError','ReferenceError','SyntaxError','TypeError','URIError']); return function(r) {const t={$pattern: '[A-Za-z$_][0-9A-Za-z$_]*',keyword: e.concat(['type','namespace','typedef','interface','public','private','protected','implements','declare','abstract','readonly']).join(' '),literal: n.join(' '),built_in: a.concat(['any','void','number','boolean','string','object','never','enum']).join(' ')},s={className: 'meta',begin: '@[A-Za-z$_][0-9A-Za-z$_]*'},i={className: 'number',variants: [{begin: '\\b(0[bB][01]+)n?'},{begin: '\\b(0[oO][0-7]+)n?'},{begin: `${r.C_NUMBER_RE}n?`}],relevance: 0},o={className: 'subst',begin: '\\$\\{',end: '\\}',keywords: t,contains: []},c={begin: 'html`',end: '',starts: {end: '`',returnEnd: !1,contains: [r.BACKSLASH_ESCAPE,o],subLanguage: 'xml'}},l={begin: 'css`',end: '',starts: {end: '`',returnEnd: !1,contains: [r.BACKSLASH_ESCAPE,o],subLanguage: 'css'}},E={className: 'string',begin: '`',end: '`',contains: [r.BACKSLASH_ESCAPE,o]}; o.contains=[r.APOS_STRING_MODE,r.QUOTE_STRING_MODE,c,l,E,i,r.REGEXP_MODE]; const d={begin: '\\(',end: /\)/,keywords: t,contains: ['self',r.QUOTE_STRING_MODE,r.APOS_STRING_MODE,r.NUMBER_MODE]},u={className: 'params',begin: /\(/,end: /\)/,excludeBegin: !0,excludeEnd: !0,keywords: t,contains: [r.C_LINE_COMMENT_MODE,r.C_BLOCK_COMMENT_MODE,s,d]}; return {name: 'TypeScript',aliases: ['ts'],keywords: t,contains: [r.SHEBANG(),{className: 'meta',begin: /^\s*['"]use strict['"]/},r.APOS_STRING_MODE,r.QUOTE_STRING_MODE,c,l,E,r.C_LINE_COMMENT_MODE,r.C_BLOCK_COMMENT_MODE,i,{begin: `(${r.RE_STARTERS_RE}|\\b(case|return|throw)\\b)\\s*`,keywords: 'return throw case',contains: [r.C_LINE_COMMENT_MODE,r.C_BLOCK_COMMENT_MODE,r.REGEXP_MODE,{className: 'function',begin: `(\\([^(]*(\\([^(]*(\\([^(]*\\))?\\))?\\)|${r.UNDERSCORE_IDENT_RE})\\s*=>`,returnBegin: !0,end: '\\s*=>',contains: [{className: 'params',variants: [{begin: r.UNDERSCORE_IDENT_RE},{className: null,begin: /\(\s*\)/,skip: !0},{begin: /\(/,end: /\)/,excludeBegin: !0,excludeEnd: !0,keywords: t,contains: d.contains}]}]}],relevance: 0},{className: 'function',beginKeywords: 'function',end: /[\{;]/,excludeEnd: !0,keywords: t,contains: ['self',r.inherit(r.TITLE_MODE,{begin: '[A-Za-z$_][0-9A-Za-z$_]*'}),u],illegal: /%/,relevance: 0},{beginKeywords: 'constructor',end: /[\{;]/,excludeEnd: !0,contains: ['self',u]},{begin: /module\./,keywords: {built_in: 'module'},relevance: 0},{beginKeywords: 'module',end: /\{/,excludeEnd: !0},{beginKeywords: 'interface',end: /\{/,excludeEnd: !0,keywords: 'interface extends'},{begin: /\$[(.]/},{begin: `\\.${r.IDENT_RE}`,relevance: 0},s,d]};};}())); +hljs.registerLanguage('yaml',(function() {'use strict'; return function(e) {const n='true false yes no null',a='[\\w#;/?:@&=+$,.~*\\\'()[\\]]+',s={className: 'string',relevance: 0,variants: [{begin: /'/,end: /'/},{begin: /"/,end: /"/},{begin: /\S+/}],contains: [e.BACKSLASH_ESCAPE,{className: 'template-variable',variants: [{begin: '{{',end: '}}'},{begin: '%{',end: '}'}]}]},i=e.inherit(s,{variants: [{begin: /'/,end: /'/},{begin: /"/,end: /"/},{begin: /[^\s,{}[\]]+/}]}),l={end: ',',endsWithParent: !0,excludeEnd: !0,contains: [],keywords: n,relevance: 0},t={begin: '{',end: '}',contains: [l],illegal: '\\n',relevance: 0},g={begin: '\\[',end: '\\]',contains: [l],illegal: '\\n',relevance: 0},b=[{className: 'attr',variants: [{begin: '\\w[\\w :\\/.-]*:(?=[ \t]|$)'},{begin: '"\\w[\\w :\\/.-]*":(?=[ \t]|$)'},{begin: '\'\\w[\\w :\\/.-]*\':(?=[ \t]|$)'}]},{className: 'meta',begin: '^---s*$',relevance: 10},{className: 'string',begin: '[\\|>]([0-9]?[+-])?[ ]*\\n( *)[\\S ]+\\n(\\2[\\S ]+\\n?)*'},{begin: '<%[%=-]?',end: '[%-]?%>',subLanguage: 'ruby',excludeBegin: !0,excludeEnd: !0,relevance: 0},{className: 'type',begin: `!\\w+!${a}`},{className: 'type',begin: `!<${a}>`},{className: 'type',begin: `!${a}`},{className: 'type',begin: `!!${a}`},{className: 'meta',begin: `&${e.UNDERSCORE_IDENT_RE}$`},{className: 'meta',begin: `\\*${e.UNDERSCORE_IDENT_RE}$`},{className: 'bullet',begin: '\\-(?=[ ]|$)',relevance: 0},e.HASH_COMMENT_MODE,{beginKeywords: n,keywords: {literal: n}},{className: 'number',begin: '\\b[0-9]{4}(-[0-9][0-9]){0,2}([Tt \\t][0-9][0-9]?(:[0-9][0-9]){2})?(\\.[0-9]*)?([ \\t])*(Z|[-+][0-9][0-9]?(:[0-9][0-9])?)?\\b'},{className: 'number',begin: `${e.C_NUMBER_RE}\\b`},t,g,s],c=[...b]; return c.pop(),c.push(i),l.contains=c,{name: 'YAML',case_insensitive: !0,aliases: ['yml','YAML'],contains: b};};}())); \ No newline at end of file diff --git a/test/test-project/storage/@asyncapi/html-template/test/all.contain_no_tag.test.js b/test/test-project/storage/@asyncapi/html-template/test/all.contain_no_tag.test.js new file mode 100644 index 000000000..e4b204326 --- /dev/null +++ b/test/test-project/storage/@asyncapi/html-template/test/all.contain_no_tag.test.js @@ -0,0 +1,63 @@ +const test = require('ava'); +const {containNoTag} = require('../filters/all'); + +const undef = undefined; + +test.beforeEach(t => { + t.context.foo = { name: 'foo' }; + t.context.foo._json = t.context.foo; + t.context.bar = { name: 'bar' }; + t.context.bar._json = t.context.bar; + t.context.tagsToCheck = [t.context.foo, t.context.bar]; + t.context.publish = { publish: { tags: [{ name: 'foo' }, { name: 'bar' }] } }; + t.context.publish._json = t.context.publish; + t.context.subscribe = { subscribe: { tags: [{ name: 'foo' }, { name: 'bar' }] } }; + t.context.subscribe._json = t.context.subscribe; +}); + +test('throws an error when channels is falsy', t => { + const error = t.throws(() => { containNoTag(undef, t.context.tagsToCheck); }, { instanceOf: Error } + ); + t.is(error.message, 'Channels for containNoTag was not provided?'); +}); + +test('returns false when channels contains no elements', t => { + t.context.channel = []; + t.false(containNoTag(t.context.channel, t.context.tagsToCheck)); +}); + +test('returns true when channel.publish.tags is falsy', t => { + t.context.publish = { publish: { tags: undef } }; + t.context.publish._json = t.context.publish; + t.true(containNoTag([t.context.publish, t.context.subscribe], t.context.tagsToCheck)); +}); + +test('returns true when channel.publish.tags is empty', t => { + t.context.publish = { publish: { tags: [] } }; + t.context.publish._json = t.context.publish; + t.true(containNoTag([t.context.publish, t.context.subscribe], t.context.tagsToCheck)); +}); + +test('returns true when channel.subscribe.tags is falsy', t => { + t.context.subscribe = { subscribe: { tags: undef } }; + t.context.subscribe._json = t.context.subscribe; + t.true(containNoTag([t.context.publish, t.context.subscribe], t.context.tagsToCheck)); +}); + +test('returns true when channel.subscribe.tags is empty', t => { + t.context.subscribe = { subscribe: { tags: [] } }; + t.context.subscribe._json = t.context.subscribe; + t.true(containNoTag([t.context.publish, t.context.subscribe], t.context.tagsToCheck)); +}); + +test('returns true if none of the tags in channel.publish/subscribe match with the given tags to check', t => { + t.context.foobar = { name: 'foobar' }; + t.context.foobar._json = t.context.foobar; + t.context.foobaz = { name: 'foobaz' }; + t.context.foobaz._json = t.context.foobaz; + t.true(containNoTag([t.context.publish, t.context.subscribe], [t.context.foobar, t.context.foobaz])); +}); + +test('returns true when tagsToCheck is an array of strings and none of them matches', t => { + t.true(containNoTag([t.context.publish, t.context.subscribe], ['foobaz', 'foobar'])); +}); diff --git a/test/test-project/storage/@asyncapi/html-template/test/all.contain_tags.test.js b/test/test-project/storage/@asyncapi/html-template/test/all.contain_tags.test.js new file mode 100644 index 000000000..099d123f0 --- /dev/null +++ b/test/test-project/storage/@asyncapi/html-template/test/all.contain_tags.test.js @@ -0,0 +1,54 @@ +const test = require('ava'); +const {containTags} = require('../filters/all'); + +const undef = undefined; + +test.beforeEach(t => { + t.context.foo = { name: 'foo' }; + t.context.foo._json = t.context.foo; + t.context.bar = { name: 'bar' }; + t.context.bar._json = t.context.bar; + t.context.doc = { tags: [t.context.foo, t.context.bar] }; + t.context.doc._json = t.context.doc; +}); + +test('throws an error when object is falsy', t => { + const error = t.throws(() => { containTags(undef, [t.context.foo, t.context.bar]); }, { instanceOf: Error } + ); + t.is(error.message, 'object for containsTag was not provided?'); +}); + +test('throws an error when tagsToCheck is falsy', t => { + const error = t.throws(() => { + containTags(t.context.doc, undef); + }, { instanceOf: Error } + ); + t.is(error.message, 'tagsToCheck for containsTag was not provided?'); +}); + +test('returns false if no tag in the object match with the given tags to check', t => { + t.context.foz = { name: 'foz' }; + t.context.foz._json = t.context.foz; + t.context.baz = { name: 'baz' }; + t.context.baz._json = t.context.baz; + t.false(containTags(t.context.doc, [t.context.foz, t.context.baz])); +}); + +test('returns false if object given has no tags', t => { + t.context.doc._json = { tags: undef }; + t.false(containTags(t.context.doc, [t.context.foo, t.context.bar])); +}); + +test('returns true if at least one tag in the object matches with the given tags to check', t => { + t.context.baz = { name: 'baz' }; + t.context.baz._json = t.context.baz; + t.true(containTags(t.context.doc, [t.context.bar, t.context.baz])); +}); + +test('returns true when comparing tags even if tagsToCheck is a string', t => { + t.true(containTags(t.context.doc, t.context.foo)); +}); + +test('returns true when tagsToCheck is an array of strings and at least one of them matches', t => { + t.true(containTags(t.context.doc, [t.context.foo.name, 'foobar'])); +}); diff --git a/test/test-project/storage/@asyncapi/html-template/test/all.is_expandable.test.js b/test/test-project/storage/@asyncapi/html-template/test/all.is_expandable.test.js new file mode 100644 index 000000000..261a0c17f --- /dev/null +++ b/test/test-project/storage/@asyncapi/html-template/test/all.is_expandable.test.js @@ -0,0 +1,67 @@ +const test = require('ava'); +const {isExpandable} = require('../filters/all'); + +test.beforeEach(t => { + t.context.doc = {}; + t.context.types = [{ type: 'string' }, { type: 'number' }]; + t.context.doc.patternProperties = () => ({}); +}); + +test('isExpandable when the object type is object', t => { + t.context.doc.type = () => 'object'; + t.true(isExpandable(t.context.doc)); +}); + +test('isExpandable when the object type is array', t => { + t.context.doc.type = () => 'array'; + t.true(isExpandable(t.context.doc)); +}); + +test('isExpandable when the object contains oneOf', t => { + t.context.doc.oneOf = () => t.context.types; + t.true(isExpandable(t.context.doc)); +}); + +test('isExpandable when the object contains anyOf', t => { + t.context.doc.anyOf = () => t.context.types; + t.true(isExpandable(t.context.doc)); +}); + +test('isExpandable when the object contains allOf', t => { + t.context.doc.allOf = () => t.context.types; + t.true(isExpandable(t.context.doc)); +}); + +test('isExpandable when the object contains items', t => { + t.context.doc.items = () => t.context.types; + t.true(isExpandable(t.context.doc)); +}); + +test('isExpandable when the object contains additionalItems', t => { + t.context.doc.additionalItems = () => t.context.types; + t.true(isExpandable(t.context.doc)); +}); + +test('isExpandable when the object contains properties', t => { + t.context.doc.properties = () => ({ test: { type: 'string' }, test2: { type: 'number' } }); + t.true(isExpandable(t.context.doc)); +}); + +test('isExpandable when the object contains additionalProperties', t => { + t.context.doc.additionalProperties = () => t.context.types; + t.true(isExpandable(t.context.doc)); +}); + +test('isExpandable when the object contains extensions', t => { + t.context.doc.extensions = () => ({ 'x-test': 'testing' }); + t.true(isExpandable(t.context.doc)); +}); + +test('isExpandable when the object contains patternProperties', t => { + t.context.doc.patternProperties = () => ({ test: { type: 'string' } }); + t.true(isExpandable(t.context.doc)); +}); + +test('is not expandable when object does not return any of the previous cases', t => { + t.false(isExpandable(t.context.doc)); +}); diff --git a/test/test-project/storage/@asyncapi/html-template/test/all.non_parser_extensions.test.js b/test/test-project/storage/@asyncapi/html-template/test/all.non_parser_extensions.test.js new file mode 100644 index 000000000..9c7cfe3e5 --- /dev/null +++ b/test/test-project/storage/@asyncapi/html-template/test/all.non_parser_extensions.test.js @@ -0,0 +1,39 @@ +const test = require('ava'); +const {nonParserExtensions} = require('../filters/all'); + +const undef = undefined; + +test.beforeEach(t => t.context.doc = {}); + +test('returns an empty Map when schema is falsy', t => { + const result = nonParserExtensions(undef); + t.is(result.constructor.name, 'Map'); + t.is(result.size, 0); +}); + +test('returns an empty Map when schema has no extensions', t => { + const result = nonParserExtensions(t.context.doc); + t.is(result.constructor.name, 'Map'); + t.is(result.size, 0); +}); + +test('returns an empty Map when schema extensions is not a function', t => { + t.context.doc.extensions = []; + const result = nonParserExtensions(t.context.doc); + t.is(result.constructor.name, 'Map'); + t.is(result.size, 0); +}); + +test('returns a Map with the truthy schema extensions that do not start with x-parser-', t => { + t.context.doc.extensions = () => { + return { + 'x-test': 'x-test-val', + 'x-undef': undef, + 'x-parser-test': 'x-parser-test-val' + }; + }; + t.deepEqual( + nonParserExtensions(t.context.doc), + new Map([['x-test', 'x-test-val'], ['x-undef', undef]]) + ); +}); diff --git a/test/test-project/storage/@asyncapi/html-template/test/all.operations_tags.test.js b/test/test-project/storage/@asyncapi/html-template/test/all.operations_tags.test.js new file mode 100644 index 000000000..82229c18d --- /dev/null +++ b/test/test-project/storage/@asyncapi/html-template/test/all.operations_tags.test.js @@ -0,0 +1,78 @@ +const test = require('ava'); +const {operationsTags} = require('../filters/all'); + +const undef = undefined; + +test.beforeEach(t => { + t.context.parser = require('@asyncapi/parser'); +}); + +test('it extracts the pub/sub tags names from the channel in the given object', t => { + const pubTags = [{ name: 'smartylighting' }, { name: 'measure' }]; + const subTags = [{ name: 'dim' }]; + const input = { + channels: { + 'smartylighting/streetlights/1/0/event/1/lighting/measured': { + publish: { + tags: pubTags + } + }, + 'smartylighting/streetlights/1/0/action/1/dim': { + subscribe: { + tags: subTags + } + } + } + }; + const doc = new t.context.parser.AsyncAPIDocument(input); + const result = operationsTags(doc); + + t.deepEqual(result, pubTags.concat(subTags).map(({ name }) => name)); + t.is(result.constructor.name, 'Array'); +}); + +test('it extracts the pub/sub tags when present', t => { + const pubTags = [{ name: 'smartylighting' }, { name: 'measure' }]; + const input = { + channels: { + 'smartylighting/streetlights/1/0/event/1/lighting/measured': { + publish: { + tags: pubTags + } + }, + 'smartylighting/streetlights/1/0/action/1/dim': { + subscribe: { + operationId: 'dim' + } + } + } + }; + const doc = new t.context.parser.AsyncAPIDocument(input); + const result = operationsTags(doc); + + t.deepEqual(result, pubTags.map(({ name }) => name)); + t.is(result.constructor.name, 'Array'); +}); + +test('it extracts the pub/sub tags without repeated values', t => { + const subTags = pubTags = [{ name: 'smartylighting' }]; + const input = { + channels: { + 'smartylighting/streetlights/1/0/event/1/lighting/measured': { + publish: { + tags: pubTags + } + }, + 'smartylighting/streetlights/1/0/action/1/dim': { + subscribe: { + operationId: subTags + } + } + } + }; + const doc = new t.context.parser.AsyncAPIDocument(input); + const result = operationsTags(doc); + + t.deepEqual(result, pubTags.map(({ name }) => name)); + t.is(result.constructor.name, 'Array'); +}); diff --git a/test/test-project/storage/public/types-registry/package.json b/test/test-project/storage/public/types-registry/package.json new file mode 100644 index 000000000..c61349f4e --- /dev/null +++ b/test/test-project/storage/public/types-registry/package.json @@ -0,0 +1,45640 @@ +{ + "name": "types-registry", + "versions": { + "0.1.0": { + "name": "types-registry", + "version": "0.1.0", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/Microsoft/types-registry.git" + }, + "scripts": { + "test": "echo \"Error: no test specified\" && exit 1" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": { + "name": "Microsoft Corp." + }, + "license": "Apache-2.0", + "gitHead": "6781f96b2ad534dd390e1ee114cfd12032ecbd2c", + "bugs": { + "url": "https://github.com/Microsoft/types-registry/issues" + }, + "homepage": "https://github.com/Microsoft/types-registry#readme", + "_id": "types-registry@0.1.0", + "_shasum": "fba0a8ecbe1c10a47cdfe91039afc0d95b7f4438", + "_from": ".", + "_npmVersion": "3.8.6", + "_nodeVersion": "5.11.1", + "_npmUser": { + "name": "typescript", + "email": "typescript@microsoft.com" + }, + "dist": { + "shasum": "fba0a8ecbe1c10a47cdfe91039afc0d95b7f4438", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.0.tgz", + "integrity": "sha512-hQXuYwa1flMeJ9AJb2cjJcRxQJRqzb2HBLd8P0YgXCjTgsFtnHrLXY7X8FZmRgZJSmryyp/wryzrO0WXaG1hpA==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEQCIBS2bj4nFpTZj3jbe/xdw9K9KtlO3drB98PSTfnIOYH8AiAw+8aQtz9uA0j5a9gw6ZyLhx8wQMYKoLE1lVIhMGfO8A==" + } + ] + }, + "maintainers": [ + { + "name": "typescript", + "email": "typescript@microsoft.com" + } + ], + "_npmOperationalInternal": { + "host": "packages-18-east.internal.npmjs.com", + "tmp": "tmp/types-registry-0.1.0.tgz_1478134738455_0.17277935077436268" + }, + "directories": {}, + "contributors": [] + }, + "0.1.1": { + "name": "types-registry", + "version": "0.1.1", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/Microsoft/types-publisher.git" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "Apache-2.0", + "_id": "types-registry@0.1.1", + "dist": { + "shasum": "ce6ba33f8a0997b7144c61bff71ed28c8a64814b", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.1.tgz", + "integrity": "sha512-ZmIa9surbbdL4IEri+YWlswtf7lcmNM2P2xeJ/xcRmx3sKibTctDXEbxoYRQB+ge+kATR1WwkQoezvtofuSD3g==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEQCIGyXMs+fIpQOfTiK+aaskzlM5f0w+YEOv2sNEtCnxVE8AiBfZtcGSiWgymgmb006oZkSxKpzijgQCNJm9KBhx8A3lA==" + } + ] + }, + "maintainers": [ + { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + { + "name": "typescript", + "email": "typescript@microsoft.com" + } + ], + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "_npmOperationalInternal": { + "host": "packages-18-east.internal.npmjs.com", + "tmp": "tmp/types-registry-0.1.1.tgz_1478195272950_0.9120005948934704" + }, + "directories": {}, + "contributors": [] + }, + "0.1.2": { + "name": "types-registry", + "version": "0.1.2", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/Microsoft/types-publisher.git" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "Apache-2.0", + "_id": "types-registry@0.1.2", + "dist": { + "shasum": "db5544089ce4b1b5492c8d19e7732f2cf642c36a", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.2.tgz", + "integrity": "sha512-sYAVzFdZmgh62j+W2NpgGDgBjQcFz5K3FVk7pDpknaNgGjGlAO3u/fgAV4jBbv+LLkrrtELUMwUAv/tOPHyzOg==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIH/ksV928lWB+iE7vQ1ElR81Nc0IqMAdqSW3/vUP2KJzAiEAvLnm+TtAfkcxyjg0U7XBM8/ocViXp82tgwuyABvbFXM=" + } + ] + }, + "maintainers": [ + { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + { + "name": "typescript", + "email": "typescript@microsoft.com" + } + ], + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "_npmOperationalInternal": { + "host": "packages-12-west.internal.npmjs.com", + "tmp": "tmp/types-registry-0.1.2.tgz_1478196793843_0.22045400505885482" + }, + "directories": {}, + "contributors": [] + }, + "0.1.3": { + "name": "types-registry", + "version": "0.1.3", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/Microsoft/types-publisher.git" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "Apache-2.0", + "_id": "types-registry@0.1.3", + "dist": { + "shasum": "4166b57140f012fcdedbb58344034bc002740254", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.3.tgz", + "integrity": "sha512-3xDpo5CNAdFk0+A4fC3v8/6Cdv/wbSGCFxi68U9mbGc+Cv/F5vJ71XhJIt49pMvbbCKifLRDXtStZ0N+7WAhvQ==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIAsH1IivFVGBL+Bu8aISlpa6olawcrt4SDMsgtR2y12vAiEAnzsCbVEvmMWdLpQ2PYuLiC3u4dmurgXU2BYKYDOCjow=" + } + ] + }, + "maintainers": [ + { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + { + "name": "typescript", + "email": "typescript@microsoft.com" + } + ], + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "_npmOperationalInternal": { + "host": "packages-18-east.internal.npmjs.com", + "tmp": "tmp/types-registry-0.1.3.tgz_1478785835052_0.8055824220646173" + }, + "directories": {}, + "contributors": [] + }, + "0.1.4": { + "name": "types-registry", + "version": "0.1.4", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/Microsoft/types-publisher.git" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "Apache-2.0", + "_id": "types-registry@0.1.4", + "dist": { + "shasum": "d87906d7c5d30c38102d839e293f8f5cdc43d33d", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.4.tgz", + "integrity": "sha512-8zSkAWg6Uc/TubRRV9Q8Xt2R5PmU5hMzuvSJHRHW/gWKmFzOU6yTl039TZXF+yuDiFtNocmEQ1YKvxXc5SrCFQ==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIDWGHhVB/HfYaco6jBO6TTPjfSjVkS5aQVj8BQhmbrqZAiEA5OgmeUDaKaw+bkjjPbShlE16kOb7J48nUOm6AR30LiI=" + } + ] + }, + "maintainers": [ + { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + { + "name": "typescript", + "email": "typescript@microsoft.com" + } + ], + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "_npmOperationalInternal": { + "host": "packages-18-east.internal.npmjs.com", + "tmp": "tmp/types-registry-0.1.4.tgz_1479152272876_0.4780094481538981" + }, + "directories": {}, + "contributors": [] + }, + "0.1.5": { + "name": "types-registry", + "version": "0.1.5", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/Microsoft/types-publisher.git" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "Apache-2.0", + "_id": "types-registry@0.1.5", + "dist": { + "shasum": "8c7916c6b8877e5d2ba58f45637e07b5a2c132cd", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.5.tgz", + "integrity": "sha512-AUIQhrhU5bpIt0E2KWrQUNwIRetJ6OQ4A7Z8ER6i+uZwv58x3vSPfHD2O9fHeDt2UJsFhSoqv+4SiSjzl75guw==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEQCIFPltD4NM5+hTwqJ19LdN/DihlPaPQUPxU40Ue28q316AiA30f9+eM648UJuWHNT90jUEv1DzoLB3BbhgqVk9ktLqA==" + } + ] + }, + "maintainers": [ + { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + { + "name": "typescript", + "email": "typescript@microsoft.com" + } + ], + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "_npmOperationalInternal": { + "host": "packages-18-east.internal.npmjs.com", + "tmp": "tmp/types-registry-0.1.5.tgz_1479157804590_0.6985531949903816" + }, + "directories": {}, + "contributors": [] + }, + "0.1.6": { + "name": "types-registry", + "version": "0.1.6", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/Microsoft/types-publisher.git" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "Apache-2.0", + "_id": "types-registry@0.1.6", + "dist": { + "shasum": "241fc385abc50179daed8099ae3044b2d705fdef", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.6.tgz", + "integrity": "sha512-koYxdvRpakAoVTDD46d1MhiJqaHgwc//DfPPXInpLdYI1GRQpuvqpd746YbuHPlamo7nImaOijZfT23oDdYdvA==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIAJHyz5otu9JS3eVSNvCMaRvQ6wvybc3Bd9kgMwTxJEZAiEAoIUy5UWpR1AmANHkk8itUyb/LNQZQ+VO8mt7RG5xFW0=" + } + ] + }, + "maintainers": [ + { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + { + "name": "typescript", + "email": "typescript@microsoft.com" + } + ], + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "_npmOperationalInternal": { + "host": "packages-12-west.internal.npmjs.com", + "tmp": "tmp/types-registry-0.1.6.tgz_1479221778908_0.8574118420947343" + }, + "directories": {}, + "contributors": [] + }, + "0.1.7": { + "name": "types-registry", + "version": "0.1.7", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/Microsoft/types-publisher.git" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "Apache-2.0", + "_id": "types-registry@0.1.7", + "dist": { + "shasum": "17e2bac6daeac6d529f1962719aca6699bedada6", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.7.tgz", + "integrity": "sha512-/xFXVlpYzghIDV659vMOuhFMz4fdvmfdxxUS5L7MBHkRDQghsEv+MMNLQqg/98eGs0H/1nIC69B78xlxsZs04w==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIDS4x7/mtYd7+h3Tev/2bFcVmxxcKLuR9Rr5hVVF9QxCAiEAqJUjyU9m75Eo3PcZ/BiozOxg+n/uNMQsdz9NjcR21Xo=" + } + ] + }, + "maintainers": [ + { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + { + "name": "typescript", + "email": "typescript@microsoft.com" + } + ], + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "_npmOperationalInternal": { + "host": "packages-12-west.internal.npmjs.com", + "tmp": "tmp/types-registry-0.1.7.tgz_1479236941321_0.07451427378691733" + }, + "directories": {}, + "contributors": [] + }, + "0.1.8": { + "name": "types-registry", + "version": "0.1.8", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/Microsoft/types-publisher.git" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "Apache-2.0", + "_id": "types-registry@0.1.8", + "dist": { + "shasum": "bd7b2e54136cf1a3108d6ff00d2b7a9229788eb3", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.8.tgz", + "integrity": "sha512-XgWCP3nXS8xKiGkhQwn8g6Rii9LXe//UjiSszykAQ3cWOUwlhT8XhA1KAIlyRIAMEHyuAj27ZiG2KggZ+2lSPQ==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEQCIF+Ghc3RRCbBO57NhU2LvZFW6a3hhV0Ur8pU/K6pGrnzAiBnFK8qgzPnZ+HNB7loyFlw/Ewz0kQusoyUm30kgamL/w==" + } + ] + }, + "maintainers": [ + { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + { + "name": "typescript", + "email": "typescript@microsoft.com" + } + ], + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "_npmOperationalInternal": { + "host": "packages-12-west.internal.npmjs.com", + "tmp": "tmp/types-registry-0.1.8.tgz_1479240941273_0.19263592921197414" + }, + "directories": {}, + "contributors": [] + }, + "0.1.9": { + "name": "types-registry", + "version": "0.1.9", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/Microsoft/types-publisher.git" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "Apache-2.0", + "_id": "types-registry@0.1.9", + "dist": { + "shasum": "7666248ee70d2ed130354a020cb2aed2810bd9e2", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.9.tgz", + "integrity": "sha512-Xf2Ihz7iK3H4eH/5USC2f0QKtFTXRHQXHE3ebwug/T4/HX1KZk1Q6wA/DGDVxd5mGKfRJowsi51bfienkqkIyQ==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIH4qdPYv31f13OedBZvhAeoNiyYqEuVoRnYdOg81deknAiEA6b4lfbrY8TX+C2wtlUnJla++sa+AXl/1grLQUZUVWhk=" + } + ] + }, + "maintainers": [ + { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + { + "name": "typescript", + "email": "typescript@microsoft.com" + } + ], + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "_npmOperationalInternal": { + "host": "packages-12-west.internal.npmjs.com", + "tmp": "tmp/types-registry-0.1.9.tgz_1479243916003_0.30600901367142797" + }, + "directories": {}, + "contributors": [] + }, + "0.1.10": { + "name": "types-registry", + "version": "0.1.10", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/Microsoft/types-publisher.git" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "Apache-2.0", + "_id": "types-registry@0.1.10", + "dist": { + "shasum": "5421c8c6b0c62d438d12d6dac9f2fb6e8f89984f", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.10.tgz", + "integrity": "sha512-OrqfjkHP71E+5OoqTkiCT5Qm0LrCvuRwHCKLb9MjHa1YghkRL1FsvZSg7+IbIncGvGWo3ovWlT47MWzH5MY0RA==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIDZpwSPr+FyfZHGxAxhlPGNmK8jrMAgeXN7V2VPyq/eqAiEAzin30FCmJlXEYw+aeXUSp6xeRPe6w6GgF80DJTmWpls=" + } + ] + }, + "maintainers": [ + { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + { + "name": "typescript", + "email": "typescript@microsoft.com" + } + ], + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "_npmOperationalInternal": { + "host": "packages-18-east.internal.npmjs.com", + "tmp": "tmp/types-registry-0.1.10.tgz_1479261790165_0.3779536336660385" + }, + "directories": {}, + "contributors": [] + }, + "0.1.11": { + "name": "types-registry", + "version": "0.1.11", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/Microsoft/types-publisher.git" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "Apache-2.0", + "_id": "types-registry@0.1.11", + "dist": { + "shasum": "83fabed71a80ecb0aa3cbf4ffe191b30fc39f9db", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.11.tgz", + "integrity": "sha512-ggxluq+LSL+e/q55Y0/8iVW2jNHOiZ8wXihhwC9TVdRmJrRvcvBbybUhGKMwitB72tDpvKN4hf6XfwwxhXqjow==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEQCICm1A6benjgVdsgor/QWXeTsXX2iVrO57WMBN9N1QfZjAiApUI4usY6mzk3Ut8Y6fJNxU1lxdy5/X4FSImdkRluEHQ==" + } + ] + }, + "maintainers": [ + { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + { + "name": "typescript", + "email": "typescript@microsoft.com" + } + ], + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "_npmOperationalInternal": { + "host": "packages-18-east.internal.npmjs.com", + "tmp": "tmp/types-registry-0.1.11.tgz_1479313216121_0.6514699205290526" + }, + "directories": {}, + "contributors": [] + }, + "0.1.12": { + "name": "types-registry", + "version": "0.1.12", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/Microsoft/types-publisher.git" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "Apache-2.0", + "_id": "types-registry@0.1.12", + "dist": { + "shasum": "db3567527e7f004957f80ccefb7d3d0070573841", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.12.tgz", + "integrity": "sha512-FpSoshDOkMo0Br4apQZm5PVqcX5pHDvx/xFbJ6pIm/s8QCc8fKnTgPW+jjZ+jZaKt7tG/TFPi7DCOgb9ex9VBA==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIBtvp5Ghf71o8q2F6UkOgpxn4XpbpknA/hPBukp0k2EBAiEA5P+yLtbnGHjuWa/gdK9Mxp24HKfChybGfBVQ+vJXXZ0=" + } + ] + }, + "maintainers": [ + { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + { + "name": "typescript", + "email": "typescript@microsoft.com" + } + ], + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "_npmOperationalInternal": { + "host": "packages-18-east.internal.npmjs.com", + "tmp": "tmp/types-registry-0.1.12.tgz_1479324375480_0.9451001982670277" + }, + "directories": {}, + "contributors": [] + }, + "0.1.13": { + "name": "types-registry", + "version": "0.1.13", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/Microsoft/types-publisher.git" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "Apache-2.0", + "_id": "types-registry@0.1.13", + "dist": { + "shasum": "a8b0ac710bde6b7422523b4b676eba06f0a18955", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.13.tgz", + "integrity": "sha512-bP8TFxvhvVo5J1w7UsVkckyePDaZ4kKiZdgtY5fYA5U6fhl91Z4TJ3Dzkf3siiuCQqu0RLe+e02nCF7t9/3LHA==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIBOSckXPCHWraauouoXKBBSkSj5Yrz4gtcndyIvWoX5TAiEA2w7VGityKTjGOGOtY0ahUirXzGxLkfMFyfbrkKXXEms=" + } + ] + }, + "maintainers": [ + { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + { + "name": "typescript", + "email": "typescript@microsoft.com" + } + ], + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "_npmOperationalInternal": { + "host": "packages-18-east.internal.npmjs.com", + "tmp": "tmp/types-registry-0.1.13.tgz_1479409304396_0.03396848659031093" + }, + "directories": {}, + "contributors": [] + }, + "0.1.14": { + "name": "types-registry", + "version": "0.1.14", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/Microsoft/types-publisher.git" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "Apache-2.0", + "_id": "types-registry@0.1.14", + "dist": { + "shasum": "22f45b9149019769b8233202c7c692866309855d", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.14.tgz", + "integrity": "sha512-+mevUmwjHEHcAtg6i4kF0VyMj9UeljJ6rQ3nAe84O7iul5a5o6FkYk0xw2yfF3zVMWTyjxZyuWO0dF4fh+FxKA==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIQCs8sQEAsNMRM4uy1Vb+W27iH788k9SsJyx6ifVNOMEogIgDXpEYQ1IAT/PwBMsFx/kmdQ8w2U2QPTW6FyJl3zjp1E=" + } + ] + }, + "maintainers": [ + { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + { + "name": "typescript", + "email": "typescript@microsoft.com" + } + ], + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "_npmOperationalInternal": { + "host": "packages-18-east.internal.npmjs.com", + "tmp": "tmp/types-registry-0.1.14.tgz_1479419227681_0.4777035021688789" + }, + "directories": {}, + "contributors": [] + }, + "0.1.15": { + "name": "types-registry", + "version": "0.1.15", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/Microsoft/types-publisher.git" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "Apache-2.0", + "_id": "types-registry@0.1.15", + "dist": { + "shasum": "34802ce62d86b3fdbacba22bd60abe167749ffd9", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.15.tgz", + "integrity": "sha512-EXLNzlRzh24bO6IwoMAEuubfHvWoeOEnyMIBdV/sCeKU+EQLi6sPrx6ReqSUWmG0bu3SXDy6nD5/Tf2lbxYHWA==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIQCS5qQ37Tnnr90QAZtyXI8w4E+0b4WRbUauHlUcQ+AZ/QIgWnIZA0BA7TkpTsMCE19+oIABJKfUrf23xVM8g46RgJE=" + } + ] + }, + "maintainers": [ + { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + { + "name": "typescript", + "email": "typescript@microsoft.com" + } + ], + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "_npmOperationalInternal": { + "host": "packages-18-east.internal.npmjs.com", + "tmp": "tmp/types-registry-0.1.15.tgz_1479420531692_0.8768468310590833" + }, + "directories": {}, + "contributors": [] + }, + "0.1.16": { + "name": "types-registry", + "version": "0.1.16", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/Microsoft/types-publisher.git" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "Apache-2.0", + "_id": "types-registry@0.1.16", + "dist": { + "shasum": "3c94bda32101c92ca539d011e1972b81a9aa8e5b", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.16.tgz", + "integrity": "sha512-5F6+Vy2MqF1FqxP5xLgxvao11IR6LUG0wbxnMB1qI92m2raXEYcw4GZdWlEPpgJo4eRcpeM2i5DZ5JbMfOs9sw==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIFTQtcZ1LP0ICMoXe24/iiBBulT9Czo6e7EP10htUZD5AiEA/pPSfIb9pQVSGJl18mA1WtDUpEPWN1Fv5KP9ieMyS5g=" + } + ] + }, + "maintainers": [ + { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + { + "name": "typescript", + "email": "typescript@microsoft.com" + } + ], + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "_npmOperationalInternal": { + "host": "packages-18-east.internal.npmjs.com", + "tmp": "tmp/types-registry-0.1.16.tgz_1479491441169_0.343088417313993" + }, + "directories": {}, + "contributors": [] + }, + "0.1.17": { + "name": "types-registry", + "version": "0.1.17", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/Microsoft/types-publisher.git" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "Apache-2.0", + "_id": "types-registry@0.1.17", + "dist": { + "shasum": "3a449b961ba4ba783d008317b802ba951aa05dc3", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.17.tgz", + "integrity": "sha512-pOvcrpLUBxYjSN/YwUJkaoOau10oKwOYTfugLlAz0bj6P+cqPNxegtqq2MwJb51n+BQ4Fipdy8fI7Rs/k7aWJg==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEYCIQCifPTh1qYoLJCNjYpE4GSf+dt3iKWI0XN7oVYoOrrwkQIhAOj7MNyReTflabTBrwcXj9sayE8u6kxphMKuIoK+5YMy" + } + ] + }, + "maintainers": [ + { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + { + "name": "typescript", + "email": "typescript@microsoft.com" + } + ], + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "_npmOperationalInternal": { + "host": "packages-12-west.internal.npmjs.com", + "tmp": "tmp/types-registry-0.1.17.tgz_1479505060352_0.40281090745702386" + }, + "directories": {}, + "contributors": [] + }, + "0.1.18": { + "name": "types-registry", + "version": "0.1.18", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/Microsoft/types-publisher.git" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "Apache-2.0", + "_id": "types-registry@0.1.18", + "dist": { + "shasum": "b85d986236b4472676a72723c3d0bba9f953e95f", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.18.tgz", + "integrity": "sha512-tlJ39mQwu2/IhzqkiJ4OxoCBtpSkO8W6i0KVW+dSaWWzXVD/PahN3+fxGQ23rnHGNnWmZ4w9pLEc/u4z8GZVUw==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEYCIQC7Xv4Vv0Np4tRMt4fM/yH9axEUVXeK3oiKLn1F53pf0QIhAM4zwk0VHwbN+EBc/t39RWWHSliDt8hVNzUER+K6mlSr" + } + ] + }, + "maintainers": [ + { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + { + "name": "typescript", + "email": "typescript@microsoft.com" + } + ], + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "_npmOperationalInternal": { + "host": "packages-12-west.internal.npmjs.com", + "tmp": "tmp/types-registry-0.1.18.tgz_1479739702939_0.613062203861773" + }, + "directories": {}, + "contributors": [] + }, + "0.1.19": { + "name": "types-registry", + "version": "0.1.19", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/Microsoft/types-publisher.git" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "Apache-2.0", + "_id": "types-registry@0.1.19", + "dist": { + "shasum": "f33f47cdca4e3c28fb7f86ed880333835d7b0f6a", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.19.tgz", + "integrity": "sha512-wEB1DayjjzKWOOT/+myYISY5akAERgnBBkZwd+/qyO7relpnkdBTr3jm0zyRsFd8Df/f/maJajZloKAHJe38tg==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEYCIQCvNNGJtWNfT4Y4XQgCUushMHExL5Xlx8B6lCgUr1zTRQIhAKTZh8xrOBQf/XoS0ZI5FGvweaDWiZFtCXFcl9sFZrf1" + } + ] + }, + "maintainers": [ + { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + { + "name": "typescript", + "email": "typescript@microsoft.com" + } + ], + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "_npmOperationalInternal": { + "host": "packages-12-west.internal.npmjs.com", + "tmp": "tmp/types-registry-0.1.19.tgz_1479740182620_0.27140310825780034" + }, + "directories": {}, + "contributors": [] + }, + "0.1.20": { + "name": "types-registry", + "version": "0.1.20", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/Microsoft/types-publisher.git" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "Apache-2.0", + "_id": "types-registry@0.1.20", + "dist": { + "shasum": "08472cdc3890403270ead70d9a40fb6b41944e85", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.20.tgz", + "integrity": "sha512-Il3hRBV68ZftBmOxtI2Qn3P1pvhEsjh2gx7Y9jmYe73AdOgQZC43kAvZp4oIPIQIPUWxKtxcCCpWadu8Yvl+Nw==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIQCLkm8CfoIP6aYlEPlorA6HGJngo4mmSALRL2cuQdZjGwIgU6WVoKuY2J+gz2NjBgyusE1/WjEDbUsSl2OIlHshA1A=" + } + ] + }, + "maintainers": [ + { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + { + "name": "typescript", + "email": "typescript@microsoft.com" + } + ], + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "_npmOperationalInternal": { + "host": "packages-18-east.internal.npmjs.com", + "tmp": "tmp/types-registry-0.1.20.tgz_1479746986396_0.35237224982120097" + }, + "directories": {}, + "contributors": [] + }, + "0.1.21": { + "name": "types-registry", + "version": "0.1.21", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/Microsoft/types-publisher.git" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "Apache-2.0", + "_id": "types-registry@0.1.21", + "dist": { + "shasum": "6e6ad2430d8edc2aef0fe6c4b1d09ceefb7786ed", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.21.tgz", + "integrity": "sha512-wuQFLlvPk1EUFxLWgIM4x3igpyhpVNmHG3hpAgv6tKrc/FbTKewafZ5ff1QO+DRZZtZ1RFlvEIjziwRnoaDPKA==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCICBvLwjpQYXhxb2vRog7hoVtg9F5sDQFYBcQPPH1PMMsAiEA/IAGp0O6mR4mD0gqUsYwdakMaUlmL6kljIjfQQzeiYw=" + } + ] + }, + "maintainers": [ + { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + { + "name": "typescript", + "email": "typescript@microsoft.com" + } + ], + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "_npmOperationalInternal": { + "host": "packages-12-west.internal.npmjs.com", + "tmp": "tmp/types-registry-0.1.21.tgz_1479751244257_0.9847156994510442" + }, + "directories": {}, + "contributors": [] + }, + "0.1.22": { + "name": "types-registry", + "version": "0.1.22", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/Microsoft/types-publisher.git" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "Apache-2.0", + "_id": "types-registry@0.1.22", + "dist": { + "shasum": "4cadf3316ad2556c25fce258a6e4fad64745f48e", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.22.tgz", + "integrity": "sha512-M5TW6x08QmCGoGWyo9vH2syXGw+GkO9j1PW8v1PxDgIRle4aHhGWViaDtZI77it53BTBS8pVF/8zpL3FF/ye4w==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEYCIQD5mTRgbDThreMYqmgvVg2IGP8HvWr0IaukZXf6wsmSgAIhAOUrVSQVeiZSk9d0rRWD+MFDSN1F34vbJRTPitYzLn6q" + } + ] + }, + "maintainers": [ + { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + { + "name": "typescript", + "email": "typescript@microsoft.com" + } + ], + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "_npmOperationalInternal": { + "host": "packages-12-west.internal.npmjs.com", + "tmp": "tmp/types-registry-0.1.22.tgz_1479781595730_0.5430828155949712" + }, + "directories": {}, + "contributors": [] + }, + "0.1.23": { + "name": "types-registry", + "version": "0.1.23", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/Microsoft/types-publisher.git" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "Apache-2.0", + "_id": "types-registry@0.1.23", + "dist": { + "shasum": "a041e493fe09f600f8f3e931b3725b98f548e8d6", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.23.tgz", + "integrity": "sha512-DcCBg7yrNDLthhN1lnxBMp617Oeve2/qFrI5zUz2suvj9zuDhc8i9/30G8smoaxH9ap3hI6XKtZsbyvraV8zqg==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEYCIQD9l5+6MBTxpO57puimNhnOAUh7HzrEMj/ZnNQ8FMqUlQIhAJtz2nb1eWD6mEBxu9fcMCtt/gdbVwZuwoB6vQ3sG/n5" + } + ] + }, + "maintainers": [ + { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + { + "name": "typescript", + "email": "typescript@microsoft.com" + } + ], + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "_npmOperationalInternal": { + "host": "packages-18-east.internal.npmjs.com", + "tmp": "tmp/types-registry-0.1.23.tgz_1479848500564_0.26659063366241753" + }, + "directories": {}, + "contributors": [] + }, + "0.1.24": { + "name": "types-registry", + "version": "0.1.24", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/Microsoft/types-publisher.git" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "Apache-2.0", + "_id": "types-registry@0.1.24", + "dist": { + "shasum": "90fc8bcf3b432dec8c69d8e2af8360354a6d126f", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.24.tgz", + "integrity": "sha512-TbFirK1x/HENZJTveyshpL2eRhlMgaP4PB29Snr1HMBBnqW3KVgAuwz79pOUE441/6atXmILhpBNVmTl3kD1cw==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEYCIQDWpghqzgpDl31bE8tGrav6qplxQmnrm/tqNTLNKeukLwIhAKcRlv5rRtF7ndhYUTFQP12MR8YI2iDkUYHqY+kZMb4R" + } + ] + }, + "maintainers": [ + { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + { + "name": "typescript", + "email": "typescript@microsoft.com" + } + ], + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "_npmOperationalInternal": { + "host": "packages-18-east.internal.npmjs.com", + "tmp": "tmp/types-registry-0.1.24.tgz_1479849056566_0.33400461566634476" + }, + "directories": {}, + "contributors": [] + }, + "0.1.25": { + "name": "types-registry", + "version": "0.1.25", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/Microsoft/types-publisher.git" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "Apache-2.0", + "_id": "types-registry@0.1.25", + "dist": { + "shasum": "825b737c68cefda5bf6536038d02248c202057ea", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.25.tgz", + "integrity": "sha512-hzBcHJng8DjZthfAd0Vax0Mi9/xDofPVLpCnQWCdMzYAvY/yacdGZwLD19XFgcq4JFATDljcJBlvanUz7q7DFw==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEYCIQDkOboXiagDfO+upXCK4Q9VyG2k0qP5N7hCaHqaUeoRCAIhAIqNFbwVZnIRbPMp7AIZMEDqFMJsQWsBBio9KksjDO50" + } + ] + }, + "maintainers": [ + { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + { + "name": "typescript", + "email": "typescript@microsoft.com" + } + ], + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "_npmOperationalInternal": { + "host": "packages-18-east.internal.npmjs.com", + "tmp": "tmp/types-registry-0.1.25.tgz_1479850167727_0.6713888191152364" + }, + "directories": {}, + "contributors": [] + }, + "0.1.26": { + "name": "types-registry", + "version": "0.1.26", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/Microsoft/types-publisher.git" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "Apache-2.0", + "_id": "types-registry@0.1.26", + "dist": { + "shasum": "31b828a92044ca3bcd7c6f821f2ed7f760069812", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.26.tgz", + "integrity": "sha512-lQmpsr4/K78mrkx7QVRXPfSv1fXXZHvkL3seSh7O76lNJQ2Wq/qhwPlq7QNMyqAVVY6V42nGBXJOnZiD6BOBRw==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEYCIQDr4ffH9Lcbyxzcbk3ZwCJet3oeg39I/kSoDB5KP1r5EAIhALF26Zs5cl8Lu59ExqiOCDlLmbf6Jb3S4qB5SHjK2zel" + } + ] + }, + "maintainers": [ + { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + { + "name": "typescript", + "email": "typescript@microsoft.com" + } + ], + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "_npmOperationalInternal": { + "host": "packages-18-east.internal.npmjs.com", + "tmp": "tmp/types-registry-0.1.26.tgz_1479852026236_0.6375144952908158" + }, + "directories": {}, + "contributors": [] + }, + "0.1.27": { + "name": "types-registry", + "version": "0.1.27", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/Microsoft/types-publisher.git" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "Apache-2.0", + "_id": "types-registry@0.1.27", + "dist": { + "shasum": "017dc94500ed0934857dc3da44e580040aa115d1", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.27.tgz", + "integrity": "sha512-Op/vE+pxwtlU8v66TquQkGB9/1jw84Bp324pyREUwjgUJ0/hpvyhIovPT8pr7UO6lwC4lQdfqxqCrU2biwETuQ==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIBd+nx/kbxW2aV7bkvWGuE2r3NKfsxKrX44c9fa5Nt9sAiEA+Ug/Sm4dZY0Ohvnq6ncZLnsu6Uwyx/ES0U9BLrI06tw=" + } + ] + }, + "maintainers": [ + { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + { + "name": "typescript", + "email": "typescript@microsoft.com" + } + ], + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "_npmOperationalInternal": { + "host": "packages-12-west.internal.npmjs.com", + "tmp": "tmp/types-registry-0.1.27.tgz_1479857944451_0.15745194628834724" + }, + "directories": {}, + "contributors": [] + }, + "0.1.28": { + "name": "types-registry", + "version": "0.1.28", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/Microsoft/types-publisher.git" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "Apache-2.0", + "_id": "types-registry@0.1.28", + "dist": { + "shasum": "53f78cbaa23e3ef96befe66442d587ea0c716232", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.28.tgz", + "integrity": "sha512-IZZOfvGUctOQD61KIJxtFzI3YjoPiHvqIVQTncwOjIgxllXF0r5E3L4jwmqG+zugHlw8otDiyO3+vCySp4r9kA==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIA4zXRZI4hoUDQfphieb+b0eFvQZAlLNxxUYgcbhV878AiEA3pyXcNfczxKGWxMKQlQ/fUC3Nn/r/mYnBTwKgulYitE=" + } + ] + }, + "maintainers": [ + { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + { + "name": "typescript", + "email": "typescript@microsoft.com" + } + ], + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "_npmOperationalInternal": { + "host": "packages-18-east.internal.npmjs.com", + "tmp": "tmp/types-registry-0.1.28.tgz_1479925792555_0.0039939871057868" + }, + "directories": {}, + "contributors": [] + }, + "0.1.29": { + "name": "types-registry", + "version": "0.1.29", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/Microsoft/types-publisher.git" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "Apache-2.0", + "_id": "types-registry@0.1.29", + "dist": { + "shasum": "9f5d1d59c6ad78237f142dc3b2312e260a3835ba", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.29.tgz", + "integrity": "sha512-StDVUCH987hOV+lsQUr7jTSPJcY4guCiTqOiVMRuhtrdYzI8qS+aeKraaIhx8HKOzp8NF063MjaFDdrhBn0sZA==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEYCIQDpSzkuZUW3/wAVlYGu05YDX/KL8WUU9iM+QfYTNSrlUAIhAMZgyNEDYc8M6TaFKpocmk+2wflyR8kwvQtTYy/lLMVh" + } + ] + }, + "maintainers": [ + { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + { + "name": "typescript", + "email": "typescript@microsoft.com" + } + ], + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "_npmOperationalInternal": { + "host": "packages-12-west.internal.npmjs.com", + "tmp": "tmp/types-registry-0.1.29.tgz_1479934416093_0.8048593518324196" + }, + "directories": {}, + "contributors": [] + }, + "0.1.30": { + "name": "types-registry", + "version": "0.1.30", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/Microsoft/types-publisher.git" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "Apache-2.0", + "_id": "types-registry@0.1.30", + "dist": { + "shasum": "c4eef61ab65dc232e0b40d3657ef0d66be9cd099", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.30.tgz", + "integrity": "sha512-LDF2u3Wtku65CC+MlXeht7zKhHIPLtNgHrMcOACiWWmCI6Ve5Ei4pUY7IdgU+aRBHnOalb5jRc04LKnGXaZ8Gw==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIBs/UTVt/oQWHDs60IxFiZ6r5Lv9SmTxUvmai7Wbj9cCAiEAx8OspticYLQ/r8LKIR0vRdWuVlrfmEKQlt8WsaYB+RM=" + } + ] + }, + "maintainers": [ + { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + { + "name": "typescript", + "email": "typescript@microsoft.com" + } + ], + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "_npmOperationalInternal": { + "host": "packages-12-west.internal.npmjs.com", + "tmp": "tmp/types-registry-0.1.30.tgz_1479934577249_0.1948679715860635" + }, + "directories": {}, + "contributors": [] + }, + "0.1.31": { + "name": "types-registry", + "version": "0.1.31", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/Microsoft/types-publisher.git" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "Apache-2.0", + "_id": "types-registry@0.1.31", + "dist": { + "shasum": "f23b445c30d684f02671047caa483885beb6cae6", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.31.tgz", + "integrity": "sha512-osSW5QsGheBZW/60geiUR4EvNokjY0F55zC8kDrQYl/oYC/p68B/Czmuf3dyswJReNKBZiYnlW2lBqBxKFYc5Q==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEQCIDspf/pgg9O6uDEuVMGPCVi2F0OHvPN1JrdDBSebAW17AiAVtvZR+gfJMpLxQMcNg2+hoPIJizIjEgzDWkxBZUfBRg==" + } + ] + }, + "maintainers": [ + { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + { + "name": "typescript", + "email": "typescript@microsoft.com" + } + ], + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "_npmOperationalInternal": { + "host": "packages-12-west.internal.npmjs.com", + "tmp": "tmp/types-registry-0.1.31.tgz_1480356298205_0.5418345348443836" + }, + "directories": {}, + "contributors": [] + }, + "0.1.32": { + "name": "types-registry", + "version": "0.1.32", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/Microsoft/types-publisher.git" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "Apache-2.0", + "_id": "types-registry@0.1.32", + "dist": { + "shasum": "cdfbda792de77bfc3117bc3ec9fe5ac4fa2bfa94", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.32.tgz", + "integrity": "sha512-ic4FEyC5GSKwXhItwlcLKG5BvZCd2IfDiXkXtgaYq6Qi+XSp62Yx/8Zdk7C8W7gXjWJJTUswrw4sZBXWBsJgmQ==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEYCIQCcFyW7RXpq3UnJYeFNI4bwOlZlU6uExXI3zGnQ5lNS8AIhALUQh+Rgnsjzm8LEuGDQcryy/dQUJdSJLfD1CxX4S7Nx" + } + ] + }, + "maintainers": [ + { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + { + "name": "typescript", + "email": "typescript@microsoft.com" + } + ], + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "_npmOperationalInternal": { + "host": "packages-18-east.internal.npmjs.com", + "tmp": "tmp/types-registry-0.1.32.tgz_1480357817246_0.4583755941130221" + }, + "directories": {}, + "contributors": [] + }, + "0.1.33": { + "name": "types-registry", + "version": "0.1.33", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/Microsoft/types-publisher.git" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "Apache-2.0", + "_id": "types-registry@0.1.33", + "dist": { + "shasum": "ec9dfcc883e03c21bec5714e19ef5d6727484a00", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.33.tgz", + "integrity": "sha512-AmM0GS6LjrC5KKSdbbexlDV/c7XG/rTa1Q8wxZa0WWhYtRnbnv1TfzSftFfvqjr6LNiGEEfC9sibWXhUfNGXQQ==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIBYyd4XniQ30j7PdSlov44jg5OSubCSi/xOYwybh7XmkAiEAoaTF1QVNUtZki/m3ETPkHUklW4C6ifKgbykPmj5RLo4=" + } + ] + }, + "maintainers": [ + { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + { + "name": "typescript", + "email": "typescript@microsoft.com" + } + ], + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "_npmOperationalInternal": { + "host": "packages-18-east.internal.npmjs.com", + "tmp": "tmp/types-registry-0.1.33.tgz_1480446164927_0.4415100570768118" + }, + "directories": {}, + "contributors": [] + }, + "0.1.34": { + "name": "types-registry", + "version": "0.1.34", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/Microsoft/types-publisher.git" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "Apache-2.0", + "_id": "types-registry@0.1.34", + "dist": { + "shasum": "38794fe7cd09c9a679a4c19ccef95b8f2ff77cdb", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.34.tgz", + "integrity": "sha512-2NKSB3yM+y3rSeeDiUimKmicv3m9UN7HQdBxmkbvimsb3foNPpPtPxmAyuzAgMO4lFwGxa6pzMxKmDcaDoQouw==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEQCIB9lt2iSbCqNZuSV2rw6HrVjP+QGVdnZVcBPmdmS2wjLAiB74+E0yqXHVVxs9ospzKZZkkM3tD+rDBvMaWUv/gx8Uw==" + } + ] + }, + "maintainers": [ + { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + { + "name": "typescript", + "email": "typescript@microsoft.com" + } + ], + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "_npmOperationalInternal": { + "host": "packages-12-west.internal.npmjs.com", + "tmp": "tmp/types-registry-0.1.34.tgz_1480457533595_0.80660624592565" + }, + "directories": {}, + "contributors": [] + }, + "0.1.35": { + "name": "types-registry", + "version": "0.1.35", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/Microsoft/types-publisher.git" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "Apache-2.0", + "_id": "types-registry@0.1.35", + "dist": { + "shasum": "85871eb26c98e4201478114e34cd2164bee7a252", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.35.tgz", + "integrity": "sha512-ZtVDC1A4QhtqNfvQlKWK8eDEcESrBGGWcmhSj5UwdxNZmjqjdUVVokQ9lNjBcjnraqJsN+xT5LDJTH+GUDfZzg==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIGGwENN/xRNrhAcFduE9jpKLuq6gzbAJs3ECF9sapUMSAiEA07kPJvj4/EcyMbTvzccREtBWyhjK/EK0l9PIKmsExq8=" + } + ] + }, + "maintainers": [ + { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + { + "name": "typescript", + "email": "typescript@microsoft.com" + } + ], + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "_npmOperationalInternal": { + "host": "packages-18-east.internal.npmjs.com", + "tmp": "tmp/types-registry-0.1.35.tgz_1480459250275_0.3861661572009325" + }, + "directories": {}, + "contributors": [] + }, + "0.1.36": { + "name": "types-registry", + "version": "0.1.36", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/Microsoft/types-publisher.git" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "Apache-2.0", + "_id": "types-registry@0.1.36", + "dist": { + "shasum": "ff353cde95613e8a487fbbb30cc6844e8461b35d", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.36.tgz", + "integrity": "sha512-EGf5aAjCxwhb3JwwCCXzwyIq4QOJGIeE/i3/U4H4XjKX6KVpSI/4QPg1MVZzac6IifVhZS3MDG04Zaf7eiTKmg==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIF0fBhCtVZz6z5Q25USmGjWeNOyb092GUJcvgRFNavdTAiEAm0IrTb6BtbvxgeU+6oMIn4TTGll7RdDQ0LZV2CIUFdA=" + } + ] + }, + "maintainers": [ + { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + { + "name": "typescript", + "email": "typescript@microsoft.com" + } + ], + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "_npmOperationalInternal": { + "host": "packages-18-east.internal.npmjs.com", + "tmp": "tmp/types-registry-0.1.36.tgz_1480462347673_0.6967863736208528" + }, + "directories": {}, + "contributors": [] + }, + "0.1.37": { + "name": "types-registry", + "version": "0.1.37", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/Microsoft/types-publisher.git" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "Apache-2.0", + "_id": "types-registry@0.1.37", + "dist": { + "shasum": "56e3b9a3a8d15a00d1c4656895698342c8bc9f85", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.37.tgz", + "integrity": "sha512-iOFOwAHyzHVJQ57zeuFWe1O2iZ90JgP0I/w+i5oeUBBUYtTottg4U8Aey4jNoHLRNTv9B/2/LefqO0UJYOYMiA==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIDEngiffv8HP09H8kY43pQJgM2x1lvtlYeQBf+qKHwKcAiEAp+l1WZOgmLCu6zTcNQDa4+J0cSs53FCZ8tIq3Tdm/0c=" + } + ] + }, + "maintainers": [ + { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + { + "name": "typescript", + "email": "typescript@microsoft.com" + } + ], + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "_npmOperationalInternal": { + "host": "packages-12-west.internal.npmjs.com", + "tmp": "tmp/types-registry-0.1.37.tgz_1480462554921_0.1912498134188354" + }, + "directories": {}, + "contributors": [] + }, + "0.1.38": { + "name": "types-registry", + "version": "0.1.38", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/Microsoft/types-publisher.git" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "Apache-2.0", + "_id": "types-registry@0.1.38", + "dist": { + "shasum": "8276f0ae566f0839b89695ab62a9ed9eac48bc65", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.38.tgz", + "integrity": "sha512-qV3DaWLGr36I4gFOO66LWSXzD6mp6WOiVhbJJ5z+5MAiRswnZ0eeVlQlbxDeSWyg4aaj3v4/3Ph2gqQNUYnKiQ==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEQCIAkmOk+MoDYvb+j6sLOLnmWcvZeMFKARYriWWzRrA8nTAiAZJdLj6sS9zogtrzpcSRYf3kEBaUMOO4cbzLAlTzfYQw==" + } + ] + }, + "maintainers": [ + { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + { + "name": "typescript", + "email": "typescript@microsoft.com" + } + ], + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "_npmOperationalInternal": { + "host": "packages-18-east.internal.npmjs.com", + "tmp": "tmp/types-registry-0.1.38.tgz_1480462727671_0.4870409811846912" + }, + "directories": {}, + "contributors": [] + }, + "0.1.39": { + "name": "types-registry", + "version": "0.1.39", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/Microsoft/types-publisher.git" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "Apache-2.0", + "_id": "types-registry@0.1.39", + "dist": { + "shasum": "c31e017ec91bdec8b07a49b1e2867b8ac466eff0", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.39.tgz", + "integrity": "sha512-2yBMxpAlMajYhLYHT/sK9lSP09Qotbr23MWZQ6L0TAJTPMtEjuYXSsTxEyPSeDd2x9aw3VBgEbTH+SV5ScdUVQ==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIQDQVpZQUOMVcqpInpj6nRYls8x7hYLMM6Xje0mqfpl5QAIgLMA27/HyxZ3/slVzYsc5ImjAk83xhQD98DyE8QLXQTI=" + } + ] + }, + "maintainers": [ + { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + { + "name": "typescript", + "email": "typescript@microsoft.com" + } + ], + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "_npmOperationalInternal": { + "host": "packages-18-east.internal.npmjs.com", + "tmp": "tmp/types-registry-0.1.39.tgz_1480462945529_0.6574138693977147" + }, + "directories": {}, + "contributors": [] + }, + "0.1.40": { + "name": "types-registry", + "version": "0.1.40", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/Microsoft/types-publisher.git" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "Apache-2.0", + "_id": "types-registry@0.1.40", + "dist": { + "shasum": "3f4886803e20b6887bde99879df322fdf4ebdd5e", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.40.tgz", + "integrity": "sha512-G1IHeSFdvRRWAQ9fYPM49dLrGrJNMB9M2v+Pw+HUMCtRQuKSRWAt47Rol9Nw56NoBdhtUFTDajh3l2ohhRqEXg==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEQCIFMAt3WShCYV3gny4qCcdP1jlln/nC4ajInkWa1MMalBAiAgxfvr/fljq/02NIfk+TQ8/osXW/yP8WTrdFRZ1h2cXA==" + } + ] + }, + "maintainers": [ + { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + { + "name": "typescript", + "email": "typescript@microsoft.com" + } + ], + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "_npmOperationalInternal": { + "host": "packages-18-east.internal.npmjs.com", + "tmp": "tmp/types-registry-0.1.40.tgz_1480463967758_0.028148257872089744" + }, + "directories": {}, + "contributors": [] + }, + "0.1.41": { + "name": "types-registry", + "version": "0.1.41", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/Microsoft/types-publisher.git" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "Apache-2.0", + "_id": "types-registry@0.1.41", + "dist": { + "shasum": "68f7a9cb47aa6bbf0bc1c6199e0ad6432204d78a", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.41.tgz", + "integrity": "sha512-AwPposLZIr+2nekwm6d7Rv88eUsVPFlvqR54hnHEDqRZ9qwKCSu/AhaQnoO4K8ivVTPt2w1BQEtiqelIceQ9BQ==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIQD+Xwr5E6TqRF0UdjVt+k3p/VX37aSKJgVuKu/NbBPY1wIgKwqU7MD5zCECcNMzZiRSi2TOxHstrqeiSHBsaaGk9i8=" + } + ] + }, + "maintainers": [ + { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + { + "name": "typescript", + "email": "typescript@microsoft.com" + } + ], + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "_npmOperationalInternal": { + "host": "packages-18-east.internal.npmjs.com", + "tmp": "tmp/types-registry-0.1.41.tgz_1480465411388_0.5587801858782768" + }, + "directories": {}, + "contributors": [] + }, + "0.1.42": { + "name": "types-registry", + "version": "0.1.42", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/Microsoft/types-publisher.git" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "Apache-2.0", + "_id": "types-registry@0.1.42", + "dist": { + "shasum": "778c98f7d6b026281192cbc23ca648be74d9a56b", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.42.tgz", + "integrity": "sha512-+Nu6GXyjfEwfrlVRoyDujhUbHmyBTA8G/ySb9jMlCLERP9X3JTS52BAYMPYw0rQ/mF3bWGZzi+JiQ2dPL61cbg==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCICkORPEMBNr6ht0vGfCzRaorqyuo64ZAC9C3QS4CBVy4AiEA13TxVlKLn3By/pwjD6y4ZKQ5I/w0fOLCkxE0VigNKBw=" + } + ] + }, + "maintainers": [ + { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + { + "name": "typescript", + "email": "typescript@microsoft.com" + } + ], + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "_npmOperationalInternal": { + "host": "packages-12-west.internal.npmjs.com", + "tmp": "tmp/types-registry-0.1.42.tgz_1480469251237_0.47664923104457557" + }, + "directories": {}, + "contributors": [] + }, + "0.1.43": { + "name": "types-registry", + "version": "0.1.43", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/Microsoft/types-publisher.git" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "Apache-2.0", + "_id": "types-registry@0.1.43", + "dist": { + "shasum": "8f78356c7f3e01bfa4b2af33114f6e3fbaa54d94", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.43.tgz", + "integrity": "sha512-N9YVeeC6bZinyLCYXd4iWXA/rVwrhGTeoWEjruKm8ZdjtRnAyKOyzTUsfqXWxNENxYQGM7MrbNGVQjs7OCO8Aw==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIQCwypWWgKSqKgKja9kHlNta+vB8y6ky/CQqGKwQ2zWwswIgVwrxL6Y+Ka2Lc6MFEd+06m3m5UhQ7nRWqGsJejTCY4U=" + } + ] + }, + "maintainers": [ + { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + { + "name": "typescript", + "email": "typescript@microsoft.com" + } + ], + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "_npmOperationalInternal": { + "host": "packages-18-east.internal.npmjs.com", + "tmp": "tmp/types-registry-0.1.43.tgz_1480532949084_0.08263617614284158" + }, + "directories": {}, + "contributors": [] + }, + "0.1.44": { + "name": "types-registry", + "version": "0.1.44", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/Microsoft/types-publisher.git" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "Apache-2.0", + "_id": "types-registry@0.1.44", + "dist": { + "shasum": "5022e8c1d43bbb6d0545413736eba79d6ba801e6", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.44.tgz", + "integrity": "sha512-ZG9FRC/rYz7sUuaCpzXrk97OxfXwyF7NlRPdWQ1/6sQaWjOG2DHuHfBsn/t0E03a15pVaQqjJhBkVrQFK9bvkA==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIBgk5C+3qiUnOj0DswJ1ubOA3TLaLiQJknAYs90SGiK1AiEAqzDOX3oVLzIMPsa9QnXZEalRLwtrrzkbFSTstZdC5LY=" + } + ] + }, + "maintainers": [ + { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + { + "name": "typescript", + "email": "typescript@microsoft.com" + } + ], + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "_npmOperationalInternal": { + "host": "packages-18-east.internal.npmjs.com", + "tmp": "tmp/types-registry-0.1.44.tgz_1480543408364_0.7991916355676949" + }, + "directories": {}, + "contributors": [] + }, + "0.1.45": { + "name": "types-registry", + "version": "0.1.45", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/Microsoft/types-publisher.git" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "Apache-2.0", + "_id": "types-registry@0.1.45", + "dist": { + "shasum": "ed63b06f40220f34af345ad5f9b47723fc7d1123", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.45.tgz", + "integrity": "sha512-yvCinu37TWrf5/gGWaOc8VeQrSTr08nvdXQtBUbZTc3vugRGVu+KYChwBtEEv/O+Gvg7oLqEu8B0qD67iWf0BQ==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEYCIQCOglS4U+jUdB26/uKHisO57sVRlJp6O8XnPAuKlijucgIhAOKpF3MHzX/yREefcOmsPkvIdlN/CjgzgNXTBkGhXLy1" + } + ] + }, + "maintainers": [ + { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + { + "name": "typescript", + "email": "typescript@microsoft.com" + } + ], + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "_npmOperationalInternal": { + "host": "packages-18-east.internal.npmjs.com", + "tmp": "tmp/types-registry-0.1.45.tgz_1480550424821_0.711015562992543" + }, + "directories": {}, + "contributors": [] + }, + "0.1.46": { + "name": "types-registry", + "version": "0.1.46", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/Microsoft/types-publisher.git" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "Apache-2.0", + "_id": "types-registry@0.1.46", + "dist": { + "shasum": "939d2a4571be04dae541714bd0d7d6255e137db7", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.46.tgz", + "integrity": "sha512-Shbg8viyJW6F0qG5rD3j1Be5lNBc9lpahHQAzGPMYUUM39AVso/R7/CoqRXd4AKq+9OM128KC+rYeGARPgjdJQ==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEYCIQDKcjP0cJ30RXTZF27kQ6veIGyizqCWJffunlqET14itQIhALJFn6ihCjUxK8UygbO5PsgdR6mfS1W3xruuArkDzzcR" + } + ] + }, + "maintainers": [ + { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + { + "name": "typescript", + "email": "typescript@microsoft.com" + } + ], + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "_npmOperationalInternal": { + "host": "packages-12-west.internal.npmjs.com", + "tmp": "tmp/types-registry-0.1.46.tgz_1480551909924_0.19276496372185647" + }, + "directories": {}, + "contributors": [] + }, + "0.1.47": { + "name": "types-registry", + "version": "0.1.47", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/Microsoft/types-publisher.git" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "Apache-2.0", + "_id": "types-registry@0.1.47", + "dist": { + "shasum": "e384f19c3ec0803c26cd64130a3548c5fdaccfc5", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.47.tgz", + "integrity": "sha512-FSDNULbnY2WzVCTr16WKI9yv1nDndsGeunl59HUTYgg490FjQjVyS6zJ8wuvKkge9PJZeZEN9iF+K/L/zrW8gA==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCICTWySmtKK7QbJ3RUwe5nzSgpMbsopN7TVK0QZiyqRtFAiEA1ldpVZ6StyHGrNJiidv4l8Z97na5Qru62/WwV4oScbk=" + } + ] + }, + "maintainers": [ + { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + { + "name": "typescript", + "email": "typescript@microsoft.com" + } + ], + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "_npmOperationalInternal": { + "host": "packages-18-east.internal.npmjs.com", + "tmp": "tmp/types-registry-0.1.47.tgz_1480555138510_0.13634923216886818" + }, + "directories": {}, + "contributors": [] + }, + "0.1.48": { + "name": "types-registry", + "version": "0.1.48", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/Microsoft/types-publisher.git" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "Apache-2.0", + "_id": "types-registry@0.1.48", + "dist": { + "shasum": "d25cee6a7dff30b01eff448871e449311cfc4bdd", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.48.tgz", + "integrity": "sha512-h+cBVvkUAHMgjzKfbAL2WCIh81ZHdKn466ncmiNegLW4fmfLDBzfYHZFiH2EADPK78+KyCzmg3UyW5eDq09+Bw==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIQCFqPanuiwNhb94o8hH/1XZATqrmvcADag7X9VK1FpdaAIgXwkKnF+yu0lPz8gEPiCGonv49YOPYnAZf0BleTTdrYg=" + } + ] + }, + "maintainers": [ + { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + { + "name": "typescript", + "email": "typescript@microsoft.com" + } + ], + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "_npmOperationalInternal": { + "host": "packages-18-east.internal.npmjs.com", + "tmp": "tmp/types-registry-0.1.48.tgz_1480973774241_0.16853510751388967" + }, + "directories": {}, + "contributors": [] + }, + "0.1.49": { + "name": "types-registry", + "version": "0.1.49", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/Microsoft/types-publisher.git" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "Apache-2.0", + "_id": "types-registry@0.1.49", + "dist": { + "shasum": "3c0dfe0d071675a74c4cb88df8e7ab6d3c79459c", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.49.tgz", + "integrity": "sha512-GJA65dXqzyEOnaxBRq/UOOVHRWGudALR3VndqJTkb2EzZQepT9aP3ShjFoPSAb0fzRt+LngPJkFkTbWxFAtNOA==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIQCTop18cuPSzsjh6JVvBH2CSsw6fTD1YGMBTxJufl3+tQIgdT6r0tQeKF2hh9Aec1avnTfBtuznZCG8b5E3ZYTsGy8=" + } + ] + }, + "maintainers": [ + { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + { + "name": "typescript", + "email": "typescript@microsoft.com" + } + ], + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "_npmOperationalInternal": { + "host": "packages-18-east.internal.npmjs.com", + "tmp": "tmp/types-registry-0.1.49.tgz_1480978296540_0.6999062416143715" + }, + "directories": {}, + "contributors": [] + }, + "0.1.50": { + "name": "types-registry", + "version": "0.1.50", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/Microsoft/types-publisher.git" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "Apache-2.0", + "_id": "types-registry@0.1.50", + "dist": { + "shasum": "6b744caa1e55530f7e98f2e6eebeeef2848fdb00", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.50.tgz", + "integrity": "sha512-dcgKQaSBS5gBjwkfmpjpoh4Q+IaDOdJuuPjFS1ESac0o53EJVUdjPC0jTE5hT7lOe4XkPHENLmG/CRpvv3R7TA==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIQCIjMvQokH8SHa6k5Cto98RUGXQUPswjpyj/jaYBnikeQIgSdJox76L937H4Rd2rKeFRR3UZqgdzeuS4oUqf1dcVFI=" + } + ] + }, + "maintainers": [ + { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + { + "name": "typescript", + "email": "typescript@microsoft.com" + } + ], + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "_npmOperationalInternal": { + "host": "packages-12-west.internal.npmjs.com", + "tmp": "tmp/types-registry-0.1.50.tgz_1481037263570_0.7079629611689597" + }, + "directories": {}, + "contributors": [] + }, + "0.1.51": { + "name": "types-registry", + "version": "0.1.51", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/Microsoft/types-publisher.git" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "Apache-2.0", + "_id": "types-registry@0.1.51", + "dist": { + "shasum": "a689bf6f063a80d83bdcd7b3fbe503ddaf67efea", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.51.tgz", + "integrity": "sha512-MhF4cWqlBCt6c6RL+ndSIT/I9AgiBNgzTRB4YzfefvQvArFwCZsAF5ofLqvFKRrlG4+Ghg427wKKjK8iKvGbxQ==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEQCIHBfuGPte7BZByPiNu7ku6a23t90sD25jEG5Ey/aVH3SAiAyGsgbd2sjdfYzZgrQpYVh2pJqOONXyEfXNckYtwb7Eg==" + } + ] + }, + "maintainers": [ + { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + { + "name": "typescript", + "email": "typescript@microsoft.com" + } + ], + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "_npmOperationalInternal": { + "host": "packages-18-east.internal.npmjs.com", + "tmp": "tmp/types-registry-0.1.51.tgz_1481076323481_0.35959251690655947" + }, + "directories": {}, + "contributors": [] + }, + "0.1.52": { + "name": "types-registry", + "version": "0.1.52", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/Microsoft/types-publisher.git" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "Apache-2.0", + "_id": "types-registry@0.1.52", + "dist": { + "shasum": "028fc5965fb5c41ae03c6c56887997f7145cfff3", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.52.tgz", + "integrity": "sha512-U2uT2BzeZAGkyoSfZBrgWx+v3l46BnlOhe0MAnDPG3l0CTpt0PWd27Vo3Ebs/hbrln4tHNaVEe2hSSnX6l6SrA==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEYCIQDrF7zD4OUyRhJQNrD+wOlECYuCaZAePxWh9TwdxglI5AIhAMOKyOtontGj75go4H6IoMmtUab2PpxhQKsXXSJc0122" + } + ] + }, + "maintainers": [ + { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + { + "name": "typescript", + "email": "typescript@microsoft.com" + } + ], + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "_npmOperationalInternal": { + "host": "packages-12-west.internal.npmjs.com", + "tmp": "tmp/types-registry-0.1.52.tgz_1481139100703_0.8204035519156605" + }, + "directories": {}, + "contributors": [] + }, + "0.1.53": { + "name": "types-registry", + "version": "0.1.53", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/Microsoft/types-publisher.git" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "Apache-2.0", + "_id": "types-registry@0.1.53", + "dist": { + "shasum": "49862fdfb2fb194685636a311c3d5e2874e6bb25", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.53.tgz", + "integrity": "sha512-/Tch+Qgp7t6Fufq+EdSUKc8qONk6aICwGNX70VbKx3N0Di9azirIOkVy/QzUI8h6kjOP0UfAmO8medZKIj4j1w==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIQDmhk8Hn3/U01l4fyayCCEU7taQl6k7QeCtt+FsHMX0aAIgMdldWG8+j4x9Cfl4V8WFMIw6vr4iAj2QjX4LL3NYskc=" + } + ] + }, + "maintainers": [ + { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + { + "name": "typescript", + "email": "typescript@microsoft.com" + } + ], + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "_npmOperationalInternal": { + "host": "packages-12-west.internal.npmjs.com", + "tmp": "tmp/types-registry-0.1.53.tgz_1481148562436_0.9716424026992172" + }, + "directories": {}, + "contributors": [] + }, + "0.1.54": { + "name": "types-registry", + "version": "0.1.54", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/Microsoft/types-publisher.git" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "Apache-2.0", + "_id": "types-registry@0.1.54", + "dist": { + "shasum": "cd4dde27bc1318cbb549708694d000917a597f1d", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.54.tgz", + "integrity": "sha512-3tD+S1TNfa+9iapMr8SULd6K2uXNo8o0zYGrCJ/3Zm+ORa0oPpGpJ70Ff07n/qyU1KG23r5o0RK2nxKaV2EeuQ==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIEABnDf4QHgFX3OE9l4bIr6wTcL5bM9GLTaM6lkTLJ+0AiEA9h7A+lca/eAtkcwkM5OPDd3u1FNY/GgxNShKoMZv1Oc=" + } + ] + }, + "maintainers": [ + { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + { + "name": "typescript", + "email": "typescript@microsoft.com" + } + ], + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "_npmOperationalInternal": { + "host": "packages-18-east.internal.npmjs.com", + "tmp": "tmp/types-registry-0.1.54.tgz_1481150597273_0.9905049304943532" + }, + "directories": {}, + "contributors": [] + }, + "0.1.55": { + "name": "types-registry", + "version": "0.1.55", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/Microsoft/types-publisher.git" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "Apache-2.0", + "_id": "types-registry@0.1.55", + "dist": { + "shasum": "fbde51410f3c03e64bc1ce62d34f157cac6c30a9", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.55.tgz", + "integrity": "sha512-HUG4XfjITKRi2JYmWEFbXjN5TSdMOWNtkJh78DrPka25c9ZDHDgivhad0YBbcRvR08FwXKWGBB7xHWs5DbpKBQ==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEYCIQCXcIFZmYQepsOUtj5R7ibZGnmV3m6eAYrPJrCpOe03nwIhAP+cOq2waJZ5ThWZoDlSQgP20spkIjwOja0xoEqZ/Zp0" + } + ] + }, + "maintainers": [ + { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + { + "name": "typescript", + "email": "typescript@microsoft.com" + } + ], + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "_npmOperationalInternal": { + "host": "packages-18-east.internal.npmjs.com", + "tmp": "tmp/types-registry-0.1.55.tgz_1481171630215_0.5773201696574688" + }, + "directories": {}, + "contributors": [] + }, + "0.1.56": { + "name": "types-registry", + "version": "0.1.56", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/Microsoft/types-publisher.git" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "Apache-2.0", + "_id": "types-registry@0.1.56", + "dist": { + "shasum": "8d99dd4c16301e262a0cb29b4059adc04c2504c5", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.56.tgz", + "integrity": "sha512-9v3rg5cYgLU87HV+DiF6S47nhYRsAVfeNgzZxNKzgDEcnfdME+NM8pSfta+VQhM3+VdPzp7aRsqZz9o/Nb4IzA==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEYCIQDTWGrkFTHmyfAbdl1YqBYPf/34UENmTUERSQW0iDUk+wIhAL6GHFknL1TGgr62nBWwlNxEHNahzOpsp9WD+F75hHsc" + } + ] + }, + "maintainers": [ + { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + { + "name": "typescript", + "email": "typescript@microsoft.com" + } + ], + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "_npmOperationalInternal": { + "host": "packages-18-east.internal.npmjs.com", + "tmp": "tmp/types-registry-0.1.56.tgz_1481208397457_0.6098321606405079" + }, + "directories": {}, + "contributors": [] + }, + "0.1.57": { + "name": "types-registry", + "version": "0.1.57", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/Microsoft/types-publisher.git" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "Apache-2.0", + "_id": "types-registry@0.1.57", + "dist": { + "shasum": "b103a96b3d04c1e1066eb65da304aa671795588f", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.57.tgz", + "integrity": "sha512-v5uOGrFbDPWvW64Os+mpVHanS+mEVMZmGTkUa/TO1kjAqu/mjSI98msN6AKfji0sAJaanyfq7+p4sRZHUKY2pw==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEQCIChDYS5Hnq0V3CxY1athJ3KzR1I9duPjnQ6l2nRDFgnOAiA2WDRhL8RXEu2C5i2jt29bJA75uDwaBZf6f6+Owl60nA==" + } + ] + }, + "maintainers": [ + { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + { + "name": "typescript", + "email": "typescript@microsoft.com" + } + ], + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "_npmOperationalInternal": { + "host": "packages-12-west.internal.npmjs.com", + "tmp": "tmp/types-registry-0.1.57.tgz_1481208724730_0.3946613552980125" + }, + "directories": {}, + "contributors": [] + }, + "0.1.58": { + "name": "types-registry", + "version": "0.1.58", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/Microsoft/types-publisher.git" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "Apache-2.0", + "_id": "types-registry@0.1.58", + "dist": { + "shasum": "7747a721d1ce777a8045d35c89c98962f6d188a2", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.58.tgz", + "integrity": "sha512-r8wWj8nYp9LkESvD3fToEPoSO6usHUt74VjwdCJx1RmeJZ8XBJ5EGiD/bG99fChaqhiihfvz3Q28P5MTVI76RA==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEQCIDgtK8N3G48a9ddt/e1esZvFTC5YCun8xOP9xit5M1/wAiBL9p/0FdJKJMO9kTd1U9wTwmkaP2hdhM+Osy2kcQnahA==" + } + ] + }, + "maintainers": [ + { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + { + "name": "typescript", + "email": "typescript@microsoft.com" + } + ], + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "_npmOperationalInternal": { + "host": "packages-18-east.internal.npmjs.com", + "tmp": "tmp/types-registry-0.1.58.tgz_1481208910852_0.16336339549161494" + }, + "directories": {}, + "contributors": [] + }, + "0.1.59": { + "name": "types-registry", + "version": "0.1.59", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/Microsoft/types-publisher.git" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "Apache-2.0", + "_id": "types-registry@0.1.59", + "dist": { + "shasum": "df5c1f892967589d1facb57b9bd7d4ffe6b7a63f", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.59.tgz", + "integrity": "sha512-E/WZ4MQiPVGNa7q9Dk2V53Y2b2inU+EqO+VAE6nhQ/vuriysHBksiNa72W6Nc7QWNtQHzbDycJlzqnjyyYQdXg==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEQCIB3PhKjGCKGZkmZKHZTpVluRSQcYP6c4swuh7etYdYzEAiAuLzEmToDKVTjqlt41KtV+roTNLGLXhwLbWpdRHdMPBw==" + } + ] + }, + "maintainers": [ + { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + { + "name": "typescript", + "email": "typescript@microsoft.com" + } + ], + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "_npmOperationalInternal": { + "host": "packages-18-east.internal.npmjs.com", + "tmp": "tmp/types-registry-0.1.59.tgz_1481213994727_0.2297708890400827" + }, + "directories": {}, + "contributors": [] + }, + "0.1.60": { + "name": "types-registry", + "version": "0.1.60", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/Microsoft/types-publisher.git" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "Apache-2.0", + "_id": "types-registry@0.1.60", + "dist": { + "shasum": "07c4dabd1977b06ad852731a33a2fbb4839aba90", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.60.tgz", + "integrity": "sha512-4CyAl7Bx1W65QUd+iYvAJCUmpfAHYsHaprI6WYM6wrveFiElYcmp/DTn1P/InsWahhcTXCpqIXkqQG6xxkC/WA==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIB3t+5aWkPwYxWziaNz0Qn9oWmf+UVZ4EFlG21txbZx8AiEA5joWFZixso7qgfTjyQ23I9BwETXaVBdjW9rNuDe0UTY=" + } + ] + }, + "maintainers": [ + { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + { + "name": "typescript", + "email": "typescript@microsoft.com" + } + ], + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "_npmOperationalInternal": { + "host": "packages-18-east.internal.npmjs.com", + "tmp": "tmp/types-registry-0.1.60.tgz_1481235353031_0.745983648346737" + }, + "directories": {}, + "contributors": [] + }, + "0.1.61": { + "name": "types-registry", + "version": "0.1.61", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/Microsoft/types-publisher.git" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "Apache-2.0", + "_id": "types-registry@0.1.61", + "dist": { + "shasum": "882510534fa6f83d090e32e379885e07b17201cd", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.61.tgz", + "integrity": "sha512-7FsUgETmVRH3e26XH7xZbPhNGsqnp1hxOCshI3ZQta7Qs+wmiL9jZ/6RJh7RhqIM3/SP8w409Pye2y1/3ARVfg==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEQCIDh/SRp49V/qTrdztSzRKBttFeXM7pVjx/KoskgD1/fXAiAuAUdSdKh5K6kwOTzDuu9bc3D5QGOhVHeWHQCxE9v6vQ==" + } + ] + }, + "maintainers": [ + { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + { + "name": "typescript", + "email": "typescript@microsoft.com" + } + ], + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "_npmOperationalInternal": { + "host": "packages-18-east.internal.npmjs.com", + "tmp": "tmp/types-registry-0.1.61.tgz_1481235538065_0.2815151042304933" + }, + "directories": {}, + "contributors": [] + }, + "0.1.62": { + "name": "types-registry", + "version": "0.1.62", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/Microsoft/types-publisher.git" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "Apache-2.0", + "_id": "types-registry@0.1.62", + "dist": { + "shasum": "1152d5acec32d2d157a359e3f6343fa18062b475", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.62.tgz", + "integrity": "sha512-P/0az4lwHzgLCnCkkx5Mu5cGbVCsd4QvCCzodi5U7T0FPsEaj2oj1TTN2VyjDzxK1MrRX3cJqcPo5zjjZU/9Vw==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEYCIQDOowUbFrhlqfrv34ZPaKrp8l0uYhKyVPJ7xJFBJ2EdXQIhAOGmQrB3Or+bqg+ih6tKApuhFWH+HCXbTFxxS0pqZocs" + } + ] + }, + "maintainers": [ + { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + { + "name": "typescript", + "email": "typescript@microsoft.com" + } + ], + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "_npmOperationalInternal": { + "host": "packages-12-west.internal.npmjs.com", + "tmp": "tmp/types-registry-0.1.62.tgz_1481239912111_0.3493129229173064" + }, + "directories": {}, + "contributors": [] + }, + "0.1.63": { + "name": "types-registry", + "version": "0.1.63", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/Microsoft/types-publisher.git" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "Apache-2.0", + "_id": "types-registry@0.1.63", + "dist": { + "shasum": "7d2346bca057b26ef15dcd2a9bf79d0ea722fd9d", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.63.tgz", + "integrity": "sha512-8yK9DAhJWbMRXFpooKuzujxTeZExALbekrn3JgHVgDbXTiLUXR6xp/3EJBdDeB4q+6wjYDjM55XLmNxi4QWfLQ==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEYCIQDfdNAEBRiABBCXI7Sxm8Zpl1/7hgCFCCpLjRthLQ/QNAIhAJzTYd5p8AG7PrYgMXH0ca6a7OUtrmFIB2gY3vA5kLVq" + } + ] + }, + "maintainers": [ + { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + { + "name": "typescript", + "email": "typescript@microsoft.com" + } + ], + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "_npmOperationalInternal": { + "host": "packages-18-east.internal.npmjs.com", + "tmp": "tmp/types-registry-0.1.63.tgz_1481303470186_0.37555102072656155" + }, + "directories": {}, + "contributors": [] + }, + "0.1.64": { + "name": "types-registry", + "version": "0.1.64", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/Microsoft/types-publisher.git" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "Apache-2.0", + "_id": "types-registry@0.1.64", + "dist": { + "shasum": "7e4a47d6dee4ea6066e0b2bb616392195d6ec578", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.64.tgz", + "integrity": "sha512-o8cs5fbP5N3Nn5dReWvcHMa2r7CrqS7jxIa4HtDi7yLU1QRP0KM5sRO8iBEAWprbC2nPRDl7g3W7r+mLI4Fh8Q==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEYCIQDe2xbB/33m4PaH+CmVHV/PMZaOb9FX7bhwcGi3QMP4kQIhAPznA6Z7fQqm4GnJE4KaLs7l1njOCZi6rJ/ronkrtyh1" + } + ] + }, + "maintainers": [ + { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + { + "name": "typescript", + "email": "typescript@microsoft.com" + } + ], + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "_npmOperationalInternal": { + "host": "packages-12-west.internal.npmjs.com", + "tmp": "tmp/types-registry-0.1.64.tgz_1481477579845_0.9306431813165545" + }, + "directories": {}, + "contributors": [] + }, + "0.1.65": { + "name": "types-registry", + "version": "0.1.65", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/Microsoft/types-publisher.git" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "Apache-2.0", + "_id": "types-registry@0.1.65", + "dist": { + "shasum": "2ff68a2efdca57c0e9d95d05ca5bbf96d4c74d4f", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.65.tgz", + "integrity": "sha512-vkgw6n41u7c/K/rlsW7fLrGDbCdBl984mccQExML6GzZEbvVqSYLy/c/XKkO2m0cZm3ZiSilo0j0TZFKGU6WZg==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIDqQJWiMMjDLPcZb8CVpiYIGDvgzPus9g1FlimuwEM78AiEAnCI4Aa4JVCfFmtf0v1MpiBRKW7RgdVCWRdUwz6ZhMa0=" + } + ] + }, + "maintainers": [ + { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + { + "name": "typescript", + "email": "typescript@microsoft.com" + } + ], + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "_npmOperationalInternal": { + "host": "packages-12-west.internal.npmjs.com", + "tmp": "tmp/types-registry-0.1.65.tgz_1481583100733_0.8194460365921259" + }, + "directories": {}, + "contributors": [] + }, + "0.1.66": { + "name": "types-registry", + "version": "0.1.66", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/Microsoft/types-publisher.git" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "Apache-2.0", + "_id": "types-registry@0.1.66", + "dist": { + "shasum": "b1abd809723e8ea30bfec3320e80411b583065f0", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.66.tgz", + "integrity": "sha512-J+Lkd0TGQKM+XuwgwtdZ/B+Dz7UaPfQIII5LJWhSd9IcwT0Yv3wTTrlATXq+UiG0pz0npMd8XOhoi/8yTO0xsA==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEYCIQCcccvVWg5G5ytVJ87jN5uX4yBiqNbtSw5jLv6shLmgUQIhAJ8PNvMTiZnSAXv2JIoIh4JRBdiNeN6KDjzmCG/YEF9L" + } + ] + }, + "maintainers": [ + { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + { + "name": "typescript", + "email": "typescript@microsoft.com" + } + ], + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "_npmOperationalInternal": { + "host": "packages-18-east.internal.npmjs.com", + "tmp": "tmp/types-registry-0.1.66.tgz_1481820800159_0.5941622226964682" + }, + "directories": {}, + "contributors": [] + }, + "0.1.67": { + "name": "types-registry", + "version": "0.1.67", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/Microsoft/types-publisher.git" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "Apache-2.0", + "_id": "types-registry@0.1.67", + "dist": { + "shasum": "559c2ab178a5e21a1dd7829d477d6df21143c206", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.67.tgz", + "integrity": "sha512-YbgGxU437k+VS9LEgCOIpAUMfQdEHyR9RdCiki3a6saFWKIRU02/84YVOURZVroAh7NiAlDk7ylj9PLsMfEXPw==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIQCF6CmRqQEqqAPf6eLvQjESuTXFYl+ZirC/0eaBFHb0mwIgPUflsLKN1y7rATt2vlr7c+XD4CrT4WD4SP2ghnN2OZQ=" + } + ] + }, + "maintainers": [ + { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + { + "name": "typescript", + "email": "typescript@microsoft.com" + } + ], + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "_npmOperationalInternal": { + "host": "packages-18-east.internal.npmjs.com", + "tmp": "tmp/types-registry-0.1.67.tgz_1481828655709_0.7398256338201463" + }, + "directories": {}, + "contributors": [] + }, + "0.1.68": { + "name": "types-registry", + "version": "0.1.68", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/Microsoft/types-publisher.git" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "Apache-2.0", + "_id": "types-registry@0.1.68", + "dist": { + "shasum": "ff8596219c688465a94f83efa32e2105a5871170", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.68.tgz", + "integrity": "sha512-wzK43HfQ/H42xESL77VN5wiXTbKQkbV0zdVKU42AQ1ikiBvG+6khWO8SffDj6nwpgfYV6aKOJtNJjiAJHKLxDg==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEYCIQDHWdPvkOOYNG6ek+TKPOrUiQFL5RuqBh3VuiU8Jbc3XQIhAKkhXoG2EgOpuaGP113T1DgyBBXD/N/BY2HyhMrVTyIz" + } + ] + }, + "maintainers": [ + { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + { + "name": "typescript", + "email": "typescript@microsoft.com" + } + ], + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "_npmOperationalInternal": { + "host": "packages-18-east.internal.npmjs.com", + "tmp": "tmp/types-registry-0.1.68.tgz_1481833977095_0.3840383018832654" + }, + "directories": {}, + "contributors": [] + }, + "0.1.69": { + "name": "types-registry", + "version": "0.1.69", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/Microsoft/types-publisher.git" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "Apache-2.0", + "_id": "types-registry@0.1.69", + "dist": { + "shasum": "4b672e2073ffe75af5ae9348bcb2a69f1fdc361d", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.69.tgz", + "integrity": "sha512-0AqLx4kPtMJxD7OreQ2jR3aXQYhVaUQ1C5NWVtxX8IcKoi9oyFx3lsjNicTMJ8Ji8rUr7rl9iRQjeGxvvFFI+w==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIQDOwRnEPruSa5EQPQKzzoZtCllb0uN9DWZMIN8vAOtz+QIgNgcQirnlwXMp5CuJEBjSwIF2qmRguvU8RLRSLZjSabg=" + } + ] + }, + "maintainers": [ + { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + { + "name": "typescript", + "email": "typescript@microsoft.com" + } + ], + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "_npmOperationalInternal": { + "host": "packages-18-east.internal.npmjs.com", + "tmp": "tmp/types-registry-0.1.69.tgz_1481905549690_0.3349931105040014" + }, + "directories": {}, + "contributors": [] + }, + "0.1.70": { + "name": "types-registry", + "version": "0.1.70", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/Microsoft/types-publisher.git" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "Apache-2.0", + "_id": "types-registry@0.1.70", + "dist": { + "shasum": "717885a9f192d33c5a86886a6d9846bfeb14a3c2", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.70.tgz", + "integrity": "sha512-GpgfZzcgOFxofD4bTfvjYC+HdaQrMDFUeRBBxH/pxUb72kb+17aaWjPmmBQgwIxMofw5Yk4/XKX1e9BHlNFERA==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEYCIQDUbpBBarCJL47EmbKxX0I5JDK/npdh6TJMTORU+M0QRAIhAJtkNwfNGBDTeYBBzGXZe8SL5sup9o3DXZZmt4yihNni" + } + ] + }, + "maintainers": [ + { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + { + "name": "typescript", + "email": "typescript@microsoft.com" + } + ], + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "_npmOperationalInternal": { + "host": "packages-12-west.internal.npmjs.com", + "tmp": "tmp/types-registry-0.1.70.tgz_1481944229502_0.49454326648265123" + }, + "directories": {}, + "contributors": [] + }, + "0.1.71": { + "name": "types-registry", + "version": "0.1.71", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/Microsoft/types-publisher.git" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "Apache-2.0", + "_id": "types-registry@0.1.71", + "dist": { + "shasum": "d49db1a9b7ada82e9375ffefeb6f1ed546f1c1db", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.71.tgz", + "integrity": "sha512-/FqliFWYkzqosAs934HBcZ4lqpmdLfmNJ4lkBgOLuuLs+4qHPwYG404zp3HUFwy78on9O6lZTnrLHuyMglgphg==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIQCFK344e9JKcKL7y3VqKcAiC1jeIAk4ixjMhNV94SnMXwIgUNEgh9bkHkKjMjyx4LjeTOhJGkMURsrwfHhI6h7dEYA=" + } + ] + }, + "maintainers": [ + { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + { + "name": "typescript", + "email": "typescript@microsoft.com" + } + ], + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "_npmOperationalInternal": { + "host": "packages-12-west.internal.npmjs.com", + "tmp": "tmp/types-registry-0.1.71.tgz_1482159594328_0.9254342298954725" + }, + "directories": {}, + "contributors": [] + }, + "0.1.72": { + "name": "types-registry", + "version": "0.1.72", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/Microsoft/types-publisher.git" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "Apache-2.0", + "_id": "types-registry@0.1.72", + "dist": { + "shasum": "36af228dfc9155c4663042ca1bd95cbfb242dec5", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.72.tgz", + "integrity": "sha512-/Y9Zab8jkh5SoS1ZeKpxbTjnCpDHyDNY+Yplfm6ff28oizJdVIf0Teic447stSSTjw/DoN3AXq/BWX2gkDEAvw==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEQCIHQd6219iVhPEjKfaWxPV8UfQhk5HsXjST5LktwaMdjJAiBq2R94A+kq0FC9iRRhAUV0CDVyQwLUYlS7SP1lHvJ/Tw==" + } + ] + }, + "maintainers": [ + { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + { + "name": "typescript", + "email": "typescript@microsoft.com" + } + ], + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "_npmOperationalInternal": { + "host": "packages-18-east.internal.npmjs.com", + "tmp": "tmp/types-registry-0.1.72.tgz_1482160434460_0.11234249197877944" + }, + "directories": {}, + "contributors": [] + }, + "0.1.73": { + "name": "types-registry", + "version": "0.1.73", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/Microsoft/types-publisher.git" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "Apache-2.0", + "_id": "types-registry@0.1.73", + "dist": { + "shasum": "3f7296da3cb4dd773147f6e5e899e20c70a7f6e6", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.73.tgz", + "integrity": "sha512-y1zDq/FC3govZQDzLH1/b1PenRYXfEbw5jlDlfUk6d+oItqo6XodFDwZgSykn6vgyQUt2L1CRKRW2pSZPJUEOg==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIHD41B35DqK1mlEKQ4DJ4I+dUtUqf2B1ZRMfycrQkYoqAiEAngibcCDDoMl+asjBC7mXD/6lLcGssTOqtRoAdAXvqeg=" + } + ] + }, + "maintainers": [ + { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + { + "name": "typescript", + "email": "typescript@microsoft.com" + } + ], + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "_npmOperationalInternal": { + "host": "packages-18-east.internal.npmjs.com", + "tmp": "tmp/types-registry-0.1.73.tgz_1482187007341_0.2121784531045705" + }, + "directories": {}, + "contributors": [] + }, + "0.1.74": { + "name": "types-registry", + "version": "0.1.74", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/Microsoft/types-publisher.git" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "Apache-2.0", + "_id": "types-registry@0.1.74", + "dist": { + "shasum": "e2f361f94c57d35a2215185944d528ef806608a2", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.74.tgz", + "integrity": "sha512-EKPsBMLXSWL/86qSSWbvx40RdZlWOYKPo/am4Zdv0O87S9pVf4QX5wPCQJtHUFbVF/o745Ceha0+39bIvt8qHA==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEYCIQChPkXM/41G2hhMvI2cAuHqVw7bOHruo30BuivY357eNQIhAOZlFLmqXTbyjnVXCWyOJ34h+MY5k9WBo0IdWnnHRiDx" + } + ] + }, + "maintainers": [ + { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + { + "name": "typescript", + "email": "typescript@microsoft.com" + } + ], + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "_npmOperationalInternal": { + "host": "packages-12-west.internal.npmjs.com", + "tmp": "tmp/types-registry-0.1.74.tgz_1482235908032_0.9047458569984883" + }, + "directories": {}, + "contributors": [] + }, + "0.1.75": { + "name": "types-registry", + "version": "0.1.75", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/Microsoft/types-publisher.git" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "Apache-2.0", + "_id": "types-registry@0.1.75", + "dist": { + "shasum": "4e7b746ca6712baca10c6775b5efe40e271dd58c", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.75.tgz", + "integrity": "sha512-XSh4Fa4y5qiVB0/RAVNfFmOuBM4olmVQ9XmsRK3wxcXbIcGWtwZe80jckJAv8Flk65Bm4ffH+CWaC+I+P+Iz8g==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIEW29qWH5UDH3VMp1B4nOj4M0LRqpF3cwY3Yxv7V+g6qAiEA+VjLax1+K8f5dOP0JHVLIMYrtoZH6RFXHgNZxKGmeKU=" + } + ] + }, + "maintainers": [ + { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + { + "name": "typescript", + "email": "typescript@microsoft.com" + } + ], + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "_npmOperationalInternal": { + "host": "packages-12-west.internal.npmjs.com", + "tmp": "tmp/types-registry-0.1.75.tgz_1482243005806_0.11152671976014972" + }, + "directories": {}, + "contributors": [] + }, + "0.1.76": { + "name": "types-registry", + "version": "0.1.76", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/Microsoft/types-publisher.git" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "Apache-2.0", + "_id": "types-registry@0.1.76", + "dist": { + "shasum": "51795fa12331a01fd544955abe802ba6b0d20864", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.76.tgz", + "integrity": "sha512-chngVr7EGoDD80O2tQ0QOnNyWTDxb4jY4h28kQm0sJWS0+rQk98EdLwl32+qkSaQsdlVjZfpOZ5D3UyhxwX2KQ==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEYCIQCg3QzpLfSBLZm1rn4yA+8QiT/wi+ZGd+y+gSicOacpbwIhAPhmKwR14jfjWE9YkLHImvpg9cvGpu27m/amXJwHD1GV" + } + ] + }, + "maintainers": [ + { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + { + "name": "typescript", + "email": "typescript@microsoft.com" + } + ], + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "_npmOperationalInternal": { + "host": "packages-18-east.internal.npmjs.com", + "tmp": "tmp/types-registry-0.1.76.tgz_1482243683822_0.6399715496227145" + }, + "directories": {}, + "contributors": [] + }, + "0.1.77": { + "name": "types-registry", + "version": "0.1.77", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/Microsoft/types-publisher.git" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "Apache-2.0", + "_id": "types-registry@0.1.77", + "dist": { + "shasum": "4604038ae24254459ea88ee4f1bcaac1b44d3bfb", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.77.tgz", + "integrity": "sha512-Eisw2bKqdLxIMmNstTOt8c+taqJtT/977mVHh9myYhkUZPYroEUBFhOCOENvxnAlOcwQUXURVej1ncRaqyKXgg==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIDKz7jAZe13qgfXStc0fQSQJA/AKDHzBoJ4nZjqaEIaxAiEAmT44JFLHCAg4/vxsJOV0vL4pyOuRq/Dev3BXclhkWwc=" + } + ] + }, + "maintainers": [ + { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + { + "name": "typescript", + "email": "typescript@microsoft.com" + } + ], + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "_npmOperationalInternal": { + "host": "packages-18-east.internal.npmjs.com", + "tmp": "tmp/types-registry-0.1.77.tgz_1482262724785_0.9841413209214807" + }, + "directories": {}, + "contributors": [] + }, + "0.1.78": { + "name": "types-registry", + "version": "0.1.78", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/Microsoft/types-publisher.git" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "Apache-2.0", + "_id": "types-registry@0.1.78", + "dist": { + "shasum": "45cd32534e4429b52d0a0ab8d9ec8f98270d27c6", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.78.tgz", + "integrity": "sha512-a0tZ+sufnyVy/lvj/6+48Cah36rplj3i4YPZvBeeuvH8Gu6G4cZ/3cAG25LydCnLu1Mc7VE5S3oPaelpCREOng==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIAzEBCRCvPWMPOHpP6f28XaMCHsQ4LJE3dU06smMtgyPAiEAmNTOK84ZoK28VkcCK0TEixte4htknMIak5O66IxWvHc=" + } + ] + }, + "maintainers": [ + { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + { + "name": "typescript", + "email": "typescript@microsoft.com" + } + ], + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "_npmOperationalInternal": { + "host": "packages-12-west.internal.npmjs.com", + "tmp": "tmp/types-registry-0.1.78.tgz_1482502606246_0.648517755093053" + }, + "directories": {}, + "contributors": [] + }, + "0.1.79": { + "name": "types-registry", + "version": "0.1.79", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/Microsoft/types-publisher.git" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "Apache-2.0", + "_id": "types-registry@0.1.79", + "dist": { + "shasum": "3c81fe6126818032a820af3ea33942813a58f42d", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.79.tgz", + "integrity": "sha512-SqVVTmpbDtAdoKWosccimj4OYARJFFOZ0//kopU5KwN0x5+u2ZPi/ixH/4zm5AtWGEYk//kMWAbMHz4heyGxZA==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIH1vQQ4i29b1XcuynUSzVzWtZkdXL4cBUoUrEyWxDox2AiEAvv8ozm3XtGYz1FgqO+4BWJWDOi9z+ZJ5CCEsWNu68sc=" + } + ] + }, + "maintainers": [ + { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + { + "name": "typescript", + "email": "typescript@microsoft.com" + } + ], + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "_npmOperationalInternal": { + "host": "packages-18-east.internal.npmjs.com", + "tmp": "tmp/types-registry-0.1.79.tgz_1482614157354_0.26821903116069734" + }, + "directories": {}, + "contributors": [] + }, + "0.1.80": { + "name": "types-registry", + "version": "0.1.80", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/Microsoft/types-publisher.git" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "Apache-2.0", + "_id": "types-registry@0.1.80", + "dist": { + "shasum": "ccce73a0570042b447403107514058f9919659b0", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.80.tgz", + "integrity": "sha512-l2s/wK02twd5eeFBa/sBn+HE0rcbV5qZ1wq0OxTodjMGXqld1UzAwn1mQuuKtIP8+D3mW17jGIuXRxHnnSgBCQ==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEYCIQCyPH+sMFGOGoMsaVbMCpfNQt8NajvlxCHem5Ovd4aB7AIhAOZHq19kGY4/i8/gqKaE+X6m4mnv0FsWRThV+bxnlw16" + } + ] + }, + "maintainers": [ + { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + { + "name": "typescript", + "email": "typescript@microsoft.com" + } + ], + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "_npmOperationalInternal": { + "host": "packages-18-east.internal.npmjs.com", + "tmp": "tmp/types-registry-0.1.80.tgz_1482678155553_0.2884897196199745" + }, + "directories": {}, + "contributors": [] + }, + "0.1.81": { + "name": "types-registry", + "version": "0.1.81", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/Microsoft/types-publisher.git" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "Apache-2.0", + "_id": "types-registry@0.1.81", + "dist": { + "shasum": "a9399c514aae052ca1d356c231a8fb135410c37a", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.81.tgz", + "integrity": "sha512-hvw3yePy5jTeWteI9pU6K1JVXH3CVGG/q/UeB6xtqkK/+MIJbal0T8IAX7+rCVPX2REspvnEn/5k1N3Iw/k+Iw==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIQD5ome6mdP6tL1EgLff2GLDWQUumsHElbVs1RD24YiyhgIgeVHHUHFhfMyIPQVO73QFSFAbgipb7863wI+Dg8Rsqdo=" + } + ] + }, + "maintainers": [ + { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + { + "name": "typescript", + "email": "typescript@microsoft.com" + } + ], + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "_npmOperationalInternal": { + "host": "packages-12-west.internal.npmjs.com", + "tmp": "tmp/types-registry-0.1.81.tgz_1482817996773_0.20134487538598478" + }, + "directories": {}, + "contributors": [] + }, + "0.1.82": { + "name": "types-registry", + "version": "0.1.82", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/Microsoft/types-publisher.git" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "Apache-2.0", + "_id": "types-registry@0.1.82", + "dist": { + "shasum": "6c6418ca25dfa7470ab958ae0bbd88b255501ed3", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.82.tgz", + "integrity": "sha512-AMH7iWWnMdZXbNQjtB0RDx3kCQZXTpuPZIs4ns8xrRaQZfJm2g16UJ2hcCqwAObF7ZUOB/38fO1uJJ6Neyiz/Q==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIENtz9DIHeNXRzdA8SWC+oH/V+YyhjZTOqcSxo1LuPwUAiEA9Z7iUbEUZrF8SlPJ+qn/bxwSC98zkdsRYdXtl3hp+YI=" + } + ] + }, + "maintainers": [ + { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + { + "name": "typescript", + "email": "typescript@microsoft.com" + } + ], + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "_npmOperationalInternal": { + "host": "packages-18-east.internal.npmjs.com", + "tmp": "tmp/types-registry-0.1.82.tgz_1482873480415_0.6848506883252412" + }, + "directories": {}, + "contributors": [] + }, + "0.1.83": { + "name": "types-registry", + "version": "0.1.83", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/Microsoft/types-publisher.git" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "Apache-2.0", + "_id": "types-registry@0.1.83", + "dist": { + "shasum": "e3dd0ec47e127a15a1e6ea17d38b8acd3c3d40a1", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.83.tgz", + "integrity": "sha512-bmbBq2yK6wF3dqfye99PRGXcn2LZF9S7E4NzkmMBOaedVPGapEfvhspzUoAaDsiZxlxvBG3b1gcSjSyWDi54tg==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEYCIQDbBVi4vaYbs8KWQojoxA/viWzro2jMZ5BPuqfv2xaL4wIhAJyOgpEjPJQWe5D+ZLO4GzIryRFlXEu+iypR/78kZDty" + } + ] + }, + "maintainers": [ + { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + { + "name": "typescript", + "email": "typescript@microsoft.com" + } + ], + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "_npmOperationalInternal": { + "host": "packages-18-east.internal.npmjs.com", + "tmp": "tmp/types-registry-0.1.83.tgz_1482888148113_0.21331308293156326" + }, + "directories": {}, + "contributors": [] + }, + "0.1.84": { + "name": "types-registry", + "version": "0.1.84", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/Microsoft/types-publisher.git" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "Apache-2.0", + "_id": "types-registry@0.1.84", + "dist": { + "shasum": "33c491a90c3cf7da2f5a7a0acfa6e8d9af083bca", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.84.tgz", + "integrity": "sha512-8bPUOUbD+aa8xqC4n+50z+GDYCjPcNmmI+9wzS7jkV6MrvuJc64ZaX7825RSLeralsBVlXKiwQrRYVlWOoPbvg==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEYCIQD8O9wzfdlVKi3tPqZUFXkysSa5IMJ5aENAAV7m8ZlKHgIhAIxO+IL4CAIuEMlehFIMHe++t2LDbe1nQXP8BJvXiip6" + } + ] + }, + "maintainers": [ + { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + { + "name": "typescript", + "email": "typescript@microsoft.com" + } + ], + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "_npmOperationalInternal": { + "host": "packages-12-west.internal.npmjs.com", + "tmp": "tmp/types-registry-0.1.84.tgz_1482896179928_0.9778410736471415" + }, + "directories": {}, + "contributors": [] + }, + "0.1.85": { + "name": "types-registry", + "version": "0.1.85", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/Microsoft/types-publisher.git" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "Apache-2.0", + "_id": "types-registry@0.1.85", + "dist": { + "shasum": "f3e4ea5677a402e42a7274a1893b989d78585179", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.85.tgz", + "integrity": "sha512-HE9mVMKF2eOFIPMLM6Hi3UCWZKPRp/KU14ez/4lH5KXxgdSYvae/DgKpPxmhkyRx2Q1k2DCOmmZTGuBT+DnwGA==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEQCIEAM2FK+83HPQOW+ZK8d3w46HY5gxJFTF3j2mc9TpDUbAiAh7UqVSxhxLEF4TOzuYL/s4AvETVVUEwIIhnw7pQgi1g==" + } + ] + }, + "maintainers": [ + { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + { + "name": "typescript", + "email": "typescript@microsoft.com" + } + ], + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "_npmOperationalInternal": { + "host": "packages-12-west.internal.npmjs.com", + "tmp": "tmp/types-registry-0.1.85.tgz_1482934129411_0.6428402808960527" + }, + "directories": {}, + "contributors": [] + }, + "0.1.86": { + "name": "types-registry", + "version": "0.1.86", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/Microsoft/types-publisher.git" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "Apache-2.0", + "_id": "types-registry@0.1.86", + "dist": { + "shasum": "01c9a18d2a9beec15ad97b882ba4ce3f1a58330d", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.86.tgz", + "integrity": "sha512-kZlEaw/h6uuzHDyPbgc6u9manpX9f94BOyndsZD6gWGCyDOATiZPoPOdknlYLDT0ZeN3AYZsnhCr+bOQdgM+Zg==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEYCIQCW5p2ZWlADDaGfXLScvJRETcJzESO1612WZuiX4ekPwgIhAMwZoaBQbJbzXOjIx6LhDNhZo5jld38gASOCJF7FWyOy" + } + ] + }, + "maintainers": [ + { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + { + "name": "typescript", + "email": "typescript@microsoft.com" + } + ], + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "_npmOperationalInternal": { + "host": "packages-18-east.internal.npmjs.com", + "tmp": "tmp/types-registry-0.1.86.tgz_1483053252343_0.4146701900754124" + }, + "directories": {}, + "contributors": [] + }, + "0.1.87": { + "name": "types-registry", + "version": "0.1.87", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/Microsoft/types-publisher.git" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "Apache-2.0", + "_id": "types-registry@0.1.87", + "dist": { + "shasum": "cab69b15f661237cb089c4a8a7cb902cc9ffe9bf", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.87.tgz", + "integrity": "sha512-uY0DOOCYYIkM43ZPhZgM76xFbV6/FRlldmJe16Li6av0EBGZLe2Ol58EgIJFcxZjKrZBs0cvgQpuujQa1O04kw==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIQC+KMLoTssimd+JhmZQaz7DrsUStxKyup7O/37nbySa1wIgNJAN2nVUyNBWvdv+7TsWQtXlFfwnZiRp7iGMiQoMUF8=" + } + ] + }, + "maintainers": [ + { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + { + "name": "typescript", + "email": "typescript@microsoft.com" + } + ], + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "_npmOperationalInternal": { + "host": "packages-18-east.internal.npmjs.com", + "tmp": "tmp/types-registry-0.1.87.tgz_1483058528359_0.1933013773523271" + }, + "directories": {}, + "contributors": [] + }, + "0.1.88": { + "name": "types-registry", + "version": "0.1.88", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/Microsoft/types-publisher.git" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "Apache-2.0", + "_id": "types-registry@0.1.88", + "dist": { + "shasum": "a2fe62b00a715a7dd7b81e64b9dfab3a9122bc7c", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.88.tgz", + "integrity": "sha512-77LQb2EuFqbNBj07AXPYkYWWL+T2Ng20UYB5JXjbAW64deYu/r83P9oCjaEJyqQSBezI1KHpb8gd2F78F91JMw==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEQCIEsrIgDHUdxMW1NjBAKczaHnofxYoZFN/VqgpR5FCgx8AiBdY6Xwd4t9mIBUaer3Sl/9h6cDwoi5irmqBtrbNDLMaA==" + } + ] + }, + "maintainers": [ + { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + { + "name": "typescript", + "email": "typescript@microsoft.com" + } + ], + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "_npmOperationalInternal": { + "host": "packages-12-west.internal.npmjs.com", + "tmp": "tmp/types-registry-0.1.88.tgz_1483119924691_0.5529304903466254" + }, + "directories": {}, + "contributors": [] + }, + "0.1.89": { + "name": "types-registry", + "version": "0.1.89", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/Microsoft/types-publisher.git" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "Apache-2.0", + "_id": "types-registry@0.1.89", + "dist": { + "shasum": "072774a499602706cc517e594d2f17614ebd2fce", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.89.tgz", + "integrity": "sha512-PAXjkktLWloIUM1/5j8W7N61MCcyv2Da8QALGtusErpghn/IkUHgdhnAhGJs3oAG6dHEP7esFa0P4UrUZZx3Ew==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIQC28JJNvjqlNJ5lOKAuJlo2oLnSMG/rwAob/qPiqSyPowIgJrjfBYd+3FxrbE6BCrNpNMWiFjH0yVCfgS80FocRfaY=" + } + ] + }, + "maintainers": [ + { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + { + "name": "typescript", + "email": "typescript@microsoft.com" + } + ], + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "_npmOperationalInternal": { + "host": "packages-12-west.internal.npmjs.com", + "tmp": "tmp/types-registry-0.1.89.tgz_1483223892754_0.2280204351991415" + }, + "directories": {}, + "contributors": [] + }, + "0.1.90": { + "name": "types-registry", + "version": "0.1.90", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/Microsoft/types-publisher.git" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "Apache-2.0", + "_id": "types-registry@0.1.90", + "dist": { + "shasum": "d7b6f76452e4b2c26e0e47a414322a7de105edab", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.90.tgz", + "integrity": "sha512-sI9u6saMwO6OAxbkN+7jKyTkk+Jr5YP7pk/ta35OrjwtN2SpbZU6UjCCitxdrhEHQpmQqJn8TQV9Q6sk0cUfjw==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIHgjO7bO9b9xiVvFq2AD/ItAJp+om59I1bqu+9vb3LAhAiEAkEho91xoPFa4cdpPYppac9JFqbIUB9n3hgKyOAITvkE=" + } + ] + }, + "maintainers": [ + { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + { + "name": "typescript", + "email": "typescript@microsoft.com" + } + ], + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "_npmOperationalInternal": { + "host": "packages-18-east.internal.npmjs.com", + "tmp": "tmp/types-registry-0.1.90.tgz_1483337080707_0.19127770676277578" + }, + "directories": {}, + "contributors": [] + }, + "0.1.91": { + "name": "types-registry", + "version": "0.1.91", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/Microsoft/types-publisher.git" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "Apache-2.0", + "_id": "types-registry@0.1.91", + "dist": { + "shasum": "7fdb47fd198d73b5993d359b5cf83742d50078be", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.91.tgz", + "integrity": "sha512-wzAcWXhxlnWjL0emcFPIzoLxTJIygKZs0Y/OjNMfCmxgFdfHXXf3e576ZfSP7qntlFTWvHRmmpl6ISzLmOEsEg==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIFOCyL/YEY+WE7djbF9U1BzmjjH8NDX6a0a/yYlnkHzRAiEAvBl8gcrCucp65tF6mbTC4E/mRQaHmvS9e745Vd8BZEU=" + } + ] + }, + "maintainers": [ + { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + { + "name": "typescript", + "email": "typescript@microsoft.com" + } + ], + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "_npmOperationalInternal": { + "host": "packages-12-west.internal.npmjs.com", + "tmp": "tmp/types-registry-0.1.91.tgz_1483339045392_0.8728981425520033" + }, + "directories": {}, + "contributors": [] + }, + "0.1.92": { + "name": "types-registry", + "version": "0.1.92", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/Microsoft/types-publisher.git" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "Apache-2.0", + "_id": "types-registry@0.1.92", + "dist": { + "shasum": "d8f38a54455aaef0781a1766b28ca150e6771382", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.92.tgz", + "integrity": "sha512-kDsfIDJziif8V8PiJvI3wwW3i13p09RQ6vTmnKIm1YGIHMeqIc3oKB3dGptptEYLhZCi9/weWsX1PYsAoeua2Q==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIFh5LkhPovyBk/LgbEkMuysB2yF/eRcDKnM/6NjKFV3fAiEA0KFJGbJzzSuXRIF0X36kY6uG8pJC9so5iYQPKNN2On4=" + } + ] + }, + "maintainers": [ + { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + { + "name": "typescript", + "email": "typescript@microsoft.com" + } + ], + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "_npmOperationalInternal": { + "host": "packages-18-east.internal.npmjs.com", + "tmp": "tmp/types-registry-0.1.92.tgz_1483380585918_0.6159550624433905" + }, + "directories": {}, + "contributors": [] + }, + "0.1.93": { + "name": "types-registry", + "version": "0.1.93", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/Microsoft/types-publisher.git" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "Apache-2.0", + "_id": "types-registry@0.1.93", + "dist": { + "shasum": "8ead6659a0a28eba88f44e5b2df8b348a2821151", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.93.tgz", + "integrity": "sha512-DoQ7mzbRFIRLiGL09l3nR5afy9EO37izIXko9pAQSGoTuwmnlloqZE08T4AyBQYKE5QCBMZNx6ua6AOuX4YMqQ==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIB+z9dukiWhpk6f1SbghhnGWjoYo0SvvS+fnxbRJULt9AiEA21mLI+gxCNCYwqgdvfrxmItxRJc3d4luZF9kiINDRjI=" + } + ] + }, + "maintainers": [ + { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + { + "name": "typescript", + "email": "typescript@microsoft.com" + } + ], + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "_npmOperationalInternal": { + "host": "packages-12-west.internal.npmjs.com", + "tmp": "tmp/types-registry-0.1.93.tgz_1483398659813_0.9113002172671258" + }, + "directories": {}, + "contributors": [] + }, + "0.1.94": { + "name": "types-registry", + "version": "0.1.94", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/Microsoft/types-publisher.git" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "Apache-2.0", + "_id": "types-registry@0.1.94", + "dist": { + "shasum": "5620a83a458c9a2cb2e2333390e80fd4238c5c5c", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.94.tgz", + "integrity": "sha512-XgHnz0f9WL7JMONYmIv1ujxelz3E7aJ4duBye+ZRWJkoiUgKPWRdgmbo8qhmCUOGRtLZd3r8iwbKL+RslQlZyg==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEYCIQCv0VtcY0O8z19x0OAgK3ncjr9aie85e5iH3P1f+awvCAIhANrHvPnsdgxsFgysJAwmxOgWdtG6Ou6PTYr8QmGippyI" + } + ] + }, + "maintainers": [ + { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + { + "name": "typescript", + "email": "typescript@microsoft.com" + } + ], + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "_npmOperationalInternal": { + "host": "packages-18-east.internal.npmjs.com", + "tmp": "tmp/types-registry-0.1.94.tgz_1483405753794_0.07908235490322113" + }, + "directories": {}, + "contributors": [] + }, + "0.1.95": { + "name": "types-registry", + "version": "0.1.95", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/Microsoft/types-publisher.git" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "Apache-2.0", + "_id": "types-registry@0.1.95", + "dist": { + "shasum": "b8fbfdfb9b56124baf644cd8991258a20021f7d4", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.95.tgz", + "integrity": "sha512-C+sCjSgbd0hrjES2kmE2QjvllRwJblqHjWMGL+mMppaNKSvxxTjmdz7XZqByWVRCgZuEQmNXtQy9nsBo3lvaXg==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIQDpOgn2oJDdHKJI29MpEHOlMqflf8oXwGI3BEwN7woM3wIgNk7zZSsGOJx7H8EePlEkaWkO/mipoBRRcQO+w2BqaNE=" + } + ] + }, + "maintainers": [ + { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + { + "name": "typescript", + "email": "typescript@microsoft.com" + } + ], + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "_npmOperationalInternal": { + "host": "packages-18-east.internal.npmjs.com", + "tmp": "tmp/types-registry-0.1.95.tgz_1483454123778_0.5386005190666765" + }, + "directories": {}, + "contributors": [] + }, + "0.1.96": { + "name": "types-registry", + "version": "0.1.96", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/Microsoft/types-publisher.git" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "Apache-2.0", + "_id": "types-registry@0.1.96", + "dist": { + "shasum": "269dbf9bdf6ec82db506a3aec66321452ec602a8", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.96.tgz", + "integrity": "sha512-M90K5412Dz7NMp0dcDoiRKMXVkHYjpJnMDwHH+KM3HD4nNb62Gy2b/Pd5Ibgv0ppJLnHTf9XGy5cIMDsI0UQMQ==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIQCztb+fApId4aTs0hYyT2N+NgCsWCaB6KL6H/i8787awgIgQrBccUolDpjyj/qFRtv+aLWVsmxsOhYXij502saUDJo=" + } + ] + }, + "maintainers": [ + { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + { + "name": "typescript", + "email": "typescript@microsoft.com" + } + ], + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "_npmOperationalInternal": { + "host": "packages-18-east.internal.npmjs.com", + "tmp": "tmp/types-registry-0.1.96.tgz_1483454915892_0.44944828283041716" + }, + "directories": {}, + "contributors": [] + }, + "0.1.97": { + "name": "types-registry", + "version": "0.1.97", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/Microsoft/types-publisher.git" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "Apache-2.0", + "_id": "types-registry@0.1.97", + "dist": { + "shasum": "0f9b8773190c6d70da1ac885a2b71860edf4149b", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.97.tgz", + "integrity": "sha512-8kKSug2cxsJbkO7kyfLwzHzjQK59iY9H5FhcwFC3zZ+IJ+xa1qNlGgeJ9scaeyy7Y/wZX/6OVS57Ros06/jGPg==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEYCIQCGNtGEOYSBACE9mOrQt8+ZdXxEdo5a3J9orV/KgC3DiAIhAIEVStOs2rMs88uqvW/H/heBri952ZuY/jRtdkrW9jZj" + } + ] + }, + "maintainers": [ + { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + { + "name": "typescript", + "email": "typescript@microsoft.com" + } + ], + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "_npmOperationalInternal": { + "host": "packages-12-west.internal.npmjs.com", + "tmp": "tmp/types-registry-0.1.97.tgz_1483455688321_0.08711561560630798" + }, + "directories": {}, + "contributors": [] + }, + "0.1.98": { + "name": "types-registry", + "version": "0.1.98", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/Microsoft/types-publisher.git" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "Apache-2.0", + "_id": "types-registry@0.1.98", + "dist": { + "shasum": "66a5ce42f22c7a150cad80faa0bdfd23604ccb6d", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.98.tgz", + "integrity": "sha512-awk3Gm5UXmM0uwBWlR2BzcR22dKS3z2aiOf96jz0YwP/882Li8A+p7c+aSjRCN8g9JVA1U6bRKbKAU68tTufdA==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIQDvstdvln2JhGAVZO3O+sRzREfkok9QWbb5tcb7s9DdmQIgD5P7reRFjOfKWbaddG+1A/PjI7JYBDQFBE/BkXThGP8=" + } + ] + }, + "maintainers": [ + { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + { + "name": "typescript", + "email": "typescript@microsoft.com" + } + ], + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "_npmOperationalInternal": { + "host": "packages-12-west.internal.npmjs.com", + "tmp": "tmp/types-registry-0.1.98.tgz_1483477775151_0.507910383399576" + }, + "directories": {}, + "contributors": [] + }, + "0.1.99": { + "name": "types-registry", + "version": "0.1.99", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/Microsoft/types-publisher.git" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "Apache-2.0", + "_id": "types-registry@0.1.99", + "dist": { + "shasum": "f8abf464eeb68ef28f04039066cb64354cdda211", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.99.tgz", + "integrity": "sha512-lk62FtNeeMhbtazK/HUybDrmo+6Le+lk42tzHwowiZu799tY79UamG8ok7Usrn66p284teVm9mxByKkzsoIlVw==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEYCIQCKPUWzcrricOznnPkPafZSxHHwNLOkHDqEWqshXb1BnwIhAMtOcOfIXtxbvtGEm0fXkUJWnuR3Dg3bXOzroRa/c/g9" + } + ] + }, + "maintainers": [ + { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + { + "name": "typescript", + "email": "typescript@microsoft.com" + } + ], + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "_npmOperationalInternal": { + "host": "packages-18-east.internal.npmjs.com", + "tmp": "tmp/types-registry-0.1.99.tgz_1483477986504_0.5500520977657288" + }, + "directories": {}, + "contributors": [] + }, + "0.1.100": { + "name": "types-registry", + "version": "0.1.100", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/Microsoft/types-publisher.git" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "Apache-2.0", + "_id": "types-registry@0.1.100", + "dist": { + "shasum": "c121ae2afabafe0065345a06bcfce1365d61c12f", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.100.tgz", + "integrity": "sha512-oiLvk0YLBzdDGSFz/6oM2pK/wVup9AJw1GcoTMUvghM846b7B1Yux/ZxMR4CzdBUIVPz7/3CgUZfQzlrjmd7qA==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIH2OF1OVbBfuXa1KxXOcnyRCUTOg0y4+PQCPGMT6eMO3AiEApMf5jZY/Y+fVVFMtqXOnVPpqDFMN/dLvnU42jpMGhys=" + } + ] + }, + "maintainers": [ + { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + { + "name": "typescript", + "email": "typescript@microsoft.com" + } + ], + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "_npmOperationalInternal": { + "host": "packages-12-west.internal.npmjs.com", + "tmp": "tmp/types-registry-0.1.100.tgz_1483540614514_0.43320672679692507" + }, + "directories": {}, + "contributors": [] + }, + "0.1.101": { + "name": "types-registry", + "version": "0.1.101", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/Microsoft/types-publisher.git" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "Apache-2.0", + "_id": "types-registry@0.1.101", + "dist": { + "shasum": "a59b8d0d154d73893137c2ea892275a970323548", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.101.tgz", + "integrity": "sha512-aF7t8LnEON/0mTvLrnhdZ5aNUG8fx0+RogrGdbwCKHN9f6Qo5HnU7ePKbfCr2svE3kPAL7OfYV8TNaDftDr35A==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIDbfsur4F1Wuv6xwecHjz46cxZ+hiq6hhSFmyFCftXHEAiEA48O/2dqigH32q/W1Q59vVrOZ+xO6+JFA5tyK4zw1g0k=" + } + ] + }, + "maintainers": [ + { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + { + "name": "typescript", + "email": "typescript@microsoft.com" + } + ], + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "_npmOperationalInternal": { + "host": "packages-12-west.internal.npmjs.com", + "tmp": "tmp/types-registry-0.1.101.tgz_1483560689614_0.32754180091433227" + }, + "directories": {}, + "contributors": [] + }, + "0.1.102": { + "name": "types-registry", + "version": "0.1.102", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/Microsoft/types-publisher.git" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "Apache-2.0", + "_id": "types-registry@0.1.102", + "dist": { + "shasum": "01853b6207f2308093d0ef5ea07367d73c83afdd", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.102.tgz", + "integrity": "sha512-oiqX/O1FbtefsLlsUkWKRB7QjpY2jRcJNVcyfDq6o5gbrAthYZTpVSk1y971f/cKqJHbOOwsfRxyO5jaucXGOw==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEQCIAgXxzOV/E76DsuJpLstuZYxhUXU7iT+9rf9lLu09wNHAiBY9X/QcubBGoK+wql2kkKxZPgYgyqxqfx+iZj3+XGGhA==" + } + ] + }, + "maintainers": [ + { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + { + "name": "typescript", + "email": "typescript@microsoft.com" + } + ], + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "_npmOperationalInternal": { + "host": "packages-18-east.internal.npmjs.com", + "tmp": "tmp/types-registry-0.1.102.tgz_1483569412702_0.5276120356284082" + }, + "directories": {}, + "contributors": [] + }, + "0.1.103": { + "name": "types-registry", + "version": "0.1.103", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/Microsoft/types-publisher.git" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "Apache-2.0", + "_id": "types-registry@0.1.103", + "dist": { + "shasum": "e77541f4cbadb8610ba2fc762e4df0520e93e96c", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.103.tgz", + "integrity": "sha512-n5X9TrapnNhtkW7lT8guy8JQg1tj27UiJd9Wf+7O+1at8qQuVtgjDj0aPzE4yblmQu9pNAOtHhdeXeUdcL16qg==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIQC8ECJNRN1kzLTLI0lUsclHnh83mDoFyBfcMEr70FO7fAIgK8QK0bFOfUk21EGaBqWUs9uAmpWfr+WXunvNDKyoZ6M=" + } + ] + }, + "maintainers": [ + { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + { + "name": "typescript", + "email": "typescript@microsoft.com" + } + ], + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "_npmOperationalInternal": { + "host": "packages-12-west.internal.npmjs.com", + "tmp": "tmp/types-registry-0.1.103.tgz_1483575796683_0.617237526923418" + }, + "directories": {}, + "contributors": [] + }, + "0.1.104": { + "name": "types-registry", + "version": "0.1.104", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/Microsoft/types-publisher.git" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "Apache-2.0", + "_id": "types-registry@0.1.104", + "dist": { + "shasum": "0c3e1451533585c7556bfebb7ddf655681edac3f", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.104.tgz", + "integrity": "sha512-m9GF+YJLfaBZf8PoRLZIFuwAPzaGYto00OPjIWa7DEXPsgOWfz1gNOqbVCZf+0H6sik29UXbafduBNimV+7KFA==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIQDjcZadgHFeAIvLURVG4SDZdH6RCscT7Dhaoo6is5LbYQIgSi81mUMhRwtxHcafEPeHVqlsOYXxWAL0zS+KCNnA4/o=" + } + ] + }, + "maintainers": [ + { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + { + "name": "typescript", + "email": "typescript@microsoft.com" + } + ], + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "_npmOperationalInternal": { + "host": "packages-12-west.internal.npmjs.com", + "tmp": "tmp/types-registry-0.1.104.tgz_1483586183604_0.756333717610687" + }, + "directories": {}, + "contributors": [] + }, + "0.1.105": { + "name": "types-registry", + "version": "0.1.105", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/Microsoft/types-publisher.git" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "Apache-2.0", + "_id": "types-registry@0.1.105", + "dist": { + "shasum": "cd935213854473a01f51a02ec779f27bd0a866fb", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.105.tgz", + "integrity": "sha512-iac32JMgs8ZkE//0iBBPhDmOwfFB68KdXMBN4hk4Myr/3Y9c2AIK1LzrEjzbIlQjMqquVu1wY08jZIWIycFZqg==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCICoezc6VPnhTcWUHefVc64fyom7auNcxxpvMMMbK/7bcAiEAz69CPZJXO+HpxnIdGU/UB+H8iWjWrsOP3DMH+lU1rlg=" + } + ] + }, + "maintainers": [ + { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + { + "name": "typescript", + "email": "typescript@microsoft.com" + } + ], + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "_npmOperationalInternal": { + "host": "packages-18-east.internal.npmjs.com", + "tmp": "tmp/types-registry-0.1.105.tgz_1483634331153_0.2038703199941665" + }, + "directories": {}, + "contributors": [] + }, + "0.1.106": { + "name": "types-registry", + "version": "0.1.106", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/Microsoft/types-publisher.git" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "Apache-2.0", + "_id": "types-registry@0.1.106", + "dist": { + "shasum": "5a4011f7c3c39659d24efece07b0edeea05f8e53", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.106.tgz", + "integrity": "sha512-TasoJo5kZY4e0VfGZTnQdrX4+KtBBbmDR8TbZRVQERZ3jkemByV+nwO3Ok4Hu/k4+tc6P0RS6pqTXfptQB4srg==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEQCIE3YQNMCWMXgy4OyT5hKJlGHK6WzcCgu+5Rkts3+3nAQAiAT86j+DrmFtiW+T8B2vCxPyho+tLxF3FjvXXHnjzk2Og==" + } + ] + }, + "maintainers": [ + { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + { + "name": "typescript", + "email": "typescript@microsoft.com" + } + ], + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "_npmOperationalInternal": { + "host": "packages-18-east.internal.npmjs.com", + "tmp": "tmp/types-registry-0.1.106.tgz_1483637376836_0.7731161883566529" + }, + "directories": {}, + "contributors": [] + }, + "0.1.107": { + "name": "types-registry", + "version": "0.1.107", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/Microsoft/types-publisher.git" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "Apache-2.0", + "_id": "types-registry@0.1.107", + "dist": { + "shasum": "fa621f852106b5e701193bf521bef51fe1b226b8", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.107.tgz", + "integrity": "sha512-IXVRpe6J+KFgXbfFNPpE62bFCwvjYluAmyjRd/81/ev4ExGKgYyFzY+vOMHfDRLz0064l4K2iCQmfAQAaABq1w==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEYCIQCqhHQ3YCSmbkeLN05lDMCRg63BNV29/3j83bp31vO6vgIhAJexv8asnOvnq7E8u2sMCozHC27DRrVNIzhFOOgdZ0BJ" + } + ] + }, + "maintainers": [ + { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + { + "name": "typescript", + "email": "typescript@microsoft.com" + } + ], + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "_npmOperationalInternal": { + "host": "packages-12-west.internal.npmjs.com", + "tmp": "tmp/types-registry-0.1.107.tgz_1483643735597_0.9415723527781665" + }, + "directories": {}, + "contributors": [] + }, + "0.1.108": { + "name": "types-registry", + "version": "0.1.108", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/Microsoft/types-publisher.git" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "Apache-2.0", + "_id": "types-registry@0.1.108", + "dist": { + "shasum": "1261157df981ac918b78acc89587afc9745c1984", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.108.tgz", + "integrity": "sha512-WpgCXOMO8SDPjZNu+GAncVSyo0MUuyLknX/qHgTJWZUUwWVIu8M20n2c1zd2tCB+DYC+jtp9I1FgwRp7Ah2+wQ==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEYCIQCk0pyq2+5ghPKMvwQYA9wHAK5Z5vXh1QyB5qA0FH+CvgIhAKhdcI2bf96I5nnwL/dpyjeS+QoGW71tQBTtXdkKypLJ" + } + ] + }, + "maintainers": [ + { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + { + "name": "typescript", + "email": "typescript@microsoft.com" + } + ], + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "_npmOperationalInternal": { + "host": "packages-18-east.internal.npmjs.com", + "tmp": "tmp/types-registry-0.1.108.tgz_1483648875606_0.2515000670682639" + }, + "directories": {}, + "contributors": [] + }, + "0.1.109": { + "name": "types-registry", + "version": "0.1.109", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/Microsoft/types-publisher.git" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "Apache-2.0", + "_id": "types-registry@0.1.109", + "dist": { + "shasum": "c75775b35e71d7d174ce831489e580fada4f5445", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.109.tgz", + "integrity": "sha512-0rzy2voWZRVtOOXbfMX1YCrU6Q3gNP0ZM2OAI6LKBkDiBTEURWHS5I7wrFyH+uX2sahKeb07SbLjgSWq9bNu4g==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIFMKqXWSJOnJ2KIlZiyfOHv/c3UgYmm0JGrK4fm2RQXxAiEAtAiy5IqVbW70bioqgkq2XJsQgPc+bnZov1nVAZrk8mo=" + } + ] + }, + "maintainers": [ + { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + { + "name": "typescript", + "email": "typescript@microsoft.com" + } + ], + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "_npmOperationalInternal": { + "host": "packages-18-east.internal.npmjs.com", + "tmp": "tmp/types-registry-0.1.109.tgz_1483656557943_0.810173116857186" + }, + "directories": {}, + "contributors": [] + }, + "0.1.110": { + "name": "types-registry", + "version": "0.1.110", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/Microsoft/types-publisher.git" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "Apache-2.0", + "_id": "types-registry@0.1.110", + "dist": { + "shasum": "de38f8b1b83d1c69473826b3fa773ff3465ec280", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.110.tgz", + "integrity": "sha512-M+0FNuLPM/JC5SHqlYd5tJSOpBeH/Dm6wcUW2pabtOBnBak2U+qGhYFCQjiJbn/Zu4ay2in8Yg7WBRxH1WnJQA==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEYCIQCFldsP5/BUzI6TK3WIopZtoFnARUO4J7OO9vbgdE8m3QIhAITvSN0ltGGSpC8RCk0JAnboXCy3yAVdVTTSmc14iaLh" + } + ] + }, + "maintainers": [ + { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + { + "name": "typescript", + "email": "typescript@microsoft.com" + } + ], + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "_npmOperationalInternal": { + "host": "packages-12-west.internal.npmjs.com", + "tmp": "tmp/types-registry-0.1.110.tgz_1483712756532_0.7736259445082396" + }, + "directories": {}, + "contributors": [] + }, + "0.1.111": { + "name": "types-registry", + "version": "0.1.111", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/Microsoft/types-publisher.git" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "Apache-2.0", + "_id": "types-registry@0.1.111", + "dist": { + "shasum": "cfca8a9139a34e79201df1ff022fec69852d5ebb", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.111.tgz", + "integrity": "sha512-J9ygWvcYJ7HsAyixMEbboQX2a9LV/YaRJ4AHKjrxoM56t860fViC/kvsNxencC2CGiQH2Pa5atYty8Ery8wylw==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIQCsifHmmqPf12vFpebQo6i0COVGSqKFHtUdXte2DsscAAIgapxp02U94GHWF6nCO5EO6XUMBpGNgzog52oO5wR2X1s=" + } + ] + }, + "maintainers": [ + { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + { + "name": "typescript", + "email": "typescript@microsoft.com" + } + ], + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "_npmOperationalInternal": { + "host": "packages-12-west.internal.npmjs.com", + "tmp": "tmp/types-registry-0.1.111.tgz_1483713028298_0.9316183396149427" + }, + "directories": {}, + "contributors": [] + }, + "0.1.112": { + "name": "types-registry", + "version": "0.1.112", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/Microsoft/types-publisher.git" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "Apache-2.0", + "_id": "types-registry@0.1.112", + "dist": { + "shasum": "215026ac8bca2dc266bc5e977490308eb064c3f5", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.112.tgz", + "integrity": "sha512-fOCCoG+pp3xuo3VK8pM/HY/pzrpaTPJ/1d2FI9CaCH0BLANS58Zj3aTRx4U8M4ISJ7hZ/yvvbX1ao5qTcAl3sA==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEYCIQCMnnAXTAKjaB3IeHpvlgMgSz8pZEJ2faSO765gEHLZWAIhAOFcDDO/xaRTjjPUF57mo71gP7JHRYW6ZE4kt1re7y1i" + } + ] + }, + "maintainers": [ + { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + { + "name": "typescript", + "email": "typescript@microsoft.com" + } + ], + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "_npmOperationalInternal": { + "host": "packages-12-west.internal.npmjs.com", + "tmp": "tmp/types-registry-0.1.112.tgz_1483720588795_0.10626220284029841" + }, + "directories": {}, + "contributors": [] + }, + "0.1.113": { + "name": "types-registry", + "version": "0.1.113", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/Microsoft/types-publisher.git" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "Apache-2.0", + "_id": "types-registry@0.1.113", + "dist": { + "shasum": "c52754150956276f33a82f557eb4fb26027c049f", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.113.tgz", + "integrity": "sha512-Q/Hs0uZE/1FMWVvXDAqMbPJ4d3ilu7q1eNvP/DIsFjSd1rI55mbdtZPGZ1BfgStqDmkxqnCM1rxATchIjUc+QA==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEQCIH0iZ35i1cGtevjyWu4zX+pi+SBnZxpTJYr6lx5PxMjPAiBiogMdj1b+IdXms++9Jb/WSpRJupzcnl+M/AizXVy4nA==" + } + ] + }, + "maintainers": [ + { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + { + "name": "typescript", + "email": "typescript@microsoft.com" + } + ], + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "_npmOperationalInternal": { + "host": "packages-12-west.internal.npmjs.com", + "tmp": "tmp/types-registry-0.1.113.tgz_1483721853075_0.10489477613009512" + }, + "directories": {}, + "contributors": [] + }, + "0.1.114": { + "name": "types-registry", + "version": "0.1.114", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/Microsoft/types-publisher.git" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "Apache-2.0", + "_id": "types-registry@0.1.114", + "dist": { + "shasum": "ca7da8c35ebc558133bac9a2d8d6a744f976d4dc", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.114.tgz", + "integrity": "sha512-10uqnhIIAVjgn5l7QpnbeCHAwgsyCHV7+ETdWc2p3TdCaZgVQ5LCyvKZE8VJYclFQyHzCbsejOY/oyL61atMAA==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIArSgSfINSAW7IMUyrma/Zi7Uo/F+vJv/NuQ4cnkbrQzAiEAoyqEJJhiSO3iUS42BvNd2o0DJHbY8KQKnlFNGbzfpdU=" + } + ] + }, + "maintainers": [ + { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + { + "name": "typescript", + "email": "typescript@microsoft.com" + } + ], + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "_npmOperationalInternal": { + "host": "packages-12-west.internal.npmjs.com", + "tmp": "tmp/types-registry-0.1.114.tgz_1483727168726_0.7558421166613698" + }, + "directories": {}, + "contributors": [] + }, + "0.1.115": { + "name": "types-registry", + "version": "0.1.115", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/Microsoft/types-publisher.git" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "Apache-2.0", + "_id": "types-registry@0.1.115", + "dist": { + "shasum": "212e33f9e98140b84725736527911fbd7a3e01b5", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.115.tgz", + "integrity": "sha512-t5HS6P6hdj3isqx+QFbL+NnDmKv1JD5j8qwq0rpwGj2pPxsqdbHQvZNLWYMYdbifoFtdsycEvqN06mMoJnN6fQ==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEYCIQDf5DXaTzCkzHIkXT/3igtyQYxaYR2/Ufek6yX+izQaTgIhAP7wItyy/NejYBBSc7uNKcx/ICRDMPXMjc0923EDti1q" + } + ] + }, + "maintainers": [ + { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + { + "name": "typescript", + "email": "typescript@microsoft.com" + } + ], + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "_npmOperationalInternal": { + "host": "packages-18-east.internal.npmjs.com", + "tmp": "tmp/types-registry-0.1.115.tgz_1483752534932_0.4088886482641101" + }, + "directories": {}, + "contributors": [] + }, + "0.1.116": { + "name": "types-registry", + "version": "0.1.116", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/Microsoft/types-publisher.git" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "Apache-2.0", + "_id": "types-registry@0.1.116", + "dist": { + "shasum": "bceda1ed65cfd97892b517becff0cd79292d6154", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.116.tgz", + "integrity": "sha512-GGy/wB5qCzpEBUBb8N5YiuOBND2Lj8FBl4KEmA2PiMb7EMwPQBH98h5K5McY2GYabyLyqfPWE5w/VCPzGTdiXQ==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIGvbIAoP2vA7veEgq8BSONs0JYh4Nao2wDIYtMJouQh1AiEAl7qW6UmqdQSvz3BC8KiBO1h8dr/fvf9p5z3VCkCtWC8=" + } + ] + }, + "maintainers": [ + { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + { + "name": "typescript", + "email": "typescript@microsoft.com" + } + ], + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "_npmOperationalInternal": { + "host": "packages-12-west.internal.npmjs.com", + "tmp": "tmp/types-registry-0.1.116.tgz_1483752807936_0.7595702749677002" + }, + "directories": {}, + "contributors": [] + }, + "0.1.117": { + "name": "types-registry", + "version": "0.1.117", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/Microsoft/types-publisher.git" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "Apache-2.0", + "_id": "types-registry@0.1.117", + "dist": { + "shasum": "587b78c372be19c6a3639a8ec5b94c05d29bd8ec", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.117.tgz", + "integrity": "sha512-24IKXBDRcW/e/+ErVeMkv18Nc2+YCpflJzDSoSF73mPy7ZQIcGiL4IBNA2Awh2uza8A6dMsaDzUOKQfOhZSMWA==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEYCIQCLf3Z5l9kB4jpKN14lSBY1u0VNbiiTHe9kvjw/nE3fIwIhAMtqMMK/udZwtq/1du7ZGfdcVHMWnd7D2Q4aemBhmDsk" + } + ] + }, + "maintainers": [ + { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + { + "name": "typescript", + "email": "typescript@microsoft.com" + } + ], + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "_npmOperationalInternal": { + "host": "packages-12-west.internal.npmjs.com", + "tmp": "tmp/types-registry-0.1.117.tgz_1483819754053_0.8082983465865254" + }, + "directories": {}, + "contributors": [] + }, + "0.1.118": { + "name": "types-registry", + "version": "0.1.118", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/Microsoft/types-publisher.git" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "Apache-2.0", + "_id": "types-registry@0.1.118", + "dist": { + "shasum": "8ae058d988807b3a7f3b7b4c062fbefdd3e2a1db", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.118.tgz", + "integrity": "sha512-UKzk8ap7GWBdpz0tCc40b83q84+4qFctAlySK4PkQOcEIo9p9PN+nH4JLW8uHRU24aO9zr5ikbGBKpg+hBBqRg==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEQCIEaHqihBVrwXxD8pmPh3MKwwoXxSWmUmuNW9yGpvwWguAiBeS8cYR5RZnfa+fpas07wv+E+7NRifUg+4YfHgj+keuA==" + } + ] + }, + "maintainers": [ + { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + { + "name": "typescript", + "email": "typescript@microsoft.com" + } + ], + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "_npmOperationalInternal": { + "host": "packages-12-west.internal.npmjs.com", + "tmp": "tmp/types-registry-0.1.118.tgz_1483925494046_0.3480991537217051" + }, + "directories": {}, + "contributors": [] + }, + "0.1.119": { + "name": "types-registry", + "version": "0.1.119", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/Microsoft/types-publisher.git" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "Apache-2.0", + "_id": "types-registry@0.1.119", + "dist": { + "shasum": "13d18978bb25809920db9692c2bc9e49c375c4a3", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.119.tgz", + "integrity": "sha512-bFgaPM7DoSvSyi1rGP0jdra3vv1PuXMYochEq0kdO+8wtAVfmM58n7vxGRSSjdhcxfCzAd83wIVa+S/yak4xfA==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEQCIHlPIhYi6XLT8jXqfwKTZsH5AcCvOZX3z1uPRsssaPz6AiB1bdWXpQ8ljpLGCZYVZ+cOrTg6ZYkVavVj80Z72xjhNA==" + } + ] + }, + "maintainers": [ + { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + { + "name": "typescript", + "email": "typescript@microsoft.com" + } + ], + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "_npmOperationalInternal": { + "host": "packages-12-west.internal.npmjs.com", + "tmp": "tmp/types-registry-0.1.119.tgz_1483926496246_0.10725456918589771" + }, + "directories": {}, + "contributors": [] + }, + "0.1.120": { + "name": "types-registry", + "version": "0.1.120", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/Microsoft/types-publisher.git" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "Apache-2.0", + "_id": "types-registry@0.1.120", + "dist": { + "shasum": "4b93344c3b93be244a451a3b64003abab10e1b72", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.120.tgz", + "integrity": "sha512-Y38lIOVIwJNoc4x61ugHK6clkjvhnCCwJ8Zc33DcaS++UvVD9vG0KBCQ5mwsCc11V7Fz7hNp2Dbl63nG25DwLg==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIAux4k1fH4/L7QwE8f39d+JihBBsIkqyvCenSz3e03BKAiEAk1nFhiBqb6lmeArnwILLpCy5q0uKJpxbpRmjg6b69ug=" + } + ] + }, + "maintainers": [ + { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + { + "name": "typescript", + "email": "typescript@microsoft.com" + } + ], + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "_npmOperationalInternal": { + "host": "packages-12-west.internal.npmjs.com", + "tmp": "tmp/types-registry-0.1.120.tgz_1483975336870_0.3276192802004516" + }, + "directories": {}, + "contributors": [] + }, + "0.1.121": { + "name": "types-registry", + "version": "0.1.121", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/Microsoft/types-publisher.git" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "Apache-2.0", + "_id": "types-registry@0.1.121", + "dist": { + "shasum": "40334d786eefbe022b735c3f3a65970ef8bcf15b", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.121.tgz", + "integrity": "sha512-f0womiSKQHtDkdSkAAl9Eo7Jzk1UNeXLtZ5zCE1SphQFELqE8XZigIBlQaD8+s/zhtYs3m0mOEF3vVgUpk34Cw==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIHeNOWZpqGyGo65hjmB5Tb8lUiOQ8iTIcsUo/KsuzJs6AiEA9jAglzo5c8HFGXga52oniwnqN+bgMdZHujQQnZ0rO5s=" + } + ] + }, + "maintainers": [ + { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + { + "name": "typescript", + "email": "typescript@microsoft.com" + } + ], + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "_npmOperationalInternal": { + "host": "packages-12-west.internal.npmjs.com", + "tmp": "tmp/types-registry-0.1.121.tgz_1483981394996_0.9206117365974933" + }, + "directories": {}, + "contributors": [] + }, + "0.1.122": { + "name": "types-registry", + "version": "0.1.122", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/Microsoft/types-publisher.git" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "Apache-2.0", + "_id": "types-registry@0.1.122", + "dist": { + "shasum": "ba0ec646b4099e9a7bfa36cf2f0c0e4f935c695c", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.122.tgz", + "integrity": "sha512-1R1wePL1xMixtOejKloyoDhw8aXIB3hGPPEV5D8KQ9Slwv0S9X/8gY4L8ua2ux0PJ5LyZauBig3VaBpudYtn0A==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEYCIQDgPf6IDe7TMRbPCU8OlRsO3kS2ZR+kLJ+pTbxfaJ30RAIhAKAWwIJPueSspeFGrYExv+EFTn3enZWLbW3MpShs7SiF" + } + ] + }, + "maintainers": [ + { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + { + "name": "typescript", + "email": "typescript@microsoft.com" + } + ], + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "_npmOperationalInternal": { + "host": "packages-12-west.internal.npmjs.com", + "tmp": "tmp/types-registry-0.1.122.tgz_1484078142775_0.3839285857975483" + }, + "directories": {}, + "contributors": [] + }, + "0.1.123": { + "name": "types-registry", + "version": "0.1.123", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/Microsoft/types-publisher.git" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "Apache-2.0", + "_id": "types-registry@0.1.123", + "dist": { + "shasum": "16edf444ea6db5401261beee4ece5ccf59059192", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.123.tgz", + "integrity": "sha512-lzveVnYkfdllpsx/8WzAKEXE3333yLEqJJ0wd3m3Nu21t4Iv2c5sWyou/+yvpu38vduEO/2YG9hfylrnNs9zXQ==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIGJ8wdnTltHsgQ3IcoJ9chgx+8sc3kSA2sXRHQ7PVOK3AiEAgb3xl6aCspmq6Kw/yd8txTBR+pcaRT3WBTu2RMjoOZQ=" + } + ] + }, + "maintainers": [ + { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + { + "name": "typescript", + "email": "typescript@microsoft.com" + } + ], + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "_npmOperationalInternal": { + "host": "packages-12-west.internal.npmjs.com", + "tmp": "tmp/types-registry-0.1.123.tgz_1484079621416_0.8918303013779223" + }, + "directories": {}, + "contributors": [] + }, + "0.1.124": { + "name": "types-registry", + "version": "0.1.124", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/Microsoft/types-publisher.git" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "Apache-2.0", + "_id": "types-registry@0.1.124", + "dist": { + "shasum": "90e038c3a00248fd7dbc0c5345c9d71b32843990", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.124.tgz", + "integrity": "sha512-74KjKnb8Ko/yZJEaaidFQLXGpgL8TJrmMa3HIr6dVYfw68Ih1TfbZXYMFc40s4ex/Qg0kHH/mRYy5uCbFHEbng==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEYCIQDXawg/uPf3d6Pm75W3co5+zYsDIAlF00zu6MnerTZHYwIhALT3A+pHc5kqxNaDs3MTGZVBK00zc4j8xBHUFB5Wzbzm" + } + ] + }, + "maintainers": [ + { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + { + "name": "typescript", + "email": "typescript@microsoft.com" + } + ], + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "_npmOperationalInternal": { + "host": "packages-12-west.internal.npmjs.com", + "tmp": "tmp/types-registry-0.1.124.tgz_1484080173283_0.5410986002534628" + }, + "directories": {}, + "contributors": [] + }, + "0.1.125": { + "name": "types-registry", + "version": "0.1.125", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/Microsoft/types-publisher.git" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "Apache-2.0", + "_id": "types-registry@0.1.125", + "dist": { + "shasum": "9d92d9113bdc2a22cec34d52c9467f699d4c1007", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.125.tgz", + "integrity": "sha512-gEfYo6msqLp0X0AfoyqDmweoNVsaNP1Z6RbmYmPfDzY1Rzjlec9NqPq61pp0umjnMPNmA3ZPKsJohbYoluMMjQ==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEQCICZF01Tk3rk7wpRtxFsEAP4aSkSXp0QkqknykoNdWjutAiBjzCKFh2c7sEBxzOjSs35m5+jdb8R5+dwdJ6sUNcpB5Q==" + } + ] + }, + "maintainers": [ + { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + { + "name": "typescript", + "email": "typescript@microsoft.com" + } + ], + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "_npmOperationalInternal": { + "host": "packages-12-west.internal.npmjs.com", + "tmp": "tmp/types-registry-0.1.125.tgz_1484240091461_0.5196035939734429" + }, + "directories": {}, + "contributors": [] + }, + "0.1.126": { + "name": "types-registry", + "version": "0.1.126", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/Microsoft/types-publisher.git" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "Apache-2.0", + "_id": "types-registry@0.1.126", + "dist": { + "shasum": "a2e85fc8cd62d67e2453e239c2a61f58deae5519", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.126.tgz", + "integrity": "sha512-3dqzfcSXTHupvAsDB8nnFzejVRsIw4ES/ngh2paMh3pK6WbEZP/IJJLwLCkLI9aseY3hPOYUFHeVRfk+1y9suQ==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIQC5HA0aYyYqoxxJF6EytjlaZwQWnwLREtredLJif0V8CAIgVbQq7LliYgtAq5ifq5Bp1CIV+HshIiFKT+jhN13l6I4=" + } + ] + }, + "maintainers": [ + { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + { + "name": "typescript", + "email": "typescript@microsoft.com" + } + ], + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "_npmOperationalInternal": { + "host": "packages-12-west.internal.npmjs.com", + "tmp": "tmp/types-registry-0.1.126.tgz_1484321256485_0.17450910340994596" + }, + "directories": {}, + "contributors": [] + }, + "0.1.127": { + "name": "types-registry", + "version": "0.1.127", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/Microsoft/types-publisher.git" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "Apache-2.0", + "_id": "types-registry@0.1.127", + "dist": { + "shasum": "1cb49572f94e092bae3ab7cb89c6b360b909bc6d", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.127.tgz", + "integrity": "sha512-j5qUyxWzL4MAq6yQkKCIGpc9SF/t65uQoRK4wj5pWx16TzogeUZ/HFkX9ktfkEn1XGRQ0XQB97c6XCRWKG1DlA==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEQCIEm7KEMMik86s5YXiePuaBwzIJf4oqktsaVpmNu4Si+lAiA3ET6pkMlTdRkEYcFI0yv3qp6aNUO+znjzP1HG1Zk2tQ==" + } + ] + }, + "maintainers": [ + { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + { + "name": "typescript", + "email": "typescript@microsoft.com" + } + ], + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "_npmOperationalInternal": { + "host": "packages-12-west.internal.npmjs.com", + "tmp": "tmp/types-registry-0.1.127.tgz_1484337401623_0.272250835550949" + }, + "directories": {}, + "contributors": [] + }, + "0.1.128": { + "name": "types-registry", + "version": "0.1.128", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/Microsoft/types-publisher.git" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "Apache-2.0", + "_id": "types-registry@0.1.128", + "dist": { + "shasum": "2b3bb079e668f6f6233b9c69bbf86a2931e15161", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.128.tgz", + "integrity": "sha512-enGPbzPamIHdfw6rhI0lR5eUnWwjI2dHAh+ow/GArJbdV40rL6oVdSOQm1WKScUClj4HAipZ83ZtRDaamovO7g==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIQCl5GFGvZzHrCriy2WQq5E1HJa/mOKDy8hN4folpfYmTwIgTYD18XxKZy92mk/PNJiU1CwGoDX1vkJjVF9d8+LUA2Y=" + } + ] + }, + "maintainers": [ + { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + { + "name": "typescript", + "email": "typescript@microsoft.com" + } + ], + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "_npmOperationalInternal": { + "host": "packages-12-west.internal.npmjs.com", + "tmp": "tmp/types-registry-0.1.128.tgz_1484342563206_0.3719085487537086" + }, + "directories": {}, + "contributors": [] + }, + "0.1.129": { + "name": "types-registry", + "version": "0.1.129", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/Microsoft/types-publisher.git" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "Apache-2.0", + "_id": "types-registry@0.1.129", + "dist": { + "shasum": "407921e5e74e41b03957db663cc77c686f4c8459", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.129.tgz", + "integrity": "sha512-0Ykuuk843S+ULQCzruTuyYaS7rw1wwI0HUjQmLdF2KHUHaN4771rzFCexBA2FZN/8EsHzU2KyrYdK9Nl/DkyRA==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEQCIGZ96mFz22hlpYcqQ9f6SMa2N2hlm0gEHQ+5oQNBKnPkAiB1aKKThI/BHFYPfU5mrETZkwrcqgzoOMfqm9wXHk7ZEQ==" + } + ] + }, + "maintainers": [ + { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + { + "name": "typescript", + "email": "typescript@microsoft.com" + } + ], + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "_npmOperationalInternal": { + "host": "packages-12-west.internal.npmjs.com", + "tmp": "tmp/types-registry-0.1.129.tgz_1484410325357_0.04304152028635144" + }, + "directories": {}, + "contributors": [] + }, + "0.1.130": { + "name": "types-registry", + "version": "0.1.130", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/Microsoft/types-publisher.git" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "Apache-2.0", + "_id": "types-registry@0.1.130", + "dist": { + "shasum": "22ab87cfdfd9e21cbae6581d1dcc6e135fca5cf5", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.130.tgz", + "integrity": "sha512-sFQRtJEYCmiJPqp5AKIZhKvhMR0ph8GnSfOWuBWqwJvcJ/Gjd1PuIKDq+wzagUhIixjLXJSGt2s515T8M4AihQ==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEYCIQCxg/v5yZn87NNYhkoMKLvyPO48VNVwaF1DaPvt1RZ1lwIhAMcpipz2QBD7K8dTnSEhu9GWGV94YsqyaRsMBRQu5phY" + } + ] + }, + "maintainers": [ + { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + { + "name": "typescript", + "email": "typescript@microsoft.com" + } + ], + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "_npmOperationalInternal": { + "host": "packages-12-west.internal.npmjs.com", + "tmp": "tmp/types-registry-0.1.130.tgz_1484683900231_0.2752859899774194" + }, + "directories": {}, + "contributors": [] + }, + "0.1.131": { + "name": "types-registry", + "version": "0.1.131", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/Microsoft/types-publisher.git" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "Apache-2.0", + "_id": "types-registry@0.1.131", + "dist": { + "shasum": "79a1890fdcae7b9f1ced13950a67ab4cf2dd779a", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.131.tgz", + "integrity": "sha512-ooZPmshcOsqGGYS69NvU211z6XNg7bKaSLQBNrRlg/ZDJ/aFc1URH7p8s/T3w8d7AkVZLV7kiPas6wu2DAV5aQ==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIQCJyRf5qhkaZS3Uqkt5ZRBSbvYjxFirxbPzSgyuzsS+oAIgfLqa6KalZYga5SnQuQL0fYLF7ZlkbOe9eWAPWAeXHE0=" + } + ] + }, + "maintainers": [ + { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + { + "name": "typescript", + "email": "typescript@microsoft.com" + } + ], + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "_npmOperationalInternal": { + "host": "packages-12-west.internal.npmjs.com", + "tmp": "tmp/types-registry-0.1.131.tgz_1484684109901_0.22959199198521674" + }, + "directories": {}, + "contributors": [] + }, + "0.1.132": { + "name": "types-registry", + "version": "0.1.132", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/Microsoft/types-publisher.git" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "Apache-2.0", + "_id": "types-registry@0.1.132", + "dist": { + "shasum": "07b30a3f045fc49272080e9c8cc80f9cdf1e5f54", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.132.tgz", + "integrity": "sha512-cozaRxhfb2pCq1jift5deACiPRBSozwN+zJJSW+VGmI0lX3dVyCCkzS8qQ6FfgEgbtBs28f08iGqgaOD58/M3Q==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCICeIqlxWJQFvL0UjJau2R9yR6LAzxaNUzRHrDEcF52O1AiEAzsWOMP2ELFFQTd3580N1ew+gv3/EPcs2ov7oo0ipK3M=" + } + ] + }, + "maintainers": [ + { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + { + "name": "typescript", + "email": "typescript@microsoft.com" + } + ], + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "_npmOperationalInternal": { + "host": "packages-18-east.internal.npmjs.com", + "tmp": "tmp/types-registry-0.1.132.tgz_1484687430803_0.2063485502731055" + }, + "directories": {}, + "contributors": [] + }, + "0.1.133": { + "name": "types-registry", + "version": "0.1.133", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/Microsoft/types-publisher.git" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "Apache-2.0", + "_id": "types-registry@0.1.133", + "dist": { + "shasum": "a87bbea6c558708d8fb59fcc51b7ad36ab4b12c3", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.133.tgz", + "integrity": "sha512-n6xf7brn6lNF3UQkGXLNu6CX2q2KKdy3foqbtq/Xve6d3JdFp8paqpGkCSPMetPpPF05YkU4myA8jE8yS+8e6A==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEYCIQCKGxyBVkDCUeLzgiJgKbwsBC9fBbpv/IBbn4N06SSv5AIhAMZd2qhjR4SYt28c1By0NHq2oayhie8H5L4LE37jiiR0" + } + ] + }, + "maintainers": [ + { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + { + "name": "typescript", + "email": "typescript@microsoft.com" + } + ], + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "_npmOperationalInternal": { + "host": "packages-12-west.internal.npmjs.com", + "tmp": "tmp/types-registry-0.1.133.tgz_1484688588350_0.9209906423930079" + }, + "directories": {}, + "contributors": [] + }, + "0.1.134": { + "name": "types-registry", + "version": "0.1.134", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/Microsoft/types-publisher.git" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "Apache-2.0", + "_id": "types-registry@0.1.134", + "dist": { + "shasum": "64675ff3dbfbdde385c9a3465de9360d24051a31", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.134.tgz", + "integrity": "sha512-uFcn9W9SwxsDylbom/pH93INZ/NYYPnDyTeTF73OjtFFPzczr95B37ruCRhMu1GPKAxtVp3Jg6k5KMWala09VA==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIQD8Ce/Kk7ZkmRp/P+ef7+7cda522MXwKHKRhZHXY/NtvAIgQx4PBC0ISA+Q/fbC2j3e+X1v9HsGYM3C3LAxpAk7rGM=" + } + ] + }, + "maintainers": [ + { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + { + "name": "typescript", + "email": "typescript@microsoft.com" + } + ], + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "_npmOperationalInternal": { + "host": "packages-12-west.internal.npmjs.com", + "tmp": "tmp/types-registry-0.1.134.tgz_1484689238676_0.2372267502360046" + }, + "directories": {}, + "contributors": [] + }, + "0.1.135": { + "name": "types-registry", + "version": "0.1.135", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/Microsoft/types-publisher.git" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "Apache-2.0", + "_id": "types-registry@0.1.135", + "dist": { + "shasum": "67eb209317a648db385e2a4217d7556dd06db7ae", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.135.tgz", + "integrity": "sha512-jWdxxiIgTLfbiEsSYAfCZWbHbLKtG9DN4Y3MfE7cBcGJaqvuzXJ17oOri1tgmidYrlw0VkeAwKhiZoQbN3K4ZA==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIAFWENmnnRUo32bk7eYNdLE29fBiU8n57Djjg2iwd02QAiEAuR481kGlbpHGqgIhBbHOHLl2deTBocRAgW5Cprk6LzA=" + } + ] + }, + "maintainers": [ + { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + { + "name": "typescript", + "email": "typescript@microsoft.com" + } + ], + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "_npmOperationalInternal": { + "host": "packages-12-west.internal.npmjs.com", + "tmp": "tmp/types-registry-0.1.135.tgz_1484690459806_0.2147701559588313" + }, + "directories": {}, + "contributors": [] + }, + "0.1.136": { + "name": "types-registry", + "version": "0.1.136", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/Microsoft/types-publisher.git" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "Apache-2.0", + "_id": "types-registry@0.1.136", + "dist": { + "shasum": "bba9ab11e20085c6cadb68a659294070494bc0bf", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.136.tgz", + "integrity": "sha512-rG83/fgUIfWoCP+AiLBLqOtvBzj5XhbpErVZbWF6QpOPROwJz4V1EVTJwuu8fOQJFkDiu1aQVx0w8ul+MS5AqQ==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEYCIQCCcGOnZxzm2i4x4pwxOdkyJoW1pkjA2//1dBiQeXcVZQIhAPbtB66LXV3//+Vt2MeTef3w+JC0n3uk+LN6smKjBuDa" + } + ] + }, + "maintainers": [ + { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + { + "name": "typescript", + "email": "typescript@microsoft.com" + } + ], + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "_npmOperationalInternal": { + "host": "packages-12-west.internal.npmjs.com", + "tmp": "tmp/types-registry-0.1.136.tgz_1484690664253_0.9652705532498658" + }, + "directories": {}, + "contributors": [] + }, + "0.1.137": { + "name": "types-registry", + "version": "0.1.137", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/Microsoft/types-publisher.git" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "Apache-2.0", + "_id": "types-registry@0.1.137", + "dist": { + "shasum": "3b00960c288699c87e25bf97557a2b3d59ad0f50", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.137.tgz", + "integrity": "sha512-h6PJXjzQy74LMVfBIh9vbmZV/yOqkEdJbAgkctrxn4e/DKPDHvxHI41M2vpQvvzC1T6NXinqQ5eGsRM5gewCAw==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEQCIFIxj1eqF40Ntevi9tIntvTcGnkIdAjKxsYBnKK7zUd1AiAP0fq414r5qSP24VIut6xzPZrVo5rsHpHqB2uv5sSsoA==" + } + ] + }, + "maintainers": [ + { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + { + "name": "typescript", + "email": "typescript@microsoft.com" + } + ], + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "_npmOperationalInternal": { + "host": "packages-12-west.internal.npmjs.com", + "tmp": "tmp/types-registry-0.1.137.tgz_1484696538152_0.19571426510810852" + }, + "directories": {}, + "contributors": [] + }, + "0.1.138": { + "name": "types-registry", + "version": "0.1.138", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/Microsoft/types-publisher.git" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "Apache-2.0", + "_id": "types-registry@0.1.138", + "dist": { + "shasum": "65c6b1e276bffaf79096ae680d976b0cb34de7e9", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.138.tgz", + "integrity": "sha512-n/f1dqslVL1Gh24qk0rZGCKTm1q4ssQcIiu+O3dZxRYwHIE+IyvOashanhdtIReKIfdDrRla5HHCUz64QwTCKw==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEQCIB3Khr1GH37nTMjn9AIzUmvRsKbcaeOXu6MahDEq/kmBAiBTTWneQyMs0SNsEXddgB30A4vHIN+2IejmeHi+6cNxDw==" + } + ] + }, + "maintainers": [ + { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + { + "name": "typescript", + "email": "typescript@microsoft.com" + } + ], + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "_npmOperationalInternal": { + "host": "packages-12-west.internal.npmjs.com", + "tmp": "tmp/types-registry-0.1.138.tgz_1484699325842_0.26278503448702395" + }, + "directories": {}, + "contributors": [] + }, + "0.1.139": { + "name": "types-registry", + "version": "0.1.139", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/Microsoft/types-publisher.git" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "Apache-2.0", + "_id": "types-registry@0.1.139", + "dist": { + "shasum": "e4e16da8f65f583d351f222fbf4d302e16b0b5fa", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.139.tgz", + "integrity": "sha512-J/8AAq8Q0Ngez2oFqqUQi3qD1/hvmWH2axbeSbZnsxT5x2eq2N/6YJC4px0YkY3MAxb6FEAz9rwm1j7XPRlU+Q==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIHsUCwQHB/5EXBpZfyyjrtMVdpTMPcnhab5yzGuAkE5WAiEAqmubhsdbUXY2GbmTmBCNI5ejKkzSnsMwzz80qnCbIBs=" + } + ] + }, + "maintainers": [ + { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + { + "name": "typescript", + "email": "typescript@microsoft.com" + } + ], + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "_npmOperationalInternal": { + "host": "packages-12-west.internal.npmjs.com", + "tmp": "tmp/types-registry-0.1.139.tgz_1484703490500_0.638816136168316" + }, + "directories": {}, + "contributors": [] + }, + "0.1.140": { + "name": "types-registry", + "version": "0.1.140", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/Microsoft/types-publisher.git" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "Apache-2.0", + "_id": "types-registry@0.1.140", + "dist": { + "shasum": "de2dfb31cec0ab463f4e47f8b628dd6189403097", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.140.tgz", + "integrity": "sha512-dncGLilM81zbBMQHUrYa96D+sL/1kxLuNxJK+WkHag0YG+TQYs8PvHSmuVCWmvORzR3imTxAwIv0Hgoe+jLBHA==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEQCIF8UMVvcxaQpi2Zf1DYTslvRixi4Xa1R3cZoBkHJ3GILAiBWsyBdBi+sqRnKCGqTQO+LGWM/s+xF19VIAWofQI0OkA==" + } + ] + }, + "maintainers": [ + { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + { + "name": "typescript", + "email": "typescript@microsoft.com" + } + ], + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "_npmOperationalInternal": { + "host": "packages-18-east.internal.npmjs.com", + "tmp": "tmp/types-registry-0.1.140.tgz_1484712691869_0.6999468223657459" + }, + "directories": {}, + "contributors": [] + }, + "0.1.141": { + "name": "types-registry", + "version": "0.1.141", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/Microsoft/types-publisher.git" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "Apache-2.0", + "_id": "types-registry@0.1.141", + "dist": { + "shasum": "2b62e1b4f751dcc46f0024d56cdd2464bc2b0f48", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.141.tgz", + "integrity": "sha512-UQgz/nJJOJQni3jZ2ByYLiw65dDpmU/HPhblnlSZAH6dix4VAOJ7Sg03xlIDm0IHpjNnp1NicERbl7CibN6Psg==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIDXsiV6Uq/K3H6XXW5tEh73u7Ph5slbBK5UC76N97dqXAiEA/lhYCidDn8HPmwuOe8w2C36l/lZSTg+b7FbLD1/TFyY=" + } + ] + }, + "maintainers": [ + { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + { + "name": "typescript", + "email": "typescript@microsoft.com" + } + ], + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "_npmOperationalInternal": { + "host": "packages-12-west.internal.npmjs.com", + "tmp": "tmp/types-registry-0.1.141.tgz_1484762541958_0.3968447567895055" + }, + "directories": {}, + "contributors": [] + }, + "0.1.142": { + "name": "types-registry", + "version": "0.1.142", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/Microsoft/types-publisher.git" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "Apache-2.0", + "_id": "types-registry@0.1.142", + "dist": { + "shasum": "d574be3f718bb866749562c1f699905295c1dec3", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.142.tgz", + "integrity": "sha512-a42l8g4ylbFum/AYYf4EYxMtdknEv/Amp/bj7Z0LPzLvkie174AKRIZ2BDEftKfRczyG7pOoYMOHf44xwm3Ksg==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEQCIGYdIHIASa5Alak0zknkep2rNpHvtL3x1lV3kQZZ6rpUAiBrx/ik5+bZUOGZ1QkEhyLXD5xYLqVhBRPnEjsirkOkiw==" + } + ] + }, + "maintainers": [ + { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + { + "name": "typescript", + "email": "typescript@microsoft.com" + } + ], + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "_npmOperationalInternal": { + "host": "packages-12-west.internal.npmjs.com", + "tmp": "tmp/types-registry-0.1.142.tgz_1484762888967_0.5407027434557676" + }, + "directories": {}, + "contributors": [] + }, + "0.1.143": { + "name": "types-registry", + "version": "0.1.143", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/Microsoft/types-publisher.git" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "Apache-2.0", + "_id": "types-registry@0.1.143", + "dist": { + "shasum": "31fe2084d692d8416bd6244c8200782f169b4648", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.143.tgz", + "integrity": "sha512-fUmDZS+Ijj+LEUhWCm7vPHo/C4EJzq6DQbEouYgLJ+hR4DNykQuwnulrcLVYpopD1Ni3ymRJSH07vJDb6iO55g==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEQCIHVUSbGljXpJ5ZleAiq0fka0sdEX77ZhlPGNdcMf9BoQAiB72HWMMFB/UMHB3ZR2Nhp8nUPf5ZEzkMLc9+u/kHhVPw==" + } + ] + }, + "maintainers": [ + { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + { + "name": "typescript", + "email": "typescript@microsoft.com" + } + ], + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "_npmOperationalInternal": { + "host": "packages-12-west.internal.npmjs.com", + "tmp": "tmp/types-registry-0.1.143.tgz_1485475444917_0.6680144341662526" + }, + "directories": {}, + "contributors": [] + }, + "0.1.144": { + "name": "types-registry", + "version": "0.1.144", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/Microsoft/types-publisher.git" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "Apache-2.0", + "_id": "types-registry@0.1.144", + "dist": { + "shasum": "8c6ffbbed34ee923baed53346fa384ad1a3f43e7", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.144.tgz", + "integrity": "sha512-QyJza4Ah0WCn6z42gczivoPYC2cNiKZUK52Io2Y1SF+jt7CMl2E4k3xxcyMWN2kkbC91zEF2S0N/blFzsf6tow==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEYCIQD9qpikxBbCrU42E92lOdSjF9XYD/RMoIbppioXTyPglQIhANBXfP7LEfroR7BEWzzcCDAVc5V6dXXzp0JLUBJGIrAo" + } + ] + }, + "maintainers": [ + { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + { + "name": "typescript", + "email": "typescript@microsoft.com" + } + ], + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "_npmOperationalInternal": { + "host": "packages-12-west.internal.npmjs.com", + "tmp": "tmp/types-registry-0.1.144.tgz_1485475734292_0.40977670438587666" + }, + "directories": {}, + "contributors": [] + }, + "0.1.145": { + "name": "types-registry", + "version": "0.1.145", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/Microsoft/types-publisher.git" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "Apache-2.0", + "_id": "types-registry@0.1.145", + "dist": { + "shasum": "a18e305db2d2e1d261683e17a70bd3affe2a774b", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.145.tgz", + "integrity": "sha512-TbXVzWihuZVvdaM0LWblgcuDMm68Jw0Tdlo5KzJFbdK65BPtQ60ylT12UcnjTEeW6P2dCMM/ZxfKeitisFYjkQ==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIQDY1Jw3jOwKB3oEDzceognKObeppepyEZnOu04cRgweLAIgClzs5FxlaHaXdrjTusevh3/J1QEOolcq76KiWO0ew88=" + } + ] + }, + "maintainers": [ + { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + { + "name": "typescript", + "email": "typescript@microsoft.com" + } + ], + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "_npmOperationalInternal": { + "host": "packages-18-east.internal.npmjs.com", + "tmp": "tmp/types-registry-0.1.145.tgz_1485563587532_0.9617646920960397" + }, + "directories": {}, + "contributors": [] + }, + "0.1.146": { + "name": "types-registry", + "version": "0.1.146", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/Microsoft/types-publisher.git" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "Apache-2.0", + "_id": "types-registry@0.1.146", + "dist": { + "shasum": "43c98228c792596c5fa6a8b4387a0e24551d6710", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.146.tgz", + "integrity": "sha512-WBwW5oQVtAlNtGTX2lz3qaYjO6pC9v6yvUocW5ucEMW1yMGjViV+DnK7uXBrUrkzEX/EKqYEdB7IAIoDcZEwkA==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIQDK/svxmAENaBnNkaaeSpuS72c3NXagV8f2oJ9dz6E6xwIgE7VoBY8WNt79PcxJIWmNWHd2dKrSzx0rlzUddROdEXE=" + } + ] + }, + "maintainers": [ + { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + { + "name": "typescript", + "email": "typescript@microsoft.com" + } + ], + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "_npmOperationalInternal": { + "host": "packages-12-west.internal.npmjs.com", + "tmp": "tmp/types-registry-0.1.146.tgz_1485563807720_0.5923668902833015" + }, + "directories": {}, + "contributors": [] + }, + "0.1.147": { + "name": "types-registry", + "version": "0.1.147", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/Microsoft/types-publisher.git" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "Apache-2.0", + "_id": "types-registry@0.1.147", + "dist": { + "shasum": "e5d7973020bc996b9b14377703efc052d430f5ab", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.147.tgz", + "integrity": "sha512-+zueAGXzRKcTMmQp9pSH6ptd41sL/l6wsKqXcvHRsFy0zHFolvyRbdDC4X4r5UeKWQ53NYEOhD2CoAmGYRF2lg==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEQCIG74pIHkAwbSHAdW+PioDDHb4Sf3oIT5Y9/kVrYZ90FsAiAS3SDRzEwu0XcOIy/w/i7ce3Z860eSUvHqmnNykVuLpA==" + } + ] + }, + "maintainers": [ + { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + { + "name": "typescript", + "email": "typescript@microsoft.com" + } + ], + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "_npmOperationalInternal": { + "host": "packages-12-west.internal.npmjs.com", + "tmp": "tmp/types-registry-0.1.147.tgz_1485666911322_0.22842120751738548" + }, + "directories": {}, + "contributors": [] + }, + "0.1.148": { + "name": "types-registry", + "version": "0.1.148", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/Microsoft/types-publisher.git" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "Apache-2.0", + "_id": "types-registry@0.1.148", + "dist": { + "shasum": "e3363cc59bfdf1ec687aed1977037724cd7b86f9", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.148.tgz", + "integrity": "sha512-5ibKZ3AkvmgrIn3f90UvWCbjHYsCAJ7gNa7rRNBnI++eLNTQbP8/dfmEt5UM5QuahGibAU/saNYYILGpIn4pzw==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIA+atw/StWTFchFVbzjqWBaQMkubznftwoBHmeOwg9wnAiEAooKNKPT1uNrEA2dDsGZwTOTSlDuaVf6PmYVCDFZEsnM=" + } + ] + }, + "maintainers": [ + { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + { + "name": "typescript", + "email": "typescript@microsoft.com" + } + ], + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "_npmOperationalInternal": { + "host": "packages-18-east.internal.npmjs.com", + "tmp": "tmp/types-registry-0.1.148.tgz_1485667184864_0.25953751686029136" + }, + "directories": {}, + "contributors": [] + }, + "0.1.149": { + "name": "types-registry", + "version": "0.1.149", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/Microsoft/types-publisher.git" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "Apache-2.0", + "_id": "types-registry@0.1.149", + "dist": { + "shasum": "7d66f7dfe77c755152405ce82014b3bcc7ba5a4f", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.149.tgz", + "integrity": "sha512-j71f/eJCNHOpwVnYLGDvo79lKEK4/OVsC+V79D5dtYmJfW4L30A9vwnYXS3QK8nwToU7KcJKvIPdGVJppis06g==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIQDPACViv6SdEYFYALrvOE1seJkV4gnSJekSUouYA6c5hQIgepK3GWsmgVsga7kj4zBLda5N5Z+pVKdGYAW1UNbPfHY=" + } + ] + }, + "maintainers": [ + { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + { + "name": "typescript", + "email": "typescript@microsoft.com" + } + ], + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "_npmOperationalInternal": { + "host": "packages-18-east.internal.npmjs.com", + "tmp": "tmp/types-registry-0.1.149.tgz_1485668195070_0.2961627102922648" + }, + "directories": {}, + "contributors": [] + }, + "0.1.150": { + "name": "types-registry", + "version": "0.1.150", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/Microsoft/types-publisher.git" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "Apache-2.0", + "_id": "types-registry@0.1.150", + "dist": { + "shasum": "e3722ae9334b9099775288611b3c7ef21d189d78", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.150.tgz", + "integrity": "sha512-2u6DZoszgybr0Pknrmn/dq/9LBTG9n1VTs8y/eizcLEJIX+KO9twx5lP3xNylaMZ/67NoljVTrtJJCv3oJNDDQ==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIGEylZSf1uEI4O3ma7SXptblp5Ebnqia9QTcgXUZWxgRAiEA2g8huI/thmHQHOUteoj06DCaMF3zstKdiLqIE2+8gNA=" + } + ] + }, + "maintainers": [ + { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + { + "name": "typescript", + "email": "typescript@microsoft.com" + } + ], + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "_npmOperationalInternal": { + "host": "packages-18-east.internal.npmjs.com", + "tmp": "tmp/types-registry-0.1.150.tgz_1485801166988_0.18589562666602433" + }, + "directories": {}, + "contributors": [] + }, + "0.1.151": { + "name": "types-registry", + "version": "0.1.151", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/Microsoft/types-publisher.git" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "Apache-2.0", + "_id": "types-registry@0.1.151", + "dist": { + "shasum": "cf87ff4570463490fd984cfe8812e0f4447623aa", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.151.tgz", + "integrity": "sha512-hSzrVLpOB7H4/uiJfRRnObi8FwRYPqxKNEaWdOtifgbJPlrjvgR8F0KH5OziQj3HMpNDy0XJQEBJK9FdaeVRNA==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEQCIH4K1Ae00vDwm7OwoaQadYQxqFa3qo+OCMextPZTB37TAiA+HTIf9fenU374ZvPo7to/fM5w9X5bNWLuEtCHB85GaA==" + } + ] + }, + "maintainers": [ + { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + { + "name": "typescript", + "email": "typescript@microsoft.com" + } + ], + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "_npmOperationalInternal": { + "host": "packages-12-west.internal.npmjs.com", + "tmp": "tmp/types-registry-0.1.151.tgz_1486500877313_0.9608797349501401" + }, + "directories": {}, + "contributors": [] + }, + "0.1.152": { + "name": "types-registry", + "version": "0.1.152", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/Microsoft/types-publisher.git" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "Apache-2.0", + "_id": "types-registry@0.1.152", + "dist": { + "shasum": "de5898f41891e8f06637492ba049712fb0fc9833", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.152.tgz", + "integrity": "sha512-mKqJ3QVQ6b4rWLPnQ/iEPithL7cgkm4wO4kb3wF+pr67pyvRJIE/9Uk5R8TTqPUSzU2JmTm0Q4AE6oP8ISJiJA==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIQCn4P94Ia/8fsG+vu/6wNmpGtyo4rhTS9XY7gJRhuarpgIgVkW7WUQZTuobb0rR90aS5L0oUYuHnVarXVnJS9RV6ws=" + } + ] + }, + "maintainers": [ + { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + { + "name": "typescript", + "email": "typescript@microsoft.com" + } + ], + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "_npmOperationalInternal": { + "host": "packages-18-east.internal.npmjs.com", + "tmp": "tmp/types-registry-0.1.152.tgz_1486502099237_0.25044508115388453" + }, + "directories": {}, + "contributors": [] + }, + "0.1.153": { + "name": "types-registry", + "version": "0.1.153", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/Microsoft/types-publisher.git" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "Apache-2.0", + "_id": "types-registry@0.1.153", + "dist": { + "shasum": "a0866f38fcd9c58a71a5344d2911e229bbef62f9", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.153.tgz", + "integrity": "sha512-M4uqWzvmQfMidRnKV5cNT5rHqpU3VVBlXPtli/pOC/wtJwNlHyDi9S8nUCR1RvPxTlZFbMW7izWVzPCEDlg4Bw==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIQChaPJKfDHcP9HQYI1n5pP7zCixYUbHddLsdOUI1i8fPAIgUkmTUlpMdtXLLv+fE5rI92tzvctb219C58TngYLnlfQ=" + } + ] + }, + "maintainers": [ + { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + { + "name": "typescript", + "email": "typescript@microsoft.com" + } + ], + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "_npmOperationalInternal": { + "host": "packages-12-west.internal.npmjs.com", + "tmp": "tmp/types-registry-0.1.153.tgz_1486507524853_0.06988868536427617" + }, + "directories": {}, + "contributors": [] + }, + "0.1.154": { + "name": "types-registry", + "version": "0.1.154", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/Microsoft/types-publisher.git" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "Apache-2.0", + "_id": "types-registry@0.1.154", + "dist": { + "shasum": "f742a3b3e2410282f52983fd68aadada9de1f771", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.154.tgz", + "integrity": "sha512-dMDmfiYqcj26zRmllodMvUphahCxIrDaJN3WEaeaqvCu9WHyxMobaR1FmNdo7zi+IBN46fD9TwiJsFYrQWWwGQ==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEQCIDyxWXIZrlKWY5s8bSNFH6WWPC479tH1EfDExskCmZrcAiBeWaOVLeDCUeytRQaM3gSwXyXXqJUCsyBacBdkIqd7Sg==" + } + ] + }, + "maintainers": [ + { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + { + "name": "typescript", + "email": "typescript@microsoft.com" + } + ], + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "_npmOperationalInternal": { + "host": "packages-12-west.internal.npmjs.com", + "tmp": "tmp/types-registry-0.1.154.tgz_1486589493286_0.9812644515186548" + }, + "directories": {}, + "contributors": [] + }, + "0.1.155": { + "name": "types-registry", + "version": "0.1.155", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/Microsoft/types-publisher.git" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "Apache-2.0", + "_id": "types-registry@0.1.155", + "dist": { + "shasum": "e447647fd54ecdc472a9036982afa97f838685d9", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.155.tgz", + "integrity": "sha512-+xTU3Ynwc6cG7kkR/ZpWs9kh9BP8ycWoY7yus0gpDDKf5Am1cGciBg0ZY8DZZO8nqVWY2wFpSagB2L+ifyCHfw==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIQCM7lo1WBcOjqEY6/LlHaw79+VvWfFH1QdMDbPf4TRy8AIge5nDtOi+p8x4N/FkPS6Zi5ZL9pn6MBbBXCfHpg1KbUk=" + } + ] + }, + "maintainers": [ + { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + { + "name": "typescript", + "email": "typescript@microsoft.com" + } + ], + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "_npmOperationalInternal": { + "host": "packages-18-east.internal.npmjs.com", + "tmp": "tmp/types-registry-0.1.155.tgz_1486669060236_0.9728511685971171" + }, + "directories": {}, + "contributors": [] + }, + "0.1.156": { + "name": "types-registry", + "version": "0.1.156", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/Microsoft/types-publisher.git" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "Apache-2.0", + "_id": "types-registry@0.1.156", + "dist": { + "shasum": "5a0c54eccdc977976ecad3753e019ec9ca9284d9", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.156.tgz", + "integrity": "sha512-rB6G+kYR8T3I9ueQKonNhNpXL1s9+RvxLEr1xwIj1S0deUlFyF7+e+W4d2aghw3sfqWZo6xgS3KT9fvT9uQ1tA==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIQC1C+h5idrFL1L5rgk13TqrO36+WniAutpXXZIgnzHoOwIgCAOfLiM0CQrIDyvkzApo+5D4j8Dwn1J/+/q+J+va97s=" + } + ] + }, + "maintainers": [ + { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + { + "name": "typescript", + "email": "typescript@microsoft.com" + } + ], + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "_npmOperationalInternal": { + "host": "packages-12-west.internal.npmjs.com", + "tmp": "tmp/types-registry-0.1.156.tgz_1486677051548_0.6647746644448489" + }, + "directories": {}, + "contributors": [] + }, + "0.1.157": { + "name": "types-registry", + "version": "0.1.157", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/Microsoft/types-publisher.git" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "Apache-2.0", + "_id": "types-registry@0.1.157", + "dist": { + "shasum": "378debe00e66684cd4e9627ccff8014e82599fbc", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.157.tgz", + "integrity": "sha512-84PnE8fT1Whaf5MKRzwU9EuigvdB6Jg6FdQSKdd5XjLauufMmPBhaEixgUh+0hrHLjT5M3CwTDjn+3hVpkcVHw==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEYCIQCfPh5/hIPu7J5a/TsLVEmcNavjN9LK79QutjS6P8eS2QIhAIbfrJqDnOKx8On9uM525q77l1clsjG2hTDZGzAyydVi" + } + ] + }, + "maintainers": [ + { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + { + "name": "typescript", + "email": "typescript@microsoft.com" + } + ], + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "_npmOperationalInternal": { + "host": "packages-18-east.internal.npmjs.com", + "tmp": "tmp/types-registry-0.1.157.tgz_1486677735903_0.18401265400461853" + }, + "directories": {}, + "contributors": [] + }, + "0.1.158": { + "name": "types-registry", + "version": "0.1.158", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/Microsoft/types-publisher.git" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "Apache-2.0", + "_id": "types-registry@0.1.158", + "dist": { + "shasum": "4a87b01b0cb2adc9f56dc79d31b74fe205ea39dd", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.158.tgz", + "integrity": "sha512-FQG4s4lukx3cbjmr5wW9xO2HlQDOuPWMuviOzXY/IRxzIclrK/zoZud23UGYpJy5g4VahiZmMjzlbCiDdoxs4Q==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIQDk3BybfUMXGpb6yrDNhWZg4gwvVer4hh14KaCABdVgJQIgI9d5671WqceX1JwBM7jLJVhnxAngfYuaLKKjdwvWqFw=" + } + ] + }, + "maintainers": [ + { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + { + "name": "typescript", + "email": "typescript@microsoft.com" + } + ], + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "_npmOperationalInternal": { + "host": "packages-12-west.internal.npmjs.com", + "tmp": "tmp/types-registry-0.1.158.tgz_1486677970435_0.7575245553161949" + }, + "directories": {}, + "contributors": [] + }, + "0.1.159": { + "name": "types-registry", + "version": "0.1.159", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/Microsoft/types-publisher.git" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "Apache-2.0", + "_id": "types-registry@0.1.159", + "dist": { + "shasum": "1c5f210d91e0fb6dbf01b6f4c7615051bda98fcf", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.159.tgz", + "integrity": "sha512-kMsqBjHrw40yfI2S3Jp4+s3Z8irgzsQF58/6a5RS9mgQirZBRMuD63Kc9kF0TxqPrQf86SKdoNsDSrDfJteqUQ==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIBtfwXwj5ziey1W6XUzG4b5mVH+2U7eL3OIFP5hGPAxiAiEA9J0U+0yLrIZ5tx+iqQXgOmbQbcDxbeTp88aEdkdFe34=" + } + ] + }, + "maintainers": [ + { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + { + "name": "typescript", + "email": "typescript@microsoft.com" + } + ], + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "_npmOperationalInternal": { + "host": "packages-12-west.internal.npmjs.com", + "tmp": "tmp/types-registry-0.1.159.tgz_1486680392200_0.2633925366681069" + }, + "directories": {}, + "contributors": [] + }, + "0.1.160": { + "name": "types-registry", + "version": "0.1.160", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/Microsoft/types-publisher.git" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "Apache-2.0", + "_id": "types-registry@0.1.160", + "dist": { + "shasum": "f0c428d539e67bf593aa876cc7d06fbde4781a03", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.160.tgz", + "integrity": "sha512-qwd9AX2HOt8N4JdJLLwAV/OibqqiGolWxYCiL7IAGHF5svkl+iBCn0cZvVnzVryYkPRFXFIA0gxGxFX1anFOIg==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIQCJyi7JOus+JbtgfchCA5Sm+1UgichY0TQgDdPjK0yoMQIgRvWmTSP52+E8+yFRoegt8ius7HuhoOKGF5fN+rZenDo=" + } + ] + }, + "maintainers": [ + { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + { + "name": "typescript", + "email": "typescript@microsoft.com" + } + ], + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "_npmOperationalInternal": { + "host": "packages-12-west.internal.npmjs.com", + "tmp": "tmp/types-registry-0.1.160.tgz_1486680707069_0.3524938302580267" + }, + "directories": {}, + "contributors": [] + }, + "0.1.161": { + "name": "types-registry", + "version": "0.1.161", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/Microsoft/types-publisher.git" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "Apache-2.0", + "_id": "types-registry@0.1.161", + "dist": { + "shasum": "498a5edd228c1196892ad133b4a6249390794860", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.161.tgz", + "integrity": "sha512-l367IdEmeYUX7nFWkgoAB54GHJYhSLoT3E+yZ1lKUgnxqNCIUNbZXl5JcEkT592w2DLdtYBmQzmxq49ZnYupZA==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIB3szVnqfezGR+ArhUSwTMtUcadljJixJOsGUntKz/oNAiEA9Bd77XLW5m3xVTGSPLH3LvqQqjYEFlPr2C/xxDxnVGk=" + } + ] + }, + "maintainers": [ + { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + { + "name": "typescript", + "email": "typescript@microsoft.com" + } + ], + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "_npmOperationalInternal": { + "host": "packages-12-west.internal.npmjs.com", + "tmp": "tmp/types-registry-0.1.161.tgz_1486683476767_0.2336682064924389" + }, + "directories": {}, + "contributors": [] + }, + "0.1.162": { + "name": "types-registry", + "version": "0.1.162", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/Microsoft/types-publisher.git" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "Apache-2.0", + "_id": "types-registry@0.1.162", + "dist": { + "shasum": "3c0d67f357a18e5daf77e1a89d00634a3a82b8e9", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.162.tgz", + "integrity": "sha512-VUCVeQVnZ+wGrVwGaxAoYHwKdLRJeNRwlkxKdXhLBeEj7G+UKoEtcYGLLmJp8TYfB3Cy7nWXjd7r/JXAwboOxQ==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEQCIGHNenjIz2Ljr+v1lurdKxC8VCiHni2DtWuejCcDJl6JAiBzRBcn6PIKvzyW0H9d6brHTTILLgd7QKLOvVNUbXYdnQ==" + } + ] + }, + "maintainers": [ + { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + { + "name": "typescript", + "email": "typescript@microsoft.com" + } + ], + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "_npmOperationalInternal": { + "host": "packages-12-west.internal.npmjs.com", + "tmp": "tmp/types-registry-0.1.162.tgz_1486686985316_0.7140589114278555" + }, + "directories": {}, + "contributors": [] + }, + "0.1.163": { + "name": "types-registry", + "version": "0.1.163", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/Microsoft/types-publisher.git" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "Apache-2.0", + "_id": "types-registry@0.1.163", + "dist": { + "shasum": "6f6259a6408b6158dc99e7c74e7898a9b28ff0f5", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.163.tgz", + "integrity": "sha512-qPdichWOTY7JLhZTCZeKLw84ZsOAPtaqmySs3vg5nh0l8iNHxX39TN3uI2y/S9pFAWPir+NjCFvFBdn+GYkrgw==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEQCIEZjl9h8zDQmFQ5klGDfLvOpOPRks8FHOv0yBZODl6xVAiAvu7WCgWECPsYJoB2WUKHHD7e/nezAj4r87O+rYxHbww==" + } + ] + }, + "maintainers": [ + { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + { + "name": "typescript", + "email": "typescript@microsoft.com" + } + ], + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "_npmOperationalInternal": { + "host": "packages-18-east.internal.npmjs.com", + "tmp": "tmp/types-registry-0.1.163.tgz_1486687471855_0.5643473824020475" + }, + "directories": {}, + "contributors": [] + }, + "0.1.164": { + "name": "types-registry", + "version": "0.1.164", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/Microsoft/types-publisher.git" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "Apache-2.0", + "_id": "types-registry@0.1.164", + "dist": { + "shasum": "b29cb76ccaca9998d15cc92b5228da0f65d96d6b", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.164.tgz", + "integrity": "sha512-5MXuhND9fNmddJRH3iEVSrSX3IQH/O2gAiV63oKQYqIKBSzq7tnHFxtiRL/sg6+Zue9R16KgMvMi4ohz9Hv5Vw==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEQCIFL0Q+2ANsQAo1JgWiT+wt6QZffJkqQWXiMjV2RlpS2BAiAhh/XUuHrEfhZGaI/ZUEgPb0PAzTHvgtip5Q95SgVP1Q==" + } + ] + }, + "maintainers": [ + { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + { + "name": "typescript", + "email": "typescript@microsoft.com" + } + ], + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "_npmOperationalInternal": { + "host": "packages-18-east.internal.npmjs.com", + "tmp": "tmp/types-registry-0.1.164.tgz_1486687699824_0.24605830758810043" + }, + "directories": {}, + "contributors": [] + }, + "0.1.165": { + "name": "types-registry", + "version": "0.1.165", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/Microsoft/types-publisher.git" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "Apache-2.0", + "_id": "types-registry@0.1.165", + "dist": { + "shasum": "53c6cd9bf56d9b29a5382360a1121a58f25b8edd", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.165.tgz", + "integrity": "sha512-oRM9aDBsbObeLZminC5K8wflcCpwNFTzPaSoiu+3keXnETjqywdlJBoKNYouVWuE7EcVfcsHyhUdwDUbzGp+7w==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEQCICr033hQqexAWQ6AnNXuzTj/ykOwFoUBfL74jy3KGDXtAiBa7Q8z+juo89z2OwPqadkR6JyQdDwHkH2woM7uy1Uj+g==" + } + ] + }, + "maintainers": [ + { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + { + "name": "typescript", + "email": "typescript@microsoft.com" + } + ], + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "_npmOperationalInternal": { + "host": "packages-12-west.internal.npmjs.com", + "tmp": "tmp/types-registry-0.1.165.tgz_1486761885781_0.15745725040324032" + }, + "directories": {}, + "contributors": [] + }, + "0.1.166": { + "name": "types-registry", + "version": "0.1.166", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/Microsoft/types-publisher.git" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "Apache-2.0", + "_id": "types-registry@0.1.166", + "dist": { + "shasum": "4af7ab3d859027023f26ff7550a548f53d750bda", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.166.tgz", + "integrity": "sha512-CVA8DsQtssiO+7H5Xg2RKv7AZ805s+iOgNlNPn5zi4BqDVL6qafoy9QI/kCBSzl3x7TMR6btOQV6GYfZ+pNskA==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIQCDSBD5QhTQ/oRjHs8c+QQGHQgsfFSae7nVEaMzLKKNCAIgJiZunzJXoQxjeWAn0MHIxrONb1M9YwyyqV9iS0CzT58=" + } + ] + }, + "maintainers": [ + { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + { + "name": "typescript", + "email": "typescript@microsoft.com" + } + ], + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "_npmOperationalInternal": { + "host": "packages-12-west.internal.npmjs.com", + "tmp": "tmp/types-registry-0.1.166.tgz_1486764599122_0.7840674987528473" + }, + "directories": {}, + "contributors": [] + }, + "0.1.167": { + "name": "types-registry", + "version": "0.1.167", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/Microsoft/types-publisher.git" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "Apache-2.0", + "_id": "types-registry@0.1.167", + "dist": { + "shasum": "f53c76a2468cdabc6b0838bc8a4a10e1310c6ff8", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.167.tgz", + "integrity": "sha512-g/bZopbSNvJrUxn3HRmG3kdP1uOHRr4RavuBqpvWZ6dBdNx5gjBKGtqupfZ5slR4IZdykxINtQxQ7wrIJhWTaw==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEYCIQC9KE0mD34KUxR9lTcJeD6tdAd/2N2ULN6lXrmaBz3mOQIhAKaHDrP1ugO1JD9V1iw8pJ4uVJXA1l2eueHYxFhkHEyg" + } + ] + }, + "maintainers": [ + { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + { + "name": "typescript", + "email": "typescript@microsoft.com" + } + ], + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "_npmOperationalInternal": { + "host": "packages-12-west.internal.npmjs.com", + "tmp": "tmp/types-registry-0.1.167.tgz_1486765500928_0.24827895360067487" + }, + "directories": {}, + "contributors": [] + }, + "0.1.168": { + "name": "types-registry", + "version": "0.1.168", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/Microsoft/types-publisher.git" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "Apache-2.0", + "_id": "types-registry@0.1.168", + "dist": { + "shasum": "209abca7047ae40862cbd1f83ae60e6ad9b616e7", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.168.tgz", + "integrity": "sha512-rInzoZ3MDK3bJRCUSCO9oNnW8i7QjaXcF5opLVpXY879kQ+Py1sM6+vPgFi5YJxRCQyFseyoZdqJkck1j8ZaIQ==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEYCIQDvoMScKGYfh/1qyZ2L0B+2oIKCeADf09M82lWI02sBjwIhANk3bNpZUuasCPVQWNcRv2+Vn9iex+Cfs7wm45tmh7KY" + } + ] + }, + "maintainers": [ + { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + { + "name": "typescript", + "email": "typescript@microsoft.com" + } + ], + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "_npmOperationalInternal": { + "host": "packages-18-east.internal.npmjs.com", + "tmp": "tmp/types-registry-0.1.168.tgz_1486768279865_0.3310528064612299" + }, + "directories": {}, + "contributors": [] + }, + "0.1.169": { + "name": "types-registry", + "version": "0.1.169", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/Microsoft/types-publisher.git" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "Apache-2.0", + "_id": "types-registry@0.1.169", + "dist": { + "shasum": "9eb49f679585c423746f3b138df969ff5dcd9d55", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.169.tgz", + "integrity": "sha512-3PG+NhovYYzqxdvDNSLcGzr2xwseW0gSpFby9J54hE655R4mnr4v0O7YTUdKkQ9ZMCH4UMSYGkqm50mudVznqg==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIQCOk1BeDHEDNNWDlXhijQU7KqWrQOTsIYdSReXtfHbPMwIgZaNwmUNxRpRF70i2vLh4hmzQbvhmTiDP1si5lO7cfG0=" + } + ] + }, + "maintainers": [ + { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + { + "name": "typescript", + "email": "typescript@microsoft.com" + } + ], + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "_npmOperationalInternal": { + "host": "packages-12-west.internal.npmjs.com", + "tmp": "tmp/types-registry-0.1.169.tgz_1486773133409_0.4084503201302141" + }, + "directories": {}, + "contributors": [] + }, + "0.1.170": { + "name": "types-registry", + "version": "0.1.170", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/Microsoft/types-publisher.git" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "Apache-2.0", + "_id": "types-registry@0.1.170", + "dist": { + "shasum": "e13b6bc138cae2c264df1f73d390f3052d68cfde", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.170.tgz", + "integrity": "sha512-W5VifufB7OfECyktJFtu4FU11cTCLl3CpZwPGGrt9YymWqgIp83dbTAJF6+xJgF+sPwM/uvz0x7+pjRF2Ou7kw==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEYCIQCDGWJmNVodA6u51OmASXxPYfEJMie82iwr4cN4/vBYrwIhANjLkeTEMDxd8k0WpCA/7WGb7HnFyf89FAJlTlay9PYa" + } + ] + }, + "maintainers": [ + { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + { + "name": "typescript", + "email": "typescript@microsoft.com" + } + ], + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "_npmOperationalInternal": { + "host": "packages-18-east.internal.npmjs.com", + "tmp": "tmp/types-registry-0.1.170.tgz_1487108196239_0.22749932599253953" + }, + "directories": {}, + "contributors": [] + }, + "0.1.171": { + "name": "types-registry", + "version": "0.1.171", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/Microsoft/types-publisher.git" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "Apache-2.0", + "_id": "types-registry@0.1.171", + "dist": { + "shasum": "4092ec0b60e27ccdfa47ca1d729912e936367c53", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.171.tgz", + "integrity": "sha512-PWe61jVtVe6yHFzXectZC4Lf4DutcaIOeiObh/WPSuRIBMwpeyFQTszvtZojx6acbVXwSXvTuKCq8ru13bd5Vw==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIQD1SEwH/+7raKutxHIB/wDKoXUk/TcWTarHOSMnEyNRNwIgdSj/SYYFqLjXm23JyWei9VMym2qb9LiDldJPFZgc/0I=" + } + ] + }, + "maintainers": [ + { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + { + "name": "typescript", + "email": "typescript@microsoft.com" + } + ], + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "_npmOperationalInternal": { + "host": "packages-12-west.internal.npmjs.com", + "tmp": "tmp/types-registry-0.1.171.tgz_1487180470678_0.001935307402163744" + }, + "directories": {}, + "contributors": [] + }, + "0.1.172": { + "name": "types-registry", + "version": "0.1.172", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/Microsoft/types-publisher.git" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "Apache-2.0", + "_id": "types-registry@0.1.172", + "dist": { + "shasum": "85403fa89e2a2b4ed904a254310df20ffe213a68", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.172.tgz", + "integrity": "sha512-q1htf3OkjPGfxH6B559wAZH/8CODNoLn+UuI7SLi2TkkHmgVJq7H7wLLAjbVF1McHTRa+QaPcSU5cliKKEXP4g==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEYCIQDUpmb8HisGXlfKB95h5lenERbrP+8rHfSksMKsrF1BRAIhALpn1kDVAaO5TwUkfP7yHrPF2KXD/Oe85lE8xUfFA/Zp" + } + ] + }, + "maintainers": [ + { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + { + "name": "typescript", + "email": "typescript@microsoft.com" + } + ], + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "_npmOperationalInternal": { + "host": "packages-12-west.internal.npmjs.com", + "tmp": "tmp/types-registry-0.1.172.tgz_1487208913446_0.8674230366013944" + }, + "directories": {}, + "contributors": [] + }, + "0.1.173": { + "name": "types-registry", + "version": "0.1.173", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/Microsoft/types-publisher.git" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "Apache-2.0", + "_id": "types-registry@0.1.173", + "dist": { + "shasum": "515e387db380d9a4e95050f597a34744af68a8b1", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.173.tgz", + "integrity": "sha512-8e5vS+VBWtBJ+PiqF/VshPqM/pgH9P07O3BFXO/A7a46k3nrtZZRairuzKr8bJK94ZEqTSZ3NuFTgd1X+o1EzQ==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIF+pBNrV5j511mEKYuKqE0AiGEY/yBAw5/SZrgYe54AVAiEAp68fHbR0nnmLgLPN3ayhWfLKUjaSrGS10XoT5rpkLZw=" + } + ] + }, + "maintainers": [ + { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + { + "name": "typescript", + "email": "typescript@microsoft.com" + } + ], + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "_npmOperationalInternal": { + "host": "packages-18-east.internal.npmjs.com", + "tmp": "tmp/types-registry-0.1.173.tgz_1487358351006_0.0357284948695451" + }, + "directories": {}, + "contributors": [] + }, + "0.1.174": { + "name": "types-registry", + "version": "0.1.174", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/Microsoft/types-publisher.git" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "Apache-2.0", + "_id": "types-registry@0.1.174", + "dist": { + "shasum": "40437ee3a3f88fd00d3e124ca3f3215d7fd343ea", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.174.tgz", + "integrity": "sha512-Rq+5sGMXn/TEpAedkrwAhpeNR1eZ5VOcJl2h3ZvqWK4vygUyHYzzQbj6l8+5YhvGVchwP7Fw0yWHltEJPV0Kxw==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIFp8l/ra5wcPFYxRNf183bZfNttR4D51s1wp3T5eiG40AiEA/D1DEINulZ5Zdd5PCqBRkox176BY0eOgZb6/KW8oHxE=" + } + ] + }, + "maintainers": [ + { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + { + "name": "typescript", + "email": "typescript@microsoft.com" + } + ], + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "_npmOperationalInternal": { + "host": "packages-12-west.internal.npmjs.com", + "tmp": "tmp/types-registry-0.1.174.tgz_1487358681468_0.8964782091788948" + }, + "directories": {}, + "contributors": [] + }, + "0.1.175": { + "name": "types-registry", + "version": "0.1.175", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/Microsoft/types-publisher.git" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "Apache-2.0", + "_id": "types-registry@0.1.175", + "dist": { + "shasum": "71815d4f7c6b155575f8e658843826c9980fd7b7", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.175.tgz", + "integrity": "sha512-DerwON6F3ajDd/JkneYTiIOTavHuXzsPm6CvXsSO8DH2UzNOTYEeYOmM16ng0xHRQTJUNnNN6VwfxHtSeygThQ==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEQCIDuMFggdRep5imtTu0bDkdU+NfUdNxWbo+6600xauhD4AiBPz/QMZEI0/6rfs+mWq6tWxuLjaZvGYsJTLXOChQmd6w==" + } + ] + }, + "maintainers": [ + { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + { + "name": "typescript", + "email": "typescript@microsoft.com" + } + ], + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "_npmOperationalInternal": { + "host": "packages-18-east.internal.npmjs.com", + "tmp": "tmp/types-registry-0.1.175.tgz_1487577493675_0.8431043918244541" + }, + "directories": {}, + "contributors": [] + }, + "0.1.176": { + "name": "types-registry", + "version": "0.1.176", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/Microsoft/types-publisher.git" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "Apache-2.0", + "_id": "types-registry@0.1.176", + "dist": { + "shasum": "6432455e5aa592d8416d363168b0f285deec08d3", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.176.tgz", + "integrity": "sha512-sOQlP02/CO2rVAIC1AzPu7qQFvLInO5L3P8GsHPfNARcCTAlz9TkGZ+smMOpcd7M+zs3tcZg7trLFUKbrhes/Q==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEQCICgagAiYeLDQQ/u39b+sFL4dXNx1yr/a8sW3N1Iv6kVqAiBLGyRmqzanXrtwINlAZfreY8BROcX+1eKZhVcBNYj+UQ==" + } + ] + }, + "maintainers": [ + { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + { + "name": "typescript", + "email": "typescript@microsoft.com" + } + ], + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "_npmOperationalInternal": { + "host": "packages-12-west.internal.npmjs.com", + "tmp": "tmp/types-registry-0.1.176.tgz_1487577981082_0.20759662427008152" + }, + "directories": {}, + "contributors": [] + }, + "0.1.177": { + "name": "types-registry", + "version": "0.1.177", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/Microsoft/types-publisher.git" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "Apache-2.0", + "_id": "types-registry@0.1.177", + "dist": { + "shasum": "a15525704306516a0734f7ccc52dcd47bdcde1fd", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.177.tgz", + "integrity": "sha512-dWjILBsFEtCI+ays1Gam0UmCA7XBHuCelpB3ZkeufQ0V9U8riHNDp1CiKAQrRQPO+6W2xm/NdLKVH9PjR34BAQ==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIG5/aaBo/3oG6vaOtnHDDRT3mfHnVfLVVhdLS6ZogWSFAiEA8tf/+ujMJ+NLKf83m+1bflB42zMq+ylu/bcB3o4lD9A=" + } + ] + }, + "maintainers": [ + { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + { + "name": "typescript", + "email": "typescript@microsoft.com" + } + ], + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "_npmOperationalInternal": { + "host": "packages-18-east.internal.npmjs.com", + "tmp": "tmp/types-registry-0.1.177.tgz_1487628217508_0.9301437605172396" + }, + "directories": {}, + "contributors": [] + }, + "0.1.178": { + "name": "types-registry", + "version": "0.1.178", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/Microsoft/types-publisher.git" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "Apache-2.0", + "_id": "types-registry@0.1.178", + "dist": { + "shasum": "1ff5d1d010166b66c85bc54a3ab2926c2b9b1281", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.178.tgz", + "integrity": "sha512-Vf2fc7NZ4BixBm54eVD8MZod03b7v9zltq20XRrFGM4k3bG0W73NkDz092SOWZcSBlYSH9VP9mWDKZqIsnnPzA==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEQCIE8ZdolmuJqgrcDmNn2lBOFHVudctWIVw3BJC2Y2p0SkAiBOOa1Vlb7pIRnp0nmNFHtQ5kn040Hd3fyqAZm82VLoMQ==" + } + ] + }, + "maintainers": [ + { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + { + "name": "typescript", + "email": "typescript@microsoft.com" + } + ], + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "_npmOperationalInternal": { + "host": "packages-18-east.internal.npmjs.com", + "tmp": "tmp/types-registry-0.1.178.tgz_1488206773359_0.066991635132581" + }, + "directories": {}, + "contributors": [] + }, + "0.1.179": { + "name": "types-registry", + "version": "0.1.179", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/Microsoft/types-publisher.git" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "Apache-2.0", + "_id": "types-registry@0.1.179", + "dist": { + "shasum": "229f689bf74a33c558f743bc0626bfa378141255", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.179.tgz", + "integrity": "sha512-dKayJ4Gu43EMRYBfXHn+IiLbxPHlormrZA26rrQL1CPy6SDVvVs4NiZZ73kpcMMJd9w5HrD0u6XLCah5/GOVsQ==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIFEpmExQj+Ao7fCDmIlN/DkbJdsDTSPgBVkrS6jkNNrWAiEAvw85bpqP8u07oiwQR1TgBECyN1DxbroobsKP6z0vWWM=" + } + ] + }, + "maintainers": [ + { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + { + "name": "typescript", + "email": "typescript@microsoft.com" + } + ], + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "_npmOperationalInternal": { + "host": "packages-18-east.internal.npmjs.com", + "tmp": "tmp/types-registry-0.1.179.tgz_1488839697620_0.922977737383917" + }, + "directories": {}, + "contributors": [] + }, + "0.1.180": { + "name": "types-registry", + "version": "0.1.180", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/Microsoft/types-publisher.git" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "Apache-2.0", + "_id": "types-registry@0.1.180", + "dist": { + "shasum": "89497027d7d6c4f3762c78824af75958aaeb4a49", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.180.tgz", + "integrity": "sha512-vFN3Q4AN6Esf0pwogsJFKeDMiBZZUqaNyfcbZjmZvFrTvuinbQ8hZGrXNcABJj2t3YjYUQLxxczZDy3pJvWgtQ==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIQDVmRcYOEsCwHYDMJuE6FzyE/4SzkRARo+M5+zJfZ/UIgIgWzg6MWSl+D5zLn0Pgb+dGAtAftnF4O5uLOfV3cgUOKA=" + } + ] + }, + "maintainers": [ + { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + { + "name": "typescript", + "email": "typescript@microsoft.com" + } + ], + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "_npmOperationalInternal": { + "host": "packages-12-west.internal.npmjs.com", + "tmp": "tmp/types-registry-0.1.180.tgz_1488840889972_0.5350511916913092" + }, + "directories": {}, + "contributors": [] + }, + "0.1.181": { + "name": "types-registry", + "version": "0.1.181", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/Microsoft/types-publisher.git" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "Apache-2.0", + "_id": "types-registry@0.1.181", + "dist": { + "shasum": "08ad26ef8bc3f01f561b06b08e543f7c319a8d34", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.181.tgz", + "integrity": "sha512-N2XYJunHNj3K9uu1OmjHM6Lu9EyP+RvNlE4LpVR0qhMPd8WFcJFKO2OoEaoGgf1yHjQf0Wsoq7Le0aLyOjE8Jg==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIQCX7t9bZnvsL5XL0g6pNKA9aZ2uaZFbZKAix3DjFln09wIgF5tmcbLdGbK4/v2rCQT+cjdDudJWR9kdXXgSd2BjQfc=" + } + ] + }, + "maintainers": [ + { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + { + "name": "typescript", + "email": "typescript@microsoft.com" + } + ], + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "_npmOperationalInternal": { + "host": "packages-18-east.internal.npmjs.com", + "tmp": "tmp/types-registry-0.1.181.tgz_1488848435905_0.5107800320256501" + }, + "directories": {}, + "contributors": [] + }, + "0.1.182": { + "name": "types-registry", + "version": "0.1.182", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/Microsoft/types-publisher.git" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "Apache-2.0", + "_id": "types-registry@0.1.182", + "dist": { + "shasum": "528d43cf83094e47a5be6c86dba0465f5440f13d", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.182.tgz", + "integrity": "sha512-IzzbUzMbxPnWUXv+17KeGwXYv29U1gfWM7kB2Via8SqjSD2MyjEB8j0gsHpFHnhghcti7cNzcSuBvwWe+OJnNA==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIBRL9V0gh8qBln3stv5Hv4yavZqvM8ARkC/AhvKeWmLxAiEAz4LobLmKwq5NapTv9DRet5n5eEwO2z+cRlvE7jMlm3A=" + } + ] + }, + "maintainers": [ + { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + { + "name": "typescript", + "email": "typescript@microsoft.com" + } + ], + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "_npmOperationalInternal": { + "host": "packages-18-east.internal.npmjs.com", + "tmp": "tmp/types-registry-0.1.182.tgz_1488919082309_0.7281663832254708" + }, + "directories": {}, + "contributors": [] + }, + "0.1.183": { + "name": "types-registry", + "version": "0.1.183", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/Microsoft/types-publisher.git" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "Apache-2.0", + "_id": "types-registry@0.1.183", + "dist": { + "shasum": "3b611231f011ec9dd5109f492a3539f2bc9960b3", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.183.tgz", + "integrity": "sha512-Q0AeQwGd595R+tGVvFxNdecgwferMAgJq9znlMD2sYNQUiVJGI/dwEPPmUd2fHrLo0G9E5MSSPUEoZVZKJLRjA==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEYCIQD3wRpOyeI8k89/CDbvG53OLL7OMWPJnrMTZHk9FjnbCQIhAKer27C0Ra2i2Pw0+refxL30npFuUp2U/NsfnAJNs6KB" + } + ] + }, + "maintainers": [ + { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + { + "name": "typescript", + "email": "typescript@microsoft.com" + } + ], + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "_npmOperationalInternal": { + "host": "packages-18-east.internal.npmjs.com", + "tmp": "tmp/types-registry-0.1.183.tgz_1488936552156_0.2743205619044602" + }, + "directories": {}, + "contributors": [] + }, + "0.1.184": { + "name": "types-registry", + "version": "0.1.184", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/Microsoft/types-publisher.git" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "Apache-2.0", + "_id": "types-registry@0.1.184", + "dist": { + "shasum": "e64abfea6f5f9e08cfb15c95563c0068c837af30", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.184.tgz", + "integrity": "sha512-PV0OYMqSf7fcaLgYLfyktLZEGApGWyooIy3J8Uxs174l+UQN/ktXtGN2RHNUKth+FxibqR00HuMgKUvMLWDCOA==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEYCIQDmILBjG6SaCWfad63xAQoYSvHrY7nEIvnbwamLKYw9mgIhALNZCT2WzSD7yP9P4hOUjjz9j+8TVDfxN48MNttPrsI/" + } + ] + }, + "maintainers": [ + { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + { + "name": "typescript", + "email": "typescript@microsoft.com" + } + ], + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "_npmOperationalInternal": { + "host": "packages-18-east.internal.npmjs.com", + "tmp": "tmp/types-registry-0.1.184.tgz_1488948174502_0.6156645552255213" + }, + "directories": {}, + "contributors": [] + }, + "0.1.185": { + "name": "types-registry", + "version": "0.1.185", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/Microsoft/types-publisher.git" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "Apache-2.0", + "_id": "types-registry@0.1.185", + "dist": { + "shasum": "df535de4a5500ecf090361c8b72b45585bef472b", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.185.tgz", + "integrity": "sha512-vG6Ko7KWddadi8kIxLVJrAv9dArK9so0wTneWcuG66tHa0m7xyNB/mWfyTuE6miBMned3CDV6AHAfLzlKbOgCg==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIDloAMbUkey35/0HRL3Yg1ied/xMFWh4d5vO5EfyM3MsAiEAwsZb10OPsTGTAq1j3m4B5dY1pbZ7PMotsfAcGpGLbPA=" + } + ] + }, + "maintainers": [ + { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + { + "name": "typescript", + "email": "typescript@microsoft.com" + } + ], + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "_npmOperationalInternal": { + "host": "packages-12-west.internal.npmjs.com", + "tmp": "tmp/types-registry-0.1.185.tgz_1488961832427_0.6895125622395426" + }, + "directories": {}, + "contributors": [] + }, + "0.1.186": { + "name": "types-registry", + "version": "0.1.186", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/Microsoft/types-publisher.git" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "Apache-2.0", + "_id": "types-registry@0.1.186", + "dist": { + "shasum": "e208b9618300d32be117689719e3f96fe6481461", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.186.tgz", + "integrity": "sha512-+ISru0dddXYgwBRagpLoHmR0dEaUFe76Nhn8vBT2cCtmyaCMPJFme/rOCTGrCje/8tX4JW8g3pjeQrsAwwDZ8A==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEYCIQCs3rjSDEzfyzrD2vpCyf31heTkkMsN5xuXjUcsh2hBywIhAPubTs1UimvrtppXNWnbJHlwVJN/wSGZMM2dCA2S+QVw" + } + ] + }, + "maintainers": [ + { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + { + "name": "typescript", + "email": "typescript@microsoft.com" + } + ], + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "_npmOperationalInternal": { + "host": "packages-12-west.internal.npmjs.com", + "tmp": "tmp/types-registry-0.1.186.tgz_1488962616222_0.2098258319310844" + }, + "directories": {}, + "contributors": [] + }, + "0.1.187": { + "name": "types-registry", + "version": "0.1.187", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/Microsoft/types-publisher.git" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "Apache-2.0", + "_id": "types-registry@0.1.187", + "dist": { + "shasum": "767cbc327891047912ec2d593f8f85fd3f3ac5d0", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.187.tgz", + "integrity": "sha512-DNGlBCiJh7GCw0awaNoug5zxGaBKHpxhuFAVEnbsWOk7xkhTyk8JcKY4k8NrY0Ka3sC4Gi5Gdj7LB42AZXRSOg==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIQC3PI0vdRcgTtZ6VsAn7wdZHHSG0GU9oTcidTvNP1EDOAIgUtGUT9Qx+4ATF4B0s5p7HH8hfJXPIjOdwQWP/QJ4sLc=" + } + ] + }, + "maintainers": [ + { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + { + "name": "typescript", + "email": "typescript@microsoft.com" + } + ], + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "_npmOperationalInternal": { + "host": "packages-12-west.internal.npmjs.com", + "tmp": "tmp/types-registry-0.1.187.tgz_1489003364315_0.061344530899077654" + }, + "directories": {}, + "contributors": [] + }, + "0.1.188": { + "name": "types-registry", + "version": "0.1.188", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/Microsoft/types-publisher.git" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "Apache-2.0", + "_id": "types-registry@0.1.188", + "dist": { + "shasum": "9653dc682fd2b27e2dddd240f989579a7fbdf064", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.188.tgz", + "integrity": "sha512-TZQE5ZdqlURuphq+XODwsnoU6WgbD7b8n8mC95gJrWKwVFTb4/PigqNar3TUBUfGmF+tbcQcfEws4MQauBVPnw==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEYCIQCnurQhk/l05N4vF2wObA/WYc8t3eE3W4IZS4blmfrSmAIhAKKgx2Q5VuQuhVmrTZpOb79Wvup0oF/AVxk3Jrv+aGA3" + } + ] + }, + "maintainers": [ + { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + { + "name": "typescript", + "email": "typescript@microsoft.com" + } + ], + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "_npmOperationalInternal": { + "host": "packages-18-east.internal.npmjs.com", + "tmp": "tmp/types-registry-0.1.188.tgz_1489019279695_0.20072278147563338" + }, + "directories": {}, + "contributors": [] + }, + "0.1.189": { + "name": "types-registry", + "version": "0.1.189", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/Microsoft/types-publisher.git" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "Apache-2.0", + "_id": "types-registry@0.1.189", + "dist": { + "shasum": "454a30c7faa8d4d179a9d19312f8578673673467", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.189.tgz", + "integrity": "sha512-Anx6Wjk1GyzK3mmG7VojSrTi1oVoPy5ATbRRv47k6Hdor8L6JmDviA118GYjx276eQJl8/J0OFGnVuBDc3UW+g==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEYCIQCNzFFj1MgMkCatthh/jbOhnv5LfG2A0K3Bt+EXCvDbewIhANwZZvUbKZeyGr6kducMyspaQUosP+xNjQyUXBQPy8kf" + } + ] + }, + "maintainers": [ + { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + { + "name": "typescript", + "email": "typescript@microsoft.com" + } + ], + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "_npmOperationalInternal": { + "host": "packages-18-east.internal.npmjs.com", + "tmp": "tmp/types-registry-0.1.189.tgz_1489087422557_0.24495280697010458" + }, + "directories": {}, + "contributors": [] + }, + "0.1.190": { + "name": "types-registry", + "version": "0.1.190", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/Microsoft/types-publisher.git" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "Apache-2.0", + "_id": "types-registry@0.1.190", + "dist": { + "shasum": "f999a44ab198263c94a398d82619976efda8feff", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.190.tgz", + "integrity": "sha512-bCg5hXxbo3qkbgTGhMHOH9cPXsxMPyoSkkV2Ed2USr6v135u2ngM1UxWH7zCzm2WU3UpbT1MuNj1HcUySfrkeA==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIBpfuJ3WE0trHRHOmMSKevQ2MjagxmvCbZR2CKgE70JfAiEAwmGxSc4oVUOtZ91JLnTMd2aF64LcCIqOr0sWSAm8Bgo=" + } + ] + }, + "maintainers": [ + { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + { + "name": "typescript", + "email": "typescript@microsoft.com" + } + ], + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "_npmOperationalInternal": { + "host": "packages-12-west.internal.npmjs.com", + "tmp": "tmp/types-registry-0.1.190.tgz_1489097691136_0.3254410461522639" + }, + "directories": {}, + "contributors": [] + }, + "0.1.191": { + "name": "types-registry", + "version": "0.1.191", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/Microsoft/types-publisher.git" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "Apache-2.0", + "_id": "types-registry@0.1.191", + "dist": { + "shasum": "57186963e62f74b24047e6e5319c6996df84bdd6", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.191.tgz", + "integrity": "sha512-zJpggaLAH7geFgalK1eryawsB3mkAXWeLEtioDreJCDkBw7jqeAKaarBXZH+DEQ1ODFBeXLUiT1MKM3e+qMmSg==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIEKz3IKQlEYA16Dk06owgjAdj2UjfW9FGyL6OuTLJNxKAiEA+1BZYFL++Iy5ZmooaORL5x1c3KdPTjPGsXX0DbtbJXA=" + } + ] + }, + "maintainers": [ + { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + { + "name": "typescript", + "email": "typescript@microsoft.com" + } + ], + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "_npmOperationalInternal": { + "host": "packages-12-west.internal.npmjs.com", + "tmp": "tmp/types-registry-0.1.191.tgz_1489124490071_0.8777792470064014" + }, + "directories": {}, + "contributors": [] + }, + "0.1.192": { + "name": "types-registry", + "version": "0.1.192", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/Microsoft/types-publisher.git" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "Apache-2.0", + "_id": "types-registry@0.1.192", + "dist": { + "shasum": "55a462aa19b31f8344a3849bf756b5321ee07fb6", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.192.tgz", + "integrity": "sha512-+e4Z4//lGS9fT648sRxiW5sepBsH66PgC+J/LWzc6S4ZEMKL7M9Fojp/13uzadWoXxX9O8sOovXjWBbqd0KD5A==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIQCk0mUgxJ35NyHuCmOmVZYQkQ3u9O0ewpGI09oLsqvF3AIgRZkhzOzWj2Txy7pG/iYUyJovSrXzEYQOUufvcKedeRY=" + } + ] + }, + "maintainers": [ + { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + { + "name": "typescript", + "email": "typescript@microsoft.com" + } + ], + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "_npmOperationalInternal": { + "host": "packages-18-east.internal.npmjs.com", + "tmp": "tmp/types-registry-0.1.192.tgz_1489126102066_0.7979169862810522" + }, + "directories": {}, + "contributors": [] + }, + "0.1.193": { + "name": "types-registry", + "version": "0.1.193", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/Microsoft/types-publisher.git" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "Apache-2.0", + "_id": "types-registry@0.1.193", + "dist": { + "shasum": "ccd483a8e44936ab61b193313b6c4a6dd64dae31", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.193.tgz", + "integrity": "sha512-EQHSf6ivTGbuu/kIkqSP7sFbTyn/TVzjAL9mFsiqeNEY6EfXijJ5hYxN6kVdvpX9pVE0NWyN6D/m4SzZ6AqOMg==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIBeeI7hz6wcgzPnjhIdZ7f8Ev8b2/Yl5FAsFvAc3r+igAiEAq+i/120cGK2PEvNQrUoY4I3idpcgyKtSgVaIsm0HZ/8=" + } + ] + }, + "maintainers": [ + { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + { + "name": "typescript", + "email": "typescript@microsoft.com" + } + ], + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "_npmOperationalInternal": { + "host": "packages-18-east.internal.npmjs.com", + "tmp": "tmp/types-registry-0.1.193.tgz_1489126370819_0.4982127870898694" + }, + "directories": {}, + "contributors": [] + }, + "0.1.194": { + "name": "types-registry", + "version": "0.1.194", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/Microsoft/types-publisher.git" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "Apache-2.0", + "_id": "types-registry@0.1.194", + "dist": { + "shasum": "87777da61fcf9a55335e5f653dc84c5667b3a1e3", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.194.tgz", + "integrity": "sha512-A2+L69hs0H1Bcld6i1dBny0ZI/EbjOVu4hC+f/PHN5xGNRHNVCwQFdaGvgHghYqzq/zxdiqPsf5pS1FY4QSdNQ==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEYCIQCl7UHIXOEirJQLuZULoJbMhNPwWeYr9G0aZSpkUGtazgIhANCgn8txgEy18C3P51m2gxXSfcCaCVkqzixt6ZYcq+Hr" + } + ] + }, + "maintainers": [ + { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + { + "name": "typescript", + "email": "typescript@microsoft.com" + } + ], + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "_npmOperationalInternal": { + "host": "packages-12-west.internal.npmjs.com", + "tmp": "tmp/types-registry-0.1.194.tgz_1489126747415_0.3905931869521737" + }, + "directories": {}, + "contributors": [] + }, + "0.1.195": { + "name": "types-registry", + "version": "0.1.195", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/Microsoft/types-publisher.git" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "Apache-2.0", + "_id": "types-registry@0.1.195", + "dist": { + "shasum": "03115744a0fe722806f0c143221f1222df51c871", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.195.tgz", + "integrity": "sha512-JCJa/xrHrxDD/T1cxyV0O/4orvYalnxm4pMuze5TP5QFHI/IxdnJQZX80ZUUn3IwzfVPYu1GXw2aeCmvbTQYIg==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIQCQI4EJTvllkG1o3pD9dJzmIG3J4brYDWGrEqEkLzmIewIgfTjHXvn1OAwj7vKxPX1HicuHX+9o14NrYdwUDDRqQqg=" + } + ] + }, + "maintainers": [ + { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + { + "name": "typescript", + "email": "typescript@microsoft.com" + } + ], + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "_npmOperationalInternal": { + "host": "packages-18-east.internal.npmjs.com", + "tmp": "tmp/types-registry-0.1.195.tgz_1489127429559_0.17228434444405138" + }, + "directories": {}, + "contributors": [] + }, + "0.1.196": { + "name": "types-registry", + "version": "0.1.196", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/Microsoft/types-publisher.git" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "Apache-2.0", + "_id": "types-registry@0.1.196", + "dist": { + "shasum": "c946af6b10c50c8b54cab678506285c2349f5798", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.196.tgz", + "integrity": "sha512-JTRND8uwhV/0eS4i9OqxthdaOjW6f2gY5bCMsw6ax6s8IT1effk2SyLYxYrmZYgJOx07YYGb0ALiUuFO8to/EQ==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIAhXnZeWDlq3AT7PLTJMrT9AuXL1d7CbOKxaVbEdFMEhAiEAuh2B/sYeWkWeovZFvZfQ1vwDnJzxAMA3B4N1+Uw51jw=" + } + ] + }, + "maintainers": [ + { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + { + "name": "typescript", + "email": "typescript@microsoft.com" + } + ], + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "_npmOperationalInternal": { + "host": "packages-12-west.internal.npmjs.com", + "tmp": "tmp/types-registry-0.1.196.tgz_1489128179101_0.24410372995771468" + }, + "directories": {}, + "contributors": [] + }, + "0.1.197": { + "name": "types-registry", + "version": "0.1.197", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/Microsoft/types-publisher.git" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "Apache-2.0", + "_id": "types-registry@0.1.197", + "dist": { + "shasum": "983accf13ff81799128e9d85a0711ba6dda67ee9", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.197.tgz", + "integrity": "sha512-u6et5QZ4E9Kqk7fH9HDWaPThkmarSs2d7mJgahfeDnobPaKZtpvdvfb+SrCr5yNg6x/Szei9azfnA4Ic4JzKbA==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIAq9Q4rXyC2vhRDPV+ndbefaG74VhV0IWu81hmu5EpytAiEAxInUAwvPQUvwGQ5jYSijcGXqee710jB38bTv8eKU32k=" + } + ] + }, + "maintainers": [ + { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + { + "name": "typescript", + "email": "typescript@microsoft.com" + } + ], + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "_npmOperationalInternal": { + "host": "packages-12-west.internal.npmjs.com", + "tmp": "tmp/types-registry-0.1.197.tgz_1489128509658_0.6469918941147625" + }, + "directories": {}, + "contributors": [] + }, + "0.1.198": { + "name": "types-registry", + "version": "0.1.198", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/Microsoft/types-publisher.git" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "Apache-2.0", + "_id": "types-registry@0.1.198", + "dist": { + "shasum": "c9d0ff7d329af23018781d0ccfee5253a9b974d3", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.198.tgz", + "integrity": "sha512-UvctgSsRiCYzFwIVLl4JwqQWM2XWfvKgF1j1nepBoqtfQfAFRzakaC5W5YmubWFQNdLnhTh+rhNvG4Jl6VzDEA==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEQCIE1rRodn4oE/Vw2YpvKW9I2/pDwkHXsyHtlhSrZ5qIiFAiBLraTsTrBH6KGyL0Iusz1uyg1ic2i4zG2SCdKFNpi7YA==" + } + ] + }, + "maintainers": [ + { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + { + "name": "typescript", + "email": "typescript@microsoft.com" + } + ], + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "_npmOperationalInternal": { + "host": "packages-18-east.internal.npmjs.com", + "tmp": "tmp/types-registry-0.1.198.tgz_1489129135528_0.6486007084604353" + }, + "directories": {}, + "contributors": [] + }, + "0.1.199": { + "name": "types-registry", + "version": "0.1.199", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/Microsoft/types-publisher.git" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "Apache-2.0", + "_id": "types-registry@0.1.199", + "dist": { + "shasum": "305aae690264260539a48c4e39c260e2cc791f11", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.199.tgz", + "integrity": "sha512-jyknsJQXkk/9HvN70293Z6ODkN7Eg4nyMpP3Id9DQVAGTaz5iE0aa1eJ5F5mhIyUYqJFL+YAfcvXnFWh4OMUNQ==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIFENBH5yrflHuF9RdE+7qjJhb3zuzHuzkqbKSgIgU5nYAiEA2N+54WWTIwF74dicVZNOYsMnNmcU52IapJUVqkv25nY=" + } + ] + }, + "maintainers": [ + { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + { + "name": "typescript", + "email": "typescript@microsoft.com" + } + ], + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "_npmOperationalInternal": { + "host": "packages-18-east.internal.npmjs.com", + "tmp": "tmp/types-registry-0.1.199.tgz_1489129827614_0.9193285796791315" + }, + "directories": {}, + "contributors": [] + }, + "0.1.200": { + "name": "types-registry", + "version": "0.1.200", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/Microsoft/types-publisher.git" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "Apache-2.0", + "_id": "types-registry@0.1.200", + "dist": { + "shasum": "52d097c4bfe52020dfc424a0b243f456ccbd1919", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.200.tgz", + "integrity": "sha512-F0mZvbYnz0VOWhINpMntxMvALG9j9PNmDQtFVhEtFDBSjDT+AU9ilxTPl1zF2xTs9XAAZzBVVTCEc2YDwk77DA==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIB71xurY5UuDmeZYe+7zaw7OP1+raMSxKLFoGAsafbwsAiEAqU/hRxEfDAl2AtP9nYclqYKrjxY02RxRhSrj8LlQjHE=" + } + ] + }, + "maintainers": [ + { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + { + "name": "typescript", + "email": "typescript@microsoft.com" + } + ], + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "_npmOperationalInternal": { + "host": "packages-18-east.internal.npmjs.com", + "tmp": "tmp/types-registry-0.1.200.tgz_1489130977235_0.8185720541514456" + }, + "directories": {}, + "contributors": [] + }, + "0.1.201": { + "name": "types-registry", + "version": "0.1.201", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/Microsoft/types-publisher.git" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "Apache-2.0", + "_id": "types-registry@0.1.201", + "dist": { + "shasum": "c2e08a86d129f66f88421a8602770a7a1168f672", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.201.tgz", + "integrity": "sha512-+uoIGH3xvog43CwRmQ7iqHlKq81qSZjOGDMYC9d5pgc8gPoOwqIubw8TP9jc51BJahRV34SCXL+eiFZ9hmXCHg==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIGPJWLu1XfKdfcEp8cg7qtjN35t4IhU/X6u9tzar6hU9AiEA3CTTzpMqVjg0pl3SJ/BTTTuAh2JfXRHm9stD0ONiz0k=" + } + ] + }, + "maintainers": [ + { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + { + "name": "typescript", + "email": "typescript@microsoft.com" + } + ], + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "_npmOperationalInternal": { + "host": "packages-18-east.internal.npmjs.com", + "tmp": "tmp/types-registry-0.1.201.tgz_1489191820210_0.9810243577230722" + }, + "directories": {}, + "contributors": [] + }, + "0.1.202": { + "name": "types-registry", + "version": "0.1.202", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/Microsoft/types-publisher.git" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "Apache-2.0", + "_id": "types-registry@0.1.202", + "dist": { + "shasum": "15ee68ae662d1ac52efddd01605b2fba6379dd9c", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.202.tgz", + "integrity": "sha512-8Gi5kkGLS6pPWr6aedTkeLe6o0hL/HXQ5lKWFUr/Bu7Ae8iXyafrp3HgCenv5PLOsboqgQgq/hp1M+Eh6sp1Mg==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIHphrNQ7WrKKyHVIV1ZPmcg/CTpgx0rKoUsygKa1V6cXAiEA2xmhrxggy8O85ry/81ERdh8WciyCbktpTwE0CsJ+t+Y=" + } + ] + }, + "maintainers": [ + { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + { + "name": "typescript", + "email": "typescript@microsoft.com" + } + ], + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "_npmOperationalInternal": { + "host": "packages-12-west.internal.npmjs.com", + "tmp": "tmp/types-registry-0.1.202.tgz_1489192346063_0.3781157673802227" + }, + "directories": {}, + "contributors": [] + }, + "0.1.203": { + "name": "types-registry", + "version": "0.1.203", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/Microsoft/types-publisher.git" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "Apache-2.0", + "_id": "types-registry@0.1.203", + "dist": { + "shasum": "d3237fbe7ed6f682c2be52efa1b78070dea21fcb", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.203.tgz", + "integrity": "sha512-SOQbmq72ThKqSUO/uFka8PalehFrePVdR42QqmLtkvranQVfw8ug6zkG9xDlsoTe/3flC4yw3okmOwXE9p7TPA==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIQCt0a8IcWAlLPrKxHfTq2rwoD/RHYOhahE4h4H+kwAZzQIgBUNkKGhzfL0OoKyMleNQ5w6QdEnzd7D+FB8OTL/uJUM=" + } + ] + }, + "maintainers": [ + { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + { + "name": "typescript", + "email": "typescript@microsoft.com" + } + ], + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "_npmOperationalInternal": { + "host": "packages-18-east.internal.npmjs.com", + "tmp": "tmp/types-registry-0.1.203.tgz_1489195069987_0.08327291905879974" + }, + "directories": {}, + "contributors": [] + }, + "0.1.204": { + "name": "types-registry", + "version": "0.1.204", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/Microsoft/types-publisher.git" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "Apache-2.0", + "_id": "types-registry@0.1.204", + "dist": { + "shasum": "2232fc5de3f5ae4bea52d0b0ee3c6b9ffbdca0a6", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.204.tgz", + "integrity": "sha512-3Vnxcl6rxqEha9vD0FzN78630BDobIN7Ah+d70Afjtpi9pYLTNMbYlk5htNhOxRszQW3/kulpO6X7oBEgG0nxw==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIQDHcfL5wAa8twpDXWzBU/uQ0INXUeDKbQnJVT/8Ogcz2gIgTvKW7FuZy7IHpHGqSGsB4scll4YYROqFzAbZBm5x4yI=" + } + ] + }, + "maintainers": [ + { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + { + "name": "typescript", + "email": "typescript@microsoft.com" + } + ], + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "_npmOperationalInternal": { + "host": "packages-18-east.internal.npmjs.com", + "tmp": "tmp/types-registry-0.1.204.tgz_1489196213132_0.6011816910468042" + }, + "directories": {}, + "contributors": [] + }, + "0.1.205": { + "name": "types-registry", + "version": "0.1.205", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/Microsoft/types-publisher.git" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "Apache-2.0", + "_id": "types-registry@0.1.205", + "dist": { + "shasum": "fceb2855da5c31332876c218db60aa7be987f7f0", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.205.tgz", + "integrity": "sha512-0/l0rTjYwT9JHnhZMNY3jXZDADFPQmgKff3eh9tgBkDFoxyL+IJPPu4b/QjJwqQh9e7fLMPGwYBimS332S4opA==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCICWRpl/g2/9R7D76A2oGG6dcoVTvgUN3XRHiOM+qUiWWAiEAyO05W2/e3OQjhHJL5EsXG4KiBFAbL7vMGm2fmur1C4Q=" + } + ] + }, + "maintainers": [ + { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + { + "name": "typescript", + "email": "typescript@microsoft.com" + } + ], + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "_npmOperationalInternal": { + "host": "packages-18-east.internal.npmjs.com", + "tmp": "tmp/types-registry-0.1.205.tgz_1489457039128_0.6597737558186054" + }, + "directories": {}, + "contributors": [] + }, + "0.1.206": { + "name": "types-registry", + "version": "0.1.206", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/Microsoft/types-publisher.git" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "Apache-2.0", + "_id": "types-registry@0.1.206", + "dist": { + "shasum": "41eb7b63a763bf66d9f3ff5a2a4fd436b35701ba", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.206.tgz", + "integrity": "sha512-yflDuAHeV9eBtvd+JPc28jPa1DSrfV4LzvOG/z/kWsqiXM5Cv516jaueprnLLTGSSHlyZmshD2SC/QwlJzaKiQ==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEYCIQD7uDpUgs0SAoOX/DYCoqZnGbnx39QcznkV1aclJjmRcgIhAKvRBms4OY66LUV+FB2gsNYuZ7zdZ3qWmTOnjjXURUcP" + } + ] + }, + "maintainers": [ + { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + { + "name": "typescript", + "email": "typescript@microsoft.com" + } + ], + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "_npmOperationalInternal": { + "host": "packages-18-east.internal.npmjs.com", + "tmp": "tmp/types-registry-0.1.206.tgz_1489511740968_0.9219428419601172" + }, + "directories": {}, + "contributors": [] + }, + "0.1.207": { + "name": "types-registry", + "version": "0.1.207", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/Microsoft/types-publisher.git" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "Apache-2.0", + "_id": "types-registry@0.1.207", + "dist": { + "shasum": "d1fcfe4637b2b5095b66faa5aef98907fe7169bd", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.207.tgz", + "integrity": "sha512-GktgN71c8dp/J/PABJ+6KOEzKhRykep160dTN32RRlkzhO+I3okVJFbFHlZTwRkTvFoQUSpo3ppo0ps/IOX7YQ==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIQCFqdVN7iBwTgvorDK7Ue4s0W9+rxVfg28EEYxLO1oqugIgYqcikSPFBZVmf2PYraMn6OYRLr4iofXer4Jn+Tr+MV4=" + } + ] + }, + "maintainers": [ + { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + { + "name": "typescript", + "email": "typescript@microsoft.com" + } + ], + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "_npmOperationalInternal": { + "host": "packages-18-east.internal.npmjs.com", + "tmp": "tmp/types-registry-0.1.207.tgz_1489675183991_0.6387127242051065" + }, + "directories": {}, + "contributors": [] + }, + "0.1.208": { + "name": "types-registry", + "version": "0.1.208", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/Microsoft/types-publisher.git" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "Apache-2.0", + "_id": "types-registry@0.1.208", + "dist": { + "shasum": "285aca47c1b25421552d8d74b5fcc4a453952fe1", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.208.tgz", + "integrity": "sha512-rSlHZLbJC7rfxnee2pzreFvLtYvbcRv0WMz3wgY5EPoZxl2OGUsw9/L3IbysWc/i2K4p0G16bpJ2hp4vYL9UfA==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIQDnu2SruR3Y3f3F0Ks4MpBfPFuLDIESWId01rzknRP0ZQIgNJofNTV9ZJpNIDsD1fYPE5QsLew2rrGd8canv80DDUc=" + } + ] + }, + "maintainers": [ + { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + { + "name": "typescript", + "email": "typescript@microsoft.com" + } + ], + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "_npmOperationalInternal": { + "host": "packages-12-west.internal.npmjs.com", + "tmp": "tmp/types-registry-0.1.208.tgz_1489773757321_0.7859511522110552" + }, + "directories": {}, + "contributors": [] + }, + "0.1.209": { + "name": "types-registry", + "version": "0.1.209", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/Microsoft/types-publisher.git" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "Apache-2.0", + "_id": "types-registry@0.1.209", + "dist": { + "shasum": "b168b5a19af0b2f4d053781f8d8b226d338a3570", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.209.tgz", + "integrity": "sha512-mdBVsf96dDh3ttzAI1lMkxkeVeN+wVksxb5xVzFwN7yqhoK3vGeMj9I8OyUUN0dbbg6zWnyk98XlU/+iYv0ZjQ==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIQDCdbL8ygiegHOxXUFv0AITetcpC+BhFepCw7RKhZsQ9AIgDL8ykq5AlxRD3fYJxo7CfYDD9qhA3mexab2c0nmtLfI=" + } + ] + }, + "maintainers": [ + { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + { + "name": "typescript", + "email": "typescript@microsoft.com" + } + ], + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "_npmOperationalInternal": { + "host": "packages-12-west.internal.npmjs.com", + "tmp": "tmp/types-registry-0.1.209.tgz_1490034374591_0.3092060962226242" + }, + "directories": {}, + "contributors": [] + }, + "0.1.210": { + "name": "types-registry", + "version": "0.1.210", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/Microsoft/types-publisher.git" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "Apache-2.0", + "_id": "types-registry@0.1.210", + "dist": { + "shasum": "48fb736015d685dea8cf57a894387ad145dce1d9", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.210.tgz", + "integrity": "sha512-uGbm0GHoAer/Y/WrwHHvnfbAU7DKxD6xBg80Jv5SXyCwg28Yd9DKvEVEqFzwdV7f5giSbDzcHvpoHUvf4x8tew==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIQCmSUcRvczebvnPRRNMXS4A8C/fkYVC2KxvQJyNpHvPKAIgXyPdTfdHYML3zoBXM/lcXSqm8YoB0wOlyeOn/56ieqE=" + } + ] + }, + "maintainers": [ + { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + { + "name": "typescript", + "email": "typescript@microsoft.com" + } + ], + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "_npmOperationalInternal": { + "host": "packages-12-west.internal.npmjs.com", + "tmp": "tmp/types-registry-0.1.210.tgz_1490045698827_0.10120328073389828" + }, + "directories": {}, + "contributors": [] + }, + "0.1.211": { + "name": "types-registry", + "version": "0.1.211", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/Microsoft/types-publisher.git" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "Apache-2.0", + "_id": "types-registry@0.1.211", + "dist": { + "shasum": "d99f3dda6c3daabe7af1d987f1b4b3a36fc5809f", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.211.tgz", + "integrity": "sha512-MIzzwi2EPrI1fXxCaLVAGVXGMMt1sKEv6HSX7w/pEYA49wz6O2P1hPGMlGn88tQ0JuOR00DiyeMy+uuOB+1tvg==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIEuf0pbZfGIi0PJVLQ9X24qZyj6vv9ZybRDXIYKOSzeQAiEAxUDX6gxTWFaBRyhMkr1EznzVtsrr96wAkQrxFEYzmJU=" + } + ] + }, + "maintainers": [ + { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + { + "name": "typescript", + "email": "typescript@microsoft.com" + } + ], + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "_npmOperationalInternal": { + "host": "packages-18-east.internal.npmjs.com", + "tmp": "tmp/types-registry-0.1.211.tgz_1490047506864_0.4804755188524723" + }, + "directories": {}, + "contributors": [] + }, + "0.1.212": { + "name": "types-registry", + "version": "0.1.212", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/Microsoft/types-publisher.git" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "Apache-2.0", + "_id": "types-registry@0.1.212", + "dist": { + "shasum": "1e5c46945e5af5d7380dfe67f76926f37ce29361", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.212.tgz", + "integrity": "sha512-IaaSK0YtaPV1sivsrOtaKeJHrZp15j7ubDhPIBiXUjLjFmNIx02XXeGoSpgohSAIxd16RqKWhoGVTCSeNzzgDw==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEYCIQDuqWBz9F2CPbPgwLJ3pRa8stgB3HNhltAYIHeSrX7/MgIhAPMDWnzXkF01wqKPEom+A5MaiKd9sp8cs2AByu75y782" + } + ] + }, + "maintainers": [ + { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + { + "name": "typescript", + "email": "typescript@microsoft.com" + } + ], + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "_npmOperationalInternal": { + "host": "packages-12-west.internal.npmjs.com", + "tmp": "tmp/types-registry-0.1.212.tgz_1490048958351_0.41221653250977397" + }, + "directories": {}, + "contributors": [] + }, + "0.1.213": { + "name": "types-registry", + "version": "0.1.213", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/Microsoft/types-publisher.git" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "Apache-2.0", + "_id": "types-registry@0.1.213", + "dist": { + "shasum": "894988f5231c322d7b42f6c60ba825be85241a7c", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.213.tgz", + "integrity": "sha512-on4Cc/SBr/gBip6lEOJbvwyodtF0zADQMX6z8J/vlVn6NILMD34qwS4WS80M9M9PCZt3E84X8x5/SDtu5hGerw==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIC4cLzI1+T+sprA7irw6MdDs4v2sx17sD7HAFl9gC7GkAiEA1ZgmS9AyimlFsVIZf4WJy37Ns0p48Cw4ytio2UR18UI=" + } + ] + }, + "maintainers": [ + { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + { + "name": "typescript", + "email": "typescript@microsoft.com" + } + ], + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "_npmOperationalInternal": { + "host": "packages-18-east.internal.npmjs.com", + "tmp": "tmp/types-registry-0.1.213.tgz_1490049657793_0.8695775484666228" + }, + "directories": {}, + "contributors": [] + }, + "0.1.214": { + "name": "types-registry", + "version": "0.1.214", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/Microsoft/types-publisher.git" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "Apache-2.0", + "_id": "types-registry@0.1.214", + "dist": { + "shasum": "8f259126972401923db6252519dd314d9cf40899", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.214.tgz", + "integrity": "sha512-85FEeZpH3U7mBWD5s2ETZYy8yU5szBjW+A4QbsNf6WmfAJ65fzAtr0n6HFxcW23EjI0uXtD1YSzsN/db3kw8aw==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEQCIEtkwv3RUMemOMCnefmyXy0SVQ3cOE+3j6DaFPjnGfUyAiBfEuAAhl1kLtLwsUJUfOIYzZ2yZS6212ebdJkhPPnF9A==" + } + ] + }, + "maintainers": [ + { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + { + "name": "typescript", + "email": "typescript@microsoft.com" + } + ], + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "_npmOperationalInternal": { + "host": "packages-18-east.internal.npmjs.com", + "tmp": "tmp/types-registry-0.1.214.tgz_1490125967128_0.09145718486979604" + }, + "directories": {}, + "contributors": [] + }, + "0.1.215": { + "name": "types-registry", + "version": "0.1.215", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/Microsoft/types-publisher.git" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "Apache-2.0", + "_id": "types-registry@0.1.215", + "dist": { + "shasum": "3fde30ac0e8785adcf6eeaba34f823232268b341", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.215.tgz", + "integrity": "sha512-9sjpF5rORzK3bh4hnp+heuPDDDdnAzsFCRi6pS/YdgOYlzIar2+1QmEcNW4qNvAxW9TZ1HAYZ+gVlcKdhXLpNA==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIEUA+Iqr9tx1lDI1NxJBAH3KJuHhzsPEovdMABb50NpHAiEA4ESGhsb06yizPt62052rlv4L5hDzAgbAH46wuU/+LQ0=" + } + ] + }, + "maintainers": [ + { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + { + "name": "typescript", + "email": "typescript@microsoft.com" + } + ], + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "_npmOperationalInternal": { + "host": "packages-18-east.internal.npmjs.com", + "tmp": "tmp/types-registry-0.1.215.tgz_1490126764546_0.7361978448461741" + }, + "directories": {}, + "contributors": [] + }, + "0.1.216": { + "name": "types-registry", + "version": "0.1.216", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/Microsoft/types-publisher.git" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "Apache-2.0", + "_id": "types-registry@0.1.216", + "dist": { + "shasum": "549454de71fb98e57319c9d00e038db19747e75a", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.216.tgz", + "integrity": "sha512-OFsch4C2+4Ad68EkD8xKgYoW2163sDduJN50RKoDfFShq0NfOSuJa58BZUxdT3sVnSYfK8nQNCzxDx+nZNPIsg==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIQDwhwFR7rNuVf0defVoH0n9BH7AcIKYnXdu4CkXVPSO1QIgdgTuT+kwhQ7mYtM7NYRdYGWlH7/BEw4mMJzw2vck83U=" + } + ] + }, + "maintainers": [ + { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + { + "name": "typescript", + "email": "typescript@microsoft.com" + } + ], + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "_npmOperationalInternal": { + "host": "packages-18-east.internal.npmjs.com", + "tmp": "tmp/types-registry-0.1.216.tgz_1490127596760_0.2619672263972461" + }, + "directories": {}, + "contributors": [] + }, + "0.1.217": { + "name": "types-registry", + "version": "0.1.217", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/Microsoft/types-publisher.git" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "Apache-2.0", + "_id": "types-registry@0.1.217", + "dist": { + "shasum": "6253d0799dda59fef90163a9c8ea3e0233dbb5a6", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.217.tgz", + "integrity": "sha512-fhr/2kXDV96rK/C4z96vmvbPBgPMOrXjFMVBr+nh1OAIHaJ3BSs2LtWM+4QGOUklqenTT0+/LpuAFgWMulgkVw==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEQCIFGriQ3pUzBL5lmLzNjcKvSeU4joNMOquyigo6oRjDSrAiBz3mOzjSMbjKV6/HrguWVd2l++i9/lwgq2moAFBvQY2g==" + } + ] + }, + "maintainers": [ + { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + { + "name": "typescript", + "email": "typescript@microsoft.com" + } + ], + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "_npmOperationalInternal": { + "host": "packages-18-east.internal.npmjs.com", + "tmp": "tmp/types-registry-0.1.217.tgz_1490130524305_0.09878989914432168" + }, + "directories": {}, + "contributors": [] + }, + "0.1.218": { + "name": "types-registry", + "version": "0.1.218", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/Microsoft/types-publisher.git" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "Apache-2.0", + "_id": "types-registry@0.1.218", + "dist": { + "shasum": "9cee2c1db8c70b8fb0697c0c87aa7e50438ade01", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.218.tgz", + "integrity": "sha512-4Wzo/WDjUzXjl/h+nWr6z+H2UFfTuLqwD+Bzk9BpQgfve2p7ggM9THWMMdDhZte3bFHvcOuOi6xYId3zp4TmnA==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCICUwH16gDu+hZDtwI7+ov7LEf5Hud/QLjB/zO9X2GYIjAiEA7WGM4n54Z3KjqcveCmGamewexfDtS/Zx0KVDYzAj/H8=" + } + ] + }, + "maintainers": [ + { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + { + "name": "typescript", + "email": "typescript@microsoft.com" + } + ], + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "_npmOperationalInternal": { + "host": "packages-12-west.internal.npmjs.com", + "tmp": "tmp/types-registry-0.1.218.tgz_1490142852213_0.5145705984905362" + }, + "directories": {}, + "contributors": [] + }, + "0.1.219": { + "name": "types-registry", + "version": "0.1.219", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/Microsoft/types-publisher.git" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "Apache-2.0", + "_id": "types-registry@0.1.219", + "dist": { + "shasum": "52ab1bbc63f921a0aaf5fe9c197729ff52c9edd0", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.219.tgz", + "integrity": "sha512-kTng6muUWxBoR7PN5WCQY964rKGGJJzq39zxA1B+BrYQB+zr/UdjRU8rH/B3BHuc50Qy874YZtOCaNhPgNOzew==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIQC/pamVPZcRz5gns/gxzESroumpHW5rEIhhPVXzb+uNEAIgKLjHMZQJAHWj64yvMujMPqzQ4LY7qJg+MlghrxHZS9w=" + } + ] + }, + "maintainers": [ + { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + { + "name": "typescript", + "email": "typescript@microsoft.com" + } + ], + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "_npmOperationalInternal": { + "host": "packages-12-west.internal.npmjs.com", + "tmp": "tmp/types-registry-0.1.219.tgz_1490215942142_0.2717545328196138" + }, + "directories": {}, + "contributors": [] + }, + "0.1.220": { + "name": "types-registry", + "version": "0.1.220", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/Microsoft/types-publisher.git" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "Apache-2.0", + "_id": "types-registry@0.1.220", + "dist": { + "shasum": "46dacfce8378751c228e337f6e626e0d32affc68", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.220.tgz", + "integrity": "sha512-UBmYgr9PLZkCp5NwDTpiJeuw/f4BHtmv48xXYBO3ryHFakSq3XCUXKEkWepiiSCDMgmF2z2dUWL1Vv4P+DMdkA==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIQD/OvELwU/3OqggPeAOeQuagufH51fTrOHuW03BszX27QIgcbvYT0OPLQSX02j/cbcNT+LF1BARAGVHVkyisPcOFvc=" + } + ] + }, + "maintainers": [ + { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + { + "name": "typescript", + "email": "typescript@microsoft.com" + } + ], + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "_npmOperationalInternal": { + "host": "packages-12-west.internal.npmjs.com", + "tmp": "tmp/types-registry-0.1.220.tgz_1490223504851_0.40855401824228466" + }, + "directories": {}, + "contributors": [] + }, + "0.1.221": { + "name": "types-registry", + "version": "0.1.221", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/Microsoft/types-publisher.git" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "Apache-2.0", + "_id": "types-registry@0.1.221", + "dist": { + "shasum": "14246b49169fb1f4f5fb9ba6512a596189f9c87a", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.221.tgz", + "integrity": "sha512-0E9DAkc0yP2jFVQQMstickAim8fZ8qmjZtyvNxbb01+kYbzCPmH+33DtFubd61PDUXlTHFa7zcprIn+3Oin5eQ==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEQCIBIDl/hA+wD6TWyyATwjbe1UACQDkWcOR6Ndi936serkAiAEz/KGGG3tRDDR1NPSFDqO42HR8fHnH7fN2463zq8lGg==" + } + ] + }, + "maintainers": [ + { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + { + "name": "typescript", + "email": "typescript@microsoft.com" + } + ], + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "_npmOperationalInternal": { + "host": "packages-12-west.internal.npmjs.com", + "tmp": "tmp/types-registry-0.1.221.tgz_1490371350813_0.7513582650572062" + }, + "directories": {}, + "contributors": [] + }, + "0.1.222": { + "name": "types-registry", + "version": "0.1.222", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/Microsoft/types-publisher.git" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "Apache-2.0", + "_id": "types-registry@0.1.222", + "dist": { + "shasum": "107fc2ab7bf264ff48ae2a353872bbb52ba10cce", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.222.tgz", + "integrity": "sha512-wLw/fDpsuCNLQ9bvC07R/juqB5QwSI7VqW430UXXbajHIdzpX3w5o7vV+hfiln5lZGzHhI8nV5KbFb1lWJ2mIQ==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEYCIQDRB4sAqH2O2E3glMTtIrE7bm6WPsWIBCGeKG0kRC523AIhAKVKbxPPtDA5x7nbA7WodEQW+itWQVwwITDd9IAq2rlC" + } + ] + }, + "maintainers": [ + { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + { + "name": "typescript", + "email": "typescript@microsoft.com" + } + ], + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "_npmOperationalInternal": { + "host": "packages-12-west.internal.npmjs.com", + "tmp": "tmp/types-registry-0.1.222.tgz_1490373443849_0.16751326364465058" + }, + "directories": {}, + "contributors": [] + }, + "0.1.223": { + "name": "types-registry", + "version": "0.1.223", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/Microsoft/types-publisher.git" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "Apache-2.0", + "_id": "types-registry@0.1.223", + "dist": { + "shasum": "b0c6816c89daac9b1eee89ff9614ab50142e76e9", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.223.tgz", + "integrity": "sha512-/ap0Y7SMKML1CEeP4GgxclTv17EAmFT2UnegjALjX2Gtu3cRnwgS0r6ZQ4wtWpO8Ly3wacBkAQOD4NZ+bVYDEQ==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIQC/E5VPycOjHRowHDFkpc8jUPmBTUrO6Uz+39xpaP0U+AIgJSjR8QUQGI1LkAoeyfUBOkS3KDZ4wyN9rs0QCTnKzo4=" + } + ] + }, + "maintainers": [ + { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + { + "name": "typescript", + "email": "typescript@microsoft.com" + } + ], + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "_npmOperationalInternal": { + "host": "packages-18-east.internal.npmjs.com", + "tmp": "tmp/types-registry-0.1.223.tgz_1490631640105_0.3223096802830696" + }, + "directories": {}, + "contributors": [] + }, + "0.1.224": { + "name": "types-registry", + "version": "0.1.224", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/Microsoft/types-publisher.git" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "Apache-2.0", + "_id": "types-registry@0.1.224", + "dist": { + "shasum": "03c0fe731eac6e9d5f0881ba9ffb8af63284813f", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.224.tgz", + "integrity": "sha512-sG7Q7rWOsBjPa1jQe5WObFYsk30V4/uYMg/+sEETOhg9UREMpodxyOCIoSRhX6PagPBWnDlktWTrHGYF4TkkIg==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIQD4FI78lfSOYVyHbyf5NMU67B6L8z5kNqo26u3qhEsv+wIgJULvtkjOw+cfF0inpE0jXOrBLF9SPamsBhrGLnl8j0Y=" + } + ] + }, + "maintainers": [ + { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + { + "name": "typescript", + "email": "typescript@microsoft.com" + } + ], + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "_npmOperationalInternal": { + "host": "packages-18-east.internal.npmjs.com", + "tmp": "tmp/types-registry-0.1.224.tgz_1490636270347_0.21683383313938975" + }, + "directories": {}, + "contributors": [] + }, + "0.1.225": { + "name": "types-registry", + "version": "0.1.225", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/Microsoft/types-publisher.git" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "Apache-2.0", + "_id": "types-registry@0.1.225", + "dist": { + "shasum": "e53cc6c9172644728b450592c4b0710b6447dae3", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.225.tgz", + "integrity": "sha512-bEHTpWTds7RnIt9yTbPtlcyBbebV3f0l7TiK4Am/WOqmIXmgl2gahOxdWxghYBZ3vxmNOO9x9yQ2UCZPVkniiQ==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEMCIE1defVNjC2sHiW4w+gaUwk+KckXDlPcq0Y2z0j9lN05Ah8kTeC18akhCMWqgHXg+Cd+drzz0dTxF5/W/fISj29S" + } + ] + }, + "maintainers": [ + { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + { + "name": "typescript", + "email": "typescript@microsoft.com" + } + ], + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "_npmOperationalInternal": { + "host": "packages-18-east.internal.npmjs.com", + "tmp": "tmp/types-registry-0.1.225.tgz_1490647486566_0.429100597044453" + }, + "directories": {}, + "contributors": [] + }, + "0.1.226": { + "name": "types-registry", + "version": "0.1.226", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/Microsoft/types-publisher.git" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "Apache-2.0", + "_id": "types-registry@0.1.226", + "dist": { + "shasum": "c6e1e88b3caca9adc5e9f2eefa7ace76c6b39b97", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.226.tgz", + "integrity": "sha512-BC7XX5nKZTNbHgA6NGYaLIm+42eyQNujJ5WFexddH/McO4nuG5CfIqSlsKEyH9yzn/iWCNm/CXhp17VmDzh7gw==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEYCIQD1UTKkEeiBUZND9PEGhdWasf0xv/UnVmwwbkCoFe5CuwIhAPlQbwK4KcV00ZnxxUkY1ET1SHTvBBN88az+tpOwpOtx" + } + ] + }, + "maintainers": [ + { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + { + "name": "typescript", + "email": "typescript@microsoft.com" + } + ], + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "_npmOperationalInternal": { + "host": "packages-12-west.internal.npmjs.com", + "tmp": "tmp/types-registry-0.1.226.tgz_1490652299731_0.4414956490509212" + }, + "directories": {}, + "contributors": [] + }, + "0.1.227": { + "name": "types-registry", + "version": "0.1.227", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/Microsoft/types-publisher.git" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "Apache-2.0", + "_id": "types-registry@0.1.227", + "dist": { + "shasum": "a14be31756a94a16e33d55b148bc7f8ea9dc8d18", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.227.tgz", + "integrity": "sha512-g7gkGkeXpSAT1uE6cFoaGmvFqeNxCQ1sRabkOStZq1F380FryKQn4ImcjaziwMo2INwDnR3x1wDIB8FJXPywaw==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIDzl9GJT5IlBXw8Tn7xkMChmFpG2PNPEwCB8ocQ48TyTAiEAtZvvynooIyc8Hn32XJahJqWDXITELnIh1Dx3vjmh/Qc=" + } + ] + }, + "maintainers": [ + { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + { + "name": "typescript", + "email": "typescript@microsoft.com" + } + ], + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "_npmOperationalInternal": { + "host": "packages-18-east.internal.npmjs.com", + "tmp": "tmp/types-registry-0.1.227.tgz_1490720317627_0.9270433010533452" + }, + "directories": {}, + "contributors": [] + }, + "0.1.228": { + "name": "types-registry", + "version": "0.1.228", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/Microsoft/types-publisher.git" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "Apache-2.0", + "_id": "types-registry@0.1.228", + "dist": { + "shasum": "797adb60132e29e91fbd336f4c6d9ef53046737a", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.228.tgz", + "integrity": "sha512-bzUWxGEi5uMaMpiiPpw7lZl0i65hYwPPEFv7CHociACgwCN5HnEjsX7oIBiZfAJtrhfhB0NBnjsAGdwlqtnK5A==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEYCIQCzlIZEhNowUFPSgXCezqS9zjTbeGZPw7V+j29l14S/2QIhAL3jko7Gtib/J8H5JmMhNVjpv9OTATl4NxKCHEoqRd2q" + } + ] + }, + "maintainers": [ + { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + { + "name": "typescript", + "email": "typescript@microsoft.com" + } + ], + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "_npmOperationalInternal": { + "host": "packages-18-east.internal.npmjs.com", + "tmp": "tmp/types-registry-0.1.228.tgz_1490720669052_0.919360886560753" + }, + "directories": {}, + "contributors": [] + }, + "0.1.229": { + "name": "types-registry", + "version": "0.1.229", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/Microsoft/types-publisher.git" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "Apache-2.0", + "_id": "types-registry@0.1.229", + "dist": { + "shasum": "05c192e2124de6632b165c3285bc02b18b64a7b7", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.229.tgz", + "integrity": "sha512-fulHPwigaX/ipClTs5lx4Kqi3gU9EMAtVxk1tbD9igw2aUXiBYnON1Vm4UdoiRgfvR8nJw/izG4T22Pipdb1JA==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCICkKi0Z4qPomuzMrbysv910Ru+ggGqcMiiFglInPTV+0AiEAvoiMpURP1SsCb2mFFLIb1RhBjM4gd90pa0DuJ7jbiDo=" + } + ] + }, + "maintainers": [ + { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + { + "name": "typescript", + "email": "typescript@microsoft.com" + } + ], + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "_npmOperationalInternal": { + "host": "packages-18-east.internal.npmjs.com", + "tmp": "tmp/types-registry-0.1.229.tgz_1490732648155_0.9835232561454177" + }, + "directories": {}, + "contributors": [] + }, + "0.1.230": { + "name": "types-registry", + "version": "0.1.230", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/Microsoft/types-publisher.git" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "Apache-2.0", + "_id": "types-registry@0.1.230", + "dist": { + "shasum": "03138755af1d5700abe20ed7e0211d980fb8bc7f", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.230.tgz", + "integrity": "sha512-WBtlMwZgcZuvxOsqj3XCtphaXd16trysIESSnE9Fnq4VHP06DcSnOv+G3SfhodfLuJyPJfnSp0J4bRZICKpk+Q==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEQCICFNSFIFWefoFggKH89+CP8Qnm5c0A9DyXJwJvte8tvdAiAHUZCRPUTecI8dGt2TVvsLdvhI4SuOMspa8K1Fz0eGog==" + } + ] + }, + "maintainers": [ + { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + { + "name": "typescript", + "email": "typescript@microsoft.com" + } + ], + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "_npmOperationalInternal": { + "host": "packages-18-east.internal.npmjs.com", + "tmp": "tmp/types-registry-0.1.230.tgz_1490737592581_0.9441179721616209" + }, + "directories": {}, + "contributors": [] + }, + "0.1.231": { + "name": "types-registry", + "version": "0.1.231", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/Microsoft/types-publisher.git" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "Apache-2.0", + "_id": "types-registry@0.1.231", + "dist": { + "shasum": "3a16752e8464b388c7c288ec541a3b9b1038530a", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.231.tgz", + "integrity": "sha512-WDWYxCkXneox0Jbp2/JSruZInwDPjryRELGOFutJLQaJLQb4FxhyKCjJ47nDOme0okji02AyDG8u0X7tp3sJtA==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIC1J8xO1DKtle6p5Q8VbqmIqKLRuhPQXqmWJyf/0dcvZAiEA0Deww3que7VDyVyc27wVc8bEGE7beazE/7a8vhYy/8s=" + } + ] + }, + "maintainers": [ + { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + { + "name": "typescript", + "email": "typescript@microsoft.com" + } + ], + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "_npmOperationalInternal": { + "host": "packages-18-east.internal.npmjs.com", + "tmp": "tmp/types-registry-0.1.231.tgz_1490738272620_0.23720022663474083" + }, + "directories": {}, + "contributors": [] + }, + "0.1.232": { + "name": "types-registry", + "version": "0.1.232", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/Microsoft/types-publisher.git" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "Apache-2.0", + "_id": "types-registry@0.1.232", + "dist": { + "shasum": "31093cf70e8a11429783fa6b6a6091f4982a4ea9", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.232.tgz", + "integrity": "sha512-ggiqBq0I04ON7CK6TO4WpmUOLboA246Aj/X8y6GF0gRhbT0I5H3xbfByjdvw5btSZ8WP8wEJZOmfurtMbNVcrA==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIQDWkCm4PYUt61HLxoNngassXpBSWqe8lLGH9xg6YHJCVwIgP/yPW6Py9S6KVy962dJyOU/C8v4KPCkJHDwy8Nyt8Ns=" + } + ] + }, + "maintainers": [ + { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + { + "name": "typescript", + "email": "typescript@microsoft.com" + } + ], + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "_npmOperationalInternal": { + "host": "packages-18-east.internal.npmjs.com", + "tmp": "tmp/types-registry-0.1.232.tgz_1490740216447_0.2936589636374265" + }, + "directories": {}, + "contributors": [] + }, + "0.1.233": { + "name": "types-registry", + "version": "0.1.233", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/Microsoft/types-publisher.git" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "Apache-2.0", + "_id": "types-registry@0.1.233", + "dist": { + "shasum": "788a087d2305d02ece91e8d7b6e7513d362ecf1d", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.233.tgz", + "integrity": "sha512-QVvoSBZF4sznrDb1cVFIWgAo8i6xVT5NOfcOXowV/tHNcFyo+1/L7Oxj+9oLgSn26lPHT23YSKeyase/6WPDAQ==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEYCIQDSWgmX4F0KTQVmhlZMVTeubH0q/y31py5lBO3QV4IDwQIhAL2TXX4N5YWLTCGCgH8iB3dFuty/4yvGc0+SNaP0pU32" + } + ] + }, + "maintainers": [ + { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + { + "name": "typescript", + "email": "typescript@microsoft.com" + } + ], + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "_npmOperationalInternal": { + "host": "packages-18-east.internal.npmjs.com", + "tmp": "tmp/types-registry-0.1.233.tgz_1490812390536_0.6448069335892797" + }, + "directories": {}, + "contributors": [] + }, + "0.1.234": { + "name": "types-registry", + "version": "0.1.234", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/Microsoft/types-publisher.git" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "Apache-2.0", + "_id": "types-registry@0.1.234", + "dist": { + "shasum": "ee093840eb135709cf2f58375407347103fb7680", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.234.tgz", + "integrity": "sha512-3stJNIXqULjlVx/6L5n5llHkQ8iFV2pT2ZuKo8yhwSWjqHy5E810PF4Xurt4XbcTVqkkT+kXPWAT5Ex2fcDlZA==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEYCIQDxndjdetq1daaJ+0HoRKf8Pd7KEshusrEvK7cdO348ZwIhAMU3f9rxsBsrycTKtydHvPTKCssFyughQVFcGH4/tegz" + } + ] + }, + "maintainers": [ + { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + { + "name": "typescript", + "email": "typescript@microsoft.com" + } + ], + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "_npmOperationalInternal": { + "host": "packages-18-east.internal.npmjs.com", + "tmp": "tmp/types-registry-0.1.234.tgz_1490888637136_0.36538478382863104" + }, + "directories": {}, + "contributors": [] + }, + "0.1.235": { + "name": "types-registry", + "version": "0.1.235", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/Microsoft/types-publisher.git" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "Apache-2.0", + "_id": "types-registry@0.1.235", + "dist": { + "shasum": "d71a8a912af0b413ee105dd1389b62fcf95f19a8", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.235.tgz", + "integrity": "sha512-lAAuoGVgwkVy3NMX1SpHEDONs7qOkbI2F0biyMdmTUwFvMfQJCYWVFwVkTQExTdcPPG8Tll2W240s5eSID2rsw==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIHEv+hQ9dvPFNbBvoZeJQk7rEEcAvBGPAK0Cg4hTx1dAAiEA95WT2B0dUleizsduMnQY/qdL/mB+JhAb3Cev30D+Ux4=" + } + ] + }, + "maintainers": [ + { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + { + "name": "typescript", + "email": "typescript@microsoft.com" + } + ], + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "_npmOperationalInternal": { + "host": "packages-12-west.internal.npmjs.com", + "tmp": "tmp/types-registry-0.1.235.tgz_1490913830297_0.7696261266246438" + }, + "directories": {}, + "contributors": [] + }, + "0.1.236": { + "name": "types-registry", + "version": "0.1.236", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/Microsoft/types-publisher.git" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "Apache-2.0", + "_id": "types-registry@0.1.236", + "dist": { + "shasum": "7932770eebecf04e82a2fb288a8ae4ec06d5f364", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.236.tgz", + "integrity": "sha512-YvMz84mV8PAxnW9h+5HuuTR4ScSacsodIET6v5D4M/CcHqEdz6WuNQa8crrZlN+LrkUCemqjPHMkx0+UGXzRqw==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEQCIBOGaFujOdItm/bCDhbscMuQVkbMYFsGy3drAatqKiHIAiArcgQO0NtbyHxMdN/iyStmYwN1fV87YmhpOYdzZiOXPA==" + } + ] + }, + "maintainers": [ + { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + { + "name": "typescript", + "email": "typescript@microsoft.com" + } + ], + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "_npmOperationalInternal": { + "host": "packages-12-west.internal.npmjs.com", + "tmp": "tmp/types-registry-0.1.236.tgz_1490979375448_0.3747933942358941" + }, + "directories": {}, + "contributors": [] + }, + "0.1.237": { + "name": "types-registry", + "version": "0.1.237", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/Microsoft/types-publisher.git" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "Apache-2.0", + "_id": "types-registry@0.1.237", + "dist": { + "shasum": "bc8f27af039ece128cfecbcbfdff02f245fca316", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.237.tgz", + "integrity": "sha512-8aNCzJxJbYFYTfE89FA3MFrG0FLIRv7yD+C6KiU8BW2eJiul3OEqwFEaXKoaeBpsLYuFBjNFkl3WycFJG/HURw==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIQCqur+XWCeD6PkY11F8sppH3/+H/4tnItrDT/uG2JFPJAIgUaSHCqZB9esvMR7icP40nAq4AEFpFYgZf5CFN7pI2fw=" + } + ] + }, + "maintainers": [ + { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + { + "name": "typescript", + "email": "typescript@microsoft.com" + } + ], + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "_npmOperationalInternal": { + "host": "packages-18-east.internal.npmjs.com", + "tmp": "tmp/types-registry-0.1.237.tgz_1491837047917_0.8168698435183614" + }, + "directories": {}, + "contributors": [] + }, + "0.1.238": { + "name": "types-registry", + "version": "0.1.238", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/Microsoft/types-publisher.git" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "Apache-2.0", + "_id": "types-registry@0.1.238", + "dist": { + "shasum": "6aad731532fc15187880f603216eb54e026f7dbc", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.238.tgz", + "integrity": "sha512-lmqKtI6BY9op1CM7JceRYmvGty7aTeg8GeVzCzeY2YSv72FyDy7HfAnaNhlPFnIpxGKy2wjYSWInzyfmUff7gQ==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEYCIQD+sTFS5jlc9Drmhvgb+ms5CseXcEaXAbLECoH3w2k7/AIhAKdRDXz443kQgrwK6Arl/ofPoZ9HHtGOIUK3cPxRPaoa" + } + ] + }, + "maintainers": [ + { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + { + "name": "typescript", + "email": "typescript@microsoft.com" + } + ], + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "_npmOperationalInternal": { + "host": "packages-12-west.internal.npmjs.com", + "tmp": "tmp/types-registry-0.1.238.tgz_1491944876913_0.2796625434421003" + }, + "directories": {}, + "contributors": [] + }, + "0.1.239": { + "name": "types-registry", + "version": "0.1.239", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/Microsoft/types-publisher.git" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "Apache-2.0", + "_id": "types-registry@0.1.239", + "dist": { + "shasum": "d4bbe83b08045ce5bf8b9db18558e4d361433709", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.239.tgz", + "integrity": "sha512-uVOcDBNUCDaOXCtAqcZ+CXjMUjZ4DhQRlYAV2mdgXkDMEsPa+7aKVx5up0GEFQ/o2SCUwrlAVMqZNyVRAr++hA==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIQDoCtR6jr3DX7rFF2xX0eBVc5MYYdMulOhgj7tACSIvnAIgMn1kWI1gn9Y+8xksmcPF+V/J+TgPbg9ZF2gG1mgSKKw=" + } + ] + }, + "maintainers": [ + { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + { + "name": "typescript", + "email": "typescript@microsoft.com" + } + ], + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "_npmOperationalInternal": { + "host": "packages-18-east.internal.npmjs.com", + "tmp": "tmp/types-registry-0.1.239.tgz_1492123605654_0.2720383533742279" + }, + "directories": {}, + "contributors": [] + }, + "0.1.240": { + "name": "types-registry", + "version": "0.1.240", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/Microsoft/types-publisher.git" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "MIT", + "_id": "types-registry@0.1.240", + "dist": { + "shasum": "b1c1f96bec6f3eb5a62c1c65a4d8949e049c9b98", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.240.tgz", + "integrity": "sha512-/cpPK/XBMWmBN9hQZQzt/Fn2XW799qwqIn5KRLaoRuzdPTSxPnEtHP7vJ/3zB+aqejsM65q1chy849sM2n0bDw==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEYCIQD+razOGTwBxcfe+LeMTm9VulgVWD+b3gjgLHS6EKb8zQIhALKOcE/e5OW8x/UL3ndc/zIHOIzGfhroV5rvvxgcqTTk" + } + ] + }, + "maintainers": [ + { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + { + "name": "typescript", + "email": "typescript@microsoft.com" + } + ], + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "_npmOperationalInternal": { + "host": "packages-12-west.internal.npmjs.com", + "tmp": "tmp/types-registry-0.1.240.tgz_1493242818981_0.7756773021537811" + }, + "directories": {}, + "contributors": [] + }, + "0.1.241": { + "name": "types-registry", + "version": "0.1.241", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/Microsoft/types-publisher.git" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "MIT", + "_id": "types-registry@0.1.241", + "dist": { + "shasum": "273864b530291742daa791c841fb60c414eaf351", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.241.tgz", + "integrity": "sha512-tTuuK7RH/hCyKgmKqDXKpvtV82jwvPbGgCbunwdjSXypArvOU1TVodesCMq4+gQ7+D0TmJnb/5nmSf6/crpyLQ==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIQCo/dn9NcG+jBxgoFwojtDQwnD+eSwJkLQuD/w6YQWjDwIgF/L14huJthr8fKSUeEC53w+jV/7FTFfxLf/r361tDCQ=" + } + ] + }, + "maintainers": [ + { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + { + "name": "typescript", + "email": "typescript@microsoft.com" + } + ], + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "_npmOperationalInternal": { + "host": "packages-12-west.internal.npmjs.com", + "tmp": "tmp/types-registry-0.1.241.tgz_1493244015610_0.6292181287426502" + }, + "directories": {}, + "contributors": [] + }, + "0.1.242": { + "name": "types-registry", + "version": "0.1.242", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/Microsoft/types-publisher.git" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "MIT", + "_id": "types-registry@0.1.242", + "dist": { + "shasum": "68159fcf39ad1c3e5235290e0caa254704c30271", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.242.tgz", + "integrity": "sha512-Vm3+O7Nr97b72RW5W/LAAS+6T4jHV95yf02Fq4GQDuMkgRQelPk2Rjf2mW+544wM6Rm/Fk9uP/r8niPZhhDYMA==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIQCKn1CZDLxc618sUixWQz4S/p71dIdwjJ2fkNLsMk020gIgXMHkg8ogaw0yWXk3sS5A/uu2LPxkiEXqMhn7bJb3Gc0=" + } + ] + }, + "maintainers": [ + { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + { + "name": "typescript", + "email": "typescript@microsoft.com" + } + ], + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "_npmOperationalInternal": { + "host": "packages-12-west.internal.npmjs.com", + "tmp": "tmp/types-registry-0.1.242.tgz_1493305225244_0.34476013272069395" + }, + "directories": {}, + "contributors": [] + }, + "0.1.243": { + "name": "types-registry", + "version": "0.1.243", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/Microsoft/types-publisher.git" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "MIT", + "_id": "types-registry@0.1.243", + "dist": { + "shasum": "35c47f291fc055bc48ebf7fea5c60506363360d5", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.243.tgz", + "integrity": "sha512-XToG+xI+ITduVDrp4X2Vi2TnkTAyKG23iTq0Q5Mq1mC0YAV7oeQRm7Wwi6O1rRWnP6OUaG38rflwrn46/q5Pvg==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIDlp1P21cJ7LpvXpTrcOtxLdMZyYQfX8V2xp9ncO5FEXAiEA1irTt2rI+7U/9dP7mBNZ7HFzykcs17qtV6QdQFRmy7o=" + } + ] + }, + "maintainers": [ + { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + { + "name": "typescript", + "email": "typescript@microsoft.com" + } + ], + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "_npmOperationalInternal": { + "host": "packages-18-east.internal.npmjs.com", + "tmp": "tmp/types-registry-0.1.243.tgz_1493313016765_0.3401507542002946" + }, + "directories": {}, + "contributors": [] + }, + "0.1.244": { + "name": "types-registry", + "version": "0.1.244", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/Microsoft/types-publisher.git" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "MIT", + "_id": "types-registry@0.1.244", + "dist": { + "shasum": "3d0e5f0a3b1694e05ce1c93aa7232b5d9dc9ad05", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.244.tgz", + "integrity": "sha512-FntsSHNIx4kafmiz6FbuBenva0mQKunXJQrC3ZIK03Wo15yEY7+J2w+iMQU4f28AcQQPpwfVhww9w9uOJQR9tw==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIQCQgZVABP3Omo66AB2ziEpm0e1wDTFsAiq5N3jXr66J+QIgUs4suR5lxsycHumOhEstJlGG3ILApqWe0beud5YNM4Y=" + } + ] + }, + "maintainers": [ + { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + { + "name": "typescript", + "email": "typescript@microsoft.com" + } + ], + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "_npmOperationalInternal": { + "host": "packages-12-west.internal.npmjs.com", + "tmp": "tmp/types-registry-0.1.244.tgz_1493319668165_0.6641689105890691" + }, + "directories": {}, + "contributors": [] + }, + "0.1.245": { + "name": "types-registry", + "version": "0.1.245", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/Microsoft/types-publisher.git" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "MIT", + "_id": "types-registry@0.1.245", + "dist": { + "shasum": "7aa830d943fc301db4161c2b5d46b08fbd6a61c3", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.245.tgz", + "integrity": "sha512-QhUligxkHFkURnJdI9FJozSDYoyUDRx2iciO+3kHWz453OQFuneRebpCADuoH/mrOBw+l9kppKFuZBp+3+SvKA==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEQCIBBlpHMDnkoQO0ywB1yNoVjsuzZ4IsnZWdbymt4EmVKAAiAyJueb5nm8V4ZEXrUgcubrTmN9qZkHP35OEB3uA1OUhQ==" + } + ] + }, + "maintainers": [ + { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + { + "name": "typescript", + "email": "typescript@microsoft.com" + } + ], + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "_npmOperationalInternal": { + "host": "packages-18-east.internal.npmjs.com", + "tmp": "tmp/types-registry-0.1.245.tgz_1493650248528_0.9111127865035087" + }, + "directories": {}, + "contributors": [] + }, + "0.1.246": { + "name": "types-registry", + "version": "0.1.246", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/Microsoft/types-publisher.git" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "MIT", + "_id": "types-registry@0.1.246", + "dist": { + "shasum": "e83b26b441c8ea9931568cd8bf2649cdec131371", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.246.tgz", + "integrity": "sha512-RU89pcdw6Y94fyzg0f4G0NU0RSx3edCVRs/6oBxo+KW2+H8sCv3sdZ4xdg21xZ4RkkaIlf7s8+yLLfQ4bGzbkA==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIFLfpt1sZ5q6Atfc1CROWFeeP7r9hf8i4ugEjFfHsB0tAiEA+8MqULzqoa8LMHhQoOsObjEA+88cyvjSKAHoepW7fS0=" + } + ] + }, + "maintainers": [ + { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + { + "name": "typescript", + "email": "typescript@microsoft.com" + } + ], + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "_npmOperationalInternal": { + "host": "packages-18-east.internal.npmjs.com", + "tmp": "tmp/types-registry-0.1.246.tgz_1493650503297_0.5094491462223232" + }, + "directories": {}, + "contributors": [] + }, + "0.1.247": { + "name": "types-registry", + "version": "0.1.247", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/Microsoft/types-publisher.git" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "MIT", + "_id": "types-registry@0.1.247", + "dist": { + "shasum": "5fe00e6995438ae116cd61cfe0a6cc8f16a259c8", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.247.tgz", + "integrity": "sha512-PLu1gfFNBFSKnb6mEEiEDpOBmCPB8DAWfv+xxfiTJoF6amDy+XdZpHNIvQbp8fjzppBJzeiEm4f5oQQr4zOs3A==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEYCIQDIZ4Yq9WeriEv5gZKE4Wm7Nvh5Pnj6F1TPiCL3MKlyzQIhAJGeYlHry8LrJzUODcirPxWJuYCxlMPM99oM5AI7hmjJ" + } + ] + }, + "maintainers": [ + { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + { + "name": "typescript", + "email": "typescript@microsoft.com" + } + ], + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "_npmOperationalInternal": { + "host": "packages-12-west.internal.npmjs.com", + "tmp": "tmp/types-registry-0.1.247.tgz_1493667513560_0.34572793333791196" + }, + "directories": {}, + "contributors": [] + }, + "0.1.248": { + "name": "types-registry", + "version": "0.1.248", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/Microsoft/types-publisher.git" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "MIT", + "_id": "types-registry@0.1.248", + "dist": { + "shasum": "78ce26182a8dcb5d450b6cbf8eac0bcfaa2b51c6", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.248.tgz", + "integrity": "sha512-m9gJTt7svwLoEw1v9n8AabeO1Asi6xwfyLKj5pYuybHaOj6VLrxRtf+4pRG0EYXVuxfAyoWbB/bKSrvZ/RETxw==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIQDg4WnsF2ZwBm1F9QDfxR+/OaWpVMeFgx5Sw9kkrDGlgQIgQTgyemCf8qNtDbxClZgq3Ak7lfGm+5AHqLk6FRfyLVQ=" + } + ] + }, + "maintainers": [ + { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + { + "name": "typescript", + "email": "typescript@microsoft.com" + } + ], + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "_npmOperationalInternal": { + "host": "packages-18-east.internal.npmjs.com", + "tmp": "tmp/types-registry-0.1.248.tgz_1493667751880_0.15040783653967083" + }, + "directories": {}, + "contributors": [] + }, + "0.1.249": { + "name": "types-registry", + "version": "0.1.249", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/Microsoft/types-publisher.git" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "MIT", + "_id": "types-registry@0.1.249", + "dist": { + "shasum": "5b38d3216ccdc853185964985eb8fd7ce6fb1413", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.249.tgz", + "integrity": "sha512-kpiLXUIRHC1/ex7N6NMKxLRvuLOC+gFejiN637hcFouFMDGt5yfJJSHCZgboPoSKkWLzPpC6T70y1IFkOdCXXA==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIQCB2GYtMLmmm/tWz/hcWDWGkyG/wpNj+q0rSxaG8sD8owIgEjzt+dMvr6ENPeV0yihzYR1m7lX1pWdhGHvclQkAM80=" + } + ] + }, + "maintainers": [ + { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + { + "name": "typescript", + "email": "typescript@microsoft.com" + } + ], + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "_npmOperationalInternal": { + "host": "packages-18-east.internal.npmjs.com", + "tmp": "tmp/types-registry-0.1.249.tgz_1493677427381_0.2631541364826262" + }, + "directories": {}, + "contributors": [] + }, + "0.1.250": { + "name": "types-registry", + "version": "0.1.250", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/Microsoft/types-publisher.git" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "MIT", + "_id": "types-registry@0.1.250", + "dist": { + "shasum": "1bc9013007312523734f10c67c2eb82c6fd052e5", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.250.tgz", + "integrity": "sha512-7Ft8EacCUSIdcwu8axFujfETUtQKhUE2bGkJll93WLsWOLTY2KxMSmlWll7QWG7agnkZNva0uEXgNmtYupHiCg==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIBcSaCfnECeywgfUKQPQLFfRYo39nRdPoiDErLNgnzH8AiEAnFVPiGpE4RfVj8/qxHxeO+r6a19WXRUqTkHCD9BCmnk=" + } + ] + }, + "maintainers": [ + { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + { + "name": "typescript", + "email": "typescript@microsoft.com" + } + ], + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "_npmOperationalInternal": { + "host": "packages-18-east.internal.npmjs.com", + "tmp": "tmp/types-registry-0.1.250.tgz_1493679799132_0.7941736856009811" + }, + "directories": {}, + "contributors": [] + }, + "0.1.251": { + "name": "types-registry", + "version": "0.1.251", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/Microsoft/types-publisher.git" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "MIT", + "_id": "types-registry@0.1.251", + "dist": { + "shasum": "ffb74268878bea0009f43cc0a45f18bd73211167", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.251.tgz", + "integrity": "sha512-eWIBsctfHH+gFfFKwcsP9ZEMDUs0R06/fh1bSeSJYI/YQrBdble0EvCQ36lsjWVCDjDrQPyeFb07ODloHGIKjg==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIQDCromCN2P6l+eYtjmyJYzbWMLLwcrED42uhg7DV21XAQIgEcQL4tntRRavNnEJ8VJ0iEvTcYPwrvSZ6LOAw+RJf04=" + } + ] + }, + "maintainers": [ + { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + { + "name": "typescript", + "email": "typescript@microsoft.com" + } + ], + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "_npmOperationalInternal": { + "host": "packages-12-west.internal.npmjs.com", + "tmp": "tmp/types-registry-0.1.251.tgz_1493681259490_0.4107412463054061" + }, + "directories": {}, + "contributors": [] + }, + "0.1.252": { + "name": "types-registry", + "version": "0.1.252", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/Microsoft/types-publisher.git" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "MIT", + "_id": "types-registry@0.1.252", + "dist": { + "shasum": "adafa2695208aac610e53caec8948944fcf1291d", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.252.tgz", + "integrity": "sha512-eEK24h2ch6Olt2Hg396fM8uZYe0yljBWLNlOgA+aCxSSJKLQnuSnTTnMPuV+cTvhb+sNUnXqM+nGfM2oZRhehQ==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEQCIFNhHnc0OfJ7cxXY46Zy+jZ0glRrhIUnWZ1QXVLDmDP5AiAauChBOG9D8IHq5em3rdSbeRs+XoiZXJ5mgXvHYphA4Q==" + } + ] + }, + "maintainers": [ + { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + { + "name": "typescript", + "email": "typescript@microsoft.com" + } + ], + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "_npmOperationalInternal": { + "host": "packages-12-west.internal.npmjs.com", + "tmp": "tmp/types-registry-0.1.252.tgz_1493683933345_0.22620621672831476" + }, + "directories": {}, + "contributors": [] + }, + "0.1.253": { + "name": "types-registry", + "version": "0.1.253", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/Microsoft/types-publisher.git" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "MIT", + "_id": "types-registry@0.1.253", + "dist": { + "shasum": "5b4629c174d29863163270f63742bd37aa7c3b1e", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.253.tgz", + "integrity": "sha512-LkCGxkCM9Oglp9EXxXcOZd8exzOgQQGWOhXitSnzGIx4b619VdU3ELnZYv4MVQMfycxfvDCs62QMCn1cYMYh3Q==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIQDWlzk+UBE1KyIKBKuGSZ74pxvcunOZX2IS8Mie7Q2AKwIgRZkmdLlYvXKM5fks0JNkjnoyeg71OW1qUlF5s3ZwDmg=" + } + ] + }, + "maintainers": [ + { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + { + "name": "typescript", + "email": "typescript@microsoft.com" + } + ], + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "_npmOperationalInternal": { + "host": "packages-12-west.internal.npmjs.com", + "tmp": "tmp/types-registry-0.1.253.tgz_1493746355661_0.2558626865502447" + }, + "directories": {}, + "contributors": [] + }, + "0.1.254": { + "name": "types-registry", + "version": "0.1.254", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/Microsoft/types-publisher.git" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "MIT", + "_id": "types-registry@0.1.254", + "dist": { + "shasum": "8891f7b887994aa932bee92f55a4d3d68b6d62ac", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.254.tgz", + "integrity": "sha512-K1PZVnJ2hkZm9pZ2igwm/vc3pMTJ8OZ7LYH6olAnZtosJKJJfSas+Y+IpxYN47Ua0H5hZWB8ZNElrxLSLRYxgw==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIQDBx/B5las0d6bTtWsOEdWr3yeTg7Bla6E++G79p2IU3AIgPSlO86PG+A5zl4Slj/IEvOzbwSGByhh39rYfqxMfVKs=" + } + ] + }, + "maintainers": [ + { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + { + "name": "typescript", + "email": "typescript@microsoft.com" + } + ], + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "_npmOperationalInternal": { + "host": "packages-18-east.internal.npmjs.com", + "tmp": "tmp/types-registry-0.1.254.tgz_1493832758836_0.11291090818122029" + }, + "directories": {}, + "contributors": [] + }, + "0.1.255": { + "name": "types-registry", + "version": "0.1.255", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/Microsoft/types-publisher.git" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "MIT", + "_id": "types-registry@0.1.255", + "dist": { + "shasum": "89bdd0b1a32ba91417f8a66c50cc9c8410327ab6", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.255.tgz", + "integrity": "sha512-tRw0RrM0MHbmLUGJSls//YjwvAg8S5gb0CUd0vfIoND+np3J9kbG4ylr2TjmGl4YsZN52DgZiyYOLBPO2ZSvJQ==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEYCIQD5ZpYGD0ThqCCmo0ZbF7jOZV6S4r0M0L3ZFXWeV40IzQIhAK1XKGe7njyOA3Ur9pg6BNf3zUU5wnkidNVDn+1KogKF" + } + ] + }, + "maintainers": [ + { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + { + "name": "typescript", + "email": "typescript@microsoft.com" + } + ], + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "_npmOperationalInternal": { + "host": "packages-12-west.internal.npmjs.com", + "tmp": "tmp/types-registry-0.1.255.tgz_1493834189765_0.3970148975495249" + }, + "directories": {}, + "contributors": [] + }, + "0.1.256": { + "name": "types-registry", + "version": "0.1.256", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/Microsoft/types-publisher.git" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "MIT", + "_id": "types-registry@0.1.256", + "dist": { + "shasum": "b8dfcf1faa8ec46408d6a4bcbe50f831a860fe8f", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.256.tgz", + "integrity": "sha512-ER1vU97Ywb/RnjmV380OGGMNkejV34ppN/05odq0Uz5ftzuxHrR8tZOpB2w68JJlu2xAsDBRIvlVDMRSq+uINQ==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEQCIEyf62DKC/lbADREZ4Ajfe9gUn5dvwQgrGkH2qLWjSy/AiA9u3xVMVfNoO823h83BRylp9oAh9fd5vbtPPSWzWBxkA==" + } + ] + }, + "maintainers": [ + { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + { + "name": "typescript", + "email": "typescript@microsoft.com" + } + ], + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "_npmOperationalInternal": { + "host": "packages-12-west.internal.npmjs.com", + "tmp": "tmp/types-registry-0.1.256.tgz_1493834679580_0.20439842995256186" + }, + "directories": {}, + "contributors": [] + }, + "0.1.257": { + "name": "types-registry", + "version": "0.1.257", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/Microsoft/types-publisher.git" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "MIT", + "_id": "types-registry@0.1.257", + "dist": { + "shasum": "ac6a8049c8c5c41a152d8f5a9d74c71cacb8e629", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.257.tgz", + "integrity": "sha512-kW7X2S8q8XM/Cs8gyqerztzk6ElH2GUamIpjtn9SXmFxoUaoLtwUGqBemmXyJshcR9eu9EJ/OhyZjXju1jClhA==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEYCIQDyVOpAwZUruStgkZ/X94uAgPK88TtTt3JSImEuk3egngIhALZfKrSMfVjuZLG7cHVDT3e5nAkvv7vyQ0WiZbFOeAkH" + } + ] + }, + "maintainers": [ + { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + { + "name": "typescript", + "email": "typescript@microsoft.com" + } + ], + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "_npmOperationalInternal": { + "host": "packages-18-east.internal.npmjs.com", + "tmp": "tmp/types-registry-0.1.257.tgz_1493835214276_0.924356495263055" + }, + "directories": {}, + "contributors": [] + }, + "0.1.258": { + "name": "types-registry", + "version": "0.1.258", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/Microsoft/types-publisher.git" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "MIT", + "_id": "types-registry@0.1.258", + "dist": { + "shasum": "9786257310b2f6890e72944eff80cf5206469128", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.258.tgz", + "integrity": "sha512-JiSeJ6hQijwvpPFiwvTcpo6yDJfepIeEK8xxBppe965RHCx5M7qeBgwk0ubauXztqLX34SAG6w3zMBEBcNXyqw==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEQCIHLwt5lESObPFnMvafNVV2XfzOj948i34YG/bywDGJchAiA4UkTPxhk47dHDqtvtZZJPIbPMzJ33/0OsQBgljgRGhg==" + } + ] + }, + "maintainers": [ + { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + { + "name": "typescript", + "email": "typescript@microsoft.com" + } + ], + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "_npmOperationalInternal": { + "host": "packages-12-west.internal.npmjs.com", + "tmp": "tmp/types-registry-0.1.258.tgz_1493835464698_0.6256665189284831" + }, + "directories": {}, + "contributors": [] + }, + "0.1.259": { + "name": "types-registry", + "version": "0.1.259", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/Microsoft/types-publisher.git" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "MIT", + "_id": "types-registry@0.1.259", + "dist": { + "shasum": "a81be860d1316c43cb5dc50dfbcb36d2504990e9", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.259.tgz", + "integrity": "sha512-B6DhR83x9b32VsYPfLLANz4N1mRyxVGSJZTKuHqNSymrILwxZGPe9+PvypF0SI9wIFj5G3Ky3OnUCKVd8fUxrA==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIQDgu1IseMFnVdjQMDkMlFfHNepDU9T8UNJhkEwj6ggsOwIgc1YK8l6fiw8I/VH58hqCX/QTf+tj7J0mthgpuN+xw8w=" + } + ] + }, + "maintainers": [ + { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + { + "name": "typescript", + "email": "typescript@microsoft.com" + } + ], + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "_npmOperationalInternal": { + "host": "packages-12-west.internal.npmjs.com", + "tmp": "tmp/types-registry-0.1.259.tgz_1493836773787_0.40410459297709167" + }, + "directories": {}, + "contributors": [] + }, + "0.1.260": { + "name": "types-registry", + "version": "0.1.260", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/Microsoft/types-publisher.git" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "MIT", + "_id": "types-registry@0.1.260", + "dist": { + "shasum": "1e7201c33237d5420277b1f7544678cca82e22bb", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.260.tgz", + "integrity": "sha512-/Zv+Igym8U6atfo1IdtYy0FNSM9WrtmqQViXRgHGl7jmyFaeBrA4sfwNaC6bGffQ54sNfeGwHDELSGKSfltKaA==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIHCBgz6yIbaTJnvjmlfoL6PzzjGHpVdWMbr7nz+NL8BUAiEA66GzoP3K5dacBhzvV1Uqkwthq1tWfo67HbtQn+FLwnY=" + } + ] + }, + "maintainers": [ + { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + { + "name": "typescript", + "email": "typescript@microsoft.com" + } + ], + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "_npmOperationalInternal": { + "host": "packages-18-east.internal.npmjs.com", + "tmp": "tmp/types-registry-0.1.260.tgz_1493841420581_0.4552301182411611" + }, + "directories": {}, + "contributors": [] + }, + "0.1.261": { + "name": "types-registry", + "version": "0.1.261", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/Microsoft/types-publisher.git" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "MIT", + "_id": "types-registry@0.1.261", + "dist": { + "shasum": "576f2fca1e08a881cb2b1a72e31a50c5c7ec05b9", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.261.tgz", + "integrity": "sha512-Iegqt5e8/+4jSCQAspsPfEm6z1cQNpNJNrwGMaIoW+ChmjL5BesxolluBTdgmFlzKetATOvBJrmSLHKlbyUj+Q==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIQDt5tUqb1WPk6IJ9FQYT9SGl21/z6BnjjFzjEWGt6u4hwIgZpKsPMkTO8lKqpSVojA+ybMPFgmyQh6Ofa3TNSRP6gE=" + } + ] + }, + "maintainers": [ + { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + { + "name": "typescript", + "email": "typescript@microsoft.com" + } + ], + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "_npmOperationalInternal": { + "host": "packages-12-west.internal.npmjs.com", + "tmp": "tmp/types-registry-0.1.261.tgz_1493917570121_0.7420377912931144" + }, + "directories": {}, + "contributors": [] + }, + "0.1.262": { + "name": "types-registry", + "version": "0.1.262", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/Microsoft/types-publisher.git" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "MIT", + "_id": "types-registry@0.1.262", + "dist": { + "shasum": "461d884a3cec9aae59a993c109b8f59dad25eefd", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.262.tgz", + "integrity": "sha512-3Jev5/Dcw6nNCi/iE3kfr+QNBGj4vlsqiu3zRaIZ9w9FBRFKjtfSPwcDJCqbFSsPQgJ5SyW8R1opSU2xaUuLsg==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEQCIFPFIpZv7UV9OJvvko/kvyuynny9HBi5LMbDvTw+R8dAAiABPKaad6yZghFVEOWuloPX8Gjg1USsf//LV9O56e0Z3Q==" + } + ] + }, + "maintainers": [ + { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + { + "name": "typescript", + "email": "typescript@microsoft.com" + } + ], + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "_npmOperationalInternal": { + "host": "packages-18-east.internal.npmjs.com", + "tmp": "tmp/types-registry-0.1.262.tgz_1493925419257_0.8313572257757187" + }, + "directories": {}, + "contributors": [] + }, + "0.1.263": { + "name": "types-registry", + "version": "0.1.263", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/Microsoft/types-publisher.git" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "MIT", + "_id": "types-registry@0.1.263", + "dist": { + "shasum": "a64696b532871d3d9b2241455262a5b1ec329c62", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.263.tgz", + "integrity": "sha512-NvGClMNkc0jdIUVjyw2lnKfZWQ9NXI9qlUBhTTVRqrWGY7vtamweXRDbfIIuJybz/4PQKglRMJkIHJhOKB9/Ww==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEYCIQDD5DYsPwNy/pkrogR1Lvw9SIqpZv1vCF76cXhe6d8+QQIhAJotm98GPnABjIUhfkuYALooV3JP+cdiXiSneuwQrBMd" + } + ] + }, + "maintainers": [ + { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + { + "name": "typescript", + "email": "typescript@microsoft.com" + } + ], + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "_npmOperationalInternal": { + "host": "packages-18-east.internal.npmjs.com", + "tmp": "tmp/types-registry-0.1.263.tgz_1493943620737_0.6066922030877322" + }, + "directories": {}, + "contributors": [] + }, + "0.1.264": { + "name": "types-registry", + "version": "0.1.264", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/Microsoft/types-publisher.git" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "MIT", + "_id": "types-registry@0.1.264", + "dist": { + "shasum": "2c665410c693103a5cb00abb1fa2368d15337b7c", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.264.tgz", + "integrity": "sha512-4e8g0yTuoO18IttmEK4Rq/Qt5vyG0K3BwaeUx7n+uV9CE1XKjE4BuUTWxNnnD2/pg7p8KV286d+9VG0lueqbEg==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIGSymxvq3K/VoRpiQUq2a3waOAxleEoZ1k5mTPhgT4qbAiEAzt9wJ2mdW76JJkapPvqFTIb6JVgg34qJ1cnT2fw0eF0=" + } + ] + }, + "maintainers": [ + { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + { + "name": "typescript", + "email": "typescript@microsoft.com" + } + ], + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "_npmOperationalInternal": { + "host": "packages-12-west.internal.npmjs.com", + "tmp": "tmp/types-registry-0.1.264.tgz_1493944626181_0.5357315633445978" + }, + "directories": {}, + "contributors": [] + }, + "0.1.265": { + "name": "types-registry", + "version": "0.1.265", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/Microsoft/types-publisher.git" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "MIT", + "_id": "types-registry@0.1.265", + "dist": { + "shasum": "e5643ae348869f00acfbf4cf75816162738a56bf", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.265.tgz", + "integrity": "sha512-Y1nlI4aXeRjL2X7cnosHTr6REMzgid5og3f2Zbad4pBojcmKRM442laPPlVfaVm7v3/kYaXqirUPJGtXD1GR/g==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEQCIAu8dQbdye2UWdRVKQx+bPSUaYJIIu4WWt2qIgQZZBhYAiAFtOu8LxpGrtchVy2/ydAP405xjQzf+yLcMNsLE3lB1A==" + } + ] + }, + "maintainers": [ + { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + { + "name": "typescript", + "email": "typescript@microsoft.com" + } + ], + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "_npmOperationalInternal": { + "host": "packages-12-west.internal.npmjs.com", + "tmp": "tmp/types-registry-0.1.265.tgz_1493947168350_0.284829331561923" + }, + "directories": {}, + "contributors": [] + }, + "0.1.266": { + "name": "types-registry", + "version": "0.1.266", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/Microsoft/types-publisher.git" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "MIT", + "_id": "types-registry@0.1.266", + "dist": { + "shasum": "a13f9d56ef528a379f462fb7373cff1ff465f64e", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.266.tgz", + "integrity": "sha512-MPx1RL/N/FBkRstA1D/0ETIfPhHlIfrnNXwWQFfxVlEgvwEZCX9pTj18q1HndZQ5rO7TM35F/rCt9F82Ik5HHg==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIQCuOguy4NwMWTTqKh+UiW11aQdjK54V7A5yh8HLCRKqzwIgMC+YXZ+tulhp5WNlk+7IW3eNlFnoOuS4/soHes4rvto=" + } + ] + }, + "maintainers": [ + { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + { + "name": "typescript", + "email": "typescript@microsoft.com" + } + ], + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "_npmOperationalInternal": { + "host": "packages-18-east.internal.npmjs.com", + "tmp": "tmp/types-registry-0.1.266.tgz_1493957206673_0.5203482597135007" + }, + "directories": {}, + "contributors": [] + }, + "0.1.267": { + "name": "types-registry", + "version": "0.1.267", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/Microsoft/types-publisher.git" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "MIT", + "_id": "types-registry@0.1.267", + "dist": { + "shasum": "50c495f89fce05c22e03dbd6bb564ade83cea2f3", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.267.tgz", + "integrity": "sha512-JgmGcGde1kxzCktFUM8aHfku0VOt1p6U7KfUdGNwgDdnOWtDDOiHtgHya93TjKXIgz1+S6J6Dx217SSlvXKC/w==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIG7DbbvO9Hu5686Jgsu8K6de39Op/IrpErx1aR0S+2wgAiEA+wVAuOvgIJ2d+Rkczlk71EtAGD8z949yzw90oHPuNxw=" + } + ] + }, + "maintainers": [ + { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + { + "name": "typescript", + "email": "typescript@microsoft.com" + } + ], + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "_npmOperationalInternal": { + "host": "packages-12-west.internal.npmjs.com", + "tmp": "tmp/types-registry-0.1.267.tgz_1494000216942_0.017731610219925642" + }, + "directories": {}, + "contributors": [] + }, + "0.1.268": { + "name": "types-registry", + "version": "0.1.268", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/Microsoft/types-publisher.git" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "MIT", + "_id": "types-registry@0.1.268", + "dist": { + "shasum": "9cc199c5ce4f40152379cc2aa4ac08aa85496781", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.268.tgz", + "integrity": "sha512-VTymnD/bP7fqopyapdejjK6zD+RZZCSscvovdo5Cbwv5Ww/Hi2EGXFhkesTHcUeaHVWahWwKRIFJbr7KZx6Vpw==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEYCIQDKuw+olAQOrZouJ6EQH41XTeEyOHfvL3dxDECD5UBMOQIhAM6lwJFZ0SrteI5RxzWnhrCWmx3G8DfjYmbSPrwAWOEV" + } + ] + }, + "maintainers": [ + { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + { + "name": "typescript", + "email": "typescript@microsoft.com" + } + ], + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "_npmOperationalInternal": { + "host": "packages-18-east.internal.npmjs.com", + "tmp": "tmp/types-registry-0.1.268.tgz_1494026960074_0.6547162723727524" + }, + "directories": {}, + "contributors": [] + }, + "0.1.269": { + "name": "types-registry", + "version": "0.1.269", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/Microsoft/types-publisher.git" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "MIT", + "_id": "types-registry@0.1.269", + "dist": { + "shasum": "c9caf8fdcf124fe6396af48a9ab0cda1df70e6c3", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.269.tgz", + "integrity": "sha512-xqM7I0enDOaqRNTE17TLmpFUa4/2ZG6Ro2t52AAJqU+U2h/LxoWyixQIt7/NwVDqIap9oY7bd76v0bnqZ9dZOw==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEQCIBVxjoIpvBYiLx6uVn9DnoIv2fKTZ5xlUJx6i7hBT9qsAiBSE+7Vi1xIMZtiBRgau51jIma/wQU7TXDX952XrCeW9w==" + } + ] + }, + "maintainers": [ + { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + { + "name": "typescript", + "email": "typescript@microsoft.com" + } + ], + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "_npmOperationalInternal": { + "host": "packages-18-east.internal.npmjs.com", + "tmp": "tmp/types-registry-0.1.269.tgz_1494886938329_0.601621164008975" + }, + "directories": {}, + "contributors": [] + }, + "0.1.270": { + "name": "types-registry", + "version": "0.1.270", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/Microsoft/types-publisher.git" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "MIT", + "_id": "types-registry@0.1.270", + "dist": { + "shasum": "0d121f44d3c09843a33dbb7b4cadf02a10d4893d", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.270.tgz", + "integrity": "sha512-udL6uEYafFTq1KPl30WaYS4u23Ya3B+HIUR/fXurNTj5d2Jx0VOvBvm7Ag96U64Go7ErbPnVvPm8ilJfnEn5JQ==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEQCIHWXwGqiMYWpt8eNmVDZHKNO4q7R3lJrWrD7rt2sH9WAAiAd/Nr5RpiDHOxucrIHHzP5Xr4gNiNoU7CHJ4NHmKL0UQ==" + } + ] + }, + "maintainers": [ + { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + { + "name": "typescript", + "email": "typescript@microsoft.com" + } + ], + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "_npmOperationalInternal": { + "host": "packages-18-east.internal.npmjs.com", + "tmp": "tmp/types-registry-0.1.270.tgz_1494887197244_0.19854340725578368" + }, + "directories": {}, + "contributors": [] + }, + "0.1.271": { + "name": "types-registry", + "version": "0.1.271", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/Microsoft/types-publisher.git" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "MIT", + "_id": "types-registry@0.1.271", + "dist": { + "shasum": "83b914f8cda1a39d2cb268641eaee92797602db1", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.271.tgz", + "integrity": "sha512-mDnGp8PyF8CJHRy5d5gGF/WAnHYL7QUTLPDR5rHtkucPHADqDuMnvryyMdHh+KYfbRNBJJsMa+jcZdMv+SOTXg==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIQDI8bQoEqtTKUIRbh+tDYKVRIYSvQPzJht3NsnqQFht1gIgJbPslhj/bz50q4nqdkG10PfxTaP/xUqbkWVBndht8yg=" + } + ] + }, + "maintainers": [ + { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + { + "name": "typescript", + "email": "typescript@microsoft.com" + } + ], + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "_npmOperationalInternal": { + "host": "packages-18-east.internal.npmjs.com", + "tmp": "tmp/types-registry-0.1.271.tgz_1494967562149_0.48092433088459074" + }, + "directories": {}, + "contributors": [] + }, + "0.1.272": { + "name": "types-registry", + "version": "0.1.272", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/Microsoft/types-publisher.git" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "MIT", + "_id": "types-registry@0.1.272", + "dist": { + "shasum": "40c45740f4c732111db7879a81c67bcaf310a36b", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.272.tgz", + "integrity": "sha512-Rc7Ach39/ENXzJlExZTyNT5Wt3Cj/GnPMhq6bUd4LqUrUonYrvpOipXHrBRfMGmotuTitZqXoh1IV12kwxwc0A==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIHaCdo5N5zRivRoVMcaaC+QOYw3bwSKsyP891AwXZiOIAiEA11FPrKrFzJa8ha17J/WNAiHlHaz+Y8fAQz80pd5IgaY=" + } + ] + }, + "maintainers": [ + { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + { + "name": "typescript", + "email": "typescript@microsoft.com" + } + ], + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "_npmOperationalInternal": { + "host": "packages-12-west.internal.npmjs.com", + "tmp": "tmp/types-registry-0.1.272.tgz_1495144024428_0.2677678333129734" + }, + "directories": {}, + "contributors": [] + }, + "0.1.273": { + "name": "types-registry", + "version": "0.1.273", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/Microsoft/types-publisher.git" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "MIT", + "_id": "types-registry@0.1.273", + "dist": { + "shasum": "2ce83b2948e1f7e617ae3ee138f6b5b5a8d9cc44", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.273.tgz", + "integrity": "sha512-OFATcqwJYuW2y8cqLKW31E8oc18BcoIfcZ0f3FBiXxXvl3JqbYPwA2Oox6wJ81zWsfq/HhfEEmJFxxQLO/Aa7g==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEQCIAZz/DhH9pccIoOidNxx9LGk4Md3EnGMcu9Ffx3/Dp+SAiBDjc1EsBnhA3P+/+OUdQ6S7bMaiSb7mhdmirifELmJTA==" + } + ] + }, + "maintainers": [ + { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + { + "name": "typescript", + "email": "typescript@microsoft.com" + } + ], + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "_npmOperationalInternal": { + "host": "packages-18-east.internal.npmjs.com", + "tmp": "tmp/types-registry-0.1.273.tgz_1495150152472_0.7542544910684228" + }, + "directories": {}, + "contributors": [] + }, + "0.1.274": { + "name": "types-registry", + "version": "0.1.274", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/Microsoft/types-publisher.git" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "MIT", + "_id": "types-registry@0.1.274", + "dist": { + "shasum": "ba6e553c51365443303afa558f9a4f625534a45f", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.274.tgz", + "integrity": "sha512-Y9+sFERfEPEijlOIqnhdg1HqNoYRSjvFgwdMUevqcxmzTXAlgXKvrKYUDs08VSYrPsQFztJCgxd6I2vdY4YzFQ==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEYCIQDa6ou9LQP/R9igxLrwllbBf+8PY99zRRw9UixZfTP26gIhALvkb24Bjdpj63xvt4oKa1yHa4ptLV1uVNXSCiVJn/YV" + } + ] + }, + "maintainers": [ + { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + { + "name": "typescript", + "email": "typescript@microsoft.com" + } + ], + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "_npmOperationalInternal": { + "host": "packages-18-east.internal.npmjs.com", + "tmp": "tmp/types-registry-0.1.274.tgz_1495150603828_0.28979950421489775" + }, + "directories": {}, + "contributors": [] + }, + "0.1.275": { + "name": "types-registry", + "version": "0.1.275", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/Microsoft/types-publisher.git" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "MIT", + "_id": "types-registry@0.1.275", + "dist": { + "shasum": "97e5f794f71d531ca1349248db593ad08d3c9586", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.275.tgz", + "integrity": "sha512-SQ338PFaDev4+wpKrbNSSFmr4tHhaeyau5cTwDYon2IvMlEXX2o22QL7AHRRu2op9G8Y1uLppV1pnGplpueRTA==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIAunUioutSeyieFI99SbxF7RG4UCCMdicojsa2Cmgs+2AiEAikF8vwbzoZpHUj8jwNGYnV9IefehRCC0vxaFrf21cmU=" + } + ] + }, + "maintainers": [ + { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + { + "name": "typescript", + "email": "typescript@microsoft.com" + } + ], + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "_npmOperationalInternal": { + "host": "packages-18-east.internal.npmjs.com", + "tmp": "tmp/types-registry-0.1.275.tgz_1495151289529_0.21304746344685555" + }, + "directories": {}, + "contributors": [] + }, + "0.1.276": { + "name": "types-registry", + "version": "0.1.276", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/Microsoft/types-publisher.git" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "MIT", + "_id": "types-registry@0.1.276", + "dist": { + "shasum": "4927d71b02eb71f91841a7c2185ebe32d81a0370", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.276.tgz", + "integrity": "sha512-wX1k/9pAoK+K3xfBhWom+v1VZiWbA9XdShHW+Tv2rS6tHLlE9fh1PuiaV0fPKHYet+x/YnkTlzyTRkzL7qjs9A==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEQCIBq87LNHtuEBVNthvVUsOiwxPdOsBvFtmZfqJ4BjAzZ6AiBBjxm4EGJrar6cl0EF5D7f8v3WOcHzD0DEyWzeXt1c2w==" + } + ] + }, + "maintainers": [ + { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + { + "name": "typescript", + "email": "typescript@microsoft.com" + } + ], + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "_npmOperationalInternal": { + "host": "packages-12-west.internal.npmjs.com", + "tmp": "tmp/types-registry-0.1.276.tgz_1495152451577_0.8948723585344851" + }, + "directories": {}, + "contributors": [] + }, + "0.1.277": { + "name": "types-registry", + "version": "0.1.277", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/Microsoft/types-publisher.git" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "MIT", + "_id": "types-registry@0.1.277", + "dist": { + "shasum": "d099562add2ea2888513eba4144c187e89825272", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.277.tgz", + "integrity": "sha512-m3TQ54YDMSC3XsiDp/U64mQ/yA+CLRJKPVTOlMdJQ5TdzfD0Y0D3lKpMJueaIm0mUg2Tm4R28/711cM0+lobHg==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIQDrjFnHoy8ghjZmA/b3Hfi7VT0739UV+Pu6P34ob4jvWwIgHndel00W6GYDoJbbF5y5M30BEguSu6x8plabgb4TYM8=" + } + ] + }, + "maintainers": [ + { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + { + "name": "typescript", + "email": "typescript@microsoft.com" + } + ], + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/types-registry-0.1.277.tgz_1495224270820_0.3222827569115907" + }, + "directories": {}, + "contributors": [] + }, + "0.1.278": { + "name": "types-registry", + "version": "0.1.278", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/Microsoft/types-publisher.git" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "MIT", + "_id": "types-registry@0.1.278", + "dist": { + "shasum": "0e5d7cec35996f746e50a54a3a52465b762589de", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.278.tgz", + "integrity": "sha512-L8uWajDy6zJZXWzET5nGKz6R+eKEHuO5wkBGwYIGT2QkLYtVHOp/kXjMQVNhbndwRMKLnEesdVASSsE7wjbbug==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEQCIFaoNxaAXDULZRS/GOU3hVEEUaaVSBVgR+tkJK7HmzliAiBuC0f8UBYT5suX8p5fBSnahG0ZAoTpNAy6rYny0hGOOw==" + } + ] + }, + "maintainers": [ + { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + { + "name": "typescript", + "email": "typescript@microsoft.com" + } + ], + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/types-registry-0.1.278.tgz_1495227110460_0.5170747474767268" + }, + "directories": {}, + "contributors": [] + }, + "0.1.279": { + "name": "types-registry", + "version": "0.1.279", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/Microsoft/types-publisher.git" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "MIT", + "_id": "types-registry@0.1.279", + "dist": { + "shasum": "462d9f0ec0bbd70bc1b0f7cf19282368edccc9d3", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.279.tgz", + "integrity": "sha512-wi+Z/fIqcqlLYubTSg33ASTuWoD62gjgJUeD8cvcHQGt33tBo1b2aGN8SimnwO5HHlZS4g/gRhthgflg+7DUFw==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIBrsklNOD4mznSB9u5QhK3k0jJP830pakmKmnczKJRgdAiEAgXMcnqBBV7aNVk8x++QnTpnoW4jtcVx8eajjKqIDLCA=" + } + ] + }, + "maintainers": [ + { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + { + "name": "typescript", + "email": "typescript@microsoft.com" + } + ], + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/types-registry-0.1.279.tgz_1495228589190_0.2219937660265714" + }, + "directories": {}, + "contributors": [] + }, + "0.1.280": { + "name": "types-registry", + "version": "0.1.280", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/Microsoft/types-publisher.git" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "MIT", + "_id": "types-registry@0.1.280", + "dist": { + "shasum": "be7c0ceec26ca6c9adbeee6a65baad74901b9bd0", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.280.tgz", + "integrity": "sha512-bMiIjxMdoVxZBvV6EW1S/cGesaJQ4BV5b0c1BLTZ5W9R8IuEbvo+UTXn/q3uVWT71gp7OBkDzf70XjVxrARnQg==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEQCIDybQXH9nn2a/qIzZ7vbiQLkKpeUEmhH9fP0M/dnVdcUAiAF+6ae7xAwViahVNCURvycCOFzQeMl/pheAWVudzFhnA==" + } + ] + }, + "maintainers": [ + { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + { + "name": "typescript", + "email": "typescript@microsoft.com" + } + ], + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/types-registry-0.1.280.tgz_1495237398697_0.7686692662537098" + }, + "directories": {}, + "contributors": [] + }, + "0.1.281": { + "name": "types-registry", + "version": "0.1.281", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/Microsoft/types-publisher.git" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "MIT", + "_id": "types-registry@0.1.281", + "dist": { + "shasum": "3572c2051291fc56f9f533cdbc4b511b9903a90e", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.281.tgz", + "integrity": "sha512-QDQBlOEV4OendsV/3RUmLlWcO2gX/l9VODfdJ+XlIiKi4ekdFtMEAaj/NM/gvXaQtw1+rJlP3fnSP+txEhxagQ==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIQDvBPTnxnl+++vqr+CHJSKHWtJUPcbfqIA99nHkc05lwwIgdkvDe8mLH49GafAL+nkYC96mBHbaSfrbTvPLJ9rMjdw=" + } + ] + }, + "maintainers": [ + { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + { + "name": "typescript", + "email": "typescript@microsoft.com" + } + ], + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/types-registry-0.1.281.tgz_1495473655559_0.8339784904383123" + }, + "directories": {}, + "contributors": [] + }, + "0.1.282": { + "name": "types-registry", + "version": "0.1.282", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/Microsoft/types-publisher.git" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "MIT", + "_id": "types-registry@0.1.282", + "dist": { + "shasum": "6efe30ad0dad25cfda9cbed8a548e9a84589a501", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.282.tgz", + "integrity": "sha512-+JiEPnnNt1hW0QDeYzo5DDa6b7DNPCtSF3oDRm6vH/t8/KdgbLjV822QAeQab0uNwaiCxUegGpiWYJk8BUl6LA==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEQCIC0L8uBPUnJGMUMBxbo6f3SryASi38qxXovN2NIYUPF2AiBIPuEuw0SlG8i3OZBbAqBSAEklos3jcOxPkUiW+TeXYg==" + } + ] + }, + "maintainers": [ + { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + { + "name": "typescript", + "email": "typescript@microsoft.com" + } + ], + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/types-registry-0.1.282.tgz_1495485734389_0.6041409629397094" + }, + "directories": {}, + "contributors": [] + }, + "0.1.283": { + "name": "types-registry", + "version": "0.1.283", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/Microsoft/types-publisher.git" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "MIT", + "_id": "types-registry@0.1.283", + "dist": { + "shasum": "d91fa421765ca8f3406b33a66e998bb385f77f05", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.283.tgz", + "integrity": "sha512-R8Ol+zpJJB3Ni+8fOxjbllY7MCCJSkhThurXtgFSY5nN7d3lZBFkzYFduu3gcIkSECeOIfVa+ZtHYl4XqRIC1A==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEQCID4TA7lGdc+zYQZE+2H7tsecmYgr+X9q9HyOG+O6RSXOAiBySWjrmJJ+VSvmjbBrt8akC+fwfpHMI0CD9hGmTAOcYw==" + } + ] + }, + "maintainers": [ + { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + { + "name": "typescript", + "email": "typescript@microsoft.com" + } + ], + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/types-registry-0.1.283.tgz_1495486435149_0.38612267351709306" + }, + "directories": {}, + "contributors": [] + }, + "0.1.284": { + "name": "types-registry", + "version": "0.1.284", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/Microsoft/types-publisher.git" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "MIT", + "_id": "types-registry@0.1.284", + "dist": { + "shasum": "a70f68ab06d6598c0914c7827521463e78beb9ae", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.284.tgz", + "integrity": "sha512-DX9oOiAYuXkQ28FTqTgUlkFce8D2MfNHGM8T869gsJiq/R15AUuoIZwaGJWlpYgVgsts17TCMbWlffQ2RNN/ZA==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIEc5HcYfCndLv9ZrGF9SMp33dgIIkH5SlaKZKsiqfh2wAiEA06WD9l2TaWKgL7OSXYbZOW0fSIdJByE/7w9mPtolpLA=" + } + ] + }, + "maintainers": [ + { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + { + "name": "typescript", + "email": "typescript@microsoft.com" + } + ], + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/types-registry-0.1.284.tgz_1495490329442_0.7630576686933637" + }, + "directories": {}, + "contributors": [] + }, + "0.1.285": { + "name": "types-registry", + "version": "0.1.285", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/Microsoft/types-publisher.git" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "MIT", + "_id": "types-registry@0.1.285", + "dist": { + "shasum": "5b8a164d903693e1062e6b13afcaf818453b81de", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.285.tgz", + "integrity": "sha512-QLc8+wRqH5vQDdGWk8I3HLtERE2W5UuUpESsATLsSXSlUplB/v6732kAABZ3r4GFDV6Aaa+YMS2zU1gS+BNBxA==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIFSmyoFnvZh7VGiVDTJJidKVJOoS+lrdgKQ/bcphdqLWAiEA/x1wi6GyXyLtXLu0hOAJp6dVMQIQpmzIkRP4o4I9O9o=" + } + ] + }, + "maintainers": [ + { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + { + "name": "typescript", + "email": "typescript@microsoft.com" + } + ], + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/types-registry-0.1.285.tgz_1495847806132_0.8735610344447196" + }, + "directories": {}, + "contributors": [] + }, + "0.1.286": { + "name": "types-registry", + "version": "0.1.286", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/Microsoft/types-publisher.git" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "MIT", + "_id": "types-registry@0.1.286", + "dist": { + "integrity": "sha512-OFgpjhlLjpS7Ky0USYP98QUpAzXu1sdup53RQES4TGYgIeIjo156rFBcoR4TmkRX6YIshEs1Jc3KoseT8OYF3w==", + "shasum": "f9920260a205004ccf787e22e82a27ec38e580ab", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.286.tgz", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEYCIQCcxDN/tNRdhoaIUxfn77wvN+CnGuXnos1a81XZSF0CCwIhAPVMfUARkr6+Vm1GTS0ox55+/mr4jF+l8R9SYDjUHbKP" + } + ] + }, + "maintainers": [ + { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + { + "name": "typescript", + "email": "typescript@microsoft.com" + } + ], + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/types-registry-0.1.286.tgz_1496273462678_0.04016287554986775" + }, + "directories": {}, + "contributors": [] + }, + "0.1.287": { + "name": "types-registry", + "version": "0.1.287", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/Microsoft/types-publisher.git" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "MIT", + "_id": "types-registry@0.1.287", + "dist": { + "integrity": "sha512-4K8kuXOflx/C50iCMazeKobqEnqZFjQhyOWB0mdI1Yi4ZrHrTgFpZc3j+CO3dqJYGVuz50IRm7JyuD1jnksakA==", + "shasum": "f9bdbb20f4ff47b229470f041b22f9977ec0ff9a", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.287.tgz", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIGiVsRIGmyllE2cgNhD36QDKHeDQiZ3O8JHPdL7ToyKHAiEA68MzuLBnSYrTGF7GfJYsUwV1YipFOFrLT2PSHlD0qfs=" + } + ] + }, + "maintainers": [ + { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + { + "name": "typescript", + "email": "typescript@microsoft.com" + } + ], + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/types-registry-0.1.287.tgz_1496286322124_0.8251450371462852" + }, + "directories": {}, + "contributors": [] + }, + "0.1.288": { + "name": "types-registry", + "version": "0.1.288", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/Microsoft/types-publisher.git" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "MIT", + "_id": "types-registry@0.1.288", + "dist": { + "integrity": "sha512-5cf6von8dmSsEi7vvm8lqOArqiosfTGk7KPSobzRBawYPaizcvNpfurxMoGukYd7bjAY0QEVOk3LugStof97RQ==", + "shasum": "55e2fefb3e23f062d49f16eae7c73458a2bb4b6f", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.288.tgz", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEYCIQDCN9TzCF2aJXqw5FnBaF8mEbwDxus5NSPxmgfdQMoDEAIhALme/mcjfuIIrERHWYGugIE1PByBRBJQB1qsYNl6TqoK" + } + ] + }, + "maintainers": [ + { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + { + "name": "typescript", + "email": "typescript@microsoft.com" + } + ], + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/types-registry-0.1.288.tgz_1496287149501_0.3176159583963454" + }, + "directories": {}, + "contributors": [] + }, + "0.1.289": { + "name": "types-registry", + "version": "0.1.289", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/Microsoft/types-publisher.git" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "MIT", + "_id": "types-registry@0.1.289", + "dist": { + "integrity": "sha512-XiCnjQtGIUf1q5bEapOyd2h49ziV5aBjsoRdZgrqulCvZSk66tvauvMtkh2D/5uKkCueZKeuhbyuu6cCkQ53tg==", + "shasum": "e6d460d630869f45a19087b521c82fda39820a1a", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.289.tgz", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCICXHbw0/MP8gIxrOoYbTONkJWEUdrKIY1czFTJZTIOc9AiEAl0pFrqm2kFXANgb/g688v/nLqPDv0NSP2BhGJNddsIo=" + } + ] + }, + "maintainers": [ + { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + { + "name": "typescript", + "email": "typescript@microsoft.com" + } + ], + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/types-registry-0.1.289.tgz_1496293273746_0.14044278510846198" + }, + "directories": {}, + "contributors": [] + }, + "0.1.290": { + "name": "types-registry", + "version": "0.1.290", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/Microsoft/types-publisher.git" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "MIT", + "_id": "types-registry@0.1.290", + "dist": { + "integrity": "sha512-3BSeeBUDKBkTCdF4gcDXWihIst9te/bGJtEGnNRIQi8DHZK7rHK/oEwNPsrgTq/VvVXTKrnf8chbBLbVRQbkYA==", + "shasum": "bd0eb02438f5ce202c845b69b6f691bf8607de42", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.290.tgz", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEYCIQCd4jYRdtypqvIPYjrrgqtM6f5r4ADpgqhhsc0t78J8NwIhAIEbXKKmg+Bbi5Dhqbo0EbS0bWzCRR1waroj8RSKPwXa" + } + ] + }, + "maintainers": [ + { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + { + "name": "typescript", + "email": "typescript@microsoft.com" + } + ], + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/types-registry-0.1.290.tgz_1496294360265_0.6393742540385574" + }, + "directories": {}, + "contributors": [] + }, + "0.1.291": { + "name": "types-registry", + "version": "0.1.291", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/Microsoft/types-publisher.git" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "MIT", + "_id": "types-registry@0.1.291", + "dist": { + "integrity": "sha512-60HbGNJ2qLFw9AeR6J2Rq0k3VxhBMqlcQ349tvHh0vUZ8gQSALoatq/mDCEtyY72jbE95q5TqPsrhv/5ZDu3UQ==", + "shasum": "2294eac015eca1f68f63b42f755a428fbe542c95", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.291.tgz", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIAfkEED+RyLDeWtS95HuBwDM2AYpZbNMXSb0b8TQztMQAiEAhorDpprjyyOhSlFz9/afWy+BUz9dAVTUD3ktZcyEcec=" + } + ] + }, + "maintainers": [ + { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + { + "name": "typescript", + "email": "typescript@microsoft.com" + } + ], + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/types-registry-0.1.291.tgz_1496294606430_0.7851886018179357" + }, + "directories": {}, + "contributors": [] + }, + "0.1.292": { + "name": "types-registry", + "version": "0.1.292", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/Microsoft/types-publisher.git" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "MIT", + "_id": "types-registry@0.1.292", + "dist": { + "integrity": "sha512-4vcpUHVl1z2vPl5h5KET4DQWVUUUVS/vi6fr+vnDCuswX2C/j3v4SgsyI+IdaCYQ+EXwD0pYrKwMC2UvNVqB/Q==", + "shasum": "25f8ded167d5ae06c68c616f805dc5028c8457d1", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.292.tgz", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEQCIE4UQ/QQhEMnQLPck4f9cd/7I3uLx41yQX0t8izw0JL9AiAq+zPiaQLuAPlEh7Rc1OWe0tCDOuum2+6AObcLlLUmkA==" + } + ] + }, + "maintainers": [ + { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + { + "name": "typescript", + "email": "typescript@microsoft.com" + } + ], + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/types-registry-0.1.292.tgz_1496295278102_0.6208381103351712" + }, + "directories": {}, + "contributors": [] + }, + "0.1.293": { + "name": "types-registry", + "version": "0.1.293", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/Microsoft/types-publisher.git" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "MIT", + "_id": "types-registry@0.1.293", + "dist": { + "integrity": "sha512-Hv/2LK0gU4c6nBQf92xYHpgvU48c1Ow5g0PauFa03lBd/RWTn5BtbK6tEX8ygm41or27DS1czoCu9aGiz+kN8g==", + "shasum": "67973938869b2122e6ad85f03050dd2b536a4999", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.293.tgz", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIQCuMKOKbRwKtZ5atjBv+J1Syv0VCJhDzNVUTpxmm5CxTgIgTEaAwsy3+zlVC84ElORyyHUze4HVCDKUsoPgee8aCPo=" + } + ] + }, + "maintainers": [ + { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + { + "name": "typescript", + "email": "typescript@microsoft.com" + } + ], + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/types-registry-0.1.293.tgz_1496295591662_0.45493424381129444" + }, + "directories": {}, + "contributors": [] + }, + "0.1.294": { + "name": "types-registry", + "version": "0.1.294", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/Microsoft/types-publisher.git" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "MIT", + "_id": "types-registry@0.1.294", + "dist": { + "integrity": "sha512-fZny1GGb4zrM0N240K7tkBroLT37w0elDVanSmG6y34Rl795UQaZhOJR8F/MbyErymNCqAZ/2MabWVc5eXZvBg==", + "shasum": "d0e0ba7b3ce7e7a888b0c2722f8f95f15386073a", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.294.tgz", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEYCIQC9gZDx//wGh4QwTZDAFXen7qrONMF94EC2FL/IJa7vJAIhAMwQQqdpAUE4iq7Or7//oWtKnJgWMLy8+xLpiCAo/Dyb" + } + ] + }, + "maintainers": [ + { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + { + "name": "typescript", + "email": "typescript@microsoft.com" + } + ], + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/types-registry-0.1.294.tgz_1496295979192_0.15748949721455574" + }, + "directories": {}, + "contributors": [] + }, + "0.1.295": { + "name": "types-registry", + "version": "0.1.295", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/Microsoft/types-publisher.git" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "MIT", + "_id": "types-registry@0.1.295", + "dist": { + "integrity": "sha512-1t2mzX1UDczNpZsx6PlQsv6CeP8SnUzejY3fjDDP/KLuJhrBJsKUNCqi5KZTLC9rTc6E5x0kZ1wCmQk7xc3lWA==", + "shasum": "1a142603bfacaca502785e32d3d9022552473425", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.295.tgz", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEYCIQCH4YVvAq/HPdMKHov7mb6ZeqIG263iZaf6ny2MQc6aBgIhAPF+Yap/qpE6l6o/IULfArPPBkyimjSJzzw/bb4Qk88x" + } + ] + }, + "maintainers": [ + { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + { + "name": "typescript", + "email": "typescript@microsoft.com" + } + ], + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/types-registry-0.1.295.tgz_1496296287411_0.12487222696654499" + }, + "directories": {}, + "contributors": [] + }, + "0.1.296": { + "name": "types-registry", + "version": "0.1.296", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/Microsoft/types-publisher.git" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "MIT", + "_id": "types-registry@0.1.296", + "dist": { + "integrity": "sha512-YpqQCqfWR3bxNRTZ1gcrHiosC7iR84TVYZ4zAnaoixTiaWUFuSIYKbO3hfHMHDLPGVH+4bcBXYm370fjSit0vQ==", + "shasum": "18b66e30cb5eced688f286beb97a23316e7169e6", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.296.tgz", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEQCIDDNLPQWTmjLu3It8ViMbKUSccUX38xQg2WpLMq3wyjzAiANWOH5El/G2qMIfYzAo+ErJWWNnc9eFu47m+XeAcak0Q==" + } + ] + }, + "maintainers": [ + { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + { + "name": "typescript", + "email": "typescript@microsoft.com" + } + ], + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/types-registry-0.1.296.tgz_1496296850497_0.38197632413357496" + }, + "directories": {}, + "contributors": [] + }, + "0.1.297": { + "name": "types-registry", + "version": "0.1.297", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/Microsoft/types-publisher.git" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "MIT", + "_id": "types-registry@0.1.297", + "dist": { + "integrity": "sha512-foOxuvgvbl0SBMUdb9Hd2xd+QOhGG/CRYUzzIU2ISKY2ixlMTiUzo6h+Mw02WUE9MGvRy8DZUgAtpA3Yden9Iw==", + "shasum": "0924223f7cc05e13f3e8cf743a4cbda78a553519", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.297.tgz", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEQCIDcyDkIa9jsIIqa+fAxE51uEqaxwtbTiYMKujLuO9tQDAiBcnBWKxWtGG98fEUU+3DuOE8tLKQoDLQ85m2SZgq2RkA==" + } + ] + }, + "maintainers": [ + { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + { + "name": "typescript", + "email": "typescript@microsoft.com" + } + ], + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/types-registry-0.1.297.tgz_1496413427214_0.06973645417019725" + }, + "directories": {}, + "contributors": [] + }, + "0.1.298": { + "name": "types-registry", + "version": "0.1.298", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/Microsoft/types-publisher.git" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "MIT", + "_id": "types-registry@0.1.298", + "dist": { + "integrity": "sha512-YrhdbQ9oTqilbwh8bex3WAoEF63onCjrxhzHoQtJiEuMS3ypvCaDyR6zocGu0HbKgkiNQwQOqAt3x55Plgcrag==", + "shasum": "37c8a605d1f824915a8871e16d931cabdeb17bed", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.298.tgz", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIQCkoczf8Wgh01jDaRuI49SJm0b4D2qhB9KJ4EwxATbt5wIgQrBHkhZf77+wlFOcdn2VtssV0ZoFwot4wtxnWFHBV5s=" + } + ] + }, + "maintainers": [ + { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + { + "name": "typescript", + "email": "typescript@microsoft.com" + } + ], + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/types-registry-0.1.298.tgz_1506028769210_0.9759275787509978" + }, + "directories": {}, + "contributors": [] + }, + "0.1.299": { + "name": "types-registry", + "version": "0.1.299", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/Microsoft/types-publisher.git" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "MIT", + "_id": "types-registry@0.1.299", + "dist": { + "integrity": "sha512-O+Kz5gPBPtnKMp7qIOfdMCHBP60XiBZCP3Laj/MBK/uMy287mcdSqfZZkwO0QUUp95gmBu1/1Vi0vSoEIlv8jw==", + "shasum": "a4c6e36da0f3dc3a223f4c09ec1e8f7967c07014", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.299.tgz", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIQDm0LbR8TLjIK9TdcHOJg58AY8cIjMbj7Dh6d5qqtTYbAIgSfOvrRj6+5Jx+GPD8X7EsFBjkQQsZ7UKHtupGU3loYg=" + } + ] + }, + "maintainers": [ + { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + { + "name": "typescript", + "email": "typescript@microsoft.com" + } + ], + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/types-registry-0.1.299.tgz_1506103211506_0.9933295915834606" + }, + "directories": {}, + "contributors": [] + }, + "0.1.300": { + "name": "types-registry", + "version": "0.1.300", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/Microsoft/types-publisher.git" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "MIT", + "_id": "types-registry@0.1.300", + "dist": { + "integrity": "sha512-FTSBpZkRYBfzyK2POM+271rkQRBqzh1urCZT4vXNVKSX8dyeAv6caZTGAYhM6xBn99SSoNhYEzH/ZgPiimLYgw==", + "shasum": "908c8f162852467cabc8c13f910b1d02a4ad3f66", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.300.tgz", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIB7efyBPXQNhzy7z1lWMotqn/JLuwLPCkH2OQJzVxbu4AiEAkmyC35oTs0xqQhRhu1iOoDOrFsWbf5fjlMwmwFxxssY=" + } + ] + }, + "maintainers": [ + { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + { + "name": "typescript", + "email": "typescript@microsoft.com" + } + ], + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/types-registry-0.1.300.tgz_1506354169181_0.388381210854277" + }, + "directories": {}, + "contributors": [] + }, + "0.1.301": { + "name": "types-registry", + "version": "0.1.301", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/Microsoft/types-publisher.git" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "MIT", + "_id": "types-registry@0.1.301", + "dist": { + "integrity": "sha512-krc3NgW/3al+9CoBB3UOmg1mlNv0rziO+ty54bux925gVFqsdd2hsLMV/u3sxDHuMj0Yo+yczG8pzlVxmmozUQ==", + "shasum": "35df336cec0d958e62814b03daccfcc0c21b4fb8", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.301.tgz", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIFmUt7UP8OBzl40B2Q3hW2Sith8b+kMswycl51VwVTzPAiEAhQzQXJAnuD1GbxyQqGyZQWAlCsLeft+EuXzPZhCD9zU=" + } + ] + }, + "maintainers": [ + { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + { + "name": "typescript", + "email": "typescript@microsoft.com" + } + ], + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/types-registry-0.1.301.tgz_1506450098954_0.10048871207982302" + }, + "directories": {}, + "contributors": [] + }, + "0.1.302": { + "name": "types-registry", + "version": "0.1.302", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/Microsoft/types-publisher.git" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "MIT", + "_id": "types-registry@0.1.302", + "dist": { + "integrity": "sha512-Ijr/mWyPgkpdJLk8+MhO4SIzKGkhD3aJ4L0BGRVicvMAoeoN8MsQd2XY2Z1kvTjVtrks/nIS0gBMjsDb/lDFiw==", + "shasum": "f9872f1e119e8099e95592e45d87a68fb3455285", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.302.tgz", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEYCIQCEIeSKli6IV4S7GD2BGEwJD6cddT0UrK1Uynjg1QYTwgIhAO8V9Mjm72WU8d0xr+TqgKJNb7tO46/JAs0Tuzz7/INu" + } + ] + }, + "maintainers": [ + { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + { + "name": "typescript", + "email": "typescript@microsoft.com" + } + ], + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/types-registry-0.1.302.tgz_1507218575889_0.48351813363842666" + }, + "directories": {}, + "contributors": [] + }, + "0.1.303": { + "name": "types-registry", + "version": "0.1.303", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/Microsoft/types-publisher.git" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "MIT", + "_id": "types-registry@0.1.303", + "dist": { + "integrity": "sha512-XEgIskMHFqOw9c/0yz3qu5jmnAWniCYPUUD7a36VWG3pUwWw+pHBH0jE4WXC7Szk+ChbBcNS+s351y40ZU8DiA==", + "shasum": "3a1d65e80064c38b5cf07a2c972fc52132cc3bdf", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.303.tgz", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEYCIQDr0VjdRUBnHTSZKbwzucpYwACqB0x+THnMyTPzBIMgYQIhAKRzATwBDaPhPrm9x2cxmeBM7L2LbT0QKOOAQ2wXF0O3" + } + ] + }, + "maintainers": [ + { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + { + "name": "typescript", + "email": "typescript@microsoft.com" + } + ], + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/types-registry-0.1.303.tgz_1507224936718_0.04908960382454097" + }, + "directories": {}, + "contributors": [] + }, + "0.1.304": { + "name": "types-registry", + "version": "0.1.304", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/Microsoft/types-publisher.git" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "MIT", + "typesPublisherContentHash": "3e33573d8a3a7addbbd54183dab82607f8c26ed75f6cc245a296909d73a15784", + "_id": "types-registry@0.1.304", + "dist": { + "integrity": "sha512-V0BLN3F6FEqVo2kyIEN17P0spbu/LtVd7B6IIr6SYEejRxo2+pKlrU+mtgSywk+zowDcJIRK88F7EAO1x8qZCQ==", + "shasum": "52b5aad6eb55a4b1fb5d33c167aa2070b343e7fe", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.304.tgz", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIQDG1lqCScwpMQmbxCnbeq4tQj4n3n13aCAn4gfLwPlo4wIgG4LTbrokeZr4phxbofISYI2+qSoW/sh4DUBSun46y8w=" + } + ] + }, + "maintainers": [ + { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + { + "name": "typescript", + "email": "typescript@microsoft.com" + } + ], + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/types-registry-0.1.304.tgz_1507233934546_0.7118843903299421" + }, + "directories": {}, + "contributors": [] + }, + "0.1.305": { + "name": "types-registry", + "version": "0.1.305", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/Microsoft/types-publisher.git" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "MIT", + "typesPublisherContentHash": "fb1735445adf95fc52b1aa70111964410e6d690459223c1d15b143ae4520ab7b", + "_id": "types-registry@0.1.305", + "dist": { + "integrity": "sha512-QWwB3LvUfDk5Zpap9pbyXuPptrZXw8RQWm+AQhF4fwEj2rpPdO9gMwEihhKyzhNZ6SnlYFGUSodMvAwpFRaBrQ==", + "shasum": "0ae2dd83911e403a4959c4cd5a3d8938b9837ff9", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.305.tgz", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIQCN3SLInZWJ1C5rLL7Ijv4i+UKfOlDWGAwHmCtjcXbmIwIgKOGm/FikSrEf2eLjkBHN4zvmH4TapfHrRX6Z7s1h0f0=" + } + ] + }, + "maintainers": [ + { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + { + "name": "typescript", + "email": "typescript@microsoft.com" + } + ], + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/types-registry-0.1.305.tgz_1508254267625_0.10802935669198632" + }, + "directories": {}, + "contributors": [] + }, + "0.1.306": { + "name": "types-registry", + "version": "0.1.306", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/Microsoft/types-publisher.git" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "MIT", + "typesPublisherContentHash": "b7069f849f8cb3165524d6110520a1263e8fc85043369a6d38198910a7aad214", + "_id": "types-registry@0.1.306", + "dist": { + "integrity": "sha512-NVxEJ5XclXYxBWGpDZfa7JNo93Hb5BaDaa2CNSZ3LgY0F3GQlf7x9CHeUzZqxGArr+Y14qtn4opNlZTo/0NTEA==", + "shasum": "9312d6d99ee568a3ab1943c2304dc9648ecaf3aa", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.306.tgz", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEQCIEsOb1fRn+fpwXqg8X1t7CmE4vpapzWYxuMLhQvQCobTAiAP01fD+AKypbkQ/ERgSDeGpDBqFli9tTkAfQDcrt7fUw==" + } + ] + }, + "maintainers": [ + { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + { + "name": "typescript", + "email": "typescript@microsoft.com" + } + ], + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/types-registry-0.1.306.tgz_1508439745257_0.9665834433399141" + }, + "directories": {}, + "contributors": [] + }, + "0.1.307": { + "name": "types-registry", + "version": "0.1.307", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/Microsoft/types-publisher.git" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "MIT", + "typesPublisherContentHash": "3b8ee904000fcfb28e639399bb408c09b5fa20c2bf4ccb79de4d36138b851cd6", + "_id": "types-registry@0.1.307", + "dist": { + "integrity": "sha512-ho7IHIPRETn6/xbtrgN5wCB6Awwt/Q+mLqv/THENVnD43nzF15d6zqZ25rcFSFlee/VFnJSMwRJzlUdJaYwdZg==", + "shasum": "995f9267a5d9432a984216bb740ca8e09cc4950b", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.307.tgz", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIFIPBlxqg3w8vdloB86rx5VAjmlxf1MJeKk1ZayaUdf1AiEAkYIh24ewLpFCHzKLZkFRd5VPG11K8xrvWP+hvIBBUn4=" + } + ] + }, + "maintainers": [ + { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + { + "name": "typescript", + "email": "typescript@microsoft.com" + } + ], + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/types-registry-0.1.307.tgz_1508510284578_0.004542915150523186" + }, + "directories": {}, + "contributors": [] + }, + "0.1.308": { + "name": "types-registry", + "version": "0.1.308", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/Microsoft/types-publisher.git" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "MIT", + "typesPublisherContentHash": "9c41adf0343ca6fe67fcceee147bd9bc17876a320cd58a520e2c93b6abab76d4", + "_id": "types-registry@0.1.308", + "dist": { + "integrity": "sha512-IKtS6edDOIckEg3X4ZlRp3zx+LrphCrerKovK7snbCaZxOnSsq3bOQB64NQ06tfxx7naU1J33GjsSXnX97rYVA==", + "shasum": "ffe8badd7eaf4dbeff6571235422fed569a54c79", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.308.tgz", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEQCIE3qbXMaoamoMjxKdJbpoyzDtULNplQ5igpXWtJZHjIMAiA1E0Ci5hV54JkcmqXHp0zTk7VVqQLjdCGhqZY4fGXs5A==" + } + ] + }, + "maintainers": [ + { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + { + "name": "typescript", + "email": "typescript@microsoft.com" + } + ], + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/types-registry-0.1.308.tgz_1510680443823_0.9383879320230335" + }, + "directories": {}, + "contributors": [] + }, + "0.1.309": { + "name": "types-registry", + "version": "0.1.309", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/Microsoft/types-publisher.git" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "MIT", + "typesPublisherContentHash": "8dd2a899c5f0c2c07883d4d7796f92e06d1bd865efc455159d8f54db2c8c725c", + "_id": "types-registry@0.1.309", + "dist": { + "integrity": "sha512-jKrot0ARzt+47d6OdZ92ol8bOxiDCRikl2TzQpxcPplYoxnjfu075Rj49Qmx9vijGjxjtsDwV+4suDu7A5xEDA==", + "shasum": "35a3b06da4565340482f8fb81e605696910efe05", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.309.tgz", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIHhm0wnzkJmeFokEsj6kFI1S0zcTnXF+T3A9wxCwLPSqAiEArGrK7DXyMw70OnzgiaxLSLuWD/2UDDOjkvgtcOcQi54=" + } + ] + }, + "maintainers": [ + { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + { + "name": "typescript", + "email": "typescript@microsoft.com" + } + ], + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/types-registry-0.1.309.tgz_1510681504601_0.1531330414582044" + }, + "directories": {}, + "contributors": [] + }, + "0.1.310": { + "name": "types-registry", + "version": "0.1.310", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/Microsoft/types-publisher.git" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "MIT", + "typesPublisherContentHash": "309aa7380ef18f7a148db1759bc13a4cfee9bb4aa6e81c4139ee00bbebeb90c2", + "_id": "types-registry@0.1.310", + "dist": { + "integrity": "sha512-SvrtAwXU0xWacy87TLhI1SJfGJTtMgzGUPha+YzaP0qSaGWPPv85KiO36jtytZ3IdM2Fnuda+DKHJjJOvsqZqw==", + "shasum": "3f93ffd18f001cec87861be575e9d85091fea7fc", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.310.tgz", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEQCICAKGeN/TxnWMexH7dhpgWC6bOEIyrEJNlU2mC1wDPoHAiAsjIO/ZnfnK+2cRO+qg2KShv3uaZ+bdWqvSnbEErHaZg==" + } + ] + }, + "maintainers": [ + { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + { + "name": "typescript", + "email": "typescript@microsoft.com" + } + ], + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/types-registry-0.1.310.tgz_1512775438683_0.7283512181602418" + }, + "directories": {}, + "contributors": [] + }, + "0.1.311": { + "name": "types-registry", + "version": "0.1.311", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/Microsoft/types-publisher.git" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "MIT", + "typesPublisherContentHash": "07c2d0c92c6769fb136c76211f5ef90f4ae4837551918949a9bbe3fc7509c4f6", + "_id": "types-registry@0.1.311", + "dist": { + "integrity": "sha512-zQMn4ugK+nYcPtU05w+kuVBXAxj1JqhFWAu+t3g8G5hKXGjHNRE4cWusOm1k5DdmIspGJrUS3sXe5j7t2JgJFg==", + "shasum": "78bfba6119a865267ce2a0a383b8247eaf3da70f", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.311.tgz", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEQCIDKe9TEuF6j2uEHB/CzN2fzefuZasF1fbXhwrveD2YWGAiAPmiIeZjeu6qeyrtfcAFJztPXv8s2axInQ6s8F5NX0pQ==" + } + ] + }, + "maintainers": [ + { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + { + "name": "typescript", + "email": "typescript@microsoft.com" + } + ], + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/types-registry-0.1.311.tgz_1513193271045_0.7888138846028596" + }, + "directories": {}, + "contributors": [] + }, + "0.1.312": { + "name": "types-registry", + "version": "0.1.312", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/Microsoft/types-publisher.git" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "MIT", + "typesPublisherContentHash": "1656c703553f3557fdcf98e282ef97e682c5149834d67bd68872aecea4964844", + "_id": "types-registry@0.1.312", + "dist": { + "integrity": "sha512-xMzbvTRqW3mX39gfQmrJod24i0NbqXioKFzF5tInipiQtMzON2mJMYmQiiEJE1B0xaCP7juEA+qRLX3BazCx6A==", + "shasum": "8c6b99789bf9b889d811cc4e24cfc1c1a972cef1", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.312.tgz", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEYCIQDaukjhOn9Z0liHJ/SX7x9X0+A67Gjc349FJCsQtOwaSQIhAJLqiXITQgAxAU90tADGV8ygxdCmbyWaGx+HFx9T2EZn" + } + ] + }, + "maintainers": [ + { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + { + "name": "typescript", + "email": "typescript@microsoft.com" + } + ], + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/types-registry-0.1.312.tgz_1513205184138_0.6628103191033006" + }, + "directories": {}, + "contributors": [] + }, + "0.1.313": { + "name": "types-registry", + "version": "0.1.313", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/Microsoft/types-publisher.git" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "MIT", + "typesPublisherContentHash": "26eb1a8aff80fa0c6211ae7350a5e3873a53e75dd14fbbbc8cde8a42a87d09df", + "_id": "types-registry@0.1.313", + "dist": { + "integrity": "sha512-l5AbE7iz1r1CTaltQjqsJPEAWSkVmdikdX0MvkUa45tyGYbujb3NXmPeKJFL+lbabM0f/RC1gYVupg2hezshJA==", + "shasum": "b3af5ccd80d5d8e647625e878abd743fd839b314", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.313.tgz", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIQCYkkji5j26Y3sfAVuk4vyC6HeUWN0KzdEcgyNyvDQYUAIgEtlBEfmISmGfJmUh4H4f++/Q5EMTrukmi/P7TcXwjCg=" + } + ] + }, + "maintainers": [ + { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + { + "name": "typescript", + "email": "typescript@microsoft.com" + } + ], + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/types-registry-0.1.313.tgz_1513272322925_0.20424372842535377" + }, + "directories": {}, + "contributors": [] + }, + "0.1.314": { + "name": "types-registry", + "version": "0.1.314", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/Microsoft/types-publisher.git" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "MIT", + "typesPublisherContentHash": "10b886e0744688701d26197d1433b150e590eb29fc7e5830d10072c633f41c5a", + "_id": "types-registry@0.1.314", + "dist": { + "integrity": "sha512-z0X80yxc4dQtLIAknvkjFNpPjONqwCz+cT4YtMUGIHItsEys5/Ircq7Fh9PCCYdFZHV2CA+31e4H3Qnpi6Pc7A==", + "shasum": "4acb48834a63911469951acebdf78b04eb3e9ee0", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.314.tgz", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEYCIQDGgwdob5jfxs9CDmYbl4K4iZroYCJsVxWgP8Jb5FGBewIhAIKu9OeGbXivhc28MaS4u0U1nc1GgcD+OXZmXNO3WE1/" + } + ] + }, + "maintainers": [ + { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + { + "name": "typescript", + "email": "typescript@microsoft.com" + } + ], + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/types-registry-0.1.314.tgz_1513284520492_0.8192161598708481" + }, + "directories": {}, + "contributors": [] + }, + "0.1.315": { + "name": "types-registry", + "version": "0.1.315", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/Microsoft/types-publisher.git" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "MIT", + "typesPublisherContentHash": "4f4803a74d01cc8d5366b70bd5f07ab6784f3ef4c4e6af7e7499e61eca7237f6", + "_id": "types-registry@0.1.315", + "dist": { + "integrity": "sha512-IVBUzTOYFszgOP7NeGRxfICbwuZMKXIF97LpmvZAeuCyM2cGodoL94YH2GZTMvxIPfDcTh7p+/z/gJiAr/7Sog==", + "shasum": "fc6c7569f1fcad2cb2ec9bca2549fbf8ce56dcdc", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.315.tgz", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIGvFT0OSkuhyh99YjOoPSg6cpzhUZ5OYq35oF271mlWqAiEA5QWq8UaC+InLsogKqOmu11qteGJiBN0HqIaEDIJbbko=" + } + ] + }, + "maintainers": [ + { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + { + "name": "typescript", + "email": "typescript@microsoft.com" + } + ], + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/types-registry-0.1.315.tgz_1513379363384_0.47672752058133483" + }, + "directories": {}, + "contributors": [] + }, + "0.1.316": { + "name": "types-registry", + "version": "0.1.316", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/Microsoft/types-publisher.git" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "MIT", + "typesPublisherContentHash": "2eeeaec786f31e0296fc523c531a97a15ec9450288a9edf1c89a2acea228a444", + "_id": "types-registry@0.1.316", + "dist": { + "integrity": "sha512-UihkYrKxtLVvkwy07D30XT7W9zrKeoHo8LbUGMIjehlcn0C3RT7KL8/mWyC7lyEPgaCm+EYIpWeQVsnt40TzPA==", + "shasum": "037ae04af560ee2740a4013d946931d826daa8c3", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.316.tgz", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEYCIQC2ec35fRksje4hKmijuaJtvfur4nvlB/bl8iPVxA1xjgIhAJTswEwzoBDikdq23LGJ9A9jYoZY4wd9o5yIA+LB5Yhl" + } + ] + }, + "maintainers": [ + { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + { + "name": "typescript", + "email": "typescript@microsoft.com" + } + ], + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/types-registry-0.1.316.tgz_1514428269020_0.7640221458859742" + }, + "directories": {}, + "contributors": [] + }, + "0.1.317": { + "name": "types-registry", + "version": "0.1.317", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/Microsoft/types-publisher.git" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "MIT", + "typesPublisherContentHash": "2d9a5287b6d4b53e6f70fed09581100dfb143f94e780a1321e073672f4b7bd56", + "_id": "types-registry@0.1.317", + "dist": { + "integrity": "sha512-wZTw38ISr8AKPu9CmoXpEV9qxJPY5y4SSAFJUXVrTMCGWbucTggI+76FYlLwAkO0M/jUZ6iKLKSROvO8FQrELQ==", + "shasum": "2489ed10116c3fb5fa14fab0fdadda6af4e117e6", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.317.tgz", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIQCsqFjhJITAUOV32txMsCSNSnDWEdkxvptYqGdoT1tYGwIgMHrjgD7hl6/axgevg+0q5PutDF1qcOfzRCgtQpA6EZs=" + } + ] + }, + "maintainers": [ + { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + { + "name": "typescript", + "email": "typescript@microsoft.com" + } + ], + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/types-registry-0.1.317.tgz_1514932805570_0.77610974595882" + }, + "directories": {}, + "contributors": [] + }, + "0.1.318": { + "name": "types-registry", + "version": "0.1.318", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/Microsoft/types-publisher.git" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "MIT", + "typesPublisherContentHash": "7d5c8b025e0ec0e570be8329980781c4ddd2958eb8b848dd6c98f0a8cc9281c8", + "_id": "types-registry@0.1.318", + "dist": { + "integrity": "sha512-1w5LwRJEx3R9s7h3kbT4FStNGQf6Q7JUfLQk+kcn1P5A4C7lWqiZNZ+b72y/xQf6VV8KBLYPzd1wy6Zw1FmiPQ==", + "shasum": "b75c8b102b244348de21bf9b53279c5b6ee70999", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.318.tgz", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCICb08XhvgleMsTwcCnbJS4zxhYqwcd7auMtkrybSBlyIAiEAsC4Lxbm100PxOgh8f400VmBDBStobtWcCnAQ5HSw1MA=" + } + ] + }, + "maintainers": [ + { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + { + "name": "typescript", + "email": "typescript@microsoft.com" + } + ], + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/types-registry-0.1.318.tgz_1515013590988_0.2079935979563743" + }, + "directories": {}, + "contributors": [] + }, + "0.1.319": { + "name": "types-registry", + "version": "0.1.319", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/Microsoft/types-publisher.git" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "MIT", + "typesPublisherContentHash": "1533a68322b6dc6d6e192d1775c284f762fe2dfc68c1a453590a7b5191b7b26e", + "_id": "types-registry@0.1.319", + "dist": { + "integrity": "sha512-Mv+b10k8+V3OkOsB9iFFl89tLRquDWs3aYPtbBBBCKliHjNf9VD/LTwv9d1vtKlsVRGbyhYeUWuxXs6xD6QdBg==", + "shasum": "c525be5eff69349b667cd17e60f86246a7f5318d", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.319.tgz", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCICv3lWlZvkXlES3eM8M7HRt7f09rfbP83NsejjjOfr+IAiEAwwLiGJe04T705FSkavTWS5Nc5i4CIn66RkDSmvUQMmU=" + } + ] + }, + "maintainers": [ + { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + { + "name": "typescript", + "email": "typescript@microsoft.com" + } + ], + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/types-registry-0.1.319.tgz_1515173162641_0.7743338588625193" + }, + "directories": {}, + "contributors": [] + }, + "0.1.320": { + "name": "types-registry", + "version": "0.1.320", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/Microsoft/types-publisher.git" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "MIT", + "typesPublisherContentHash": "7b9fbc51ca3f53e6de3bbc03d8390ca647f845f812ec315cf76a909ae30105ae", + "_id": "types-registry@0.1.320", + "dist": { + "integrity": "sha512-sDstJmrgdyrVYsxPm5xiBwunuzWbL7jOevzJ3y/dnsu9Hoste1n5INAiow28zQjSO0mqfZq7j/XhfedFTSpwTA==", + "shasum": "b7a39c357048512b87b49e31abeba27b4812b628", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.320.tgz", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIA957lR7S0daG2JkRYSy6xZyfd8TepJrzyEZ6NCh5ONUAiEA56xrZlc9CWCBQJsG4S1JQkl0yAczyZ2X+r4ngn+VnEI=" + } + ] + }, + "maintainers": [ + { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + { + "name": "typescript", + "email": "typescript@microsoft.com" + } + ], + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/types-registry-0.1.320.tgz_1515174828322_0.4788201944902539" + }, + "directories": {}, + "contributors": [] + }, + "0.1.321": { + "name": "types-registry", + "version": "0.1.321", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/Microsoft/types-publisher.git" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "MIT", + "typesPublisherContentHash": "78154660f20c4abea89aec68a3c8141b8e5f5c3a8e6c10184a01bde5efbc2c10", + "_id": "types-registry@0.1.321", + "dist": { + "integrity": "sha512-dPad9Fzok7Nl9ZJRQJirbDFEqIDQ0rGUCSxJyG96elN3PATdoXOvZ4wKv45oYnAfFg7PB5Qe42YhjO0oZfU7QA==", + "shasum": "29fcf1fbc74667bdef4414cf73bfa5e3cbf2cade", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.321.tgz", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCICCn5+anDxB5yzOKCdXHTDXX+hJY07VIPd2RiDPytZh2AiEAlflwOoVjI3DL5tuxiQTF4XNh/MS4AIRXk5V2a98h4vI=" + } + ] + }, + "maintainers": [ + { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + { + "name": "typescript", + "email": "typescript@microsoft.com" + } + ], + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/types-registry-0.1.321.tgz_1515180076280_0.2189045469276607" + }, + "directories": {}, + "contributors": [] + }, + "0.1.322": { + "name": "types-registry", + "version": "0.1.322", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/Microsoft/types-publisher.git" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "MIT", + "typesPublisherContentHash": "e5747c22ac1ee666bde3505120cce0562094bb3175ed72e37db3ad8397119163", + "_id": "types-registry@0.1.322", + "dist": { + "integrity": "sha512-sgW2bqHU/6cZGwcWyzEMN8/EuNrrgx/baXLbDtaXb02N/2qGGqXof6uACLNJghRdHvHux7uUIkfm/ILuf/B/hw==", + "shasum": "cec9ccb00b3f4b509c656369eb93f446ada2b739", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.322.tgz", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEYCIQCiof7igl4efpBoIKzX4ttW2bIr7S+4hmZV5y0DvUQKdgIhAMNwFIZmyrGVNN+CsKUXkNqtm+v28SXFrO4vVv3YuVdH" + } + ] + }, + "maintainers": [ + { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + { + "name": "typescript", + "email": "typescript@microsoft.com" + } + ], + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/types-registry-0.1.322.tgz_1515180946506_0.8770986059680581" + }, + "directories": {}, + "contributors": [] + }, + "0.1.323": { + "name": "types-registry", + "version": "0.1.323", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/Microsoft/types-publisher.git" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "MIT", + "typesPublisherContentHash": "3389ab01a9047b3ad0778ff22e62f1de5d7e52dd47f40f4d51d9ea383363c90b", + "_id": "types-registry@0.1.323", + "dist": { + "integrity": "sha512-uaa8cgwG3b8DL1O7EJIrfUt2nuqKhgllqq1ll5UtlLXH4aUphA+zC6+JIM1aUfoV2ayJQ16wlUvrp1S9WkcbDA==", + "shasum": "847959a039229cb28819ad833999384249044d0e", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.323.tgz", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEYCIQCUJsAv4Rn2ZvpXpgtdfHAADA7tmQly8Z4fMKBYNQVLLwIhAMono2E4jl9EDuXRPSdPGDptnSK3xzbfHI15yDaBHfPJ" + } + ] + }, + "maintainers": [ + { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + { + "name": "typescript", + "email": "typescript@microsoft.com" + } + ], + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/types-registry-0.1.323.tgz_1515196343482_0.1848198256921023" + }, + "directories": {}, + "contributors": [] + }, + "0.1.324": { + "name": "types-registry", + "version": "0.1.324", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/Microsoft/types-publisher.git" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "MIT", + "typesPublisherContentHash": "37b139e00d764e88a713a99f553efc926133ce4b6ff1221da67e80d1abab6f69", + "_id": "types-registry@0.1.324", + "dist": { + "integrity": "sha512-TiiTmzrfGWni4mMNv3mXDZmmz3Sea5C6qYdncSBOebkFy7p3cNjlWXwamxgDqpCNR2vYnUZA7a/L+Z3aAE+SFA==", + "shasum": "1ec98b1430ff3b6d94f999c1bec20d5bec9fabe4", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.324.tgz", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEYCIQDjIwl3ItIJIudRYRiTm+FGg1GEPLoHopH3bnT3qKbvvAIhAKCXLpN+rYVTUsF7N+U1twLnfchRPT7217PSj9EaHZ97" + } + ] + }, + "maintainers": [ + { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + { + "name": "typescript", + "email": "typescript@microsoft.com" + } + ], + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/types-registry-0.1.324.tgz_1515310536009_0.22251922823488712" + }, + "directories": {}, + "contributors": [] + }, + "0.1.325": { + "name": "types-registry", + "version": "0.1.325", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/Microsoft/types-publisher.git" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "MIT", + "typesPublisherContentHash": "dbebf3da35229bbef5be2a242729404950c5b93baa581ae6a7c6264d1420f5ea", + "_id": "types-registry@0.1.325", + "dist": { + "integrity": "sha512-OtZDE1iHlR6Xv71qfbwM38V/RjCiYskLKhn7XT3x1Ish/hp6ePXqbDaPH6ZwR9zmcrCY2IpCO3YFe0SsQsyrUg==", + "shasum": "128ea50165e893b136eac38eb1ab417fce6d10da", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.325.tgz", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIQDMvCx4Y/J9aGHMb/wFwtJKEwCJrfJKkqYMWOwnqqmeCAIgSK6OFYRl2rwj2BmYZS8pkSVtxdsChnnfp9t0FRIhaKM=" + } + ] + }, + "maintainers": [ + { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + { + "name": "typescript", + "email": "typescript@microsoft.com" + } + ], + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/types-registry-0.1.325.tgz_1515313406364_0.01575160911306739" + }, + "directories": {}, + "contributors": [] + }, + "0.1.326": { + "name": "types-registry", + "version": "0.1.326", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/Microsoft/types-publisher.git" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "MIT", + "typesPublisherContentHash": "189f63b0d688bd26fe1b595805c258f80ab626539723d3acd75f99a2c5a947ce", + "_id": "types-registry@0.1.326", + "dist": { + "integrity": "sha512-DoU4mVOasfJCtY6Ns4tIaZKERY4Va/9x5gmdAnXlsxConmzspj5lCxUm4qydPhoQEaSHEd841hby/ileJ4atjQ==", + "shasum": "d4f151050326b1738e347a8ae241f0b7c6b8fec5", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.326.tgz", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIANaK6NA2+NDUVxQmEyizAOex4VDpOSP5ZbY0Rb5s7CJAiEAqfsKA/GdCbl+MZF96bGXyL7zenM2QRFiSQgfLdK9v2M=" + } + ] + }, + "maintainers": [ + { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + { + "name": "typescript", + "email": "typescript@microsoft.com" + } + ], + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/types-registry-0.1.326.tgz_1515363568251_0.8301441217772663" + }, + "directories": {}, + "contributors": [] + }, + "0.1.327": { + "name": "types-registry", + "version": "0.1.327", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/Microsoft/types-publisher.git" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "MIT", + "typesPublisherContentHash": "ce4f90beb100dc379658c917393c240d42f9b10754c0b206f349e21cc6e5806a", + "_id": "types-registry@0.1.327", + "dist": { + "integrity": "sha512-wHC1pDVlJWESdB+t02mukEoI+tI9mQO+WjcTWkOW9V3aY3XNpaU1P+g9f/qCXqhOoKHGb7FxnegrXSU+X4tEmw==", + "shasum": "b6b68e3149c47db20167c0940b75784ad0f2f771", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.327.tgz", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEQCIGqaRnSM59iy2vSRwHvsFQbQGrI/dTaVIn2K+w/ZoEV4AiACtQz47YhFlMFJdfWbnuF6ACdggC1u53qnhlblRlYoxQ==" + } + ] + }, + "maintainers": [ + { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + { + "name": "typescript", + "email": "typescript@microsoft.com" + } + ], + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/types-registry-0.1.327.tgz_1515436281405_0.15679839765653014" + }, + "directories": {}, + "contributors": [] + }, + "0.1.328": { + "name": "types-registry", + "version": "0.1.328", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/Microsoft/types-publisher.git" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "MIT", + "typesPublisherContentHash": "76b3ee95c5168f4b0660077c6bdee5eab4900b64e854ff09b3993a7b0a608c87", + "_id": "types-registry@0.1.328", + "dist": { + "integrity": "sha512-9tg75Rkanm0tS8QADJhVpzOZcib9Y5wdCPKDHIkh1UZ1JxN9qKwP31KHXYc29mt+AIX+mq1SXxg9W+Y6VyTwPQ==", + "shasum": "00eeef1ec25ee55c824bc8d140369cb67ad36e9a", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.328.tgz", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEYCIQCv4VEALshgeVMg8Tsz7fWPVeGSqfF1Bijc1sE9Ba22iAIhALo00l9cdWKWJdEE2rzKFk1IPjLsqUkBiw46GaYNOiwy" + } + ] + }, + "maintainers": [ + { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + { + "name": "typescript", + "email": "typescript@microsoft.com" + } + ], + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/types-registry-0.1.328.tgz_1515437672252_0.730270474916324" + }, + "directories": {}, + "contributors": [] + }, + "0.1.329": { + "name": "types-registry", + "version": "0.1.329", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/Microsoft/types-publisher.git" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "MIT", + "typesPublisherContentHash": "9dd217ed027ab066a9ff5dc1f7564431ac1fea5848e3c5cf83878d88ab9c476c", + "_id": "types-registry@0.1.329", + "dist": { + "integrity": "sha512-kZcfwdL4c9JcWITW40yahYIqITprSPmEVl306ErCuf5ZcRqixai5x1Z3wP6OP7+F/WAv0AmbzWNnJ+bu5E4mTg==", + "shasum": "29a70f90c9e3cdd38df32b21dab664ddb4bb4fd8", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.329.tgz", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIQCc6ShgFnRss62ym7PJGDO+Ax0gWaQGb2u9vY2lgABWWwIgQfXzz935La5Wb32vvooLRV/Ueh+ndm6kNkSA1kliqTg=" + } + ] + }, + "maintainers": [ + { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + { + "name": "typescript", + "email": "typescript@microsoft.com" + } + ], + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/types-registry-0.1.329.tgz_1515451181073_0.7366650507319719" + }, + "directories": {}, + "contributors": [] + }, + "0.1.330": { + "name": "types-registry", + "version": "0.1.330", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/Microsoft/types-publisher.git" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "MIT", + "typesPublisherContentHash": "4cbce79114c6aebcf3ca8e21da403c026176fdd759bc13d46cc0a4ae449ca51f", + "_id": "types-registry@0.1.330", + "dist": { + "integrity": "sha512-FLqyx+C4MSBh4mN8/AklGw5kf2blEx2OVuHSXBqLXgQg+pkIzZLILGhS8mwGee/BpnZCRB7nHwbyLhfrDxtVqQ==", + "shasum": "ca5224515426c4497eee8c6299203f7948732dab", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.330.tgz", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIA4eymR7anOLhEqoVenlGJurV/+8PQnqVLzoNSoYLtReAiEA71DxImzwsecjZ+gWwl4Oc3IOGF5xiVgIA1dJaBoeqm0=" + } + ] + }, + "maintainers": [ + { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + { + "name": "typescript", + "email": "typescript@microsoft.com" + } + ], + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/types-registry-0.1.330.tgz_1515454851095_0.023145974380895495" + }, + "directories": {}, + "contributors": [] + }, + "0.1.331": { + "name": "types-registry", + "version": "0.1.331", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/Microsoft/types-publisher.git" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "MIT", + "typesPublisherContentHash": "aed9e6c3aef8e09ef61355ade27c29e1b53791d30d6c822532b312de5c0ac169", + "_id": "types-registry@0.1.331", + "dist": { + "integrity": "sha512-DH0EnPHR07O/Lj452x5UEThtxpXtvPOvCpLDxRm8FTD2iaDY+ZLHtEK8E/uBhDSZgR49c+qKrsomf9Pj2lg61w==", + "shasum": "01614ec8ee222d91a27be789d9e75c7c205025e5", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.331.tgz", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEQCIEzUDsx79ybGCBO+La1xJpvgS3PBOogCHSAQa0xhcEKgAiBGJjW1Bu1MRbexHp3hbzvKxUbLb8CopWAEvj5TYHFABg==" + } + ] + }, + "maintainers": [ + { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + { + "name": "typescript", + "email": "typescript@microsoft.com" + } + ], + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/types-registry-0.1.331.tgz_1516320263575_0.9272312603425235" + }, + "directories": {}, + "contributors": [] + }, + "0.1.332": { + "name": "types-registry", + "version": "0.1.332", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/Microsoft/types-publisher.git" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "MIT", + "typesPublisherContentHash": "2fffda6f8fce4bc6916bc0d71324babe7e20c4f8cdd102d3594d8c53c8496d60", + "_id": "types-registry@0.1.332", + "dist": { + "integrity": "sha512-8RyFgSF6M6t6pQaXWPx1kTX+ymkWymuHigyD3HqnEA/msOZ1ECi8tdJy9fbdf0vG0Z3Uo8MwGochNM3vpeYvMA==", + "shasum": "c01759c1f0c8a27124167ca7b3b475d5e7f134ba", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.332.tgz", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIQD/F2+HrURCYanF89U6j9nmxRPhQs4S/Gx8Za+zKWavpgIgBrBL1JjYxvsS8eZYluO9EIoN6qgoNRMYKGEnbczWoGw=" + } + ] + }, + "maintainers": [ + { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + { + "name": "typescript", + "email": "typescript@microsoft.com" + } + ], + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/types-registry-0.1.332.tgz_1516738417765_0.7453116616234183" + }, + "directories": {}, + "contributors": [] + }, + "0.1.333": { + "name": "types-registry", + "version": "0.1.333", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/Microsoft/types-publisher.git" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "MIT", + "typesPublisherContentHash": "08dcf484d6b20689ae87586855c184599b53118906e5758a108bab5e828ab338", + "_id": "types-registry@0.1.333", + "dist": { + "integrity": "sha512-TSaf5+gke1FxgNBhHxwsDM4ABY+Yb0ipU0PU+thapVbmcEz9ZmkmdspcnXbr99yYvA4Ywr9/BxdqOX+LIdRQBg==", + "shasum": "63c353064bfbdbf2218a023f6d6cfe4ea66ba983", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.333.tgz", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEYCIQDceACM/0ygtArWqGlOb4WbTrAWEs3l2tvB/3c4XrhN2wIhAKVhuXat151S6fcKujTfLCl4RxK3Wg6c1IVa1D2IiPyv" + } + ] + }, + "maintainers": [ + { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + { + "name": "typescript", + "email": "typescript@microsoft.com" + } + ], + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/types-registry-0.1.333.tgz_1517511660480_0.020001821219921112" + }, + "directories": {}, + "contributors": [] + }, + "0.1.334": { + "name": "types-registry", + "version": "0.1.334", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/Microsoft/types-publisher.git" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "MIT", + "typesPublisherContentHash": "920cf7b47b614517c09f92ce777844854fb33b52d164248855236afb98c684ed", + "_id": "types-registry@0.1.334", + "dist": { + "integrity": "sha512-5PT++2egE+iGgozhYHSMgB3wcahtW3Q/JaYS0wuRTU/4ISstKQxft7CuNF06kgXiQosjmB3btfVNt8H3KwgImA==", + "shasum": "cafc8476a29c4b770b583b3ddc93d8ac957b2d00", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.334.tgz", + "fileCount": 3, + "unpackedSize": 203382, + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEQCIAKxOg5JjXrEQNA1qqBYMMInfcQqyedY2Cipe7+2mFjCAiA0bkopI2TBLGgjVlZTnV+I0GoXTDNB4r7pwZ+K6M7sKA==" + } + ] + }, + "maintainers": [ + { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + { + "name": "typescript", + "email": "typescript@microsoft.com" + } + ], + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/types-registry_0.1.334_1518122510634_0.43233069825560055" + }, + "_hasShrinkwrap": false, + "contributors": [] + }, + "0.1.335": { + "name": "types-registry", + "version": "0.1.335", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/Microsoft/types-publisher.git" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "MIT", + "typesPublisherContentHash": "1752f4c99f0fa5dfae1aa1e2ee0186cfa1a64322b73e6744a38f5c446a9cbc8a", + "_id": "types-registry@0.1.335", + "dist": { + "integrity": "sha512-U/vObfaZorb5woo5MeVzQPA746EuvA10d9aApCHxdoGq2GhVd8cPr6fh86ct1EKJn5RV2+VAb4Ih4Cy6ToIXvQ==", + "shasum": "fd28eeaac6baa827d039959c8921a8f1d3557027", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.335.tgz", + "fileCount": 3, + "unpackedSize": 202923, + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIBytGkQ1j3ZJpx0zEVfXrz/pUppf2pCGOoLYHW7TiU8YAiEAhYM6/N0RrqSM/ujvJyX6gGv73Nki6dj4EqMYNkbYM7Q=" + } + ] + }, + "maintainers": [ + { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + { + "name": "typescript", + "email": "typescript@microsoft.com" + } + ], + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/types-registry_0.1.335_1518218998923_0.43247787600312604" + }, + "_hasShrinkwrap": false, + "contributors": [] + }, + "0.1.336": { + "name": "types-registry", + "version": "0.1.336", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/Microsoft/types-publisher.git" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "MIT", + "typesPublisherContentHash": "7703cd521586c5d60cad1305011cc29d7a8a93cc2a9be212a38835dc06fd5fcf", + "_id": "types-registry@0.1.336", + "dist": { + "integrity": "sha512-mZBTOg3DaDlj7fqxK0YNlaJmWku49AWoEGMzZce/L1Q4yh/35WAPeD5S/VUpOjOfNGWclYvAGz+ppxOxYuFgJw==", + "shasum": "59cbebf8e81fc633e39ec58663fdfbbd3cf33899", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.336.tgz", + "fileCount": 3, + "unpackedSize": 216303, + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEQCIAmXE9M+7+g46mKFAm/rQRTZIpFvaMFePMdaGxxldYAcAiBakvB+16IRCSoQvD+tEqujMnJ+JnhOBJD/RkKF+1WYvw==" + } + ] + }, + "maintainers": [ + { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + { + "name": "typescript", + "email": "typescript@microsoft.com" + } + ], + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/types-registry_0.1.336_1518472949836_0.9746926170798558" + }, + "_hasShrinkwrap": false, + "contributors": [] + }, + "0.1.337": { + "name": "types-registry", + "version": "0.1.337", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/Microsoft/types-publisher.git" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "MIT", + "typesPublisherContentHash": "69ae2094def713089323c85725f3cde63cffa74ebbaa4b9deb52f0f032919945", + "_id": "types-registry@0.1.337", + "dist": { + "integrity": "sha512-ChhXl1jV734LYq62Vr15N+ard2pwGvcVfuEpbtjk5sKX0CJx8IALg4Y9YkSkLXCqLLrV7xHpbGKXCq14y7LYXg==", + "shasum": "b703f34c31a5ac9164daeca6d035a0c859114771", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.337.tgz", + "fileCount": 3, + "unpackedSize": 218508, + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIFEnuyvKDA/YJeXpEqSkXR8TQfjMkT+3ITnX0CwwtSS2AiEAhyfPvV8GMpZ4s7BekSdubKDeM/otx+uiTdn/vdUaG+g=" + } + ] + }, + "maintainers": [ + { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + { + "name": "typescript", + "email": "typescript@microsoft.com" + } + ], + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/types-registry_0.1.337_1518892321600_0.22707105796877936" + }, + "_hasShrinkwrap": false, + "contributors": [] + }, + "0.1.338": { + "name": "types-registry", + "version": "0.1.338", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/Microsoft/types-publisher.git" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "MIT", + "typesPublisherContentHash": "3ca12ec6b77b5b33f19f4fcbec7ac234d4d5aa77d4fb5b100e3805784b63d50e", + "_id": "types-registry@0.1.338", + "dist": { + "integrity": "sha512-k7C6ef3YmTHPvx7IS4leK2WYKGo1lXH0XC8lGzMHND4p3cvClF/aKDRoJ1kkCaTSGZjr3dlD/8Qn9Wa6YNKhRw==", + "shasum": "f8213f1e607e312e93201a1172d06136e81845e3", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.338.tgz", + "fileCount": 3, + "unpackedSize": 218797, + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEYCIQDCOeM5PpNRMocoHv6XA/uj0TDjA3X9bf66RWNCh/YiiwIhALyZkkLUPK1AgdmslO+n5GwXyEICMIBFD7IjF7etH9z5" + } + ] + }, + "maintainers": [ + { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + { + "name": "typescript", + "email": "typescript@microsoft.com" + } + ], + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/types-registry_0.1.338_1519151538723_0.13642951527820646" + }, + "_hasShrinkwrap": false, + "contributors": [] + }, + "0.1.339": { + "name": "types-registry", + "version": "0.1.339", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/Microsoft/types-publisher.git" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "MIT", + "typesPublisherContentHash": "33534fcd135f8a5ef1f85e54540a5c545bbcc8199186d123741b52f9bf845401", + "_id": "types-registry@0.1.339", + "dist": { + "integrity": "sha512-O7/akWISNww7O9/6e7Gf8epsucjYWRJt3RnCFBiqEzUXLEtJMqnEc12nxJGDNaNpkGrhGyKadiVYgD3TAKThJw==", + "shasum": "3f9a9bfdcfe6e3a1c68aeadc6f9e04634f937bce", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.339.tgz", + "fileCount": 3, + "unpackedSize": 219845, + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEQCIAHX+L83CNlkBYy/mfNC6hU0eoJMPDWBoNqfnBdOEU77AiAYpdFsKDvncXpS6P317AInVC3JkPvBLg1ep8HvDb+6kw==" + } + ] + }, + "maintainers": [ + { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + { + "name": "typescript", + "email": "typescript@microsoft.com" + } + ], + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/types-registry_0.1.339_1519772754971_0.6925488897460019" + }, + "_hasShrinkwrap": false, + "contributors": [] + }, + "0.1.340": { + "name": "types-registry", + "version": "0.1.340", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/Microsoft/types-publisher.git" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "MIT", + "typesPublisherContentHash": "2355b33ae24b3b64e3e9242ee7e9860772b41b99bc83e4491555b57fe36c153d", + "_id": "types-registry@0.1.340", + "dist": { + "integrity": "sha512-eyRllKfYSPAuDT5TLc3+tXnn9ljDgfIj9rRJh0M86TX6/0PRymq5iOqxBVi+hKGBVd1tptdwHqiug0ntK4yGhQ==", + "shasum": "d0a29b5f0eefcbb4e8e00224029cc0e60932ea62", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.340.tgz", + "fileCount": 3, + "unpackedSize": 219924, + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIQCJcXWmkSo4gWFo/LWXCfBq1jdL3/lCJl1kSq53tje9sAIgfAXMDU8VG+J7+ILEoGf24ea8Rq4OKNutuyigmdL0XuA=" + } + ] + }, + "maintainers": [ + { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + { + "name": "typescript", + "email": "typescript@microsoft.com" + } + ], + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/types-registry_0.1.340_1519848517543_0.2330696269341832" + }, + "_hasShrinkwrap": false, + "contributors": [] + }, + "0.1.341": { + "name": "types-registry", + "version": "0.1.341", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/Microsoft/types-publisher.git" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "MIT", + "typesPublisherContentHash": "13a2ed5175c999eeeded0105b1e44055176357272179412ad8a62753232219f9", + "_id": "types-registry@0.1.341", + "dist": { + "integrity": "sha512-149Mi0vZQ5Jawo4vnXS2YKBRRkIr+FHbylIdHK3MvWUloR6CqwheJFFgZpeQYGvjFjSsZp6brut7NTxXV2+djA==", + "shasum": "5aad1d6f5e7eba82c0652a2613825749981c9269", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.341.tgz", + "fileCount": 3, + "unpackedSize": 219895, + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIQDzIM1b0+tIXg7/Hr37RCHNB3iXbPCKNOlKOOepzIOihQIgHwo6tUUzAiNMEiaeTWwecd6iuKOvqX7gAxYk6w8s9bM=" + } + ] + }, + "maintainers": [ + { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + { + "name": "typescript", + "email": "typescript@microsoft.com" + } + ], + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/types-registry_0.1.341_1519896589325_0.5270454782480047" + }, + "_hasShrinkwrap": false, + "contributors": [] + }, + "0.1.342": { + "name": "types-registry", + "version": "0.1.342", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/Microsoft/types-publisher.git" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "MIT", + "typesPublisherContentHash": "1f786f54fe7b6ac12bf6a21a3e1a137f36bb6bf6d0c50f00aabef9eb36fd1892", + "_id": "types-registry@0.1.342", + "dist": { + "integrity": "sha512-xRjlKT24OsckSU9FJGiXZFJyOxBFxtu7GT6QL+uPFvlQdV+rB/L2tBoNNrQO1LukTk8bh8HU+YUyAJvlqQrATQ==", + "shasum": "6b7990fe8b149008212b491c3098f20512e17474", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.342.tgz", + "fileCount": 3, + "unpackedSize": 219929, + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIQCSZYnFCQpYQMKc8MWoVAZrevGjC2KnhonMx1Qc7Ya1IgIgNLkVY6Zh0E0oW2ZXYGm8wldY4RLMg3VIfU8eEUWDcsE=" + } + ] + }, + "maintainers": [ + { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + { + "name": "typescript", + "email": "typescript@microsoft.com" + } + ], + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/types-registry_0.1.342_1519925379672_0.8115115529392014" + }, + "_hasShrinkwrap": false, + "contributors": [] + }, + "0.1.343": { + "name": "types-registry", + "version": "0.1.343", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/Microsoft/types-publisher.git" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "MIT", + "typesPublisherContentHash": "04d20fe2af3141d79c128b4b7825dbde191a33110eee0a6ec59a60243134b387", + "_id": "types-registry@0.1.343", + "dist": { + "integrity": "sha512-lQuWaLa7vF7m3LxS4Yra5IYih5zyxR9sDTdNBriGOqRChEHGPx7crixPONhJyCToQGJeMK/twicmhQgQPx25Tg==", + "shasum": "e520b4f678c6ef9c06a31624f9be732a10d43331", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.343.tgz", + "fileCount": 3, + "unpackedSize": 219987, + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEQCIBbTMqKFPh/yTHWhDykAN72A5NyXuXM/TGeIkCd5lrXnAiAUZmuKonEYXkca2lo6GZtjOreiaxWg7ph1ndPxIAxflw==" + } + ] + }, + "maintainers": [ + { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + { + "name": "typescript", + "email": "typescript@microsoft.com" + } + ], + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/types-registry_0.1.343_1519930302737_0.4318137688862509" + }, + "_hasShrinkwrap": false, + "contributors": [] + }, + "0.1.344": { + "name": "types-registry", + "version": "0.1.344", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/Microsoft/types-publisher.git" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "MIT", + "typesPublisherContentHash": "f710098d606ceca64453b736517cc9b9151d3aa68f191f367a3854edc1a2325f", + "_id": "types-registry@0.1.344", + "dist": { + "integrity": "sha512-c4hH4MxdeS2ei1hIHKffhkifSka1IpUUB8YvIKbMQ+4sNHTYBH0bxI2fPKr6cjkkf0L8ZE73dyV/0AvOjbr1wA==", + "shasum": "0dccb48a68e16935ea236719f239b5591140c8a7", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.344.tgz", + "fileCount": 3, + "unpackedSize": 220162, + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCID/EZuvHMb/FuAOezGupYmcY+Ph4h8ftjRCnSyHUaz+0AiEA8+1HqR0M04BA+JjNgJuH1RMCweDPsYlsCiYZOMsP44s=" + } + ] + }, + "maintainers": [ + { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + { + "name": "typescript", + "email": "typescript@microsoft.com" + } + ], + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/types-registry_0.1.344_1519932965991_0.9922970768576569" + }, + "_hasShrinkwrap": false, + "contributors": [] + }, + "0.1.345": { + "name": "types-registry", + "version": "0.1.345", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/Microsoft/types-publisher.git" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "MIT", + "typesPublisherContentHash": "ffb73cfddb5bef955f1f9c2ba9f7fb3e19b26b591afadfd56e69ff253842978a", + "_id": "types-registry@0.1.345", + "dist": { + "integrity": "sha512-cuLjeLNqT9S2qR71EKZx0pxeIq4a/rERz0OypZmTY36hm/b5VMS5aDyzzuHsph4Vc+s06U+1k8Ta5s7m9Bq9jw==", + "shasum": "edae8ba5a94412a66603b44832ea5b6f2e31efb7", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.345.tgz", + "fileCount": 3, + "unpackedSize": 220289, + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEYCIQCPftVdYtz6chH5Oi9hoMdg2e2Nq+DI4bQ9Wv8vHT9FkAIhAK5nEw+ZNDFdhijwwbdu9sS16Eb4FioGodezTTujoUVA" + } + ] + }, + "maintainers": [ + { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + { + "name": "typescript", + "email": "typescript@microsoft.com" + } + ], + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/types-registry_0.1.345_1519944964526_0.2722110764298815" + }, + "_hasShrinkwrap": false, + "contributors": [] + }, + "0.1.346": { + "name": "types-registry", + "version": "0.1.346", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/Microsoft/types-publisher.git" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "MIT", + "typesPublisherContentHash": "ef1b51643f462fc37f4388a3be4eb7ccd819f82de7c7234d94ca062845e5718d", + "_id": "types-registry@0.1.346", + "dist": { + "integrity": "sha512-iXbkTvehiiqewTtS1YarDxVjCccJ+gxnIdDgV62QnMufvXyzhrmVpUEPU7i8knkZpUmvvshEDLLQJ5zwSiREow==", + "shasum": "15918285ea592f807a049fae1e4602c8cbabad93", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.346.tgz", + "fileCount": 3, + "unpackedSize": 220289, + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIDwVKoNGQKUP3n7IGHH2vMrq3DOMOr/QU0z7VxMTVP/aAiEAneYid5ja6UFngZQhMSRNs3FT8WJ4Q59hibBRYRQqIdo=" + } + ] + }, + "maintainers": [ + { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + { + "name": "typescript", + "email": "typescript@microsoft.com" + } + ], + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/types-registry_0.1.346_1519946350758_0.8662950325499608" + }, + "_hasShrinkwrap": false, + "contributors": [] + }, + "0.1.347": { + "name": "types-registry", + "version": "0.1.347", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/Microsoft/types-publisher.git" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "MIT", + "typesPublisherContentHash": "eacb3f9c8fed5b29f55b05a9257ffae6f4e4485cbc2b9e9db07bfe8beb69cfff", + "_id": "types-registry@0.1.347", + "dist": { + "integrity": "sha512-SYqEbtgtx/cpvUTFNw1yuwFTrrgp3AA946lWNMNNYLXFsGOw+4iJRHYtoyLYb27G30fH1BpOEhq8bC5PGnB7Og==", + "shasum": "588ee8bb7336d8c389a49aafb538e6b1d81bceb2", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.347.tgz", + "fileCount": 3, + "unpackedSize": 220289, + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEYCIQDQXGpS098rc5VG85p640wj7DGOOQ2nQ44Vbl4VvAM6swIhAINC3Rt8R9IDoZi4al7V7AJk20aHgYtXZsfP6klyR3Zt" + } + ] + }, + "maintainers": [ + { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + { + "name": "typescript", + "email": "typescript@microsoft.com" + } + ], + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/types-registry_0.1.347_1519947252428_0.7066968260082598" + }, + "_hasShrinkwrap": false, + "contributors": [] + }, + "0.1.348": { + "name": "types-registry", + "version": "0.1.348", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/Microsoft/types-publisher.git" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "MIT", + "typesPublisherContentHash": "df464366e4613697bd25a5012c3dcd455441c12f250e9734203230908e0f7165", + "_id": "types-registry@0.1.348", + "dist": { + "integrity": "sha512-r4j7h390TZ3lyT0AWvFzj6eRK5CKc/Kn1OtMj6kM5hjDWidggHv9zzJ6+MgBM14Hfibq2S5DJXd/ycUlaF9nCw==", + "shasum": "fec7eef29a4cd2068951a6a476685a5f2d2b5e93", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.348.tgz", + "fileCount": 3, + "unpackedSize": 220289, + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEYCIQCjwf23ZmQAlcyiObJNFcEu0CpHEXAu9bif6PM0qNbbLwIhAPJqZo82igATBQmXPY5g+W9sNJSSPdlsg5+UcHcm0HRC" + } + ] + }, + "maintainers": [ + { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + { + "name": "typescript", + "email": "typescript@microsoft.com" + } + ], + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/types-registry_0.1.348_1519947934104_0.6517247404976501" + }, + "_hasShrinkwrap": false, + "contributors": [] + }, + "0.1.349": { + "name": "types-registry", + "version": "0.1.349", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/Microsoft/types-publisher.git" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "MIT", + "typesPublisherContentHash": "5cfc03ad9bfb0829cc350d071e3315d9082740a0777c5588286a573f233b2fbe", + "_id": "types-registry@0.1.349", + "dist": { + "integrity": "sha512-p/C3MQRRN/QfGxrEe048t9cpgsB7BIy+MF5tuP/7/sBR/LEWxyaizjygHPxfDuQ4pwywShlqKRnbhjPIonLhbQ==", + "shasum": "c539ac1290a075c425180efa378eff458dc67766", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.349.tgz", + "fileCount": 3, + "unpackedSize": 220289, + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIQC5Uql6bBk6uCDhtSZDO91rOWnTzjZD3nQAM2xlARdzYQIgL3S84LRrhoQCVHACKmQ9IJRaVUH3PZxF2Dbyj0ezcyM=" + } + ] + }, + "maintainers": [ + { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + { + "name": "typescript", + "email": "typescript@microsoft.com" + } + ], + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/types-registry_0.1.349_1519988233144_0.21680308118068803" + }, + "_hasShrinkwrap": false, + "contributors": [] + }, + "0.1.350": { + "name": "types-registry", + "version": "0.1.350", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/Microsoft/types-publisher.git" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "MIT", + "typesPublisherContentHash": "864df6cb17b8f1660c48deabe5bbc869f35728ebc86e6e91afc2d06b09d7b006", + "_id": "types-registry@0.1.350", + "dist": { + "integrity": "sha512-XXniWVQgcKRBsYPFwbPvzTOOVBBGie7E5PQg26LQstCYJi0piqaTnKZ8L7+J0SXW65LPOydaKy5Ouhx8qD/0dw==", + "shasum": "64ca391100af20bde77c9c39f7d7902c1934f84f", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.350.tgz", + "fileCount": 3, + "unpackedSize": 220320, + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEYCIQCuhekD551c1T4yMxCsAmTsghmZejTSAtVOk+1lctMsBAIhAJqkxcX1nJqmQGEgwRKz0//0AVLAyxpDzv0ItVvAzxO8" + } + ] + }, + "maintainers": [ + { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + { + "name": "typescript", + "email": "typescript@microsoft.com" + } + ], + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/types-registry_0.1.350_1520009175875_0.042342908733665974" + }, + "_hasShrinkwrap": false, + "contributors": [] + }, + "0.1.351": { + "name": "types-registry", + "version": "0.1.351", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/Microsoft/types-publisher.git" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "MIT", + "typesPublisherContentHash": "0ce895638b08155de51ce78bd02ca53dd4f88ab1601961b7f12b44ef8615ef13", + "_id": "types-registry@0.1.351", + "dist": { + "integrity": "sha512-mCf7WLpJI4sENeUH9Gz3iSM69JXkWqZ1UsDMYOXvccC0IL7c3cWVKz66Td4C8Z4g4J26wl/3S0iNj/K+jiu1TA==", + "shasum": "97dab1d94d17710b3e7718b1b48c100df7290c7b", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.351.tgz", + "fileCount": 3, + "unpackedSize": 220319, + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEQCIGB4dDIuvGEC7BykNSsreGQ0m4Q1Ga9dtvmqbrr4urVAAiAYPVVbV5lnebfh/ryq9K1iSJz7QWPGz7ZCvqgEnzEDGg==" + } + ] + }, + "maintainers": [ + { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + { + "name": "typescript", + "email": "typescript@microsoft.com" + } + ], + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/types-registry_0.1.351_1520012506274_0.7288023996417248" + }, + "_hasShrinkwrap": false, + "contributors": [] + }, + "0.1.352": { + "name": "types-registry", + "version": "0.1.352", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/Microsoft/types-publisher.git" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "MIT", + "typesPublisherContentHash": "37a3e7d53f4dfeb5d2900d0f363f5b0f5ca8696b6d123c16c8d5f180d95f8286", + "_id": "types-registry@0.1.352", + "dist": { + "integrity": "sha512-d4N/GRK21F1ci2cCKcij9MeBE9OwaX+QCsaH5XESY30YNZyQCwd1BMhmpW6eXnJnlu5ud63OORk3ft3iy/kzBw==", + "shasum": "b85d7429548b4ac69163828895a267e11b280a0f", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.352.tgz", + "fileCount": 3, + "unpackedSize": 220319, + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIQCdcpxF5GsqRbTEd6I/tFrOOc1uG8AoFRDM66RTeFxmaAIgDVOOmm9QXuSciwV6dsP/6bIYvn+V59nn5L9g3+w/MY8=" + } + ] + }, + "maintainers": [ + { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + { + "name": "typescript", + "email": "typescript@microsoft.com" + } + ], + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/types-registry_0.1.352_1520013305238_0.7785978677240193" + }, + "_hasShrinkwrap": false, + "contributors": [] + }, + "0.1.353": { + "name": "types-registry", + "version": "0.1.353", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/Microsoft/types-publisher.git" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "MIT", + "typesPublisherContentHash": "67b395e128c5eaef45df6a974b001162f9c0471bdc6bca8f3226662c76369080", + "_id": "types-registry@0.1.353", + "dist": { + "integrity": "sha512-4+sGB8TX0/6md+d4vGrQe8qMJtPnG98DOK0eGoo3Lwx5c2nSE1zdfV7+jYJrWXcbv4zYE38+Dsf+4g/IbcPxTQ==", + "shasum": "ee6ef955140f45a5a51545af70dd6b8cf5704e12", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.353.tgz", + "fileCount": 3, + "unpackedSize": 220319, + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIQDwC1XxYCyF4Bs0Yx65GFYu1Ao8TH9UuJDVtHWi6zK1aAIgeD28D4kDiWJWA/jmS7KCteyWrdPuYI6jduUkHrg02Xs=" + } + ] + }, + "maintainers": [ + { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + { + "name": "typescript", + "email": "typescript@microsoft.com" + } + ], + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/types-registry_0.1.353_1520020171375_0.963804014645488" + }, + "_hasShrinkwrap": false, + "contributors": [] + }, + "0.1.354": { + "name": "types-registry", + "version": "0.1.354", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/Microsoft/types-publisher.git" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "MIT", + "typesPublisherContentHash": "51e28f4e8a7d2b16cc88f211e9d2dce5046c1647b2d9df3086699518576f8d7b", + "_id": "types-registry@0.1.354", + "dist": { + "integrity": "sha512-qdgfwGJlekJjGvFLAjGpHYPbA0/E8MiZLbsZJIH7Ki5R9AnO/Nk7FlJmz1E4F5pa0fypVrj1GMg8mgGToKYn8A==", + "shasum": "5ab37d548e6d7cbece02c7b81d82d168cbfcec5e", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.354.tgz", + "fileCount": 3, + "unpackedSize": 220319, + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEYCIQCB82d2H4YVF95S21fffmxljx1H5DJzEex3x8DxAtoDAwIhAPqsuFZP5mBAuaVYKn12vn2zu1P4edP051G/Aq6d/AFD" + } + ] + }, + "maintainers": [ + { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + { + "name": "typescript", + "email": "typescript@microsoft.com" + } + ], + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/types-registry_0.1.354_1520025937465_0.5957232814864672" + }, + "_hasShrinkwrap": false, + "contributors": [] + }, + "0.1.355": { + "name": "types-registry", + "version": "0.1.355", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/Microsoft/types-publisher.git" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "MIT", + "typesPublisherContentHash": "9b89d8e9453c5b746a6d2ae83efc1da496f5dd968d778d6e5d91fe67b431a81e", + "_id": "types-registry@0.1.355", + "dist": { + "integrity": "sha512-SGkSlL8HO/YhoHGOCWdmG64jugBlx427xAFN5xkpNSZelzZubNEm06HgORSYqShFZNJ9+kttszm4etYfHix9bw==", + "shasum": "7cc7d67d038f908d0403989f7ec3a9a50700d6d5", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.355.tgz", + "fileCount": 3, + "unpackedSize": 220319, + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIFsHTAvXz7y4jl0e0iFDry+vX6OSp5ShgVprPPF0loFlAiEA1hZB8RjNJu1PeC0kxrVuhBlACg3U3Exmp35b44TMYSY=" + } + ] + }, + "maintainers": [ + { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + { + "name": "typescript", + "email": "typescript@microsoft.com" + } + ], + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/types-registry_0.1.355_1520026846203_0.5210451740773474" + }, + "_hasShrinkwrap": false, + "contributors": [] + }, + "0.1.356": { + "name": "types-registry", + "version": "0.1.356", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/Microsoft/types-publisher.git" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "MIT", + "typesPublisherContentHash": "adeae1ec39be55226be3f4641941af6af404b4d93b306692c995b86245f5da44", + "_id": "types-registry@0.1.356", + "dist": { + "integrity": "sha512-ZUYyeiNE4/+Xi9mckVPnGFDyDt0aOElXLU+xRD7GHa1EMHSbJhj08ZGwFLgIMAveqY2jAWJ3/svP8Y74xxKntg==", + "shasum": "4687314e1c01b48f4bae45989857caf0a29ab30d", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.356.tgz", + "fileCount": 3, + "unpackedSize": 220319, + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIAU5hPUIjmXs40AO/t8VLaSSdUmTtAqQTtMRN2YangEyAiEAni7isGkQMMnh7vjzu0sb3LrsRRyZFEOq5Zbvi7QFja4=" + } + ] + }, + "maintainers": [ + { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + { + "name": "typescript", + "email": "typescript@microsoft.com" + } + ], + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/types-registry_0.1.356_1520037791604_0.5072190884419603" + }, + "_hasShrinkwrap": false, + "contributors": [] + }, + "0.1.357": { + "name": "types-registry", + "version": "0.1.357", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/Microsoft/types-publisher.git" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "MIT", + "typesPublisherContentHash": "207e17780bf24e90d28f4e0b2e0bebf6f0418a975a5e9c19e760c1300b2e35b5", + "_id": "types-registry@0.1.357", + "dist": { + "integrity": "sha512-ODIskOCRrTK8EqbLbeq8oNN1Dt9lwwMi0B8EVaiGx7aIs2OqAOYJMC8FNgmoxVAgahaQm8L5tTJKwQ4FINqYDw==", + "shasum": "210111116f2d05957a50a5ea09d3c5401ced7035", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.357.tgz", + "fileCount": 3, + "unpackedSize": 220369, + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEQCICyASHmZ966sAPDOtBFk/0nyztvAdGHSY8A0r8O3jrpEAiA8jAx1IetWwe/fia5ofDyApBPbZ8O9MKKWfy1xd2sulQ==" + } + ] + }, + "maintainers": [ + { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + { + "name": "typescript", + "email": "typescript@microsoft.com" + } + ], + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/types-registry_0.1.357_1520038716913_0.5026407017862864" + }, + "_hasShrinkwrap": false, + "contributors": [] + }, + "0.1.358": { + "name": "types-registry", + "version": "0.1.358", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/Microsoft/types-publisher.git" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "MIT", + "typesPublisherContentHash": "4ccb7951bd64bee98801f20a072fd0727f84504adf0f40639b600f21f1d2b5c5", + "_id": "types-registry@0.1.358", + "dist": { + "integrity": "sha512-yUx4ae1PRU9YQm2LGRSYu7cV0atIW3TnMxGo29aHGsUqyDqc9YiSNPvFb4sA/W0vvI+oKspHNhZyEUhvd7IKjQ==", + "shasum": "4c28bcccd8e72c3691a63646dad0ed8bea7707fe", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.358.tgz", + "fileCount": 3, + "unpackedSize": 220417, + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIERIn5LIn4fwSfyRAzJ9e/ZNifrCxAQBxPfteB+q4zPlAiEAystu3kuRA/9g2dhCq+7BvX8HiROzJklknD/pR7BcCNM=" + } + ] + }, + "maintainers": [ + { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + { + "name": "typescript", + "email": "typescript@microsoft.com" + } + ], + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/types-registry_0.1.358_1520039173818_0.4842597165361451" + }, + "_hasShrinkwrap": false, + "contributors": [] + }, + "0.1.359": { + "name": "types-registry", + "version": "0.1.359", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/Microsoft/types-publisher.git" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "MIT", + "typesPublisherContentHash": "7297dbe882fa5a34eff8c613efbc2dbca7fa7d8bd789a58afabc6704dac18a7e", + "_id": "types-registry@0.1.359", + "dist": { + "integrity": "sha512-d7XA18AzqnbO0aQRYXHz1njLtBKQaxbISaNpeF7XIX5i05Th/0Egs9H9cHx+fkprupnNrZMXQMQ4X9McNKc9zw==", + "shasum": "74f0b6caf365cd2d9a8e8275339b193485318102", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.359.tgz", + "fileCount": 3, + "unpackedSize": 220369, + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEQCICeFHCt3ckf5x9Wzj+Y9Ih9vo7NmHr66DSQwNsRevqRJAiBSKG1n443dt7iqtZ9Q7hR2zHC44c7LkPE/7VpbO4UcGQ==" + } + ] + }, + "maintainers": [ + { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + { + "name": "typescript", + "email": "typescript@microsoft.com" + } + ], + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/types-registry_0.1.359_1520039528798_0.7910909248810469" + }, + "_hasShrinkwrap": false, + "contributors": [] + }, + "0.1.360": { + "name": "types-registry", + "version": "0.1.360", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/Microsoft/types-publisher.git" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "MIT", + "typesPublisherContentHash": "569b219a477d560740dd275da0c6a3325a020cd4829aa8d2ad775a616f2f352f", + "_id": "types-registry@0.1.360", + "dist": { + "integrity": "sha512-QAS5CdVIQfk5nMbxfMSCRvCGwXTIdKA4a9lzScLHoYGKx16S1Q7XkhvJUgGX8x5I8ul5EclII4IaKoJeMqdJEA==", + "shasum": "faef28d28a614065de57f146d6d543a591567a87", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.360.tgz", + "fileCount": 3, + "unpackedSize": 220369, + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEYCIQDWoV6iQZEUGhIF6Idc+BV+0NpS0mo1bWfjg5jjKfphTgIhAIRt7cTjFzTH2EdxNj/9k4ocKQg/ZFogGcL+RTg+ng9x" + } + ] + }, + "maintainers": [ + { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + { + "name": "typescript", + "email": "typescript@microsoft.com" + } + ], + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/types-registry_0.1.360_1520039859754_0.5868422970978826" + }, + "_hasShrinkwrap": false, + "contributors": [] + }, + "0.1.361": { + "name": "types-registry", + "version": "0.1.361", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/Microsoft/types-publisher.git" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "MIT", + "typesPublisherContentHash": "adf6ad1ce690c4b24a36f8fbbddafcfbe7b01a71be6a142c3852353a3dc63c9d", + "_id": "types-registry@0.1.361", + "dist": { + "integrity": "sha512-UXGMVUzHh71vdajhXBYDPrgpNUt5ZpX9m6ioa/6FZ23pqXaXSGvDv1G+ORWq3b+0gCiwcdk4BZitD3DzJ8wIKw==", + "shasum": "0e2b3634de85630eb945ba39442e7d1945cb6966", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.361.tgz", + "fileCount": 3, + "unpackedSize": 220369, + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIQC/va5LrrgEPSB7SKagkNNIWPf4wGIvqMjg5iIlIMIqxwIgKvG5E+nPxPVGrj62fmQjcG0b9bAx5CuPogofBVvpyT4=" + } + ] + }, + "maintainers": [ + { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + { + "name": "typescript", + "email": "typescript@microsoft.com" + } + ], + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/types-registry_0.1.361_1520057481038_0.6508458153406571" + }, + "_hasShrinkwrap": false, + "contributors": [] + }, + "0.1.362": { + "name": "types-registry", + "version": "0.1.362", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/Microsoft/types-publisher.git" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "MIT", + "typesPublisherContentHash": "3dfd90894c48800d19e298d12eeebe5ab700a2145e964c38c20df459e316a375", + "_id": "types-registry@0.1.362", + "dist": { + "integrity": "sha512-vWEscr4Hvq+GccQBB70m4AaT0fV7kDHTZvSbBReI3T9y4mvDlcJogMOsNCo8XfTFTV5oa0qOmykJxavy7gxxSw==", + "shasum": "3a3bed06eeb492b69acca161c8352756ce236b11", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.362.tgz", + "fileCount": 3, + "unpackedSize": 220369, + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIQDQx0MmO3T/Z9VpsGTmAku7hyE4puA0uCXx8CDhhdNpWAIgMvL5emz40WXTvfbqxzxgFsIURGym/jP2j68SQsu9F04=" + } + ] + }, + "maintainers": [ + { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + { + "name": "typescript", + "email": "typescript@microsoft.com" + } + ], + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/types-registry_0.1.362_1520103082598_0.39116228454318613" + }, + "_hasShrinkwrap": false, + "contributors": [] + }, + "0.1.363": { + "name": "types-registry", + "version": "0.1.363", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/Microsoft/types-publisher.git" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "MIT", + "typesPublisherContentHash": "c0c0735b581e055d4e21a831b4b3b8475a12b34ab5d9cefa0a5b9c5558e5de33", + "_id": "types-registry@0.1.363", + "dist": { + "integrity": "sha512-cmkjVkKn1XSUZmq7sMu6nK6eEVwO7BWl/BR/6SmQOHKvJYMaQekoWyQwzIiLPLWZ50adW3D/dMs4Bd+zbE6Svw==", + "shasum": "e88ee69fdaa83912b2fce4b4e4f4f3c410e2699e", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.363.tgz", + "fileCount": 3, + "unpackedSize": 220353, + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIGPf09K3VuKCv9N/fsCyxjDtfgYD7UM1Ifsq4Cp8O4L+AiEAhNXwlvogRYc9MxgdV5yvrifH0rbr4Ove2lIlwgaGVBM=" + } + ] + }, + "maintainers": [ + { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + { + "name": "typescript", + "email": "typescript@microsoft.com" + } + ], + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/types-registry_0.1.363_1520290884401_0.1092276641428398" + }, + "_hasShrinkwrap": false, + "contributors": [] + }, + "0.1.364": { + "name": "types-registry", + "version": "0.1.364", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/Microsoft/types-publisher.git" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "MIT", + "typesPublisherContentHash": "8430fe194dd1446f1ac34993ba268fe7125e81f1d7833bea003ad238ddd605b1", + "_id": "types-registry@0.1.364", + "dist": { + "integrity": "sha512-m6ZoqezqKrGI3KBdEAY8g20lTqa1NRdCwD08gNibn6DDHosWdSEOn/uirzJO+EgqLC0ylFaGFD9okc4YQFegSA==", + "shasum": "199d07bfb15a16926d7e4217b7280a900c5c6183", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.364.tgz", + "fileCount": 3, + "unpackedSize": 220748, + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEQCIFX5/YWPa80DrXovRK2qMrzHUPseIY2Pn/daK0LdOxjPAiB5qfgYN58Diwtih7+XMS/niaPwcMHgCELgB5pTsG65qA==" + } + ] + }, + "maintainers": [ + { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + { + "name": "typescript", + "email": "typescript@microsoft.com" + } + ], + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/types-registry_0.1.364_1520296856833_0.807180489036472" + }, + "_hasShrinkwrap": false, + "contributors": [] + }, + "0.1.365": { + "name": "types-registry", + "version": "0.1.365", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/Microsoft/types-publisher.git" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "MIT", + "typesPublisherContentHash": "55393838f34d09eb19b7c9e8f688a5f181a803a1c4a1db1e78955c3453d3685e", + "_id": "types-registry@0.1.365", + "dist": { + "integrity": "sha512-vKw3b3P+NVg0BPJAN/ABYZH8DNpLgsfXoxaqn7sdOFaBvN5ofj53kT41yNQJo02Y2u9AEi1rmSFODGTwTFCo1g==", + "shasum": "2d14e4e601defd4f3f538552c0f04a7f0a8679ff", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.365.tgz", + "fileCount": 3, + "unpackedSize": 220836, + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEQCIAVwDUspkKo/AHYpoGGFRDM/McvrQb4P9Em9rgV4pBRUAiBaeAvDFIlAgghz7B/Qu6k+Bc2pbuTzQQirolTJUJ2j8w==" + } + ] + }, + "maintainers": [ + { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + { + "name": "typescript", + "email": "typescript@microsoft.com" + } + ], + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/types-registry_0.1.365_1520303167407_0.19961585082952293" + }, + "_hasShrinkwrap": false, + "contributors": [] + }, + "0.1.366": { + "name": "types-registry", + "version": "0.1.366", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/Microsoft/types-publisher.git" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "MIT", + "typesPublisherContentHash": "a1f56a09d71be7691bc851f041ade8483e36f39e95d3249242ec50980b87a7af", + "_id": "types-registry@0.1.366", + "dist": { + "integrity": "sha512-XAIQp6JKb4KSHC6+rerSfMKbAZFemHhC5+7zYon1CHIsN40oLZJ8YHHVUe/pobxQqN/sg0sLSthzP9B21wvBUQ==", + "shasum": "d6a45b0d550bce3e48daf10bb0ac7cf9618ade45", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.366.tgz", + "fileCount": 3, + "unpackedSize": 220866, + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIGUDeKCtHi/Z7Jf/zONR9bQN5iPwbgH2LA2pBd1r3D4AAiEAsH8BV4jsUijxtXYqdijjkMUBdVcb8lHVYChHVpf1kqc=" + } + ] + }, + "maintainers": [ + { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + { + "name": "typescript", + "email": "typescript@microsoft.com" + } + ], + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/types-registry_0.1.366_1520303619163_0.10020757610904307" + }, + "_hasShrinkwrap": false, + "contributors": [] + }, + "0.1.367": { + "name": "types-registry", + "version": "0.1.367", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/Microsoft/types-publisher.git" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "MIT", + "typesPublisherContentHash": "7c6225c33d041482294b9a6e493e5eeef1d41709ba0d9599b0e6bed84eed24f6", + "_id": "types-registry@0.1.367", + "dist": { + "integrity": "sha512-O6X75KrOOP2zqc2V6WEwmZ0MUZPuS91RELw8ZowFbQNhENJlEGR9jjJRoElvFSnl9uKivYfClgdxPMAE3OWXjw==", + "shasum": "7beffdecb5f3f271c58e953c6e2ac9018ea14110", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.367.tgz", + "fileCount": 3, + "unpackedSize": 220909, + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEYCIQDeSVzWPBZqE7qLjfHzvnSR38KIc99adgHI6m/9J5HbWAIhAPXYAGHMi5SF6e86pIQOwaILlv+R2SiM2PL5U232oHq1" + } + ] + }, + "maintainers": [ + { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + { + "name": "typescript", + "email": "typescript@microsoft.com" + } + ], + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/types-registry_0.1.367_1520325186116_0.36097321087993106" + }, + "_hasShrinkwrap": false, + "contributors": [] + }, + "0.1.368": { + "name": "types-registry", + "version": "0.1.368", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/Microsoft/types-publisher.git" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "MIT", + "typesPublisherContentHash": "e70ac247e789d61d639b6cfe582bf96783fc7cc7d90c9c2e8d3b36575a34faf9", + "_id": "types-registry@0.1.368", + "dist": { + "integrity": "sha512-1Q+KjrunOkbieOGVREYfQNPQa6P9Ce/m1pRr7vgG5OINXa27/fFfjK5zNwQ7Bs2cSyeeHpFV+e7IkoR+nXIkUg==", + "shasum": "ae9f86ba826f2cdf24bf0f90f2549998ba6163c4", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.368.tgz", + "fileCount": 3, + "unpackedSize": 220945, + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEYCIQCCLUvxR+ZLaIv52vkribP0WMJP4M2YMr+t/xY34wWO9wIhALjWrH+zVdePyr0grdcC1aSs56J+cvAStdXLjmQq5QYq" + } + ] + }, + "maintainers": [ + { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + { + "name": "typescript", + "email": "typescript@microsoft.com" + } + ], + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/types-registry_0.1.368_1520352711114_0.17369188737400099" + }, + "_hasShrinkwrap": false, + "contributors": [] + }, + "0.1.369": { + "name": "types-registry", + "version": "0.1.369", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/Microsoft/types-publisher.git" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "MIT", + "typesPublisherContentHash": "b3e05e81bba223f46f6bf47ca700cf2e83c2e28c0336e00d6c0bdcf102ed35de", + "_id": "types-registry@0.1.369", + "dist": { + "integrity": "sha512-5/99c0FjmSf8MJ8GoxCTmS+qM88ffV2CGVSIAeh0/P0c+x/t0REKpUhIp8/cpVPU4hFBtKFaEKXShR1Kcy+fxg==", + "shasum": "36c41e0826056262bb6889080f6562e32cbf1215", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.369.tgz", + "fileCount": 3, + "unpackedSize": 220945, + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIFdttJottpEv42DViFaB9aX1HNxeKiuL8PIAJYwBV8D4AiEAiSjS2xBDynIb0OfoklilGFJWZ5jAgLz9JytD/YJWLpU=" + } + ] + }, + "maintainers": [ + { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + { + "name": "typescript", + "email": "typescript@microsoft.com" + } + ], + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/types-registry_0.1.369_1520368394704_0.7940009699380506" + }, + "_hasShrinkwrap": false, + "contributors": [] + }, + "0.1.370": { + "name": "types-registry", + "version": "0.1.370", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/Microsoft/types-publisher.git" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "MIT", + "typesPublisherContentHash": "ec68270e6ee7e794463a5738793bd5606c30a8e808362e61e9ee8344ece714d6", + "_id": "types-registry@0.1.370", + "dist": { + "integrity": "sha512-9wo4Cq+XgR3CaBuSFhEhH8RMYrpF2HJqSDpWyORnkWHKFCiLWVFk+u42LTyqu3xxseaawNemaHfTxKJM6Jr1AQ==", + "shasum": "b00fca9cbd35e9bea469d34ed8016f0b2b3b28e3", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.370.tgz", + "fileCount": 3, + "unpackedSize": 221438, + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIQCTwDJU6+qGkxuJ7vM9LkMAYdJ6rrE8l49jdHOW0hWaYwIgSQPhvqtyQlwNj5H4puTJEQuLsvlQZL7T9oZfTs25zOg=" + } + ] + }, + "maintainers": [ + { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + { + "name": "typescript", + "email": "typescript@microsoft.com" + } + ], + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/types-registry_0.1.370_1520555091764_0.22497908976126513" + }, + "_hasShrinkwrap": false, + "contributors": [] + }, + "0.1.371": { + "name": "types-registry", + "version": "0.1.371", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/Microsoft/types-publisher.git" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "MIT", + "typesPublisherContentHash": "b88129c15119f60569fdc2ef368cc323167325ad8b6c120028eeb309460add84", + "_id": "types-registry@0.1.371", + "dist": { + "integrity": "sha512-06ngncfaFEaezgRyW0E4TOFqR6Db6C9xwfdrOFhCn0lAXFvLzOQjHLg6ES/9pEKsQkGuSNTUIvkyVmpbe33I/w==", + "shasum": "980a0e8d2694d46ce39755409ecacc67a570123d", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.371.tgz", + "fileCount": 3, + "unpackedSize": 221438, + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEQCICyEDslyLCfH4HwQb/FIAnc5WZk+gRGXzDtWlCRqdadyAiBrJ7yiemgm4ajR9yy8uE4ueUWi/utqOqKAQhY1PXO2SQ==" + } + ] + }, + "maintainers": [ + { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + { + "name": "typescript", + "email": "typescript@microsoft.com" + } + ], + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/types-registry_0.1.371_1520556163962_0.04350268655325462" + }, + "_hasShrinkwrap": false, + "contributors": [] + }, + "0.1.372": { + "name": "types-registry", + "version": "0.1.372", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/Microsoft/types-publisher.git" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "MIT", + "typesPublisherContentHash": "d8fedd301d1fc580835e05875f5745f82d10a5ae499f4054aae97609b608d534", + "_id": "types-registry@0.1.372", + "dist": { + "integrity": "sha512-cSGfcu9uEm878xtzRKUDYo6EfSXsPaNepTAjrfOkYs1pxKtMwAbJM51ouXdyhsp8ad7vK5lVMl3M9VUZu2+wdQ==", + "shasum": "46fee99468f786b37552ad68eacb5a56c540a0dc", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.372.tgz", + "fileCount": 3, + "unpackedSize": 221438, + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEQCIH+ZbLX0ak7n+ZDDqtTlxmJ2+cVYga2E4b4riDP+vprEAiATBkfRXOYui1uW3QUswg+nZ5w8zbTBqp8dhDiOkfwu4w==" + } + ] + }, + "maintainers": [ + { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + { + "name": "typescript", + "email": "typescript@microsoft.com" + } + ], + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/types-registry_0.1.372_1520556864274_0.20525275602207582" + }, + "_hasShrinkwrap": false, + "contributors": [] + }, + "0.1.373": { + "name": "types-registry", + "version": "0.1.373", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/Microsoft/types-publisher.git" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "MIT", + "typesPublisherContentHash": "a5b2468d144f4c966c976eb4f2d14b37a79c59642c622bd783f71355ffe1e690", + "_id": "types-registry@0.1.373", + "dist": { + "integrity": "sha512-MH6JDtwSm3JrHbwEyvbvbz2rzn1BUPEPh7MyvP6KDJGDraqVuxokr2bzirQtWZ3mCD/MCmHfkXwK1OlsHO05Cg==", + "shasum": "fa075b55b32e2468a55fca62decfdcdbd2c09264", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.373.tgz", + "fileCount": 3, + "unpackedSize": 221438, + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIF7twTpuN5njacvo2IlQuDuV+Q8QymQA2QhsQMW1ohEiAiEA75YzKi1HzIFiFED0K3w786TKOg9dwxb6eXlBcpIWA3U=" + } + ] + }, + "maintainers": [ + { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + { + "name": "typescript", + "email": "typescript@microsoft.com" + } + ], + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/types-registry_0.1.373_1520557424844_0.24847573348217566" + }, + "_hasShrinkwrap": false, + "contributors": [] + }, + "0.1.374": { + "name": "types-registry", + "version": "0.1.374", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/Microsoft/types-publisher.git" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "MIT", + "typesPublisherContentHash": "25c5d43c6ba7a8b7b32f8e46efff000609fab8450ef4d593e9c27d810d268907", + "_id": "types-registry@0.1.374", + "dist": { + "integrity": "sha512-jG8+Cl5lF2WVobbuIaFBXkOVlbi3RurFU5DMJTnXsmQsE39rEu6wxZ91IbnW6X4kXBsp5w76ciKOAN/BUisVIw==", + "shasum": "ef8467211e589dd47cb124ef0bdff28ecbe32482", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.374.tgz", + "fileCount": 3, + "unpackedSize": 221438, + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIQDwlcsSBVSJAyraZmXCLvMSTjuer+oKF6NybEsBT1eiCgIgaLF2g9Ul6Ewbkc8lsDmz1VkYE4GI51t42IGIiMtcXIk=" + } + ] + }, + "maintainers": [ + { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + { + "name": "typescript", + "email": "typescript@microsoft.com" + } + ], + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/types-registry_0.1.374_1520557830221_0.4953125103499805" + }, + "_hasShrinkwrap": false, + "contributors": [] + }, + "0.1.375": { + "name": "types-registry", + "version": "0.1.375", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/Microsoft/types-publisher.git" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "MIT", + "typesPublisherContentHash": "b0c030b3488c23c0bd5009da106a642dff7d309639f15ab71b83d265b647b562", + "_id": "types-registry@0.1.375", + "dist": { + "integrity": "sha512-nlDYSSkNXgX/Z4zQqFi77YuClNkJUfb3u6VfP7Z+nyq0Yfl4hl1A6yJa5znsX01piCnOooo0b4lpR/a3A05t/w==", + "shasum": "1428e560b1bd28890aa95ff479e15572a4f34f07", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.375.tgz", + "fileCount": 3, + "unpackedSize": 221438, + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEQCIGaVfqP7Ekb6vvn2s56l5aL8Ml89lRjBTP0vGfy9+uGCAiBNTL76An365zF2nTd7d7dbwUcRJbwlczsw4+YspZGKFA==" + } + ] + }, + "maintainers": [ + { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + { + "name": "typescript", + "email": "typescript@microsoft.com" + } + ], + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/types-registry_0.1.375_1520558157308_0.27226053755947244" + }, + "_hasShrinkwrap": false, + "contributors": [] + }, + "0.1.376": { + "name": "types-registry", + "version": "0.1.376", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/Microsoft/types-publisher.git" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "MIT", + "typesPublisherContentHash": "222b5b9e6643f6023d2eea9020aa59d1d0e3cc84c0dc044cf82605c9ec6144e5", + "_id": "types-registry@0.1.376", + "dist": { + "integrity": "sha512-J1dfJylmgE9xSB2lY04YnMgYwjcokRqre+nBN0/5PXNvC3TKOJoyfe9870PPcOm77kxGHi4Pvoch+OAudgkZdg==", + "shasum": "08386d064448358c80f417b02f1dabf765d5e494", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.376.tgz", + "fileCount": 3, + "unpackedSize": 221438, + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEQCIDPEljAPTcqKf1ltf7LjTOYQnwG4PqwjCv3TPb4Yy1zKAiBpGSVhaX+6nqaUgdh8dqMeYAL12NUX+O3F20ZuuL5E1A==" + } + ] + }, + "maintainers": [ + { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + { + "name": "typescript", + "email": "typescript@microsoft.com" + } + ], + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/types-registry_0.1.376_1520558499513_0.2133459053439346" + }, + "_hasShrinkwrap": false, + "contributors": [] + }, + "0.1.377": { + "name": "types-registry", + "version": "0.1.377", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/Microsoft/types-publisher.git" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "MIT", + "typesPublisherContentHash": "fd7312992cd8aa9543544fa590db232c12a6f7f64955a3276a7024754c233e13", + "_id": "types-registry@0.1.377", + "dist": { + "integrity": "sha512-vZLqAi37T7SnjWR5yAx4XRwDGylST29HIlNFS6MdGq6VrBiAMWgklfYZrrgFx9gjmAypyRArkbofJWek7sQDSg==", + "shasum": "5b85a3b0698ca3c7de0b0c04eb2e03efdeeda755", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.377.tgz", + "fileCount": 3, + "unpackedSize": 221438, + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIApiKEKIbaId7r7MbDfCIsSL39DTrc8Yx2u32vAk8cYQAiEAz07kMPRTm55PfcUOrtzPipMWtJkWoblybJ1DjHf+aTY=" + } + ] + }, + "maintainers": [ + { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + { + "name": "typescript", + "email": "typescript@microsoft.com" + } + ], + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/types-registry_0.1.377_1520558848685_0.09625526086837599" + }, + "_hasShrinkwrap": false, + "contributors": [] + }, + "0.1.378": { + "name": "types-registry", + "version": "0.1.378", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/Microsoft/types-publisher.git" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "MIT", + "typesPublisherContentHash": "1936a9affc24fccab805e52b8d67074e6fe1b8fecb81e6bef5cad8715cf91128", + "_id": "types-registry@0.1.378", + "dist": { + "integrity": "sha512-QIX5F7m2KC+j7OnXclSaEpXyZllEk2P31MVohl7vkvvXfFjAj7WxMxkbPe7vx6EiUxN3ovoNOoajMSrT73XbJA==", + "shasum": "cae503dce9b0bd7a2d077d05ed3ab793beb2e076", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.378.tgz", + "fileCount": 3, + "unpackedSize": 221438, + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIClNRtoqoOEze1YnsOOWvVwzGVWHcuiE0FTkY3W+cLejAiEAiZnbBd8CeoNcAv6M6u31UJTePaTDYKxrF2p0dLe97a8=" + } + ] + }, + "maintainers": [ + { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + { + "name": "typescript", + "email": "typescript@microsoft.com" + } + ], + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/types-registry_0.1.378_1520559213901_0.9925621526965931" + }, + "_hasShrinkwrap": false, + "contributors": [] + }, + "0.1.379": { + "name": "types-registry", + "version": "0.1.379", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/Microsoft/types-publisher.git" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "MIT", + "typesPublisherContentHash": "f7ef009eb51525ddb3c83e22f1d87ea5ebf7556dda1ea7c8734ba2caeaf23ebe", + "_id": "types-registry@0.1.379", + "dist": { + "integrity": "sha512-X0rJAr68+KgHHiQpmQAigTYOC4m7UxgFtvNagHF2W0IUmHwy3Pwr9hK8PVDtLygBNX1ri7AAvz5Z9HuUPxTOeg==", + "shasum": "7b4a5f376450fdea30c8b90a9fa4ffebc84da371", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.379.tgz", + "fileCount": 3, + "unpackedSize": 221438, + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIFtZzDzvzODLWTXLFF3mdGtPZL5JiTozTa4PGcpc13iFAiEAjpGUktyzuVHbzooSR0DUeXgbr5XQcJqRMSOe+2kC4Bo=" + } + ] + }, + "maintainers": [ + { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + { + "name": "typescript", + "email": "typescript@microsoft.com" + } + ], + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/types-registry_0.1.379_1520559547444_0.5129849886236977" + }, + "_hasShrinkwrap": false, + "contributors": [] + }, + "0.1.380": { + "name": "types-registry", + "version": "0.1.380", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/Microsoft/types-publisher.git" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "MIT", + "typesPublisherContentHash": "c7bf6caca37ea5d25079f734465e7924d02f82ca7e4fa6b7c563d78dbb92551e", + "_id": "types-registry@0.1.380", + "dist": { + "integrity": "sha512-MO8A2XL1PsDvqHYx3Zvs3CZr8+Wg2P3x9vvtauxiCA3AekEdq4HB4+49soosAT7Sd+UK9x9D4ov1rb2eesNfFA==", + "shasum": "28eef1f184db815f45342f426193ff62c98507bf", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.380.tgz", + "fileCount": 3, + "unpackedSize": 221438, + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEQCIAnMnMS9Nqv4vxf0hPAiWXKcbo6UC/xv5i26LWArGOg8AiAGwBbT3NTk3tFGuXtp8Ldg30XYhR1onawcYYJqBHS0Pw==" + } + ] + }, + "maintainers": [ + { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + { + "name": "typescript", + "email": "typescript@microsoft.com" + } + ], + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/types-registry_0.1.380_1520559876283_0.7749926318372653" + }, + "_hasShrinkwrap": false, + "contributors": [] + }, + "0.1.381": { + "name": "types-registry", + "version": "0.1.381", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/Microsoft/types-publisher.git" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "MIT", + "typesPublisherContentHash": "4eff552aec566e794425361c15e4984b3e0c80717727802026f22f80a8df44b6", + "_id": "types-registry@0.1.381", + "dist": { + "integrity": "sha512-vH28+zMZN/NE/g93YDMI+dQyI5dsyFA05OU9JXeJ5SR5k93rovai1gkslt4MSsX1f4mKUikOqJP6XBTTbGskTg==", + "shasum": "1a48ba8990e7eff2b478c66d0a73165551bd6255", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.381.tgz", + "fileCount": 3, + "unpackedSize": 221438, + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEYCIQDpI9WYmy+QWplwTO6uYP909YsKHYVYhjv5M0FBLX/oawIhAMJdIjWURUPLCN9KLAaUbCjfBuNgXMGjd+bmwbT9rmTS" + } + ] + }, + "maintainers": [ + { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + { + "name": "typescript", + "email": "typescript@microsoft.com" + } + ], + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/types-registry_0.1.381_1520560208222_0.38940116509709144" + }, + "_hasShrinkwrap": false, + "contributors": [] + }, + "0.1.382": { + "name": "types-registry", + "version": "0.1.382", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/Microsoft/types-publisher.git" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "MIT", + "typesPublisherContentHash": "3e22237f9cb5ddff375e45251043badf4caa8487d1714540262ba60d6cd05429", + "_id": "types-registry@0.1.382", + "dist": { + "integrity": "sha512-N4p6ZBD8NNrKyPlil/8g1GuYMxG8i/lfikjYf95uh5NadstSAqroEANrVXmElCcjGx6efmgO3WadkKUumuhdRw==", + "shasum": "a0151ceeea15a778a3d967cc2f6216460b49a968", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.382.tgz", + "fileCount": 3, + "unpackedSize": 221438, + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEYCIQDyOD6cAIgxjXiHnuzu+PfuKWnaKZoFhp2oOGsMcbYBDQIhAKHFIS335+TTAE2vF/bu8GIYlKlYVSU93nCuCwXGL8ev" + } + ] + }, + "maintainers": [ + { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + { + "name": "typescript", + "email": "typescript@microsoft.com" + } + ], + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/types-registry_0.1.382_1520560545275_0.09527245246429117" + }, + "_hasShrinkwrap": false, + "contributors": [] + }, + "0.1.383": { + "name": "types-registry", + "version": "0.1.383", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/Microsoft/types-publisher.git" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "MIT", + "typesPublisherContentHash": "5c2ca64d31f66759b2e0f961d2e128e50b2a5add4ccf014c8aa26849a29a52d7", + "_id": "types-registry@0.1.383", + "dist": { + "integrity": "sha512-uf25p3CaJsahwYtzaSoESHfxuRJ+0xVKMAmmBF9EQiob4ItZmDaVyunUk/7M31ZFNCzq/jE5zCI5IFyyzhOJXw==", + "shasum": "ce9f9c2ea3675d3dfc7fbf07a275c233b7483b6d", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.383.tgz", + "fileCount": 3, + "unpackedSize": 221438, + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEQCIAzR3KnZnFfaN0/pXmHCv967J7cEPgQUk4XG0LZTRNYOAiBt9M1icaK/i6GzfDfKDt5+qWiQX+gtE1jl23VK/Y0GBw==" + } + ] + }, + "maintainers": [ + { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + { + "name": "typescript", + "email": "typescript@microsoft.com" + } + ], + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/types-registry_0.1.383_1520560904036_0.8449097255218274" + }, + "_hasShrinkwrap": false, + "contributors": [] + }, + "0.1.384": { + "name": "types-registry", + "version": "0.1.384", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/Microsoft/types-publisher.git" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "MIT", + "typesPublisherContentHash": "0d0e84477441b74cd46429a3d506728cd2ee14fb28b5ad3579f6510df511242e", + "_id": "types-registry@0.1.384", + "dist": { + "integrity": "sha512-Rv2VqROe6B4RAK/dixlyZsV35qFcyFwl8yac34WZfgIIh3ut0Ep2G+sBS8QtdysSbLRHcWNJlcADk6CpWc8vCg==", + "shasum": "5d825cbaa4c2b33c2b058fec9ee1391688958e94", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.384.tgz", + "fileCount": 3, + "unpackedSize": 221438, + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEQCIHiwcofxF2AZJG2UdND8d2XOpybV/3bQIt1iqqG3c38rAiB5Sq2rc8q1w166lpPfwWnpRSY3tuCC0tryvhYNnfCzuA==" + } + ] + }, + "maintainers": [ + { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + { + "name": "typescript", + "email": "typescript@microsoft.com" + } + ], + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/types-registry_0.1.384_1520561252389_0.4782714948387512" + }, + "_hasShrinkwrap": false, + "contributors": [] + }, + "0.1.385": { + "name": "types-registry", + "version": "0.1.385", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/Microsoft/types-publisher.git" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "MIT", + "typesPublisherContentHash": "d77b9e2573b1658d12be9fe4770a73839162adf81978d5677202d4976be43907", + "_id": "types-registry@0.1.385", + "dist": { + "integrity": "sha512-/HACl78WIIzciIJdJhMoLh/UWAiTtLI1u2fOvpRcn89myNxSZ88rFdB7JqXVyznWkS1Chy0sCmExe5ty/mmfkg==", + "shasum": "80965dd5712482431fc73e39336bf1be6366d904", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.385.tgz", + "fileCount": 3, + "unpackedSize": 221438, + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEYCIQCQhfcGus4PKGBtkYQQpLVzrTWHcPDujqm7Zucn9b7XiwIhAOkpIhCpPYSs4OFVF2lKCWh815nSkRogViyM4oWrtnJt" + } + ] + }, + "maintainers": [ + { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + { + "name": "typescript", + "email": "typescript@microsoft.com" + } + ], + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/types-registry_0.1.385_1520561604336_0.21458119652229124" + }, + "_hasShrinkwrap": false, + "contributors": [] + }, + "0.1.386": { + "name": "types-registry", + "version": "0.1.386", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/Microsoft/types-publisher.git" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "MIT", + "typesPublisherContentHash": "1f66a498d37f4ff47400e5e224065489da9737ebd6f8acef3ba631d7a6d19e5c", + "_id": "types-registry@0.1.386", + "dist": { + "integrity": "sha512-U3FbNoPK2pww98hwdr+uHpsYYqoT+663FIyk442xXfuJ5JRvFVBTPNr1GLabiiAK9xqUxfEPIfm0homFPV3BuA==", + "shasum": "0ee86c0edac1a0db22fe1f0396654cdc900a68ae", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.386.tgz", + "fileCount": 3, + "unpackedSize": 224187, + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEQCIBNHQZO3OGYzlx2qijn9q1csPsJ6leSoNYnYBwmKiEMpAiA3/z6XS+gwii4YSXwkQLrHfbOWEnhcjeY6pksuBh3Keg==" + } + ] + }, + "maintainers": [ + { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + { + "name": "typescript", + "email": "typescript@microsoft.com" + } + ], + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/types-registry_0.1.386_1521846160763_0.5621106102564235" + }, + "_hasShrinkwrap": false, + "contributors": [] + }, + "0.1.387": { + "name": "types-registry", + "version": "0.1.387", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/Microsoft/types-publisher.git" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "MIT", + "typesPublisherContentHash": "5fa1ab7b1a924490ee17cf4ed2b515fe472ceaea17120f416699d1454f3c717d", + "_id": "types-registry@0.1.387", + "dist": { + "integrity": "sha512-2tQUeF+fyt8xQVL2AjdV15qaUWfi69cqYzlFOZoCQVisdJp/7CltjVlSFe4zEd6D9PwwUqBjRHVo01VVl3U4lA==", + "shasum": "5acdbb0dc80136187600feb0ee914747a4959fbd", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.387.tgz", + "fileCount": 3, + "unpackedSize": 232347, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJa6JH0CRA9TVsSAnZWagAA/EUP/Ak2UhCfdFXcx58IiL51\nsuVkzqvWH/rXL8fOa/CGwsw0ropOH6GB8Wdbe4fmt2leTgGumw13HQd/HHgz\nbrRglAlxwVW4Quhd0jIT5AUos6zq6zfTnj20erE5oJ43UxoghzOZvJAkOZzk\nCtMnGKW+Pl5SbIMsqAMxtVw4Fo9OHrIX5ceduorA9eWR6ewRykpV0XM/1kT0\nNhcand5V4X6bUQLeA2NXyV0JdMX71R8pxB4E2WtQGozYzzZyCq4/mkTmlbuv\nMw6wzoqOpmP5fX/cjEZTVnbDPG6XI0VkTgIQGWZYHiqNxgODAB+V5KsRHs3g\nzTERnvYHaWQIl7SWFkDvvwVquVmtVmwafPGxSltYMncMwIEs9cZ+gbaUwgi0\n+int4ZbiesdaLUYXg0n9pZl0tIKVLAGeECijn4YEidJ8aALMTS/8kk34HZnG\nw0VYenInCvavlwlJVFIyepOCaQarNA/OnrsxUw3bRtaFCTpWCq4dK5MZN4WU\nfuyz6X31bbdMTA67yV4QrOdcvqvAOIW9NHKUBcpzEQqNqNVke96NYE6yEv9+\nYnOGtCY5Qz/8HMfwdhvN9l5V+1sEtPu3a8SMpCY+n/U9WTjbDuOBB9agGoAw\nJXAXEOBheIkkczLVXZ/nxLlsmNT0k4aapbPYPg10hF3aBDK8t/7Ht7ksB86G\nrhrP\r\n=3BSs\r\n-----END PGP SIGNATURE-----\r\n", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEQCIE3TpubIMjwaKWdyx2De7dBu3+USDDFgV8ySwo9YE+W+AiBfyp/6dWxuMFeHRk4yoSBysZsnuGqBI0vhtJb44FLdhA==" + } + ] + }, + "maintainers": [ + { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + { + "name": "typescript", + "email": "typescript@microsoft.com" + } + ], + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/types-registry_0.1.387_1525191156081_0.7770319220607151" + }, + "_hasShrinkwrap": false, + "contributors": [] + }, + "0.1.388": { + "name": "types-registry", + "version": "0.1.388", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/Microsoft/types-publisher.git" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "MIT", + "typesPublisherContentHash": "d0c7d7307107ac2b1a0bb9b375ad83971d8ea83b0e7fd82b4c152641483a2b39", + "_id": "types-registry@0.1.388", + "dist": { + "integrity": "sha512-jqA37XEJhP9MaGPEM0ciXIA2wfSkLpqTlA1SYeMlOSJ7fSAFJO4Xdr4VdHJVzfWVXjx+JKSNLkpLQqewctWc4w==", + "shasum": "1aa9da8fcb380ac8bc23c2b6d8a737de0fbd69ed", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.388.tgz", + "fileCount": 3, + "unpackedSize": 8407, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbEHPgCRA9TVsSAnZWagAAwawQAIyIXzVbpcvTrk7fgu07\nHbbXQpradnerm7k3Zwo04nrFGowr/q9cIgbVVhgmVKha5arTJUswGfCeY/Lf\nlYL8XGMATzRai6TOleuBuZVNMDYOeExqzLWTwucLKcTi10FuIDAEf95uoqZo\nLpLc+qaKd5TetWr4Cn9g7eV2aUUSgEXiK4RBX9tU5+GT2n6EMBPhzIr3I3qT\nYAmqqYM+kmL0pp8aAX6ydbmWAs/ejJIh72e7CnfZZLQ7pgpBpItqduxujFCn\nJcizoNCb7IiN3LLviTTSasDBxtcGPWU/X6whX8+7ppHuyC+fLaneMG3svOTh\nWrJMuulQbf0V6JiOvm6AYY0nP1l8LyG2uDWIm/668F16FRbL6TGq37eK7q7O\nCpyB/rXeAlecDo33Stt86Irjz7zStZo9mx3hTzZDXOZMyPZpX/yYKLc8Rp63\nCsIv6vxfPjgEx7pZHNSWyoKExdr+DhMlv/OwANgbEKpcgeMz2gEr3ojaRpXX\nNWJuuAVTAFZPEXh0Bd4bDogwIvOEJ5eAXtvtGZaGbWyFI54iuoBvtqMadWYL\nNoS2WqiHKnuwqVzD4O9VO6knt9ZjQaJCI5uh8FDlM2Y8bEbkBu/l5qEh7vC6\nyJb7oA3T7SL0IJs7VMKxa15nxQtsJE5bzTPuW3gnB/A+7VVNFh3HB0n6Q/RA\nP6bX\r\n=N00L\r\n-----END PGP SIGNATURE-----\r\n", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEQCIEBqZFiiyeVOTo051Uqtt826VmfGjQo9DxdQyYqsOMprAiArdHjnryXsp+A3SiQct/VW+bHq15+iZ9LjLEe+p4jNLg==" + } + ] + }, + "maintainers": [ + { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + { + "name": "typescript", + "email": "typescript@microsoft.com" + } + ], + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/types-registry_0.1.388_1527804895602_0.39654217875561604" + }, + "_hasShrinkwrap": false, + "contributors": [] + }, + "0.1.389": { + "name": "types-registry", + "version": "0.1.389", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/Microsoft/types-publisher.git" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "MIT", + "typesPublisherContentHash": "b60b78aca1334d52339852209058ed7223e442d8fb62b225c2966676781bf6ef", + "_id": "types-registry@0.1.389", + "dist": { + "integrity": "sha512-VPF6mZfKVnJahsXkNVjsv92wbwwUJIrg+xOGiRO0TZGtiN+rN3I4wuQjTov1xBEZIDPQuVRwjPMEb+/bP43biQ==", + "shasum": "ad4d3bc6d6781d011336805ee8d52e779a759011", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.389.tgz", + "fileCount": 3, + "unpackedSize": 240667, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbEdkiCRA9TVsSAnZWagAA/T0P/35HaSNv4g4RH9GV0iQj\nPctzicaQcJd2X65mR9BNh8wiSwNBTOK+NAczXlT+SXah2LPkaIwwuEgsn6Jf\nDlxG4k5zvQbQLEbAzE98Pv8QkM05/DKYZ5dgAVYKQg2uyhzdxrDYjY1apHc0\n9OTrvSMJBDRi5tQlXKa11X2Ut0QctUH+QiyqXaKjXIEeOnZG2AuZrqRdf2zw\nYS0tEvTXOm2N/EX+ujq8Fhjmj3rb9beAXnFYDrjT0t4GCjkRmqWFrdkzcflY\nBKE89MZ9td/0sh/CD50J+2twFwzj/MIzwCc2lCXNcMW9SMS9OLiGz/J+57p3\n0J3yfsGTn5/pgIbFEHha0MG3vScPCgaynmBDm9DZRkqBNcMIgRkiO5/GyFQb\nvGie+eZJAMUuK6NAp/dAla6gKXnv8eM69+yb5p7Rxx4Tl2ss1I968p7lrIAq\ncGuGhuyhVWMG3pg+pyqusPHFO5XdmWREoOhRekHbdUop/1Bogc5a/w8DJ4GK\ndqZJJ/Qz59sFWLKQcOjTaMnPdAww2eiocmxX1gtTf7eEFm/jYadzTCMw9qoi\nlBTOARti+1JXbtuVLgY2bzFinoi3sNyZk7D5CcF9BEs5HndwTpkAHfIf9esu\nBdKUdGJGtIut68nY85FNP+lZ/pqMBDOVDFD1PGo6r6e+Mu6EUaMaB5eaK7TK\nCDJc\r\n=inUy\r\n-----END PGP SIGNATURE-----\r\n", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEQCIG5z+++wdHLGmL30QrWnPEgsccIXvoDkOr8yTbKDdb8RAiAEWCUCAx3KZSCf7ZS452atC5/mIp0wq2/+5ROrXviTXQ==" + } + ] + }, + "maintainers": [ + { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + { + "name": "typescript", + "email": "typescript@microsoft.com" + } + ], + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/types-registry_0.1.389_1527896353932_0.1874747248127513" + }, + "_hasShrinkwrap": false, + "contributors": [] + }, + "0.1.390": { + "name": "types-registry", + "version": "0.1.390", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/Microsoft/types-publisher.git" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "MIT", + "typesPublisherContentHash": "e5b402815e7e827b8862cb0236e5cc3a3222a5aa0fc1a4ce39d75a7f3846edef", + "_id": "types-registry@0.1.390", + "dist": { + "integrity": "sha512-JHd/kJ7ZQ2W9j33jn9NjvzkUX9YKxE4fUewiSiK0WCT9p5WkOzRsnUSgHRfiRAEWCUggOitBT5boiaK7gBnk2g==", + "shasum": "056248bf4f333ab0b5fd71a4072037a8b53ae73c", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.390.tgz", + "fileCount": 3, + "unpackedSize": 242676, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbGyQGCRA9TVsSAnZWagAAkqAP/3lS/vGXVxCoHWu7z0cm\nFOSH9WIGFtU0+LpODW1SyDruAjG9u2r2wcF//Zir7iQ1lbdHr1CiuwPhqfIU\nsedkfxaVXPSlHwlm6k709NjRrhswuneut9fsUBH2ENJD2VoVQ4k57LSBZW6b\nOa+jWEZzQBdHfDgL5iyFwra2sToFyB8fHXlIBP3SZrrRDNwhzj9y0NbzPNVy\nyWqwjYrQ5tK9RfzE4PLBXh4nCpRFmvNHRnB0RqkpBYfdxIEDbXdRfdRBS+G0\nBxjz5NtW9z7hv5havhsr4+EDNusITjdnTAXXs535ABusQ4K4DDwZBOoSJV0k\n3ykAHx5y/SRu6d7wQS9sPNgtPpvgRjXAN8CJDGWc75SE1pycACam2PxIjK2v\ne6OnHZWLtgi4XnPXBl7KHPJ3TRwd05W0YCNOK+K0OmA2tz9JWmjia0xgUfft\n1xl8ETHC5zsez1lh4Yp1BdBabxLO0pvKvrmX0AHIjqr+y2XfIcbibxsxNRwV\nkA95aCCKMG0+W1cPDpPOg+sFpr3G3Zqgo/PS0ONoo1KcxqD3CyeWGyzrB+Cw\nUWitDockHiCJXpYUtP0VIm9wzvqzNCXEk2ci1MjWGjrztvoorZlaiVeeuOAC\n8PUNJJlVC9Y3VdZ/aoJqo6w0ydWOJOR9DRnmJgjWnWLTOJsx3UKpbFaHWDIm\ns3zX\r\n=mlJ6\r\n-----END PGP SIGNATURE-----\r\n", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEQCICWt+X8v2saEEoJFOeNI/lpNPS6BYdWt3gP2hZI8JmsIAiAxsfrzGuzRBKTvJ/kikEs0umWNrW7VVOVMJBsKwj8pyg==" + } + ] + }, + "maintainers": [ + { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + { + "name": "typescript", + "email": "typescript@microsoft.com" + } + ], + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/types-registry_0.1.390_1528505349261_0.6428736093899181" + }, + "_hasShrinkwrap": false, + "contributors": [] + }, + "0.1.391": { + "name": "types-registry", + "version": "0.1.391", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/Microsoft/types-publisher.git" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "MIT", + "typesPublisherContentHash": "09fedf12831dc35ca3356f1b0d954bb898c42437b277d6466e1cb8dc17838c89", + "_id": "types-registry@0.1.391", + "dist": { + "integrity": "sha512-+DWedioBg1uI17Zu0e5igchbdsAzD4rba43La6qRScKYnSMWYbWel8RJANI+5g3DP27aYEsTcQnXP+FY3IV3xg==", + "shasum": "9a49f9cf308f484e4f5ff7ac2419c4de862c286c", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.391.tgz", + "fileCount": 3, + "unpackedSize": 243874, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbJTapCRA9TVsSAnZWagAA044QAJJHWUBMxH99+31zf138\nqXZa+oky17ZX5JhOXVX5JMOBjAN64A5EqpeF+xWXNFfW0oMkHdCaJLlcOptE\nVY0+ekF6LPJlQA6psSRwiksk3ZQUfd7TtYmKpaSjuO0Q90uoYh0RIpZljixa\nuVXb3XDcf6LnsqyUXs8PZNBuHCBJCOnt3F62PBTBNXf3QGSLO51axvXnaMub\n/YGDiLi89G+oDerwB6/u62+1IvLa2ZFpjHgQzJyQ4bcugm0XFLwaq0TvEogO\nY3pT+kJdIuI4JjuPIkyFZrUwZDcuwpfNgxGVuVwTxB9BueiDNH3ybS3WNvPQ\nTqMrJeDdGxHnPmiCC1FfuGhp4k96I7kZ+j5gNUk29Y+E+TQpjJmHtGyVNwuF\n6ITfIKr2Itm/FEFEFv/kjO/Y5DPBwgzqjITAuIHD1HBCqqRAT9OBY9JjAKBT\nyvl4HmPDVS+kN0J/x2eFYwCidYJQ7X8HrGcAMbhsXy6oLcIcQUtUFsgHz5ko\njY2CoDKhBbBGH74NyUDgOTy2xarX2AOfNq9q0B2iPoF3WsDFfgiURYDQINqJ\n6JP0oCVqamVGhYPIxsQI+Vc04GKCKcQkcFDkD0knIlgoUERv5/rhQb5vhpAV\n06i0flfiLkBs0W6JOq/3giSz+CGwk1chdNLXV/IkmkJ5QWNU7BJAUc72tcRe\nC8NA\r\n=ZiTV\r\n-----END PGP SIGNATURE-----\r\n", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEQCIE6rkPLE7XvE2dPCKDTqxMzztIF/Jyp5Vq0uvsvOcVnKAiBV88e6hy3R3OyaqRCQxItVIk9PCrU4HYqtbGHqfAt8uw==" + } + ] + }, + "maintainers": [ + { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + { + "name": "typescript", + "email": "typescript@microsoft.com" + } + ], + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/types-registry_0.1.391_1529165481166_0.3088727301851626" + }, + "_hasShrinkwrap": false, + "contributors": [] + }, + "0.1.392": { + "name": "types-registry", + "version": "0.1.392", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/Microsoft/types-publisher.git" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "MIT", + "typesPublisherContentHash": "c0a1aae408f8b9ae05784933a6f9ab3c7cb73d1936c7fdb27ec8f89fb079c6ab", + "_id": "types-registry@0.1.392", + "dist": { + "integrity": "sha512-q00B/qmgSCqX3xWxGI1srri8UqwnLJZiqebWcMvQBFEEKYe0NW9VItpmc0fHhax9Cok2j6uGW/WZECLCqDgtwQ==", + "shasum": "ecad0b373be988b07f65e92b34c9abe9fff2ac83", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.392.tgz", + "fileCount": 3, + "unpackedSize": 251151, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbRCyZCRA9TVsSAnZWagAAU/EP/i/tDs4e7Ra+Q89YzGbg\nF/j2mwd8fnfjundxrvzf413YoKtKvmA5uVJbbmw3zCmsatjTSp007wq6QrS1\nkF09PQBJTbJfTe1is2t0N3c8Sf0CjdyCo+IF9tv/H/LlsfIf8j7l24hOXl8I\nsPFp5WUUG9BOfIkjZ4Tu5ejg2NC6zslbu+hd9DQwLC9PP41QKb1gCQ/UOp8w\ne6L4zXS53VEHnH6PiyUCRaQqBDZwlBeKJo5JqbEriEROscWKix803lS3uOXO\nIomEeNA+0jEFbAUGccRlbCT/SFFk8oFrvc9OhOAwVTBYYXZtmC+pAZNuCIB5\nU1IvV1YAoDKcojudGj9j8KU99OYGU8tVSqyV5TSDokUSbqqbo3+RDqlJRGS4\n8XnhEwkJvqan4nOPsjx49iBYkxUc/Unco+ZadRCdz+QeGpnZofYryvNqn8AF\n0szzFa3l49aOaE9CKBZECYN7dq6l+yw40oR0jjHAgayz7vrWQiy5jMatiBpr\nY57wBp/OPRCDo0gAFRbZ5yO5mQ1+7smuLVYJO1dT77hpPpF3qTC3p+xHc64m\n+20E0sOdH1k2BXdcQ6pjgOVfO/6wc+MDqtsMdOU15Nn0Peqp3WUH/lkL3thT\n2XbueuX3KBy778nyPWr5KQZm+5DPEq+0yq2qsIUhP4vM4k9YxslqSYVBkMg0\nV3NN\r\n=FIZh\r\n-----END PGP SIGNATURE-----\r\n", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIQCcDjr9vrh7KwaNZKtALw/h0fXYIpc9xgYun5VkyyUcRAIgd34f1nOQNbNFkkjWOze9ysBoXcZJwYEKi1cdp3NbRZA=" + } + ] + }, + "maintainers": [ + { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + { + "name": "typescript", + "email": "typescript@microsoft.com" + } + ], + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/types-registry_0.1.392_1531194521599_0.5499200095854342" + }, + "_hasShrinkwrap": false, + "contributors": [] + }, + "0.1.393": { + "name": "types-registry", + "version": "0.1.393", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/Microsoft/types-publisher.git" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "MIT", + "typesPublisherContentHash": "14a5d5c9b1fe994dca639308abce721dae62feb82ec7bc862b60c62e3389276d", + "_id": "types-registry@0.1.393", + "dist": { + "integrity": "sha512-3QpmMZPh7TatlLVRTjROXWFT20Cr6EBxF6MqGW5E/V451KFUOGn7q/lkElzoc5y6DCl8wAO2kX0CQNgqVdWQMA==", + "shasum": "4d1828640373f4a0aa94d3efdec720bba9c04639", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.393.tgz", + "fileCount": 3, + "unpackedSize": 295496, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbhtPtCRA9TVsSAnZWagAAi6gP/2CBb0oSgqfNASYPdLjI\ni2zp6J+tL5mVgVGB1ZmdA6skRCXgxB8IjG0wVh1e1mwzJFSs0nGzFcmhHZ5y\nMKt2JtXjhQCvlO7l4OahzszyjkqgRYt4ZIpechl0I4AI2t/XOqLljQYZGzT+\nonZj2n+VZPhZlwTds/I8n8Hkz7Ay3cqByPR4LtxNvfR0rJxoBm4Dxn7vAlVM\n4nlmtXi9lOpL+R7+ef1WLLBYhliyLAsCvXsqMOF1XaAo6Rk5S8wJnoA1fDKe\n3P0QWMtKHZNcEAmgJZwZ87TobtXl/N7h38qr63JTbhca3x/FR6ZQYI+fAKba\nqEl4JCRZxDdLv9kW7g3rnB70vvXdfJiYXRki7uG7O4GBUnF9OCLK4OfNnqXw\nb5ucZV6eBJrkSyzMq80aaa76BnDoZ9LR3sxhOEdXgAAfH9yth8E+R4L9nkQf\nT1CUwIOUKlN4YPwRV1Z0bCxajvGgLPgS0Blotlgh8fFqhnZDFpanN5/W8sDc\nlvi+HdRMAgMDLaYOe65qEj+Tvucneg4c7t61IAjIkpj7V1WvoBtPrlqfg850\nG7ohh625/n6ps28TuywOdHlHUlgqd5WZ2ZE9GtE8CYKK2UzKbyW0UwvuSCzz\ntpOOuK/QpPWPoA8f/SSD+uZYxODD8BPudlTpfoFpZwIiXExOEN6WPFDDar39\nRJXi\r\n=mSKB\r\n-----END PGP SIGNATURE-----\r\n", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIQD4QIanboxf354lzX2PH9lnExNweLuLlXkksmwKMpF41QIgLCZ+lSQdU1oBT8mvNEIzJFtggFCnOY2YegVD+IEFJEE=" + } + ] + }, + "maintainers": [ + { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + { + "name": "typescript", + "email": "typescript@microsoft.com" + } + ], + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/types-registry_0.1.393_1535562732915_0.3869490533490272" + }, + "_hasShrinkwrap": false, + "contributors": [] + }, + "0.1.394": { + "name": "types-registry", + "version": "0.1.394", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/Microsoft/types-publisher.git" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "MIT", + "typesPublisherContentHash": "f885922527ef84e85957470f9ccef5113bb9a211bf4d9a9c22e2388ac3995381", + "_id": "types-registry@0.1.394", + "dist": { + "integrity": "sha512-Am6jJIj/xGrODDN90FuijYcESVTkgpZdN1nYXM2evVQz6+ttye+OUCXwu1oa3AE9it12e5Gcg/pcgYVnLOWxgQ==", + "shasum": "8e93af6aa430802af279eae632b18184c1acc0d0", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.394.tgz", + "fileCount": 3, + "unpackedSize": 311447, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJb3OvvCRA9TVsSAnZWagAAbWYP/RvbBS8U5Ao2BLqUQefv\n3z5uD6+5gtp3WvQJSbvOfoE3bT9bkSG3Z3sFeYAkTJzGVbIGlrOQbDYKd/ih\nQJIg/vd+nGcMazsvlQo3qWI7G0HM6oXBfbxuya+gp20P7aYmjxJfQ3BuDFy1\nB8+hVI0AdI8285CS0Ewcf01O6QvhUhebFYFi9bU3CMvH3R4fPlLl7RV6kBZI\nHrh6osRWBHtOL5uW/5PRI5+VXO6u5pZWMtrOADBRqbtyICYd4snsgF/ij3am\nvc0s0qhqJttsqL1gxRdZpRCnZEgbCvk+XmmekjCzoZPk9Guy+lTw26yhrOQZ\nDomKlx5Ffn+6nADv0yxW2L1gNQ/KhpkIKGQ4RPHB9D+mY+c7/lmQ54ew/uwl\n5E75Cbn90XivhGnL3l0inbIWoWxgMbjHfiNJq482gs/ni3ZrfsrDmq2aAkSy\nXWbcJXr69WfQuoRjgjGJ3HRC77vKq1eODPuDagYfuDn6vltY+qD2lWxRMenK\naAmTj1Dalf9D/7OtXaZL2KoWNY98VIh6HLX6k2o5C4XHSRT6Nhpjwu20rw4J\noL1wAtgaqKDJckXeuIUSKZr7CXBiggqC1/+B76XwifaKgiM2y0UgpL8IQWzw\n7t1z36JctXH9w7JbOpyyg5C/AIZXWhtUwDugE5HO8HRfhbeJU4ap2+d5jMNr\nl2PB\r\n=l2pL\r\n-----END PGP SIGNATURE-----\r\n", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEYCIQDuHml18n3xCPnReg62b3/Vvpw309bR5gxlua72jhinbgIhAO9GETmxKXuoJAEMdNPQwERXmssraAOHrwXm+NZi+7Gm" + } + ] + }, + "maintainers": [ + { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + { + "name": "typescript", + "email": "typescript@microsoft.com" + } + ], + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/types-registry_0.1.394_1541204974707_0.43513900101608205" + }, + "_hasShrinkwrap": false, + "contributors": [] + }, + "0.1.395": { + "name": "types-registry", + "version": "0.1.395", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/Microsoft/types-publisher.git" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "MIT", + "typesPublisherContentHash": "d1477efa7a078b8d0c5f16d079e79109b8825bd75ca64bf9d07d67c17394d6ae", + "_id": "types-registry@0.1.395", + "dist": { + "integrity": "sha512-Sggg3nle6Gjx6dgaKVf3PVVRiz2JYjS1XUlxHEnwcuCw/jrJxfk7PqdDQRjzbi31vf2WPqGS4Pt1GfIszn5i6w==", + "shasum": "93e71f28c3d36b32ed43dc70eb39b4ce3d5e3162", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.395.tgz", + "fileCount": 3, + "unpackedSize": 311355, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJb3O8lCRA9TVsSAnZWagAAXWoP/0PY2bVtEyvDFlNnNkR7\nzpjlmClyAv1EIACdRk72Xt6SI2YMwhoYAMC+QepIZ4PFhvFEVK7OPtfZdc+I\nNI8Khp7u5c5TFXuXmaU7fQcg1WEhWZWQOe0Zl5dg8FQd6Rm35fGKoix4V6tN\n1KyQ+Q7Za/DkiobYmFS1sMUSBXSPwst3L1CwUCLxn5VoI8+OShuT8f6RUcXT\n5BEsPBX4eRV/0+h5anrWwNgVk+TLFlVQKl5AEnrg5qhx580lyJ5e+cHRkEg3\n5I5PjsVZn0IqMB7lypSFfGaczR+VWtDQ5SIaQsmK6LDRzuo3mOacIqc0Grep\nSySe6+soaYw32HDpjo884eYpU1HZr28u74f69lHv+UbkcJa5HfNaLZYbkeIc\n8igXP91zWchnUrNQj98M76w5ljihwYgmfvNAAoaShciA27AS453Kj9r+ppgR\npMuXolfcyq/5cPU0ESjViBgGBt/7S/ELc/Mm/oilPttDHv7Fx3sTXoUBkdn2\nh9eNOHdcnaLF6zr9ONFRS7a6w1dSZyaI6qFzlGzBuhPzZInBZwd/7iBLnwvB\n4NOQsnQt1mh+x4gjAnmTqwFj9tx5sDwttfpfYsiSpZ1jrY0rlq8nZNsh9Bhb\n+wQBAIOSxGgASz8kLmWf1dePSPaZj/oVVWPKV7VFrbT8OyUD5di3yscQo98c\nvSjG\r\n=4lMR\r\n-----END PGP SIGNATURE-----\r\n", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIQDpno9JsgS3/rCvkjO4ONtkHo172NFST4uAnWHL3xjLlAIgOytoy8EkHY5FjqePGsIIqDrLy1XnnPc/CQjJIrc09BI=" + } + ] + }, + "maintainers": [ + { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + { + "name": "typescript", + "email": "typescript@microsoft.com" + } + ], + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/types-registry_0.1.395_1541205796619_0.6718325618987007" + }, + "_hasShrinkwrap": false, + "contributors": [] + }, + "0.1.396": { + "name": "types-registry", + "version": "0.1.396", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/Microsoft/types-publisher.git" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "MIT", + "typesPublisherContentHash": "1d80931aab5060db6717fbd17019b8d6bf5da6310ed8b396b83a8daf27baf733", + "_id": "types-registry@0.1.396", + "dist": { + "integrity": "sha512-xfpiAoLNnva+/tHvsD42yPZER5mATr8Q5BDdpXUitZULOdQOMBA4+0rhXrV/6EA6NPpUvGnkXyxlhbVWfhKXig==", + "shasum": "ac641ab372ba5970c40ab9e75c6d90f25e9a77fe", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.396.tgz", + "fileCount": 3, + "unpackedSize": 311355, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJb3cYsCRA9TVsSAnZWagAAy/4P/18wrdQ32Ka/ToUJhuHp\n2ey6mFt0dAdU5QT3DpFa6DL4lJLvf4siVmdZzOPVIuKC74umUDq1fGJwE/Zf\nL5SA/drXb23b9LaB0A4TI2eBeX0bnFzs+MeQTV855pszXimz7Yey+XIWYYEu\nLxpuN30d8jS2ZBXcDZMoIlbrAoFYfoVnCz4raKzvOBdFGwIwszsMNEPZWakQ\n2KftJo7GatgTSFDpSJ2rYmmwhiPVdoc/6p7YEgqyQfczkWfsqrLbdTI1ypZz\n7f7rKqZcKwOOKKVjluj2tue4c8z/MHBB2p81qTXQhneO3g15OtKodCtGIqyu\nHgfkz8+JLj5iODMVpLS84zsqU1t8tJZgAPktE4OYcotC730WBoTt8y2hxWvz\nrD3XSgNRvW9T9VK8EeE1JoBMZZkvLq2f1Lv1z7euXPq/VVFNM+K+So3VjDNA\n6IxbubIGW2kSj3AB4ZGqY0HkbBVbqzn+GCQTna7JBQXhThJVxpGuFZyFOFMw\n3YaPlWtAq44dwCrHwozUWFwPncVjbo2JUouKxSFK5STanRDve9MaIasZNeIe\nkvdtrT1xbjBX6dCw+0YLoZ9OL05bRMYzNdmZUXdo6N8KG5qAsFxGb+hPb2mi\n6xzKy8kGFqJqwvmDCdmrbtg8mH903USzML+u6mPexoZ7jBi17BrWp2waBaMb\nD/EW\r\n=e7TS\r\n-----END PGP SIGNATURE-----\r\n", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIA3fYMntFg/Yc17M6YNlockqlyDERWiYX2pZ52VJQxOBAiEAreK7mdTSg/IThlyOt/kW0Pn4fM7lRRtkP1bzOq9UA9o=" + } + ] + }, + "maintainers": [ + { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + { + "name": "typescript", + "email": "typescript@microsoft.com" + } + ], + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/types-registry_0.1.396_1541260843769_0.7993311059271224" + }, + "_hasShrinkwrap": false, + "contributors": [] + }, + "0.1.397": { + "name": "types-registry", + "version": "0.1.397", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/Microsoft/types-publisher.git" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "MIT", + "typesPublisherContentHash": "abf42ff749f5582b6e2cc4594d781fd8214042bf4b5dc6848e1b2bbc64dac32c", + "_id": "types-registry@0.1.397", + "dist": { + "integrity": "sha512-t8WscTOmtfZW/np5zpyhL5DiuDef7bezPsxBrkCy5dGd7YoAnpk7Xl1Al5GGjL021MIym2glvt2faqaZcjAilA==", + "shasum": "ba45f52e7eb34e43742b59900cf67a232e82c93a", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.397.tgz", + "fileCount": 3, + "unpackedSize": 311421, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJb3f+tCRA9TVsSAnZWagAADMYP/3CpoNscFA2ahSjwhYI/\n/Kk6AnqS56Oyw3Rt8PtvuUUYMqjNeKDOrdf4ncyRazpuilv/DyxHDS/thxf4\nkmkFT7FrkR4DffJNXsQNoGeiSl2Ly1Sp23datQLjQaFDNCCjojZXCrQ+7Dt8\nnHX/AAADn4I+zOHMwOpwEhPEVhh5VFl8xezGFJzM+Hoax18QUOMBDeGwNfZA\nLs4LqD4foc5DEq5ha3xx0deW6pXbczSTRWgdZDdhYTtaXMZa6SWkWvfT7UR/\n0P9PDoCztZS/ttBcZiM0fdsh/sZJvaAbVgwJ9ATeZE/YZQMZyY2ZZsk9jvCQ\nhn6Zk0wSKqZqjKfMtMmSh6sT3I/JW6FOrmjq3agY6RdrY3pGYKKpWc6hyKhA\n0758L0o547qhym7QdbVPxhVmdhqU/HeQt4SlSdCqoUPowRUT+6sS5Xxh/vLs\nrecErdZG5H2fOKFCsi40d3pgKIyGQevCmbrnk+wkbgrKWC5eA2azM8b1mfQp\nuDaBjBED3Lh5oxQIyWXj4HEE2koqozsHdgX176sZjEPNAnAKKOKusfEdIq5d\n6je08M2YLOcu+PQwVaQ1LwkdRRFf6K7dzkOptZNtw5HHbQ7OW4br4WELpVoO\nYz9onuQVb90InzwJU5Z5ksplh5RiwBEPEjFG0lesc1mUl1yiXH7y3x1ngXgk\ngFEa\r\n=pRpK\r\n-----END PGP SIGNATURE-----\r\n", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIQCDKykr3gDZ1267AFMG4wtZUh7ACQzmYAU2ArjsfzT4OQIgAKQE8cNyOCYv+VzluCK6xhqrKi+cahsFMuFOR+I3ve0=" + } + ] + }, + "maintainers": [ + { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + { + "name": "typescript", + "email": "typescript@microsoft.com" + } + ], + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/types-registry_0.1.397_1541275564136_0.5760780227024274" + }, + "_hasShrinkwrap": false, + "contributors": [] + }, + "0.1.398": { + "name": "types-registry", + "version": "0.1.398", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/Microsoft/types-publisher.git" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "MIT", + "typesPublisherContentHash": "3a2c2c880e6aeafbc85a18fb7ce17a3af9140dc8e3115570135ac5a1232c9dae", + "_id": "types-registry@0.1.398", + "dist": { + "integrity": "sha512-FSsCqJxn7BC2+HCXiVPDFFVA1ZDDiZ4rHbqNZ2dpBngK4ul73a4FhzfBtEVfFaop7y7lE9ifPAGY+L1cOazmJw==", + "shasum": "47547de7c6f47e7f12de6b77bdb09d122e7abdc3", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.398.tgz", + "fileCount": 3, + "unpackedSize": 311421, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJb3qGpCRA9TVsSAnZWagAAKdUP/iav8nAE5Ufaq14DTOwS\nBgVkW0HUPCZU7G7T8l7OLJZX1laR6Cj+E3pDubXU1S7nDWgCA/ZNO6taGEyw\noHiP0PuIcsO/Z91eNf+os9bl1/7WlGQKis8UMJdZ7KXDQTu8/eV/UUY2axOx\nt4RYatVcKo7OjMbmaeTR2xCGQ8IhD6wMQU5ck47I1iu8CUyy3JT40cpfGXO3\n7IRK1lGiERekZi7J80/US5YkY0ERCRz5A42w5tuHyrVjtIuuIpXY26BbjfBL\nNvlamZyhPhiXr7Ji5jKnCB1bALiyMHsj6u4WB6p1o7V4OJdlkhMKdKL58FEr\nJsoiCyLIUDzo/hD9uQqLphlfWofTY5hKfG62UQPoj9clPhPD19eznkHYoABk\nQWjilgIhhttIl0u+HsrT0MevTu4DtWPzrOgJCSdiqdzuI8uV7Tl+04fUIjQL\nK+H+y9VNz0P4CXraoDYrgosrq6v30bia3y6pWziNdfG+1P6blYwNzHKMOF1J\nubUxLyr36DE4ekyA15N9vY1D8hsQO2Oet26Sti4Ltp4Y8BUJllJYqUz5zhdA\npA8gK5AS6Cgqh+Ja4K3EvCq4Gr3gK5XBqSVvZg476CY3Dp9vnrSkUVp5Ix39\nQG990UKFcFlIOU1M2ckElR1QE3xHWlRvC1cSoBVlabnCdNhKAiSqYtckLqy2\nYFtd\r\n=d7EM\r\n-----END PGP SIGNATURE-----\r\n", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEYCIQD3AiH7TnY3JvLrIq8kGVSzO1plVpIJ9EhtyQlpbxpxGwIhAMcqtO8ttdvMI5WEVKA9eunb6gHU2Bi1IJYFrzAX9jpv" + } + ] + }, + "maintainers": [ + { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + { + "name": "typescript", + "email": "typescript@microsoft.com" + } + ], + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/types-registry_0.1.398_1541317032430_0.1602690862464522" + }, + "_hasShrinkwrap": false, + "contributors": [] + }, + "0.1.399": { + "name": "types-registry", + "version": "0.1.399", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/Microsoft/types-publisher.git" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "MIT", + "typesPublisherContentHash": "293123f8aeaf5cd1478c881c9f44c8323b8af8fc84b17eaaf48986f9980897e5", + "_id": "types-registry@0.1.399", + "dist": { + "integrity": "sha512-b+/vGP5WTSzJtZr30S/XHdYHrSamFiS/IG+Ucu+dLfNEW+NPLCSi1H1yfwWeJz6aJwg3NRn1YRoW4E6zm/TAVw==", + "shasum": "726000609fe82d229b2cf46591ec83cf2341c547", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.399.tgz", + "fileCount": 3, + "unpackedSize": 311420, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJb39LcCRA9TVsSAnZWagAAyLkP/RLjM+VZ5VXloUgR6ZZN\n4NE0vl4gCvTuB9bqM80rjLU/fLYE2gV/WQHF3LnN3VNigdcOXbI80zrYOajf\n38+QkI5jQSvP2rwXR7UMwtRUponNf4cGK7t1F6cgRloiaOy18f9ACFqACzyU\nPVQvYenxqj88cvpyy7cc9Zuv5wBPW3UES8NH05Tv1N34+ymWNcz79NJ9WbuI\nHJTD+VQwX0Z0ilC80/jiXp/JLuBcR4jfJiTSE+hUw979qcqqiA8LV1QG+MGC\nA1PduIsq/DxcfCm8QFdNgGJPGzG3DnpBNTge+/UWtaSFqRAgQyApeq9qgmVo\nm98rxcaU6xD5oWpgrhaM28egIcm+97W3BujEzLkHWNJiQXqFaO1wHgEAtfBB\n5PfSuLnaxyRAjjVZZAsfMqRnbnAkQCipuOYEvw62+OgTWso1vv2nZhTc8XHb\nncz4VS292APKvjMfRpS1W8/oIaXW7kLiFYGhmu8pqo7jaEubfALZXuSE+8Jd\nZpFYzurF/JMxDdBuMuwtQFYGS7QmHMN6AVZOqfm38VBrIL6toVbFKwBza8bl\nYWZH9WcCBWu2f0GGdz2Emx9dqgxXYrqJQDTNWKyCdWzO8gaSibFBurPfePtA\nT6zA5wnCJGOlZIiQusPfvWEheMk9JHHJVUQyHAhZaneBqDqdLQZMcRqefCB3\n2w3t\r\n=HmKY\r\n-----END PGP SIGNATURE-----\r\n", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEQCICBBvyduNDPbYp+976K9znyNlIEfg3dpHt35Plqm1HsJAiBQ44aw++hbA/zr+V+ceKKKRtTc5dlmDCu51KMSOZg4Wg==" + } + ] + }, + "maintainers": [ + { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + { + "name": "typescript", + "email": "typescript@microsoft.com" + } + ], + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/types-registry_0.1.399_1541395163304_0.8320322269086069" + }, + "_hasShrinkwrap": false, + "contributors": [] + }, + "0.1.400": { + "name": "types-registry", + "version": "0.1.400", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/Microsoft/types-publisher.git" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "MIT", + "typesPublisherContentHash": "9bc956f5003934c5e596644e2279ec06f269d22b6369237c968a393963637554", + "_id": "types-registry@0.1.400", + "dist": { + "integrity": "sha512-k9PBt3b3jrRu+m3HNUSuU6s5DFoSozAkZ6izmO3lE3gVKXOR25EGQ+xqz8PguYt9emjxQ9+N+YVf2FK3Ej127Q==", + "shasum": "02ad94e79f6a056e446774ccc624798d97876c10", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.400.tgz", + "fileCount": 3, + "unpackedSize": 311521, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJb3+BKCRA9TVsSAnZWagAAwFkP/3w2lBJSyu4Pw1wu9Ovk\nGxB7KDDXHRayd7YDsHEVbgBgXyVmzXzbCDygG4c6IxUnvgtp9Gj9rpKWDxMT\n28l1cu3i2gM6fI329RSMoP/Qhh8DhRgUTCp5xWzVAXpC2g5Z6OwCEd7G+2Nv\naKKE6UjtXtJX/BmbFlG9Ska6rnL3uTQwtk/C2vINtI4KijYyrWFrYNOw9/n+\nqRUhY8Qd2NvX5YlijFa02mxmlKbLDfLaUUZLg2mbZausYRwMeVLbE3Mr/Sxb\nGWYKDJ+KL/qqPZ7mWtKnF6GvfyNc2dF8TlfF/KEXVJFGW7pMhfx/ovKcoORR\nSRFjbRsCcaWTretrSa1ERq/e9y4LpYn7Bd7WMe9h4DdBq7QmqkKRdW2by7xv\njeAXVJsrBOnk+5jwQh4aHFAmRrX6y6SSTPMadYoFlb/OWdhmPS/7vpU+KT04\naS2A/uGTYYcD4ureqC6MQZ5dzZS71SM91vW8EXRUodWls2UPvWsoP7w/IqsI\nT4oeZfcW8jbBIw67a674EiO+s7RFyNs6kCMvdStQmBAyOXUt1ooSJeHKRAMn\nRek++/upxwXDFk8/dg3qfUMz5Ff49Of2Tg2kWfgHGUCPh4YNA0xkII856Uk/\n9//J5Vgt4L1leom/at5Z59RsjZhYu20Kug/pjD9OGtdt5ivNf3BFOLL28Cnh\nziOA\r\n=zwKj\r\n-----END PGP SIGNATURE-----\r\n", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIQCpnEKCT/56aN5xbOPIgyaQcNwt5lk60miHuZTmVKdSlgIgDUeydAa9ZAaiRwz4W78MR1UgWGz1HbWGtasdCAn8TNk=" + } + ] + }, + "maintainers": [ + { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + { + "name": "typescript", + "email": "typescript@microsoft.com" + } + ], + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/types-registry_0.1.400_1541398601765_0.2326496092863526" + }, + "_hasShrinkwrap": false, + "contributors": [] + }, + "0.1.401": { + "name": "types-registry", + "version": "0.1.401", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/Microsoft/types-publisher.git" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "MIT", + "typesPublisherContentHash": "4dcbf5b2eedcbced9a392330194fb57c1494fd76113e72341d0f51cb3fb6a382", + "_id": "types-registry@0.1.401", + "dist": { + "integrity": "sha512-KbdjojpK7R2qYvsjZuYx5cSJXa7T9dSTA2OYJComRGI6JL1zpIxVrHGQt/tzSePXyvoZ63f3L0RyYhuKA7Agyw==", + "shasum": "b36a202f50db4ed5c7176202475ddafe224e6798", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.401.tgz", + "fileCount": 3, + "unpackedSize": 311553, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJb3+GDCRA9TVsSAnZWagAAiycP/RKyFXcoHHy/rzWabdNh\nUd4qiPTs6Xh2gl70AyCXMebG1hSnqbbjnXc0coDtJaQSegy2fO9wBYpLdrQk\n18I0KdeVqm3m9bQKP4J3wolzWmFJ1MlMshilE0NrbXO7VlYGQyW+YGUg7byX\nrZjmgdIFLz/kSX6S2s1/EAfOr9h3jT5YTCXmSyhUW0HvqBTSGCEe4eaR9LvQ\nSNrwFC/pnWlCc3YJdkcgUIkV1H/D7U6xpnNjsVYoYSkTkfffwGrqnPVrxcvq\nGPwId2E2RWSYq4hylBfFtcAJRYVscBcd+hEDuVtRIOjd4G8iC4HYO0if4t5V\nXLQRgMH8Ja7dXGyfryZPDnBDhGNCTu/wQs/yYWkWtmbWRcY/fn2ekjDXjQco\nOBV69LVztq1RL0GihRwlHX792/DHSxQ5Byqm0lUlUeRZDpveAdg3D4IfKkjt\nvSkxltxicYPxD05fa98zgLzfTuatNRRAiq3Zc8kHqcPinE3HDikEwDOZ24sJ\nJBwAXtAgz/t2m5HJCBklj0rpn0t9cI6JJ0AJdM17LBqbkXIdbhq+n2CfkSfB\nNe5jkt3/Cs6awX1msjpAvStxbhkyibS3uZyQcr5AUsAgndk794tpSlCo0ovf\n8wy/9k0bYiDDsWypoLaac05Mi9vqWu0sI5+zG7OHci8Odqz7ixXkSxMMylB7\nf5O4\r\n=4u12\r\n-----END PGP SIGNATURE-----\r\n", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIQDt5foXBbYDjgPlI4ulb/cTIsdWxVLmWQ3Frp1/trOSQgIgDxvaSzfHfCOI1HkEkBA80GbEg++gV2HqMUFbNTRIK3w=" + } + ] + }, + "maintainers": [ + { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + { + "name": "typescript", + "email": "typescript@microsoft.com" + } + ], + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/types-registry_0.1.401_1541398914823_0.22029679780101885" + }, + "_hasShrinkwrap": false, + "contributors": [] + }, + "0.1.402": { + "name": "types-registry", + "version": "0.1.402", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/Microsoft/types-publisher.git" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "MIT", + "typesPublisherContentHash": "f140f200aad36f2ebc1b6241942157d81290df0a99f29b0280739dde3c119cca", + "_id": "types-registry@0.1.402", + "dist": { + "integrity": "sha512-SW3L4Fo15gosASAV6DuHL5SHX8GCtfGZbihveKyPhMGDFZkjQQEVGk7U3+AilI0DU7LpqKTdfR7MReuuvZuZFA==", + "shasum": "1a80c79eb9e93c89ca0f69ee1acf245068ef96e5", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.402.tgz", + "fileCount": 3, + "unpackedSize": 311712, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJb3+RICRA9TVsSAnZWagAAxSYQAIPdlDu20Y4JpaOqN+ql\nPYzaJT3M7MPRRBcjALq/2G8Qy0Xrk2j1/CzPQtjOeUDw2ZK8HjisQA6PaFg1\nA/EWGZ1nYRer287edDE0dhuhNWkKq3ZJLIop9z+xDslll2kEpq+8kAcJEH5T\ntVYozLsZl0dlfSjX4RhFfII9StJgeJXNnjw3P/MVbQSLBvLDXYAt5WoxrOXO\n1aCtu1H70Y1Mlc71JNNpnrVCGB5cLmsQ62+qIT68DR2rMI8agMcTWDlRD0u0\n6CbscxaBWXdqBAJsDLqmw3RbZfEaQZu0Ug1fUFIDKbJ/MDRinXwg52rMwdJr\nzejUsPkUAPWXM2OPSbHDElrNB6sRF+by2JvzmSuAiiCf0IJmI4pp4vzHijO1\nqOGmuCMJhsch5cSC6Vd8vWPnDSBmEGuxkmd6tE4wrF8YVKAoiySevhY6dLmM\n8LLGEYl5xSO66ysqlM9hraye5yiHL/A1HAMpZGIZSI0RU1uSKa39lLs3pb4v\n8Zwls1DPFiKpKslj3rKDhFKlImFpzfTTVQyg7Scyn3voAggGjHOa9MdYHonI\nyvpC57cR1moCmguCEluGOpM3B2BTgZKQEBAyVuhAZtkOf6yzwB03Dzkr3pJr\n4JXB2lyUt7QNn3lCDJTYiMqYHBpyBXoze0f2aefXCUJrMJz0FpwbhPaJFhrC\nCMVw\r\n=tGoc\r\n-----END PGP SIGNATURE-----\r\n", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEYCIQDpF8W96OrMhUQBSV6tHGmmuhzfFyPr8XeuOworw62zEAIhAOTSHfJDo8yxRx93GfLa5bGmKpPTPseJs/EHSMVRurqI" + } + ] + }, + "maintainers": [ + { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + { + "name": "typescript", + "email": "typescript@microsoft.com" + } + ], + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/types-registry_0.1.402_1541399623760_0.811901437217567" + }, + "_hasShrinkwrap": false, + "contributors": [] + }, + "0.1.403": { + "name": "types-registry", + "version": "0.1.403", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/Microsoft/types-publisher.git" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "MIT", + "typesPublisherContentHash": "c3f213f12b345afbbe40917008e4ce8b12eb7ad1bc0fcb27045b267beb900696", + "_id": "types-registry@0.1.403", + "dist": { + "integrity": "sha512-aFTJhlxZ8tU356t0VDgRzylZAt36VDBEyLoeKScutW9uyYzE96Agq6URrWcwSMZjQ+dKYAuCa0sAMvxEIggGgw==", + "shasum": "b4a21d43d5d3fbacb4d14bd182321cace0f4e8ca", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.403.tgz", + "fileCount": 3, + "unpackedSize": 311761, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJb3+YjCRA9TVsSAnZWagAAxWEP/3CQbEju7DwZeLHVb5PD\nwX3RA9pvDoRjDvuUj+Ge8bILSWLZcxt8KMAH9qIjILRFgI87zx4IRm8HbAiN\n6Jiwo66l9kvrTZC+dCXVktpuqMucXkNlVdJKKIPd7pynA5tkbLQ3uw4yLk8J\nxoXZrdJKXsEfULtvKdlNBoYxZPl9u4qYH4NTqQAyXiuY73RTxharKN3cp+yw\nscvFy2lqDGqr5qGSh5vSdOvpusr++4hrJybaw7w45ZCUsB815qXSFW+iwqej\nS10xbWrVB+n2LE9Hec+8l+LLUVXdC+kKd+jFsrOyIE6KCwS0Bs2qu2nIvLdt\nBXxJPhNoX/aPFR0SA2D8LKdyYdKEOgE7bvvBIlGrvqPXQCOOD/QCwMr1e5DM\n8WtCTc5e+ZSFzQm2ptQBQxHNmFmZ9ibaURZ5gXQEiCi+oWzFY70SMoelLCBy\n+bHSTG1i8zis7F/kLWXhwnSJDOOp2LTaxjHO6hH/oks5ILSGkYiuq9pm/url\n0ueIus3dtrMFTAcnuvsIdkw2Wx8RDrAoABnkfL/Mke9Q+H1yK/kCuNF+hJre\nP8+dunO8anwvsrWsI6H42TjI+t57brgBLvTZwg44/MmwCGMj4sR2ybBoNAwS\nokJ5n4A4DR119GiXVpzlTx3eo2PZn5wev5SZeeKYXe8x3Ov9vDntaUXtXox5\ng0Fi\r\n=QIuM\r\n-----END PGP SIGNATURE-----\r\n", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEQCIERAiwHvSClvWwviEYkBOQjpFjPZY0FuuW3v5f9eCPhOAiAXpVlkFqaqEqoZAM5NEcViVDnSW3epoYC0robrRjp91w==" + } + ] + }, + "maintainers": [ + { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + { + "name": "typescript", + "email": "typescript@microsoft.com" + } + ], + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/types-registry_0.1.403_1541400099215_0.28724980436780334" + }, + "_hasShrinkwrap": false, + "contributors": [] + }, + "0.1.404": { + "name": "types-registry", + "version": "0.1.404", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/Microsoft/types-publisher.git" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "MIT", + "typesPublisherContentHash": "7311d414547572649b74b36c98877dc54bac86101ee6e720276b29326ee920c5", + "_id": "types-registry@0.1.404", + "dist": { + "integrity": "sha512-3f6A3ck1Lwieg5tfbVzUeh0Li8p9d2uWvCj6rSYsMd2FHHxHz2beu420EGKBpGUtdAiGuMqx2tiS9pHcZW0z+Q==", + "shasum": "cc66605989a5636dbcd64ce3d247cebb8bb424e7", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.404.tgz", + "fileCount": 3, + "unpackedSize": 311762, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJb3+fnCRA9TVsSAnZWagAA1IMQAJ7ZJEUlf89MLn8aXE5K\n+3RaZWt8DLx5eNP50+lFAYe3OXNdUWfuB8mW6phcBHn0nxUqKA18TM0ayADD\noYNWngsRx5zBDusYM39O8xJH7j85U0SKK5h2KslzpM02UtoZ2Hf/X9zoPhKI\nxHyM0QIbRQpQn0iBHHqikQxRCi3XRZQLNWBmrQrtOKRfOHuUUnx1XbP37cSY\nmA973cBz/M8qduI8wSKsZFpiLlN0dxcP6UpQ+zvo3XoBpLKLouGQEB+9oFp+\n5t81WnMrpsgVfGXyJUGnaQQH2NWwaBm09MwLF+mFtSkGm5lxolkgf7ZAtrPU\nE74VK03n9Vh8q0bHJym54HmHTLTimDFHwSE/ey+ZnXT1CxNEftd8TLTIeGZU\n8yGXAb/54CgD8DriQsfxFUnIOBE+9vHQpDUPJP0ryNGErGg/VmabJFE5SSoJ\nL2j3lWCkqfoF1duHF0q1m8Asc0MSymd2BgJU2MsB8IFf7knwHQSZIemyu4Nh\nhzg3FOazLr+DAjeU8Gp+qKeKBJeFH9C6vs2nmb7hORToOmcDSDMUIHR8jqab\nPCgwc0WFoe5BM2raNMD70rwUAkJB5EGTL7hGN9MIGYRsrpGBDNAhg72DeZ1Y\nxyfKLria6v79Ry6/fEa2WouIqqk181dkOjHhA9W0jobQTKcASfCUGd1d00lr\nUpWx\r\n=MiEG\r\n-----END PGP SIGNATURE-----\r\n", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEYCIQDT+yWwlSbd4uh0sVwmqgOhCsDrii9nTzGZsPKj70BHowIhAIVV13Du2n3MyHdqz1xtQTNveJ0phYYDgKktQ/X+1Knq" + } + ] + }, + "maintainers": [ + { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + { + "name": "typescript", + "email": "typescript@microsoft.com" + } + ], + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/types-registry_0.1.404_1541400550778_0.008052531075625202" + }, + "_hasShrinkwrap": false, + "contributors": [] + }, + "0.1.405": { + "name": "types-registry", + "version": "0.1.405", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/Microsoft/types-publisher.git" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "MIT", + "typesPublisherContentHash": "1647146a2f6bc7baf81089416917275d30aca55392943de24ac4163bde4bb0c0", + "_id": "types-registry@0.1.405", + "dist": { + "integrity": "sha512-QID/Jn3IZ9yIIgf5zhPkjSIJNfj3yZ/56Zj1MVxUECZ7qH0Jt5nnbL+D6oMbXLOgVzO5o/JNBCzlsRiLYCs/fA==", + "shasum": "5d0d49ee82bdc7498de81e27ac43c63dea0fc8d4", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.405.tgz", + "fileCount": 3, + "unpackedSize": 311800, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJb3+rkCRA9TVsSAnZWagAAG9wP/iSEZZWOgD8Z8EcaW0vO\ncxDsZrCQsvAdo7tztBlwjkIClgz+Yr3wf3yGec/+dJV8ZXVGSErQFAkvtODm\nzA/As5IibXs9D53suj6R8RVeYELFuHp1ofw+nosoQhosiiE5CWrVYT6QZGXy\n1AvKMQ7+Dv0/64T6qtpMyjeUDO7IlXwBKkSKPnmvB4KoZk7l7x7aPupo2lr2\nfi4+O0VJVE73Qp3nEh0fM4y9H6unAsiw43aVjcvPIr0yBOC3il9o+4ECspxz\n//Mf0Q9EotTmIi5CJ9o24J3fw4w0QY1MiBsMlsWyecZNKCYjPAnBqqsJwVKT\nl0TgvS4VHAxSCZyLZPFKmsW9uaToqMX9FXrbyZfQLGYyOSJo89pKCGp6kGOd\nlEuMKhqsiUbYGDW5x84ym5jucqOWe3OS73Wld+HswXG/cIugw2Tejw8S9EOw\nHNq5dLX0oKhrqFF/eM+RBfzxyBjCZDZMXh9ynA+pGum7ftDjcZYItgO70LpD\nuiB21H0Edvk9/30f8zlD69Ttw6otnCKX7X8nc6cTOXdGO4VbpkLUBhIRtt1r\n7GWER2U4jDv/FtMEMeib/C0DIzg+YSQe4AuegKF8ztI/wJ1RTMCxXmuEAEBk\n/OCmW/kP7G1n/QfqRJgf/+m6Lf+mstiKCKSA0r1Y6oHkGpPQpIx57HAfZDMU\nVHWj\r\n=R9xO\r\n-----END PGP SIGNATURE-----\r\n", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIAYHqoSjNMx6HzpNmqwYhvMzT7/6qJ+mGqhvz70VdvH7AiEAyUu7tJ6viTKyXs3330jrst6uMLNGwVPupfYNY21JbYw=" + } + ] + }, + "maintainers": [ + { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + { + "name": "typescript", + "email": "typescript@microsoft.com" + } + ], + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/types-registry_0.1.405_1541401316094_0.7783890494251828" + }, + "_hasShrinkwrap": false, + "contributors": [] + }, + "0.1.406": { + "name": "types-registry", + "version": "0.1.406", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/Microsoft/types-publisher.git" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "MIT", + "typesPublisherContentHash": "ec8b96807a8ca3e8736757d8bd68f6aa15378293c59c3ec84cbf38aedc0e1820", + "_id": "types-registry@0.1.406", + "dist": { + "integrity": "sha512-1zMF8G3B/scvONVN+7TbuGuy8iL28QoQnCJbr/Lxc3U38CdvuKYVqjZG/hUkX2GFd6jG40qPMMtoL/pLBWDAYA==", + "shasum": "2aff1e214076d1633173fa5cc21226103167da48", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.406.tgz", + "fileCount": 3, + "unpackedSize": 311850, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJb3/CPCRA9TVsSAnZWagAA0UEP/2gJoLG9LgymudLCh/be\nmUf/nvl3qY9pW6wV4rnji2WNk3cPKof6fyXSAVmUfODiqqNip8rbOnefKV7y\nqRh91fHwun+twCfJ6s057uPKKUqvfXc2symZHuj+H3C04gRErBI9UuI9sXDA\n1gp0XkGl1DHtwJT+PLt0jCi0sTzScfiSNzvukY9slap4PZZU0bAzsbf8Gj/0\nR6YLVb+HbFeHaP5CNKo/CJewj1AFM8ahNeM1GorCPKwgvrCFwKLWhRRuX0z1\nVpYGR6YpmofoEr6/qDbQRVbBpn/ifVcVdUx1v69QaVoAVPWIKWf/G7tsVLT6\nOLIjXXzox4amsYzV4EdaVrYgkPkxUHVuYq1NDX9t2neDmbyEz5rgcPunen4m\n50j0D563rjGy/w3oDmk5nzLcWfrf4ctmTUPtePNoZ/3tBHyY9KPoKsP+WeD9\nTgo8mpou/6wfSOD93/LSNxLSGKTo3k+ZvfqBrtRRQhHfwsXVQ1rLuDXO/SU7\ndQOGOGhidB4PtS5c4le7q1rlGqTOuUoXwUZuNFfWQuhITwbskAal9Rq8Am7x\n5LscuZ0BaqLFlVmDqK24uPDMFDF/XxlRHcTpKyv2YcWk1hb+vIcPjmJ8Ma30\n9NIrfVIVuXwBa5JosTOGT4XP/WmwGnYjICRY9KCfokT7vk6HKmcHfC6Qt30k\n8/H+\r\n=8W3O\r\n-----END PGP SIGNATURE-----\r\n", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEYCIQDc4Rw9/WuPdrI0ePgJC6kKbZekKb199EEQRNbkO2qAxgIhANi/2LvSaQeztS61V3aK73SgVsS1jaDfw7BU7NyOHI0W" + } + ] + }, + "maintainers": [ + { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + { + "name": "typescript", + "email": "typescript@microsoft.com" + } + ], + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/types-registry_0.1.406_1541402766069_0.9186721165611109" + }, + "_hasShrinkwrap": false, + "contributors": [] + }, + "0.1.407": { + "name": "types-registry", + "version": "0.1.407", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/Microsoft/types-publisher.git" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "MIT", + "typesPublisherContentHash": "b56f26608efd7b3f0e6ef9a74f66719b0897dbbbfe8c74d00d7af281f16144af", + "_id": "types-registry@0.1.407", + "dist": { + "integrity": "sha512-xA9wFuNR8WVQbToc5PFGtEsI6KNU/Z5l2+KBgx2CRqlW1zyF8rzTQEuadeQh+dAR0jgSFsaonrueQFeHtujfFQ==", + "shasum": "dc3ea15e499c6c66e138bf7ed272541babdf503f", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.407.tgz", + "fileCount": 3, + "unpackedSize": 311888, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJb3/JtCRA9TVsSAnZWagAA8f0P+wZRTrcXmdhUaV1/5tbf\nR9psDwSnBMP1IXStD1PS+/qJtcnjMm4YyCSq/RX2bRVtjXSHDjovgrCoPkxO\nWErFWDWXM8Vhob0Bw+YAanK1zOh2OM4dc7HQv/FO1+isoGEILsn+MdeUP8xh\nf3XS/Hz+rB1FisiWlk3Cg4IKOC2y0KxENOhdFdhi9fEblYBHs4LdU9ApubLM\nS9GUjf8OHZLL7pL4VdM+caizEcWbepB9NBpSTMKMX7hvn78XTg1oJqs5ZN+W\nFGyz+hWzIUc/t5uivtR3/ZwiBUsdB0sID/HLFjtTsZGZmhnbe9pfTlD4Xrn3\nFQMewv+k4yMnekZF64neFSfmOTrZ5aWl402ako5P3feu7atfAN8UxtspcBiV\nJIqITTR1ngkaowKxn2HUOqXLiefperHpiyrXTzSIGrZXGzGdvj+UHEqRoczi\n+rndibEV6acFkipWdp4yTfwbUn1jJ+XDgKQtTVWYozvW9Rrk0hMmK26UPB8h\n9b4Ks+0onRPaXKv8v4Q4O2+0U4X+7w82TOLqzw0BbAeEfFdf3Z5qJcBPH23P\nUyENWQAPctR8UtGHfz5VcQmCel9lAlC4LRuELrFZa3nQjO8KkVg2JY8Utr5t\n+Q5/Di6O94V0fCDQaSqxVcitjbXBvsZTg1NvmP3gxAiru2w+7KjQuI9oD244\nh9Ce\r\n=lr24\r\n-----END PGP SIGNATURE-----\r\n", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEYCIQCy8AdZ4RpHiKlaLU2S5tN4crzBuZMvema2zl1/P1PfEQIhANOXizhQ914FkPoBnB11IH3U3KkOzVafVqFJ0RrjpZhg" + } + ] + }, + "maintainers": [ + { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + { + "name": "typescript", + "email": "typescript@microsoft.com" + } + ], + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/types-registry_0.1.407_1541403245125_0.23157180377450137" + }, + "_hasShrinkwrap": false, + "contributors": [] + }, + "0.1.408": { + "name": "types-registry", + "version": "0.1.408", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/Microsoft/types-publisher.git" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "MIT", + "typesPublisherContentHash": "6eac76700e8996344ed1fefab0c73e80415b2bb6ada6625aa2a4ea345b48d2d2", + "_id": "types-registry@0.1.408", + "dist": { + "integrity": "sha512-bSsryQYwC4FIWZtrjoHISj4y0qhaCS6SN1sBPvEDbQg772dGaHwgRNP2DhjfN1ZxV3IzRAYCrWpFyEtABXu/Hw==", + "shasum": "b39ac88b3325da2f1922ee3c0c2cbb7cc55fcfce", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.408.tgz", + "fileCount": 3, + "unpackedSize": 314343, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJb6hnJCRA9TVsSAnZWagAA9nMP/0oZKTc738GbhZVk4/aB\nmFpFgD7HD0kUgH1ipVzhiZpm0hWPlG7rYIK5jDby/URVJvW0LNfg15Bs/srN\nHH7nzD+PKEq2ui+EI0/Sef02F5xwDxEdTRse+DMtvhjf8U5AnhMNVAQGnmnh\nEbkOsKlGT/4/QXkO37+zh7g5aY2P8n1e6LoxfwyFxgw/w0UkXDYSJ4L3TlK8\nNboo7eE1/s4rNmrEFFFYYA3UijN+Wpx1U/ZN1u8SfiTq6HV192TQ3xsaRQa/\negWaOSL9wgQyFjKOnSwrDmD2p9UB6f74Ew0eVmrQbKGmnjgOY0cpQ+1jbkLK\njLXKTudjudLngH0nkFwn5Ed/CtG3QAIi8ZFX2/C+1s2emBW5FQAJnOF06ec1\nTuCdtc+9zfhNrnwgT4DLPyy9LuUthcAp8BJCwbW+x7kZoF1SfZo3gtEY47WI\nFMUtytWcwO1Nn+h0tyLi5Nt/DyV1kwowV3SdbbvY+CLVoVhObI8CRtsQVI7C\n0Z9AXtf9NLbvSr1yRBtnMSRUWb120BVxBg0XYVn6y5jNYddql428G3J2Bzsu\nj7e2t5k5hFKOAB7a9pIPTMkNyN1F/irOZEgLY1k6LpNahDxdWSXgSSiEJR4c\n9JilHTyOQgX0I68a/19dy1AUVPhc+TFbacGyJyqh+KeAmwiVCKl6blb/M8Ft\nj4Nl\r\n=Kc2H\r\n-----END PGP SIGNATURE-----\r\n", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEYCIQD08Y0UjNtk5bi4iAKC6EzUHAq2x9EQyfDJGYRSfZhWiwIhAPA72L9rfcKM8u6sWYTevCeIzj/wFm2X9WYZK8HaN2vo" + } + ] + }, + "maintainers": [ + { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + { + "name": "typescript", + "email": "typescript@microsoft.com" + } + ], + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/types-registry_0.1.408_1542068680589_0.6664694509472562" + }, + "_hasShrinkwrap": false, + "contributors": [] + }, + "0.1.409": { + "name": "types-registry", + "version": "0.1.409", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/Microsoft/types-publisher.git" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "MIT", + "typesPublisherContentHash": "ae074038dd294a5d49385dbc349e83b0f34aa66ac04d4ea8eae412a33c7fc00c", + "_id": "types-registry@0.1.409", + "dist": { + "integrity": "sha512-q6TVKBpOnLhokJiM8fqyVqHcW+rsoON8snhVdV2ll7tGLdPtJXtu70x9tS6t9UDPXXgs7g82o8dhbL0linYjfQ==", + "shasum": "01933ff79b1c0eb6a0730a75832b55dccab49c50", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.409.tgz", + "fileCount": 3, + "unpackedSize": 314519, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJb61TuCRA9TVsSAnZWagAAbC8QAKPjV3rLX1T+Vqti8V8H\n/95AZqgTGM1XwYbRp61hNI5zwRgethlNcQ8f5kbdbaFStBcvdU9o5jwDjS0x\n0kDpvBkpyUquPxSz8LErT12wdOa/Vklukx7PMT/+LKjygwv45IL9lmCOrfY+\nPCpEqRmuQ1LbwH0tKbMhvgxm0A+3izcd85ZHnN+ikJgAenr5k/VzMi1CkqFS\nUuBCEPHrA6r0QevkV+M+3J6odGISE0ee8zMF+q2ZATYLnm2Zfa3yOSSYMbF/\nvRMFta2D83i8PVD4cT5NAUjCKB2aOO11sTwSw3lvoWcA4v7RgGqJFNCNcmQN\nkjUY/y/Fgq9enLNEUocYsq4dq4P4zm6Mx29z+J5lhpFvaISI/kMvKU/r92G3\nfchsocsWMlAtVckNfPjRUEs6kgDtIwKIl27eotAFKQvVxy+bJL1FpJK9HV6C\noyQB1eMvtW1j6+jw/z++nIBF/ovcPZV5Za7+Yx2SGe3lPdTJd4JbewnB544h\nNOJ3aoDkWquyUVYh3FROiVrw+jy+qSXWYVcMMHaDEi0dBtcjSBN26Qw5R9bL\no24zluxSWcur4f3TWikC1fly5oSBdrARd5PFf0WQJMREqLBXlXVkPP4bSHBd\n+RcXlt8SeLTkuhbNEAPvfWLieBtbnKdfLpbPDjqda3nxxdfrfQr6ahxGBXgv\n3gyJ\r\n=mQn5\r\n-----END PGP SIGNATURE-----\r\n", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEYCIQDz7ZVsWx0s6BnhIq2MmXlXUjn2bskUBQpxZli9CekQ7gIhAJFO1ELe3PddEo9yYsjJ9wOm6FaQV8nJeu3iGIhNSVzK" + } + ] + }, + "maintainers": [ + { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + { + "name": "typescript", + "email": "typescript@microsoft.com" + } + ], + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/types-registry_0.1.409_1542149357561_0.806513172004854" + }, + "_hasShrinkwrap": false, + "contributors": [] + }, + "0.1.410": { + "name": "types-registry", + "version": "0.1.410", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/Microsoft/types-publisher.git" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "MIT", + "typesPublisherContentHash": "99a2d6c0738ca0ac81e95d2edda25122d661304c632e1e76d9b54d81526f0f5b", + "_id": "types-registry@0.1.410", + "dist": { + "integrity": "sha512-07y2n2vImeoqshPd/LcEoesrx40KtXudIhdOysYhgwlS9naAfdHpMSiJNvKjRrxB3NnOZZacYT8Rme9T+oRHmQ==", + "shasum": "01654c3c961827ea62ba3e194ba60a36782c977e", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.410.tgz", + "fileCount": 3, + "unpackedSize": 307603, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJb7L35CRA9TVsSAnZWagAAxJAP/jNKLw1O07YhSBuuBGYj\ngCNnPziEGmq0c6rLeNi96HSPBh9MMWckmmqFsmpSYXpxNb1K6hT4svCaVnYp\n8AeUDtUFufBKm3XDh4HX/gVAzdIOlpDzRKheu1E8xc1+6ntxxt71NXkzH9AA\nZccFokKr7Sqxv6fhzIiC6NEcBgDGdbYrG3xx3HCR0w0C7nmDnTUilk3UCpx7\nXFpQOOwxfbwZpjSRjDJH6sP/a1rqSQzZU0o8Axw9h27IBQBAHHuGemkLOC5+\nCLwwneoX9urz7vF7SwT2Vf70524zgtnPnuSDbAEPLjeO6MUPegTqmaN0qKqq\nF97UXYySTVX2df6AZt5sM2zjj4m0RyYHEcwmtHGp0h4jLIt9g1tSPBbZSi4W\n/P5EfcW+MbDfcQDv/DL/tIUnVY7vNz7U+iTCGMLIzti6uT6fgDfApaVwTMzb\nBazGt/nnKvM4rhrRZt+OMGzmkSTuL7aYP7v2Yhc79H7kcfm+uMsiJMhYwqML\nEWhXVJLPDqE4KV7kDPnSGamk7zkHaLa3qbSW5mQ/nmH7Mv09TxLBQip73LX5\nIZiP53XTGo51AvWkg4rt8kYJz57vNpO5/8I5eB3d0edkrlOPrCT/fyRSRTVH\nKNjKo7kiAPb3//rOgQKCtXAopfijCj5QS7pzEEZjCu/URzPD9pM00IxA0FGd\nBIch\r\n=9h9b\r\n-----END PGP SIGNATURE-----\r\n", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIQCZ7PUCYLVcbmyWSvLFSH636Ls1a+9eOwqwEvdp2JX/XwIgDZVaU+fsY1U05oQaDF51UAZJJ+RLbEschJP+E8lBBno=" + } + ] + }, + "maintainers": [ + { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + { + "name": "typescript", + "email": "typescript@microsoft.com" + } + ], + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/types-registry_0.1.410_1542241784234_0.7775035244575523" + }, + "_hasShrinkwrap": false, + "contributors": [] + }, + "0.1.411": { + "name": "types-registry", + "version": "0.1.411", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/Microsoft/types-publisher.git" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "MIT", + "typesPublisherContentHash": "2384af64201564ef910099b496dd881520f096c4b19194f4f4360262ba5dfa28", + "_id": "types-registry@0.1.411", + "dist": { + "integrity": "sha512-i1fu3ZBapZJndg6EGiyI5ZCHX7avTujlhixDSzvkznSfyLrSqcfk0OMOVLjgo6P8Mf6hqGbMo+CoKLK4v9GxUA==", + "shasum": "be96e0cfee1694b22b487e7035f41c2872504e24", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.411.tgz", + "fileCount": 3, + "unpackedSize": 317488, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJb9ndLCRA9TVsSAnZWagAAHrUP/jq0+qUZslhHB70hm6fa\nTzqtCg3KxToXwsJEy1ihVrQRemQdyHdQqs2/PE3rWlXn0mD4RaRPi6x//ApW\nxPiFWlhb7N0VbIvveyq7iMBNsrdtKSKTpSeFPw81yXi8ztwAi91JHDRybBfT\nM+KQYbaKHc5dvN+8wBOFtMEh9FeZN7Nx7VA9iN+Yt2ZejmoXqyp9CKfmfiCS\ntiCafkgIlhrUvSm95hRtWop/R6OC3qpRQZ3DX9htZNP165DtoDm5bh6BPa8i\n+lltLOG2oXyA31xJt80A99MCEUUUqgUFBjD5kLftlGmZT1pbFVEbjYJp6WzJ\nhThvm/kWosjQYGiNFkz1lqeiCgoCkGFSAsOta0HaNCRKjpkzGM2Gw2hMc+jx\n6AfiQRcF1EIGbk3vuQ95yFsEaV4kYdB7DFWLy6gP2UzyPHpmJQFA43oT8Djd\ngzq5fQaD/kxSWEEqIQQkBJjaazdMeO2KS/haBwoJLBGXH+Mxop+46bQHwYvS\n8aeS02mfTUOFi7KOlx4+cpIxc5apbRQeBxeXu9uRzAPjogWZBOOvLgMbETQe\nHdUsfyi2mlcj1WRFZR2k86DNca8lLS/Vtc9fL9qHiaVuG88o0j/qgtcZMkTq\ngFwwv+ngd7HQEijkj9ue+t1TBpdSRsjYtcfxH0VWxabf6V1a8MaJBYw/0hQk\n+7zs\r\n=16nu\r\n-----END PGP SIGNATURE-----\r\n", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIBd3T8+pF2jeUyX0akAfv0j0xDEktevAzc3JdWdK9MBHAiEA6/k5bSiFXHxVss+1tD4892xVl5MAw6NRbw6Z4gKCHec=" + } + ] + }, + "maintainers": [ + { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + { + "name": "typescript", + "email": "typescript@microsoft.com" + } + ], + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/types-registry_0.1.411_1542879050283_0.4922533864309928" + }, + "_hasShrinkwrap": false, + "contributors": [] + }, + "0.1.412": { + "name": "types-registry", + "version": "0.1.412", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/Microsoft/types-publisher.git" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "MIT", + "typesPublisherContentHash": "8903c081529b33b5049861a140eb901dfe0683da22431df5ac65510a458b23c2", + "_id": "types-registry@0.1.412", + "dist": { + "integrity": "sha512-bsfLtNm26hfFfrqkkJ0kZ46fdp/OzRvGds3I2MXsSW2Lesakoq9ctEzUW6GPbd8Jg7pVK0CrBMqfTIwxYIlLfA==", + "shasum": "3e821a202e5db7563bb86baec5f8b1a1ef50b435", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.412.tgz", + "fileCount": 3, + "unpackedSize": 318103, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcAHsnCRA9TVsSAnZWagAAZFsP+QFMJSyfF0jCq8K2dpHJ\nPqbW8vz91VOmcEkeIpelnOY0md8x9GrvtTvysHxrKwrWIZBDvHxqRWpY0LEb\nFqaJbiQC4SArKxTwh7yqgJSmjUhBOxtp/GEFE23NEVJ3AWTrQA5QdFlE4IOv\ndxKeTyO96Nh6I9ToN7cuCJaFEi8KF2ZQeeKlXqOVRujPl88zMvYWWkWF/v8d\nPcW8X4fuiuc3T0Pj+zJT7288X7XCjGr0JC8JOTHOPdNdntZfNYH4CGKBnC/L\nfbZjRcLik3FH0zt2xe7YFJjRXLOTUFR/E/+anlpX29X9HH0vMUaJ4X11osQF\n+x1dE+EKW4Ftz/VAFgqMetwRXLrIA17XS59RJkNtzG45+vr/JtFa5mU2zrTZ\n0uHL+Xpr3B2o+xv2HLeQAphi2LafRKlrVK0n+p1yk9MOn2dWCaJYv3oaEdyu\nfujYhHg9ZVXzGvUaZwCSN3qAVMQDM6KGHwvM0ZSYQQ3Efr8aNf9zegEGstJ0\nYRokzqDZphCUKa/0c2B5psgwsSuvpJgqmTUhuZyjxj4ebjUblr1q7NgNBJvA\nhTzH1/ynm/O2KfnQcikAvmXHyDqeu8Wy1ZDnVeqsy+9G8BUY/23te3BU/4N0\noQQ9Dffx+u8+HuILHJsPM/I9B+WahyyquilMs+TPOrcWHR431UwUC0qYc43s\n+X/m\r\n=1cN4\r\n-----END PGP SIGNATURE-----\r\n", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCICrON/fGXbndNs+mGCg78x6BmNQ+GA2paIssiniu+EhNAiEA4JNmTPXg8aLnGNXhvMPSQ7QEMDavXZI/+HotHPZt//I=" + } + ] + }, + "maintainers": [ + { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + { + "name": "typescript", + "email": "typescript@microsoft.com" + } + ], + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/types-registry_0.1.412_1543535398543_0.6263324129203927" + }, + "_hasShrinkwrap": false, + "contributors": [] + }, + "0.1.413": { + "name": "types-registry", + "version": "0.1.413", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/Microsoft/types-publisher.git" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "MIT", + "typesPublisherContentHash": "7714d61badcf996626052d061d6d079229255f5d8b2b92fb5aecff3f701be423", + "_id": "types-registry@0.1.413", + "dist": { + "integrity": "sha512-EHYVl98b3pdEmJVibhBEIUaIt9NeHf/59q/Df1U8RX84u43eEI/4u6/XuVy8RMvRPPqC3i2LSSUnWBwPVr5V/g==", + "shasum": "fefc36c7cbf8c42fc16c7b0793ef1c066769fa21", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.413.tgz", + "fileCount": 3, + "unpackedSize": 320240, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcCrdfCRA9TVsSAnZWagAAkrcP/0eD7qIukou0QxS1UYea\nYHTaDsUO6zs8fcQdJxYSvGkS6fb6g0POnjALpGL6V7hi9+guecjtLtD7Scbu\neCnXfZBF84zxiZufRqiy98TjVgP1ZXNX1Ay8UuCSxGPOlMFmbcYlDf/UinuZ\n3kxYERD29DbzSWdcR98GrSN4L+wZnY/FVauK1yqadGLBZQqKhlENinFlCmld\nEfie8Y1DHvRwCI4dwMBhsiAuBpkgAmpz6rIkqeYoCW+vTQY+Siw6zCEvLRj3\nZ9xeNQYGaeDJNx9NVozGavrendL36rHGegq1pwxMQIzFSMurjXEXA+J76ACS\nL9R5ODKOso7cebUSH26k/aFuKFsQrs0NKqDdtuonxMIz156AkIMo4KcvxGW2\num2wvU5A8SAdvru6Oa9uBjk7HsDRM27OhLuEfk4gO3JfQs6hGQ2UC6Z/+SwW\nQoIbWkcQUNvrLoDvCh6VZK8rSXug///FY/dUQdQkUkbEGfIvG6lm06B8Qov9\ngcu8QFA8dZmxtZIg1EanXNtHpesFjwR4uE90sZOHg/DCrpJ2ui4NXaBxAlzl\n2BpDkHwFQNUv7bfMUfmpaoAU7f76oTMoCJk7lZbJ4ehmMHURvUT0wERCSoLD\nTYpYFyhUGgbalHW/i/i6wK2WLIcT5iArIqJEb+wsdmiVzxLqUxrm6NV4MyJv\nu3vh\r\n=KMg1\r\n-----END PGP SIGNATURE-----\r\n", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEYCIQDnMZ8FWeKbtREa4GHRHDlExdTHI9+t+ahOMn1J8cVrKwIhAI7zDrp2bbWvIUY1hLSRuw/V+XN1eDoQPYI1DfBrQQBo" + } + ] + }, + "maintainers": [ + { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + { + "name": "typescript", + "email": "typescript@microsoft.com" + } + ], + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/types-registry_0.1.413_1544206175144_0.12286211692135707" + }, + "_hasShrinkwrap": false, + "contributors": [] + }, + "0.1.414": { + "name": "types-registry", + "version": "0.1.414", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/Microsoft/types-publisher.git" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "MIT", + "typesPublisherContentHash": "8113ec949506773276e11ded5e2e28e163134fa10fbac0f0d772c03627f963b5", + "_id": "types-registry@0.1.414", + "dist": { + "integrity": "sha512-jGg/4Ri2l8BSO6kWskafLRNIyM7qKaUwe2mNf7PZEK8nbqU4ZqOfRhaig4rjLPsksrBTeZO8o6WJe096lBkPkQ==", + "shasum": "ed4dd861cc2635e942b0d279d2c41e30c18e4963", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.414.tgz", + "fileCount": 3, + "unpackedSize": 314862, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcD/bDCRA9TVsSAnZWagAA6LEP/0veXpz6VrwWKf7lOQ3a\nqzNcghztDa7MVuqxvafQXn0Cxu3ltLMtfm02bXe+2BVB7BZ+fUf1Gfk/kHN1\nADFYMqGMXUHWZBKKrd388oFpkpKENYKUsPEXnQkN3Xn/dxaBtu8WDc9Giaws\neLbIleCkeXrx3a8tPyhBOdxSF0sqY2c5SCLMRUolZI5ZhH9c9baipWFhkDxI\nIrCPAVtQ+WCG05+0RtTxgC7iJciavruZ7tLha8tyb+QctDcZp4y1141T7nxI\nuRNt+vsS63QT6iU05Izw2KI0YM/XlQZumQUtsbQQDUFqGSgMibn7fFCdEA98\n6lYYwpZyIdUVMR9ydicpB49UQa/VtsXGIScnQ9NiMOFFbtVoeTHwmG+opdnx\n7umjwONy5Ep9pKPYA6wqxBraEwpENMbOg44PXb+LSHkG7nLkTgQKNgioW4PS\ng85sRp6l55zpVMCfl7FwrTJEcx3mnnpT4h+A0Wjr8N5RFF5b09v71vciQO2A\nRr60754qfnYsal1WEL2VUQg7oSsX90tv595HTkFTkRgd/sLNl2JUtoCBSnP7\n5TxFg9AyUDBrqOXjrZQBnLgPMOqz0Ni3a+xTrI/bX4KSfGHxg/hBOHNdhcqz\nLkiSQprx3jk1zDMeejC19c52veKPFadKirLR7heWc3hJnroo8wYz1Rj4b++b\nytuH\r\n=vbuW\r\n-----END PGP SIGNATURE-----\r\n", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIQCJLQnhHKj4C+YxWEd06vABVKS6HtJQ5irlSt/nILdF5QIgeFgbWP3GnupPsRFSuyJG8cPAD3cm0oInvlVNAjCowQI=" + } + ] + }, + "maintainers": [ + { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + { + "name": "typescript", + "email": "typescript@microsoft.com" + } + ], + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/types-registry_0.1.414_1544550082626_0.6226853717095273" + }, + "_hasShrinkwrap": false, + "contributors": [] + }, + "0.1.415": { + "name": "types-registry", + "version": "0.1.415", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/Microsoft/types-publisher.git" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "MIT", + "typesPublisherContentHash": "56fb78a2661454be87faddba6c7ad3d4e6e7715f9e3c80610559a54ce019dd29", + "_id": "types-registry@0.1.415", + "dist": { + "integrity": "sha512-OFpSKxuwML8u/Lq8NJKczpItHf1ALejAY9+bdNnkOXZq40ZXLetNY7cNxpS3Z6o8kOAtQBRx1yzwaG6Mqn8K+A==", + "shasum": "381abe31503028c2e949105df8339fe8460d6509", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.415.tgz", + "fileCount": 3, + "unpackedSize": 326124, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcGTiACRA9TVsSAnZWagAA+o8P/1p2v+7bSkjlhmBNzv4J\noHZpQweUa2DKAUCd84z+DYvWG++YdTe+SD/SDEkvtG96YuTs/fdKJq1u7sTl\noGUaWm+OJPsULTW9YV15sObLzgwfZalrSJjBXJcgZWKbJo1JF+3NwvTz54wv\nfXLedWfjzvfBz/eBxPxpvOD2Sf4cRzudczKBGh5zNgroVpl+ANECspBkWSKZ\nlslyWHbOGlS69wthl+uRgAyauGAiXtFaaUzjEqsnfg6vjy4KlPnldnMUhrTV\neJJoZSG3/lp4fGbvIxKPr7wpyBvcv0pHMOLlokoB3lG2sfm9uXBqoVsKPAlb\nyPTBZaP4QmRqVrsP5EfeEulLpfUYFOBWFyVXV7YDZ6zWrZJhdb9rvty4hr/m\nnGrsbS0t1AYsJBeqWG3iBpBHqSpv2FNfcVzMYwswUI1w6yStZeAWFZp1KTMR\nr0BcFgMvPqkks4vpNt3A8g8KoRnW/TFLWVd5J5Iu4FD55oj968i7J95eqHgT\nHzFDpGYPyL1H4eBtwiTBrlFQj+rVkuVq/k+3sIxLiCxDszt3B3ycSY8gw03/\nWtmEEZU/C4T1O0PfhbVomhdQQi9Yi/pp3ixyEB0PSOYAnjEKQTlqOx2hzoyX\nARaZLdDhgIAGXuLuduv7+4zcgx/nAGx76FA8PBBbKvGDkB7SgkL0X1j2nhgk\n6MGW\r\n=Kdwz\r\n-----END PGP SIGNATURE-----\r\n", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEQCIAdyGsh3TjfJhUZb+XwJx5LTQr7h25PPsQOYw4ey1IowAiB/HmjmduEvreFbEEVnUxvT7q6qVxLR/ycuw/Bg4AdtCQ==" + } + ] + }, + "maintainers": [ + { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + { + "name": "typescript", + "email": "typescript@microsoft.com" + } + ], + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/types-registry_0.1.415_1545156735844_0.6719353904353338" + }, + "_hasShrinkwrap": false, + "contributors": [] + }, + "0.1.416": { + "name": "types-registry", + "version": "0.1.416", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/Microsoft/types-publisher.git" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "MIT", + "typesPublisherContentHash": "fb559d5d3ec759028a07d340dea508e97f8d6c3a51b2d87fe05bd7bfedb9b7a5", + "_id": "types-registry@0.1.416", + "dist": { + "integrity": "sha512-UH8/8YzU2SnGXl4c2fCbYcAMBnMR9MzKe6cWtUsoe/feTx4XPB5mPAcxpEFg1DzAbHQNWeXDffG1tGP4R2VfIw==", + "shasum": "f1f9ed429da29f36cdb3bfb540ec43a26b3f7e80", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.416.tgz", + "fileCount": 3, + "unpackedSize": 328913, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcJCEGCRA9TVsSAnZWagAAe+gP/iUnv1apTZmGPj/lSlMQ\nL9lhDtN3WbJ9WyjlsjNxqyDi0SZW+9oLfmKLB73agrgJ+LXVJ437MB6Yb6M6\nNr3pdTqMRJ/husE6xDPrvX78SUwguU0GekGQkjMGlZJ424XKje2Al7BzuxLI\n8iISeJJ+kaDBGvm/5uFNnDIp66P6ND5dWpwtG5ygIckC+o9ZLwLF3hmeFjFj\np8qxu0PzZzk3jHQSc9tB9IrPIWzo9w5956f54POL+V5GydYaxGHoNETTwW0y\nf1D3JH7votSfffQqZjyBFL4VR8k5aNqnNf834PG3ENRTzrh/X3KJGvFfrgNW\nvtLz9FsEf2Dqqqf8kbV8XUIhJmfyioJhtqZgqtA7JotPjkmJJJ7JhJzvuddO\nsGsvUV9C3qdHxHbBaZyyMw91C+gsDk2/bwM8v72CjULXiUbyoeUhAaOYpSoR\njY9odnuYLciMBQSOOK/SPL96D1nYBHCA1mUqXaUYYsHshXdXG4O6AO6enaqq\n5YURpfI6z3Nx7P4igfYJAaT+pkPT+dmtMN5+DNzKZoBdtfhQb4DbHwK9OzPg\nSiLZBApAih2+lU9oLCBIAZyhLfUhSbZyxM/kTVBp2rdbejFYHrcjAmXufzQQ\na7AsmNeK9Cq7lCuZi33+On10lc9vXc5sjnt+CHdG2Qd0KSNC2fIgfxe2WQwV\nrC+x\r\n=VDg3\r\n-----END PGP SIGNATURE-----\r\n", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIQCMr5a46YbSjKPgnnhZWaeIhcwn5jyLIjg8pjO5Ma6/awIgSV+JZGLi3b3gdz6s1vYQta5UQXvgPhHYkxRBBLzP+D8=" + } + ] + }, + "maintainers": [ + { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + { + "name": "typescript", + "email": "typescript@microsoft.com" + } + ], + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/types-registry_0.1.416_1545871621975_0.7972106374238193" + }, + "_hasShrinkwrap": false, + "contributors": [] + }, + "0.1.417": { + "name": "types-registry", + "version": "0.1.417", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/Microsoft/types-publisher.git" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "MIT", + "typesPublisherContentHash": "fe3231a8b24fb3e6e0c48c41f8dcbbbcee5135a2c3ea2cc4e7b1e626e8768da2", + "_id": "types-registry@0.1.417", + "dist": { + "integrity": "sha512-Pb3h+vVGGjniVPeFVluKTUuRPjgvk3V+LJRGgNKUNDnf3U6r8+EmjfzAkmW6yWN8ShsSrtnezG8zNtmZ/PJiIQ==", + "shasum": "8cdf78ca3f7f527a64954f95e3eec160fde705bd", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.417.tgz", + "fileCount": 3, + "unpackedSize": 330848, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcLkNmCRA9TVsSAnZWagAA0YgP/3n9vgMyDUrgBtAqhnI4\n7qPOv5camZ+sFdR5czYcLVFaSgJKPC45YMsoKZEjTRcbz4GWaBSi1UhCBDmz\n9mzGM8fcKW/So09Lacc/mlZ8U7To2ELRHFOWeCK9S8rC8+kaXvbkBUTC1reh\nvTHp7W0t72JAFCArk7bCHATlqjmbj33FkzD+7qaHdQKdZO2LNtabIjwyxA0N\nNJ0sCAD39MrMTNKwzn6eMpgKNNXMHZAYl8u8ca4bWi7ypslPkWegpthtfT3S\nsFzLAZjJUstXI/mP2Me7PNnpF7efCwaEKJ3zsZjnodLnvNN/CuXuwGBGX0DL\niejg1gTbzT/VIbXdJvSIUAv4i9fnjyY8JEHEChKQu4BLviL2/LU0HMvf/dh+\nhSx7iy0egZcUaPiQyN6jj/RnDDKh4fszw4UkA8hcBAm/K+ICS8jkOwVtfbQ6\nN0kn+inkJYNq5m/IhqI8OtQvGGjnKBetxuUiM62+/y1gyxMaIdsJEHU2ThgI\nXILOdQp76FMUC+eukwaDSnfEyG10cZ1CRND9SG0UQ8koVHiSJlRqeVfL/FM8\nFbtocpbqV/GjjI5MLaZxUuJvIzTur2SwmAvLmfsmt4GLp/5R7+xOweZZRddL\nUjOAWQklS8GQzyX+aLnHtRvOIX4mM04A5vxuUGFdbCtpA/9yTHs9TNpBjpDa\n/J8V\r\n=TTmj\r\n-----END PGP SIGNATURE-----\r\n", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIQCHR2sXz2wfJjfquNRGEYaAWLr1yjZMSsvOvzf+Fd4x1gIgKzTQS4BlUSvc9VOdlpyA1nreM9sklAlpHmNJAil9Z9A=" + } + ] + }, + "maintainers": [ + { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + { + "name": "typescript", + "email": "typescript@microsoft.com" + } + ], + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/types-registry_0.1.417_1546535781413_0.962170609013737" + }, + "_hasShrinkwrap": false, + "contributors": [] + }, + "0.1.418": { + "name": "types-registry", + "version": "0.1.418", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/Microsoft/types-publisher.git" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "MIT", + "typesPublisherContentHash": "2bbfc3c4b867db65dffc16f26532a767309025b8a79b0798476c60cf612839fa", + "_id": "types-registry@0.1.418", + "dist": { + "integrity": "sha512-tXd6YeB+RaqQBcPccvMD0lRtZ4vD0wtlHyO3dKEvKRlwq/0GVWnoPorECs39a6aPT41NC1Yb9KuCDs5D+DRISA==", + "shasum": "69d1626de21bcaf2e3b50e4fd1e64523ba356f89", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.418.tgz", + "fileCount": 3, + "unpackedSize": 331020, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcPMcQCRA9TVsSAnZWagAAorIP/2JNJPa/kGM/VfzIFQLk\nanMb+nCuVMszaheSriYO7sXMnJ6xybtex57UT10igeE4fhRPz13A2e5mlyLX\nlYJ5cvfMd1ID4ziMAH+NTwprSqjwVf1mndhyFiVZs+pv+5c7fpUclmVAQidH\nL1GKodYhWI4+uAgpH9zO88Yi8yHaAsZvmGCsp+v7hDTajCALwRdHg0toijE9\n09YLKuDs9+dcvEnsrbZlV298JRbVCHkQFfEBxnCMyM8GusGnE6WtpUb3njvj\nPd1YK121CmuI9Qn9LlcKfh3HR6NAp/pr8fRwh51qNYT5g7KQZ3BdQRlpx1Rh\nohSSoVC22L5ZLdrKGoF5cSl8icF3WQw2EOJc50vQIjGGMvAj1GxAk2LDtMvg\nQNMv3umX7/5ERapV8XfXvseVHUwJT2bgiiz5XDiUk8Lyd97r0S5ICZ56kGA0\nTFSmLlJijihRVPTSSD9j0GVCxnOKKYSXzB2FKFTGqIb+8Xj+ciUBYnFnj7eu\n0m5VCumn/DzyJqfzgcCs3nxIYqG6pId1P02co9T+Kz7ZTdjoZwN1m0C/9n9a\nNL3kGvKChQAKjDHWqke1yquM83tOrjypPZJ5sM9HmieIHduORwubkLnXRlXS\nlyWvXjrPxtkq6YqVP7PDHlFPAEk085fxFzPiUCdBp0WMoieAXcgWdJHFzx1a\nwUyY\r\n=Ek3Y\r\n-----END PGP SIGNATURE-----\r\n", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIQDDJBhvQiSbmms65OpIySrXr0Gwaha/TxAwrCUGaRmrKwIgGjfcoBGJAhx7XPbTs6TTiE11GJIw998hXsUExXWAqoQ=" + } + ] + }, + "maintainers": [ + { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + { + "name": "typescript", + "email": "typescript@microsoft.com" + } + ], + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/types-registry_0.1.418_1547486992224_0.7443691472274223" + }, + "_hasShrinkwrap": false, + "contributors": [] + }, + "0.1.419": { + "name": "types-registry", + "version": "0.1.419", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/Microsoft/types-publisher.git" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "MIT", + "typesPublisherContentHash": "13237a8ed3debc39a3cab210b56644e109dd2494540a172b33080d40fbb4ce2c", + "_id": "types-registry@0.1.419", + "dist": { + "integrity": "sha512-dvM5IcHdY77i4tYobWlOlxo7Mq2tXBz4uEaj9bF0EEREjqz+DhMcMU8M2V5INPmWNeNjH1B60s3bt9EQ+FmLRw==", + "shasum": "91edf6fb4a57a68f285ed9c589be175f20674aa0", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.419.tgz", + "fileCount": 3, + "unpackedSize": 333410, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcR1NtCRA9TVsSAnZWagAApUEP/3pNRV9Mqxyt7Yn+OE0w\nIboWm8Hrtivzqr7FJw4I2nXUT+jUuRaBOTwUl03JnEyA5WiHJMP7T7tGjJfR\n3T4ofdfkwzzdAIujOCZPc2gu/2JL6aOChxXV3djcqAcFhCdL3ol9AqNBDOzZ\nAFn17zEpOf58cL2nNZK0RPzcWR5JkWGDk28VqNkvIKSyj273ZfEooH+OMwbS\nYAeX5VlZjGoo6cOLDmrzb977VNmeovD7dVCmsNXArESWsTHlRz5Pn3kelYhs\nXf9+NXdXeoz51mg2mNENqItQSw8n/NIAFkij+zegcwFp/sP8wS+oIqm+s3N6\nolTgy7VkHhJ4f4bv8HReD5nu2VaPmciJDt7+rsnqujxXNqqUJDBbDpRmdVAX\n0I4PqOZWLMsCA6K7TQzoyBM8Iig5JQXH5FsBRyiuimHu1XWeZ0o+EARIM7fY\n+lGLfgItXMS+7eSlEDZx6s2r4TYlJGZEzcyAB87KAH/sFA/Y9te1qEQYIbZj\n7dcHqMnUQgfNc92stnfHNA4gGLRV1TI8tLR7GhbtySMEY6N9SK52/kg4mUre\n51mbhg6pYLYzdo+o+lADgMGYhIFvPMj7jWPdWMGSevZmQQNvKa1j4KBdiFuh\nPZCj0/BUE5OrpcohQ59GYukWYijkHlkBi7HbAvM8j4zLzLFVVi8bEVRZqpl3\njBCL\r\n=CGq2\r\n-----END PGP SIGNATURE-----\r\n", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEQCIHDnaxvGL3lmYawYakBrwajqEEvleMCDIg7ql9LF3jfvAiBVnxSmSLVB8lEyMUzKR5gTEYMv0qfoFsxi5NEJGjj4VQ==" + } + ] + }, + "maintainers": [ + { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + { + "name": "typescript", + "email": "typescript@microsoft.com" + } + ], + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/types-registry_0.1.419_1548178284756_0.797543262598343" + }, + "_hasShrinkwrap": false, + "contributors": [] + }, + "0.1.420": { + "name": "types-registry", + "version": "0.1.420", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/Microsoft/types-publisher.git" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "MIT", + "typesPublisherContentHash": "99a17ec71895990d74624ad8be239fd48326406836ea64c79a8e13a1ec56bdaf", + "_id": "types-registry@0.1.420", + "dist": { + "integrity": "sha512-qPzfT4GHSeYeNBKEgHkP21zKEeTGZv7mSsmay4XosIbgk5p00QbDt9iSPiUgKviGhTAupYaz1ppbM4Wa2saplA==", + "shasum": "07f81c1d57baa342dc6e582ef58318d5eca30abd", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.420.tgz", + "fileCount": 3, + "unpackedSize": 335579, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcUJcxCRA9TVsSAnZWagAAFuYP/0KND0iwp8g4bZTE8rGb\nKckU2vfwIUYxjMRhFw/WTlVmCDhRPijE73/CkG/68wdpc8QhqsDrr2uXBiSq\nKbmvZjWC9kjmTjN9pY809RyL+XeeZzzusEMMQ8qVdPmeZj8C2Xwnc3z6Fn+2\ntibJjHClfLI5AGJL8JsjqnYHORrfsFPBrk7bgscyd3SnswwmkZrtxTXh0YIG\ndcRTU2e6owv5fEH8DV2og3k25vEJ8FF/9h4OcFqBPbaVLSdSID9d1qhaxvJ/\nM9iAwZeffiOTVSHZXPO5VCdsQxdZl2O5O++AXVofgwqIlXT8Uqjndv5WLNoj\ni00R+ghw2U9uBJe/bujsn1L3T5dUFDmvbCmZvVt6bOQTKwQyxeH2S6X4RriV\nIemIaC1zHSBLN71qKYhuaZmSw9l4x0lOy4PU77YXROCd5U9qhWKtMV4nvaki\nzu3t5+zM88ypv2QwOcdsycn3V5RNX2CD9V9uiQX1IVFUaiQledgNcxHZJzbI\n1cga7Dlf65UCUeq+dKcHnbfNv5PaFJRUl+OG0VR36RUytm1xI+XKisGkbV9H\nAIwL4LqO9xbCknRYgyf6P6G48SW5BsIncBeOk1xYjtw0KgfmWHlyygqC84k2\nEb/lRmPNdaAAfWzoxbEnSJX2Wd2uooIHJVxDVgI1Qx1YUq3dFF08hjfVCDRh\ngQMs\r\n=iTMB\r\n-----END PGP SIGNATURE-----\r\n", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIHfhuCu1+p0J3+qo0oo2ahi/TSJ1O72IeTCXQNOVDp38AiEA2xcagl/L6TZKoWtgpD1GfZfhPXF+jCGkhfkmtwYM4kU=" + } + ] + }, + "maintainers": [ + { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + { + "name": "typescript", + "email": "typescript@microsoft.com" + } + ], + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/types-registry_0.1.420_1548785456344_0.7034688294581681" + }, + "_hasShrinkwrap": false, + "contributors": [] + }, + "0.1.421": { + "name": "types-registry", + "version": "0.1.421", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/Microsoft/types-publisher.git" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "MIT", + "typesPublisherContentHash": "826f2ff4b2547e56ffa076c93795bba5996666fb24fc36be08f6adfd59c9a3c4", + "_id": "types-registry@0.1.421", + "dist": { + "integrity": "sha512-Uj1uLqwzew+BqIj4HFq4eJ1DrAd7tg++kYvcfUtIt2bcmCpp30xOLGtc7ppSNI2PGbaCuL/1grTKDUYQDjgZWQ==", + "shasum": "dd48e59697adf8869890b45c55b60a9985d59aa4", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.421.tgz", + "fileCount": 3, + "unpackedSize": 332235, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcWddDCRA9TVsSAnZWagAAJ0oP/RBLvvnc9uhf7utn3ZPL\nQCfxtPrMGUFE3j1YaYK8M/mP3mWyzfmKcHaxKruo560z53Y0QhKdSJh+nRv6\nuEVED4Ihv7vpgEySophTR74bib1CQ01K1QFneDlKiVJg5IJo5y5eBBBEU75I\n6HDwy1Uc7neU6SG06RI3HbWkA0O5j6K6SQ2ZNvqysH5nv2YH7/jFYxPttkBE\nBkzOiVLissX0mnImQkca6Zlrzd+Jsv+acU5xF/iP7ULjIP1blWkzkVfYkRl/\ngzQ8hgUklVx9UGgC2XPK1g1bj5BQOkoL8yVE3i32EaSCEi6zQ64oRHrH1dkF\nWY+Pvq3OwNilfDJWFYQaNouPCHknjB02hRGPNVGca9MnFsdZ/6Bet8sRyk3x\nbpWNiH4nuy/yUiifDoW3odk9gqoUH1/mEjIPCDuUbWUg1zop1HFtpCKKuGxn\nu0xmuYkch5ezh2BvJAXKBFhRhziMeUc6YwGBfXSsjauFE0YFMNdec78ci5EE\n7IYEwO+Yx+l2u7q5SyoBUV/lWQ3SosXWvWR2AleR5tNkGB90dGAOOiWgFMzY\n5jSeMEbTSoSWjDuIS9wvsqA1m4XJ5RbI3jHlmz//9CWSHDgLxPkbudNOH2ud\nLWHsD/o7ofT5Q0TmgarhiUZRr/vS05gHrA/HG7W7kZOnF6ypq/P5adh+L1rl\nQ5tM\r\n=fW5a\r\n-----END PGP SIGNATURE-----\r\n", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEYCIQDnafL5urA/m4SQxkAFcvVTnDkBnNfNUrjnT8DfYuid6gIhANCorUvBkVSRH3fBmiqY8KKkQ3/apybFY3eo8GBBXnhH" + } + ] + }, + "maintainers": [ + { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + { + "name": "typescript", + "email": "typescript@microsoft.com" + } + ], + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/types-registry_0.1.421_1549391682520_0.22972080676039908" + }, + "_hasShrinkwrap": false, + "contributors": [] + }, + "0.1.422": { + "name": "types-registry", + "version": "0.1.422", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/Microsoft/types-publisher.git" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "MIT", + "typesPublisherContentHash": "72f99302267291638c7842f2e8f0d14ee001fbb7ec3024b21e8e4fe6489934c9", + "_id": "types-registry@0.1.422", + "dist": { + "integrity": "sha512-FRLJfEe22D/0wGEc0lUk17V4jStU7LSwZi11/o4L9snB/kJl20yeamZCu8MaT1qzE1XYfQmDy02hb4MlKB95TA==", + "shasum": "41ebcdeba0919ea4b0c79a4f295197b7626a749d", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.422.tgz", + "fileCount": 3, + "unpackedSize": 333141, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcYxwKCRA9TVsSAnZWagAAYWkQAJexZ+977NB3FDxPQRkp\nHdfOiCb0r5HZwago9OyXOs8y/qLbvjvRQnA+p7gDISDBAJ2RymPI15ALhkRx\n8ucFSSCyl4tTNM02ryfrxPeGiCjVmxF3YrOSRlnmTG6bGwivFjnd6lhGwxJF\nM2aDqQP90F/6cXQI4LLdOaQXmu15JV2elzPY/RS26weaPbBQ++H/y3Y8Akqx\nm5S0+FEVqhGfBEs1gd0qSBIMQLT4/zjo5QE91PtQMX+JraYXyFOCJ0CCjoGS\ny3zob5vGxu90Xwa9II3aHd8FvjGaB+Ygj2fI1bZoVYhx+3zoY8vVy3yLLbP6\n6/VEw+9/eMa07BUGgiM84L1GD/1Ac1QH4lE+T/0MaXyAyTaPjvh1Oc6AUJEC\neBNLuJPZC71ucNisFk/LFrL/h7jwVNzktBbP1CagkA4tGaYLgSc2Ph4FXHSY\no5inUAJeExkwVmcyBKBW/L2yirh0/wpvKQE4M/h4jGPZf4BsVOzG/8rh3Tgy\noDXcgOxSlVcE62C+o1Pv6Elq1+qbBaTVh8y7B2zlNR/upY/bQ3GKluKWO9dt\nxXikGqA4r5k+SfFIs8H4Mbchl2FBN2tvuiOUf0iy1sevqz8oG5kOZEFU6RSa\nR3eHLHGdzPHSQM9Adl80xq5nYHt47St7Yzh0IgILZ7OJwlyV59l4d8RZyvxC\niiP8\r\n=lIdO\r\n-----END PGP SIGNATURE-----\r\n", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIQCfmmoL9DQBr0yG0R/qDvtv2Xe0rAKb8MrBNrEqEGoCIgIgdozQLdRylfAou8HJ7Vpv51QzgZwuSaJmkhYW+qhOjqY=" + } + ] + }, + "maintainers": [ + { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + { + "name": "typescript", + "email": "typescript@microsoft.com" + } + ], + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/types-registry_0.1.422_1549999113272_0.8633799401978517" + }, + "_hasShrinkwrap": false, + "contributors": [] + }, + "0.1.423": { + "name": "types-registry", + "version": "0.1.423", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/Microsoft/types-publisher.git" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "MIT", + "typesPublisherContentHash": "40fb1290509897edd55d084629769c4fcabb4918755ccd02d994d332170f1385", + "_id": "types-registry@0.1.423", + "dist": { + "integrity": "sha512-rx7bd/thXfDJ8ejIvq3HCgl9S+bKNVDWAtJ8b13c39eCSoeMTzcJBN4WSRke1BOLQYQIPup83MJD5PGYfhDI9Q==", + "shasum": "a36c9559433b3f89e3778c209b2d6e625b1b5985", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.423.tgz", + "fileCount": 3, + "unpackedSize": 335017, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcbFb/CRA9TVsSAnZWagAAhIUP+wZCz4pD1jEs16rffKAY\nquO5C52xL7BIiyDJ5jYUf2EX2yIOwzOQAXvq9LdjfVtToY9W4UwA2+Jz/Y90\noKupG1pFAEMdEAVONJvZTzdcuqLq75RMgcJDcOGrU0yegWJI9Mnr4Qz5LUyh\nu8uTo1SSbKSb3Of4lxg9PLfv3Yry6bbyEGtwzfd9y7/Z4XmGI47YAbPOrn6U\n08Y/tRNQyWEiYZAe1IQVohVsUQeyQQlz5kXn/YBOUR8Lq1UVJ39wx1ZQgYCJ\nNcePgpK1NXxoFBI0ZOd+i3ti4M9lr/45tetaACpjbfMoWGw77qEpPMp3RysK\n4MBTQZ+lnvUoP2oKkqp19OmvgHiBZIkowLLpcZHkNX9lFwtIL7GdStlisPou\n4MmKI8DQye75iA0vCXtaxj9ZuVKtfmRdIvLNXwcyKhvfi7qVu4L57Id3nQIQ\nkLeD1DXIu+0YHpt2fjhgU7wvmBPT1eQ3c0AGXBgACJRey6NmW1RXvDxq2Fgl\n9EdPBl0cuZLTnd7LdOd8e3bqW4n/lEo99TT8/6rlhYsjCHdUMBksKA+U/Kx4\nhbbEcnOfEh8WiIm/vp0sQD5XMqK2vuRQv/fSvpcY7HW4lmWO9J+YneD/lrLK\nnXlVjAd1B0OfpOAsC/z+aOFGyK3Y9qxC+4NOzBqUsLC+MQZjhHldt0+VzMss\n8pM2\r\n=2m9v\r\n-----END PGP SIGNATURE-----\r\n", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEMCH3xmfKnzmoSSl38jZ23HvSRbEi6laFRfOE3ORFGUjIECIDRgfJtCA/zg+3XEJ8JVOMLKc15x1rMOiRVKrKhsO3/L" + } + ] + }, + "maintainers": [ + { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + { + "name": "typescript", + "email": "typescript@microsoft.com" + } + ], + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/types-registry_0.1.423_1550604031067_0.33613056340747005" + }, + "_hasShrinkwrap": false, + "contributors": [] + }, + "0.1.424": { + "name": "types-registry", + "version": "0.1.424", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/Microsoft/types-publisher.git" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "MIT", + "typesPublisherContentHash": "8bfbb2c722bfd4a1b2bb814c4ddb7d5281eb9e480d6e61e4a8c5df9906be9cd2", + "_id": "types-registry@0.1.424", + "dist": { + "integrity": "sha512-K1czDsVTC+H5kVruAzHlETQ0FJbOYX0pT+DAokTkZMfJ+zvIiWZGptua0R4jjvC5p1eZ+frQyqM5pnQTxcMhEQ==", + "shasum": "99c90ce89dd05cd057c132a15f7a4be66bd38188", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.424.tgz", + "fileCount": 3, + "unpackedSize": 335908, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcdZNuCRA9TVsSAnZWagAABOsP/iT+UTs3Xd1WCHkm1Mmx\npHfZs0GQ11wMS8TYL2LDm0ag3CrsOdUxjdq9gsxAz2SFPsEJKa+zbnJr1K7b\nmz/nEPBTCjAwpK7tcpOJc5IAxQT0Zb5tJ6P9m63eeR80vBgliBw/8fiz8W/7\nmwyjykcQxw2XrhPitAt3ObZptKVTpp2ZhS6/kZbrWTRQhk6FmIp0cAPI418y\npS521En4U0zksP/ICaKCdTgCms1/4uzxqIY6eszNyykhZCAJuw5gx65SRgRE\n6/lrKL1ptq19tNGv7KeGLtfQSnJapixVie42S0nM6wYshQXiSVooUC8cb5vR\n+OFM5ZP7boPOXayo4obxAl03rTJv0daP5tSqVYEwCyBcZt4QS91JM7iEetRO\nWfYBURwwY3PxTWO7tV8Jx1eF3cwh20QDXped/AT18xhk8JKom8P6VKlQJbRi\nGwgckfsK0d4O+D1+g47/IJD54aMQPL7E4yKJtG3erJEShpRngO54V3rKmh2O\ncWXphPtv3WY1qDzWjwEQt/21XQYcFX/kGD1hs33v0a/9zNWifhHlJ17YHVhl\nlVQndxo7B++Abp0mGtGIB/QcUS8gs1JcqcjcEDD5QIycjkYCrp0vbj2H5MQf\nLYlpgw+YcghQ+1prk14jcoR39qC3OUyxnD35ec9zwsN3hfdmrcP4kA+jBZ3c\nMuA9\r\n=v6Tt\r\n-----END PGP SIGNATURE-----\r\n", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIQCcPNpE6/WwYW2qScw7kDC8rn7ZCC4emAqEmdxKm+JhHwIgUPBF0lxk08vsaWtAV2/0HvOgU+cIyhs5SVZ3TGSYq3U=" + } + ] + }, + "maintainers": [ + { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + { + "name": "typescript", + "email": "typescript@microsoft.com" + } + ], + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/types-registry_0.1.424_1551209325383_0.8270825239982964" + }, + "_hasShrinkwrap": false, + "contributors": [] + }, + "0.1.425": { + "name": "types-registry", + "version": "0.1.425", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/Microsoft/types-publisher.git" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "MIT", + "typesPublisherContentHash": "60f53a0dda458489e311702454e7c69b90d79706954935600bd8e3d46fde444b", + "_id": "types-registry@0.1.425", + "dist": { + "integrity": "sha512-OpOMAuE7j0kQyV9MRw6Tq6CD2UMf8mxROrEEUks4A07KLO6JsISShQLjDPgIAe1ZD56QQAA5Sve+tfSQCLzlQw==", + "shasum": "fc2d3c9f462fe2a2e4cdb51fdb4aeba2b67a5827", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.425.tgz", + "fileCount": 3, + "unpackedSize": 346044, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcgAELCRA9TVsSAnZWagAA+7wP/33QZlOczoDw+sCf91c8\nITTlXq3TXGQwTRtqGMCOO+f/Y9UGv53aGCKivk7S+vUsYneRCMhPw2DymILy\nq5B1WvAajD/J89S7wWFv0u23d7AsH7FMTy6+PMhldDZyVC1Y9gfkFFk95q2h\n/qelxOe1Tx4CSsD1snqsGwGc0cnh0QuiS5R00T2/u+NML3SSX02JdHs8FJcU\nli2Xrs2GZePjrSwAcnCMjRmUJmtGdw+Nle7hKLcJVTDN57Mpu/PBl94snOKh\nVQAvNBf7qfSC/y8BwrEL80Mw6D2OBJ5k0kxxATrVx/EH+ORf/rkuBvJYf1iM\nqROZd7ZuTd2Hj1vD/upKsC/I8NeBvY6h21wkDV+FyWrPcC8GAht3nFc1na7i\n3gU67wRGlmEp8o2zntOehdoDc3dPrY/fmh01iCXzs2yR5mDOQy9MuKkNDuXN\nkYnx2LcP48T3zAyD3mD2AGffBv/RuF7Tnlc3xG0SMUvbvYwneCweI6P/pJ5k\nZzD7///No8tY9KutNz2F0LSXHcDWeqH3hf+vYVqAmnebtwctZ6I6deDdUVLE\nVyub4/vrwxjbQR2MMyT1DqunjTE5iV4jV9NBKyJ4MRs+Nk5BHjpCK90F1tin\n1x8er3ePMNArUUb2tjC7n92fLIpiqDNxjenTJOBOVT9qCUve9LRMSkisn4Yd\n99/7\r\n=zadJ\r\n-----END PGP SIGNATURE-----\r\n", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEQCIGHnSnPmvkASHX7TVCUgdV1WvxtgfD+wp/Ht9cyXhfuMAiAOIHzqL2YgBHkUY8xB2uSRe6gOSyxI44+NVMbPn4ZcEw==" + } + ] + }, + "maintainers": [ + { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + { + "name": "typescript", + "email": "typescript@microsoft.com" + } + ], + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/types-registry_0.1.425_1551892747026_0.38491409527819953" + }, + "_hasShrinkwrap": false, + "contributors": [] + }, + "0.1.426": { + "name": "types-registry", + "version": "0.1.426", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/Microsoft/types-publisher.git" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "MIT", + "typesPublisherContentHash": "482642ee11fecd9d14170c2b2c189c69ff604491c636e14dbe950d64612ba526", + "_id": "types-registry@0.1.426", + "dist": { + "integrity": "sha512-BHu15JTq+KrEdvrTlVr4q6gIShmmB67rcoEoxbQZqTfX6X/12X58JU+E8UJ2pFn6yHJDh0woqo2UfGcxNF2sZw==", + "shasum": "76447d1a0c7a1a4a791b73ed67d48c08f6d50808", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.426.tgz", + "fileCount": 3, + "unpackedSize": 348172, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJciaF+CRA9TVsSAnZWagAASKcP/jeOl7wGS0BCnybvgXuP\nFnNcdVycMnxICCCOY//tDlXK1ewIZYoFPKPMljG9stoE4G51HSDLK67qj6oB\nSyt0dmL2dwZs/tOlS2zJS784rpylsdnln+33rafV7HkkIVBHz0NrtQkPqASU\n2eAyLvb6kclbHXitO7oRaqI6eLIddzYtmuU+N/oW+3u+Mf6mlGpJEwkH4xuy\n2so+iw9nhHuBhPjJygMHhvDHV1oY21xQTY7AZvePh0h1RDpzNAchlAJHDuFI\njZkJA4IhmCqAQrDjDz3ULKeRbyEYa6din14N8AMYXwvE7Ilzla1ENZkr8e3s\no0/EPGjlQjEzIuX4YOM37gfgXOwS2d6r/PMi5r8DD52ZYdM2xiKXEDk3PruD\ndWc38sKjPaT8P8sIVfGIFxTvoIW+gVbmvIhxD+aS2p06MCskLzOk3hHv9LKR\noQabaojH/6gQsicL9y7KyVZ8aXfEejqDOiD/LentCC3boxDn9aAK/B41wB9F\nH31m+rlP54pNWa0LgIbofj8usYzs/ONPb0DIbAAY/UbnL9wUezM0TjnHS+YH\nN6jBW6o5qkl+ZFi+RRLYjxKTgJIDx+oF/TTwntlcPYcETwFvXjW4fb82YcTF\n01nQdY4bq9nIh53wh8YufR0+oUwp+vJtqgW6KZre5rVJC1ar/433UpkGrZkk\nCLg3\r\n=CBEk\r\n-----END PGP SIGNATURE-----\r\n", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEYCIQD2vhSxhjT9DedOAWAbscMAp72LJs71mIR+ZHkx0TbOkQIhAJOMWjBW0ZA4OrPWgIELvLf5airHaoizZF8a0ULsaOZR" + } + ] + }, + "maintainers": [ + { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + { + "name": "typescript", + "email": "typescript@microsoft.com" + } + ], + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/types-registry_0.1.426_1552523645873_0.224800043224765" + }, + "_hasShrinkwrap": false, + "contributors": [] + }, + "0.1.427": { + "name": "types-registry", + "version": "0.1.427", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/Microsoft/types-publisher.git" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "MIT", + "typesPublisherContentHash": "426b9d6d7446c2d9f5b1eea3826aa7c64309f232455f50b1b09f76be7a186dca", + "_id": "types-registry@0.1.427", + "dist": { + "integrity": "sha512-d8R1tB+rWV7zY0gFXEsFarUwWUv5LurhNKgKonOi1JOF6nUzPi311neqi0guXHe1vUUOlcJpcPlQJ+87O1GGHA==", + "shasum": "f80855366c3dd23d07aa5ad79dd89a9511c518ed", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.427.tgz", + "fileCount": 3, + "unpackedSize": 347639, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJckuN4CRA9TVsSAnZWagAA7jIP/08C66M1Ph8+bNCqD0A9\ncqUMwMurAHnD5caUyDC5XppfreR/oE9KyrMWGyET9Mty0AXaPYZXw+hnD2a1\nKpV6iEyu/Nc11cyRulyOliXnrKZXxM3SNZNEW8xASIYzvruNPRG7GsZ+/IU2\nXXDoxgeTdCJggIsiw5TXYexzxyir5h0g7mEz3wvtBwYdGsI7+ZSMCKFW0W7J\nNHmzQmrjq+T78GcRhRaNmPu7NzsXc4deOd0NgLAh13G2xECapZx632ytZjL2\nyr4GhC5u15dBa2nLNBGqKGmqaBByys4auxQ9/bnS9afqU/gU8mvrn0Bi8ySf\ncL85VwJ4VWpzbFSotVZK+i56u6Rs/KiWECzu17gbbQ2ILvjdIcfbI63PcCqq\n5Bixp+jR8sDt7/gYDU1krdAVv3h7Zu+iHW5fpWa2STppUym2epfl5eOE4QAQ\ngs58QW9g5nGMAdDguc2nSDTsr3oLBpV3SoY5zuEv/ULqCsP4mBnIoAXAkvXL\ndRU+hS21VZYE6e/mxtYsP2mmjVUyja4C5rXwA0Axv4Kl/DTWoJlpaoY0afAW\n5MFl9pSJSjFcqPoY7wUfKByG1s/lB0AZdTfCW4AmPQUg6Ia1WeDkm0l+cKcB\nthYOrUL0VqNMNpvZ5WN/3naEEm+RfUFIoVyedOXlpSjflDexZvXu/o2oo6s7\n71Ov\r\n=tnfw\r\n-----END PGP SIGNATURE-----\r\n", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEYCIQCAb2oUQbsCKcI/VFZRKWnVjfe+6PJzkhns8C8ItQPUhAIhANz0RlN4ahs5DQj+Wumcog7oHauHQ0tvRGHNLRMxIBNR" + } + ] + }, + "maintainers": [ + { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + { + "name": "typescript", + "email": "typescript@microsoft.com" + } + ], + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/types-registry_0.1.427_1553130360010_0.37141213559425545" + }, + "_hasShrinkwrap": false, + "contributors": [] + }, + "0.1.428": { + "name": "types-registry", + "version": "0.1.428", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/Microsoft/types-publisher.git" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "MIT", + "typesPublisherContentHash": "b2785b058b7b83a86ec65864349d2eb2419085721955d6cf8e959055b4161c48", + "_id": "types-registry@0.1.428", + "dist": { + "integrity": "sha512-ZxXz8YdoRVCzQuiV6Ea/PjZ/JZ15DvrVgA69heJqOkyZG8OhYoFarFw+MHfPfuRpjAZJXyaWuftAyfw+3daODA==", + "shasum": "720c9cce52c8cc0bdd38b96baef07cdfff5f8c12", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.428.tgz", + "fileCount": 3, + "unpackedSize": 348862, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcnCXQCRA9TVsSAnZWagAAhDwP/A062F76ijjuQDnQ/BoM\nVah4KBVLbrm7WBYOJ+2g4O9jxmovc/QzOZpyoFw/5+kqfVn5Tm7DElo+WaKW\nPPgxf4Q5miykVbLTqrN9UBeMShRt/0niNWU4yZ0+dC0p/qpkM2YrfCVJhibV\nA4qCXQ4hEbhRzVhqJaIL08FD6M6/Zl2kFzpftxtbAsEbCHwIfK0yhmZ+Xo2O\nVoBZSy4qN5GRwlltOkPr47ulSkJowCtGtv+GVFfWeOo/h/QOoDkgRtuF6wn8\nQLS27EN7PBkrc92NUzaUrZTWe/vRzhBpH5bDx3AnJVgEhJOze/FZMEQsm9Xx\nd6Zx8m11xKE2nKN7GhsDhS3ibUP0h0nHUPAs5nkCDKOVFD++X/V5VZTioYWj\nBhkLmclqWTulM7B7mX5kuAFV2GPKq8pyIbKM9cmLerOif4d9MBLufU6OyPA4\n35Mx1iiUJG528Z3Lycey0IAGXm1uVyl09Z2sAHCFurlnnBKSwsfl3YrB8sGS\ngCZfxlK+8/EdpfzKvDn2k021mwiOtqPqD4QxECUKGgjq+AGC9RU0JVWE04i1\niMnZwyN3mRhLCZt6ltj+XnbY616fsYnrQzRMW5E+OFev5ETvVyb1jBFNfwXs\n05CmA3XOj2G18OQpaDBYuiRyDyqvF42cxvBwUtnP48kPwm4T4oz8qEekkrG4\n84T7\r\n=ruf9\r\n-----END PGP SIGNATURE-----\r\n", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEQCIDI+zwxDf84ulaH3j+dok4Vbo/BQWJqWEI3KeVJVKi3tAiB936IDw9cQbVpcFsEHBzxJGrXVWO27IhQG9d1x3Y4A/g==" + } + ] + }, + "maintainers": [ + { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + { + "name": "typescript", + "email": "typescript@microsoft.com" + } + ], + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/types-registry_0.1.428_1553737167945_0.28057156863102684" + }, + "_hasShrinkwrap": false, + "contributors": [] + }, + "0.1.429": { + "name": "types-registry", + "version": "0.1.429", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/Microsoft/types-publisher.git" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "MIT", + "typesPublisherContentHash": "5d8fddef1861b80008695a420f7045f268cb246bf30b9a1d54e4c225a5ddad77", + "_id": "types-registry@0.1.429", + "dist": { + "integrity": "sha512-wErjvWFwPf1Ud1nBm67TVwtY15GqFZor2nqMzVCdaUkfWeo5z8Xn6La+wruHRUhq2GkViaJ23buMNJoPHYnO4A==", + "shasum": "1de67ae799c5951dfaacdb0ce4a45d1f558286cc", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.429.tgz", + "fileCount": 3, + "unpackedSize": 349946, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcpWK4CRA9TVsSAnZWagAAmLgQAJ5HdR4H+9IH5w6Wxgrx\nrfigtNPG+JyeSSa7TeLefGVI08oiblF7eYZAjvVUVoDJ7+JLtAUP5clxYO4C\nIa1/0RPGAdEiixz4jYy/yHJUbobGnhoTqtEUDOvPidBEV8GJV70FPj7q47Zp\nbzwHyDr/4mGlZUs7lxtdO6k0Fat83VltRIHW5HkfDssLFzv45fn/Ux0HQ2Mc\nE+daWWm4gvKakN6DhEX4lMwNZ9S5BLwY2nLqI0xwBRZ9qGZVyXdYVejwEjMZ\nl869C1+KIKqamDdy2SMCufKwu5Ks6Nsx0NrMXjUXAFNV3VJNXi69lY68Dip7\ns43TcPhEepNCF+4HOzHsTNm4tnz6FIqFyAUq0keT+j4mXUjt24+z1RRXlHd+\nlsRvhgat9ZB9N9FeWOlf0Xqozk+MMU7YaK6X28JcY8Gbk5BYxmyFDq6bZVhl\nbia19pQ5z8mbL1hCVVI+quBVkSoGe62JQ/sqT4CIVEcWEaTn/RXyBh1tODnB\nDgDSHvPHCbTGTbDqjPQFX/TjCQgDzgKI0Eu+HjU2vOzVVKBXA7uQzASByeia\noe0qCqZ4eavLMSydHS6CD9t7h4R74AJ76i8laOHZu5k7lqWyiMzHb6bigr8i\nWPi0wxu/kp59QG1CtRl6O88GbVjmFN5oHWan5OifScUqP9qHxE/amDCfz403\n84F6\r\n=v7hS\r\n-----END PGP SIGNATURE-----\r\n", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIBp79Abv3JYmFQBVR3dA1ISkwlatc4zc3Bdn23gVo2I/AiEA39xVG/XhRC5LPehrdJXLfGSIpXsLtdBX2FhtXb5Alug=" + } + ] + }, + "maintainers": [ + { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + { + "name": "typescript", + "email": "typescript@microsoft.com" + } + ], + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/types-registry_0.1.429_1554342584242_0.11368709688353507" + }, + "_hasShrinkwrap": false, + "contributors": [] + }, + "0.1.430": { + "name": "types-registry", + "version": "0.1.430", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/Microsoft/types-publisher.git" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "MIT", + "typesPublisherContentHash": "99ab5b00d51bac227d960def5a689f8d6c1bd533bf5f8233a239049588433ea7", + "_id": "types-registry@0.1.430", + "dist": { + "integrity": "sha512-HCt9xoR60PNOuv+1aV69IG5ljbe4aXHPLR4nHNiQ9WRufhdSzOLcVpWOOftR48Kpa+4Le6/vzCDNsfmu7a0Qag==", + "shasum": "be2635d87d1a41908d3856fcafc9fc9a07b466d6", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.430.tgz", + "fileCount": 3, + "unpackedSize": 349278, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcrp/FCRA9TVsSAnZWagAACzsP/AkrO41YOJEkpOWmdCRk\n+q1YbE8A5+MHIzXeanD9OmeypzfNSecPMwZ4xgwScbaWle/ElUo5UmBt49ld\nPL+rJDuS/VciY8PqeNs2vt5XUXx5R+MtU3nE9hwj4jYeoYqZrO5us3ZgD5c8\nyN8zJBt20C4HLGhgQXgbYPvP7RC4WVpvAKIG3Gx+qtgY005QIAGY5BQT2Lxn\n7xVWGqnFQv+j34wBwMpqviNkSmNfyfYtVitmRmdTYgRv/wUyPLEEY0eWfGc5\nA0HHqAdzEyV1Ha/XtonnqObSfzBV7Ut2nl/eJT3feAWAiEkSEnYJDo2uUBqS\nHNfblvn/quWEp6jvxmQtxs/RHuU19H8O7qHOsyqNJhnkxMbLQolzbFMBf03p\ntLJA12SLGraIyD23ceXn0J+UHnWGqiuCS1WnqCu+/y7weYdTvYo3RblxA9mk\nm2Ud2QETn0hHgsj7sIgXd4swQIAIiLcp0O+pJQLLh50tckoz19bb1P0vFFDh\nxXvJEEVtmL8bfAxexBAxFRc80BWakPxlz6Fmhciw2NvXIWtsN5v3lwi/Lih1\nrlcIKF8fpSPnfwo67ql9dZZzEB5cJzKD3JkNsr1aRcJzG48N2fz6jyM5B/B4\n4r7rPmM0uJBg+su6gHkjpG9dFvxU7KAJLGNVtc5/MzC9ptK+QeMr6NiAQ6JU\ntfSc\r\n=SHUv\r\n-----END PGP SIGNATURE-----\r\n", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIB2/CigwlKNIYfcd3rsAt68zOfMC0A04ejT+q7u06iH8AiEA15bU3zPINQl+EtIkhYXt8rbUv0b8OFKcShmBEWj/d3A=" + } + ] + }, + "maintainers": [ + { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + { + "name": "typescript", + "email": "typescript@microsoft.com" + } + ], + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/types-registry_0.1.430_1554948036473_0.8689006806706776" + }, + "_hasShrinkwrap": false, + "contributors": [] + }, + "0.1.431": { + "name": "types-registry", + "version": "0.1.431", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/Microsoft/types-publisher.git" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "MIT", + "typesPublisherContentHash": "538f569fe62602fcfd239553ed2f8834e64a1a810770271e733878ce7d5355fa", + "_id": "types-registry@0.1.431", + "dist": { + "integrity": "sha512-nT1g0Qbc7nSUG1UwotZ71ZtaexcUMQpT6bunxpmMzBhNSlV61EW/1zR4aLRHJBAGd+kNzsp8/qaN1T49yeu0oQ==", + "shasum": "a6420322c893a0570ad54ed3fdaa7b26a211a5b6", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.431.tgz", + "fileCount": 3, + "unpackedSize": 349240, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJct93BCRA9TVsSAnZWagAAseEP/0o3R78rDTwt6L82vBVq\nzDOMYMJlKx7YpEtxAfqlDZ5UVOQeKqhCSxTWmZiRBkAvNMQrgqm0QUP43yzq\nEPmkpe3aSNz04qs13KbNhwP1eZvMEeRT802GH7UIq60VO1a5XYV5Yyu2dOds\n4jfksW3xj1THNKyHBt59zK/aH/6nzOc1s/6V4NzSUBGJtKazQLCXOEVRKUjM\nWHUWjxoP0b1TwvWDAZ9+4Js4WWodbtiP/Skgd6Yeq4coTZApO2hgE0L+e7i8\n7qzAPvsinztB2nyNZn0jGjuEZF9AyVXRwVkt++m99Jn1WixZ+7yxqJs/1Byc\n3QO5Ytpiv9aWjYtwcPk1lKDdVU+gtGHpH1T0B7vnLFdRDEvNnqJWu5zGT4gK\n8YJOd/+00zjz9/zr4o+mQWkXkV0bN3NZ2KwVbptpjH3ZVIsfEDZX4xs655+e\nbJL8cZfjS7Lbf1NtLYYZltLbs2mT2WnykB7G/FhnypscvUsquloxzVX45TnG\nqIID4be8RL6cbwU/ctb90wKCUmUGF/Ych0mBs8fs2oSVyA/IKIdJleqalyRk\ni9LHbmYkXj8XWnRxOJTp8iE5M8Fv1MEWC64eD64P17uFwjoZaAfNnXBYFMbg\nj7pprTB2jEQllfr+joXI7k7L+7Jp0rsY6m37EXy1xlrd16sgfencpqhZzd4e\no+bA\r\n=TYyL\r\n-----END PGP SIGNATURE-----\r\n", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEQCIF42zQBPUzLJVUTvzt9CVFllD4Jnu3XDiei/wuBsLdemAiA+hqS4DthK7q/IKfzFA5y4BHFvU38jQ71wqVbgpQxWNQ==" + } + ] + }, + "maintainers": [ + { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + { + "name": "typescript", + "email": "typescript@microsoft.com" + } + ], + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/types-registry_0.1.431_1555553728443_0.86158707106051" + }, + "_hasShrinkwrap": false, + "contributors": [] + }, + "0.1.432": { + "name": "types-registry", + "version": "0.1.432", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/Microsoft/types-publisher.git" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "MIT", + "typesPublisherContentHash": "f50a164085bedc424ddb9ceb0567a301bcd91c228cb341dca8acde8baeada847", + "_id": "types-registry@0.1.432", + "dist": { + "integrity": "sha512-tSX7NB5FJ+QQIUOi1141T395A2598JqKHVdHdygCw/1YcK9y5R+ws815dPND3y7xW9kHVu6ZmmR8fbxCsTu7Gw==", + "shasum": "c37d5f70f6147d86002909d327d18348dd5d2596", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.432.tgz", + "fileCount": 3, + "unpackedSize": 349704, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcwRqUCRA9TVsSAnZWagAAhoMP/1xxjbRg49VlbjBxvSK7\nJDJDuBYrQtuSxd6LJ54jlWpraCfdL9E8FjQhrGpTRT5z2DKWQF0ZjCNW1CGM\nHfsLb+9gUe3s5D1k2y6PrgCkG6UZ/OKaGbYK9sWrhGpmSoKoF3H+gbNbpzso\nFGTAEXT4rO+Fud1V64MIOZMQqKJf1QnMjgTxxbz4OMFTcYsM1MYJtsirCk8K\nh4/yn9YRyUv+YBxlboaDQeBHP0or+MF8HkdQ7qp+R7v9drTX3BghjAZcPj9o\nCyfTBSQRsM7/MTCrfWteKT1tKgpkwb3f2e2PR1V1bkbaEeqEwo1ZyqTIOq55\n76cxlT1oXo3mfetmxQe2Jcp6ppXQ9CTwMn1lmN1u+3qxL/NZW6L0tkNw0/4l\nngKAqPz+AN5mJayy/x1JZWKVe1+iz+CxzOxOR6ynr98T4ywNxDZe8f4OduyV\noafmv9odbRvWYxFOF4pWaVHALewVpgvRtcAj4EVZt7Dhz9TCT4ccNnN6OmzV\nUjOemTrH/kdSPoUx5qbwKy8lg/I6wB1B+LLfw8JmsZkivJS2AZdt3Ap1hE6r\nDSLvAEHi5S7YFNqGMfvyrpVoIl0TkNxvX8kNHl6VnYbNHQKa0zz0agat/8lB\n/7imMYYawTxXRv+hK5j2L4m8+LpPn0J8Y+Jlcf1e+mmXBjRIe+ZWXPvTQK3h\n/e5y\r\n=VfGx\r\n-----END PGP SIGNATURE-----\r\n", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIGaiw1zA405Yb1CRu/gfeArg7y+5Ggk3Nq8lfOtrIFnCAiEAvAD2DBgTVL1wfgvQVKz7ADd07DeTJp8xOfz1A/wHiIE=" + } + ] + }, + "maintainers": [ + { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + { + "name": "typescript", + "email": "typescript@microsoft.com" + } + ], + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/types-registry_0.1.432_1556159123951_0.27176862077531405" + }, + "_hasShrinkwrap": false, + "contributors": [] + }, + "0.1.433": { + "name": "types-registry", + "version": "0.1.433", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/Microsoft/types-publisher.git" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "MIT", + "typesPublisherContentHash": "02466e1a16cb1046eb8f19f8d704e1bdc1ec957061850e66c0e16f9b99527708", + "_id": "types-registry@0.1.433", + "dist": { + "integrity": "sha512-05vyt2hF9Uc2tEsvn5l8R8Wmbu7He3uWWAXa5ZJOjJzdIIugNdpga8s24orM8VnFSrENsfNmJ5vXNqiD8iPpyA==", + "shasum": "513b625c053c2f57bf7fe502e2717fc7b6c972cd", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.433.tgz", + "fileCount": 3, + "unpackedSize": 349798, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcy2ERCRA9TVsSAnZWagAALTAP/RdGgD6aQHth6rmtG6Ya\n4fuSldnyCo01pbKAYa6wQCccd5kw2irVfrNGWBVyAZpCQO/2+wU2RXzLxbV1\nTpqBp2zQ2PrdmJ0XAEfj0gu/VKYv6X6ZEfkdTTbQ/A9Rpy8BS3qfJYrIGFfX\njYpaFlPZKKtoXn0vgS8YJ/e+AmJKP7U+ukJ32tsKW7UjRGP4dOYEw64AChyY\n977OMg7FIraGNdYnF32gNw57tfOcntDX+XBNp8gYzLT0XJPHJzLLed23Txed\n+e1QvSn/nSJF5RGePraDsdm9wn8HPeE2SMt9bUtvV3da0Q2B0FFWp/3qJnDG\nqanjryPwK6tgcourdNff8caKnYiyVj9+gW1iNtj5Dj6CGd8Yt7c6UeHIKxfD\n25ZuY+h6WfuL4E4k0KVpID+iPClCBfN5FQIRcC4aGE+PYVGUumrLwEPWwsxs\nTx80BxijqflOQyM9Xz3+8GQgWnr/41PCVn2PTP+u9WlXKV+yeJUoliEVroFu\nDX7I9oYwScGkJi+53iBP4F6iayvvyxc/8WW5hD7F6GT8hulry42yB/6tO8c4\ndjcsTIozKx8rOVctHWYG1VsyQoUO+yLh0WSUkEVkUyrRZrRZRCLjHnlAwpJz\nOi6HWG1WmIFaNe61KOuyfi4wLhTxLlAbSNSZ9uEylCBwtDnUWbgO64vNocoH\nmreL\r\n=BpPE\r\n-----END PGP SIGNATURE-----\r\n", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIQC8ScRSnwEGV1nwYaCgZm+trzHYUMXTd7BGHiaAYQMf8gIgEMz16/Ci3wxHigFRnyI9PRF8tqEeBhg1jprfa8AQZJE=" + } + ] + }, + "maintainers": [ + { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + { + "name": "typescript", + "email": "typescript@microsoft.com" + } + ], + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/types-registry_0.1.433_1556832528731_0.8092215347312168" + }, + "_hasShrinkwrap": false, + "contributors": [] + }, + "0.1.434": { + "name": "types-registry", + "version": "0.1.434", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/Microsoft/types-publisher.git" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "MIT", + "typesPublisherContentHash": "ad8372094c5e801eb743525332c4c8c5048669eda0c216abcd5423ed8b1d4ce6", + "_id": "types-registry@0.1.434", + "dist": { + "integrity": "sha512-uXMQFjLJkp/l9OJD9kAJDgUAj3ExlWviuIxd4HHbNtEK7ujzTDd1z/8k0z6iSTgi5hUdPhkJx93gXcpS+WkP+Q==", + "shasum": "19f20b07774c062c2c6d341fc9d665009c1ecf2e", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.434.tgz", + "fileCount": 3, + "unpackedSize": 350485, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJc1KCiCRA9TVsSAnZWagAAUYcP/RY2SRjxkWGIf19OZjX1\nVMgDmt6tiHywV5BtHljI/Gw031bkomNOb9fRDh/nBuq/ENZRsxC7QhBQNSgM\n5jKrRQTAal+IAhL1DXohoC+Kyntz6a7iFSrFOrPz5UrjEC51cxbbicj1QDhd\niaYqdaWtG2bm0I9P5IgFW9OO/EjUzsrCKkr/lT2l99CZajMfxoXJ1jM7bgJC\nojUpLCVYqhUU4vGYMU/5dlLMRq023tYOvJkWkg7CxSDEvaB/drZUZDUe7OBS\nn6VfkqrAn9ZfErjN1ACW0yVXR+1AmgMe56In5NT2Z6g8C4Womcee/XxpZeiV\nBz6CXAyySDjfgTKdNaKt4c/W6/Zjq0lsHthEdppakdGwp7aDJQR5tJ5OluQY\ngPo7zwQtJtEH80iLwTR/Iuf33kzHPkuk96QZwbJOvpW+JJxYtbpemjtq9o0h\nfH0kkw4R+CA+pTLFk3UDNrW8nQQd06otmqLkPp22cmcYn+DT5yyYCRIbrb1C\njYLbPXMRi7JsnWJ03Mb0mimxXPW0ljYdWDD/AIcnvHF9dRy1+82KkId+72RE\nro5vnNBG6qrQT8hQGj8HXf4p5+Lu5UgMgbR4ugswHazsOr5W0ioVBh/KNpz2\nej5rJX4YkzIqlxpWfRzbxWBoXTjifTQ5rijhlwsQxYPTmFRh+gVLPR/xmob3\njqOt\r\n=ePho\r\n-----END PGP SIGNATURE-----\r\n", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIBo+pvrCy3m+Qi4brQhT9kx1mYFZBoqUVOkgkgks4WxaAiEA7wDoqBG/22G7X+xAS2Zb2XXN8ah0cO1RpT+deCeFFK4=" + } + ] + }, + "maintainers": [ + { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + { + "name": "typescript", + "email": "typescript@microsoft.com" + } + ], + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/types-registry_0.1.434_1557438625392_0.5206140826807775" + }, + "_hasShrinkwrap": false, + "contributors": [] + }, + "0.1.435": { + "name": "types-registry", + "version": "0.1.435", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/Microsoft/types-publisher.git" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "MIT", + "typesPublisherContentHash": "238316a855c2a1f39d429fa022ab8c9bf5f172d26d05af8450f9af09a918938f", + "_id": "types-registry@0.1.435", + "dist": { + "integrity": "sha512-LBaG05MZeB2ZJyW1WZnF9HpmJpfi+BP6vfQWUB6OY/On8/IF+tx546ttc8jMunrgHWhbGvqDi79ON2aESqhMEQ==", + "shasum": "331bf8b86ff5c5a2538688ebbe74e26a15258fc1", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.435.tgz", + "fileCount": 3, + "unpackedSize": 352674, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJc3dzjCRA9TVsSAnZWagAAgO4P/3lf3IavUgD2iXSBatpY\n7f6faPj0NHK3YwCBDVybutghIJzonVC2QKH1SXxFFEZJhF66YM7aKuwUUWo6\nF8U+tFIoX2LGExPELSyb9A9ZeNY1VxkVdrGdELd4AefpXShIYXgMOR8TLSpb\njqqMQA2rOqV1NvGmE+xzTy8AcZms8g3d57YV+8KtCcDJX9JCBBVyElXzxkJW\ncwKQsUBU0xn6EsrDvfQYAcQIi9DD/5M5ueRre4siqaNij68qiNuF6bKW5jjW\nMcuzVQVUgmdnqJvlgBR5Mc7o9wfq5H+4skksPo0hSDFo2j4Gw/Mjdb7OgCdp\nZIVZCETlBYD/COj9Vu5oYKUr2tTE3U7uQajhst1t2ItPhnugF4CmNH7sLbic\nN3i9Lchs78r7bUOBEWw/+i12J2Tk5cUoi7vOwOf1VEFez9fkZMbWyksH7IgO\nRSvv2VYZfcr0+eOrdJsK8rOUHfMiDjUEV/vEXd4Cc5y1+RDS0gO3YBOdAsiD\nY7b1hiQ9W08XgiHiVmGEUJ5PsPY6UH4JzZ7qMc8dRuF0fQ1jq68hJz2SjPGS\nQZalEGtJFaNwoTGbOt/hzAR3z1pP+1A/4h1J6i6dkpaTm8ggcPneSxxk4Ke+\noe9i+xaLaq4XscHnSsbMr1ECnv9KVn1oBpPSn9NsJX6C/iWLApHpSr56GIje\nfxkC\r\n=rvJk\r\n-----END PGP SIGNATURE-----\r\n", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIEsau0K2waXCypazuTeJnbnAgR1ZcqBfEnUxem1hsHqrAiEArSXEGg0ZdJG956cV+qM00qp85XL4dbEkFpL4RYsRwik=" + } + ] + }, + "maintainers": [ + { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + { + "name": "typescript", + "email": "typescript@microsoft.com" + } + ], + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/types-registry_0.1.435_1558043874962_0.07750842649504919" + }, + "_hasShrinkwrap": false, + "contributors": [] + }, + "0.1.436": { + "name": "types-registry", + "version": "0.1.436", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/Microsoft/types-publisher.git" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "MIT", + "typesPublisherContentHash": "c1b1432644994ae80f38f668ec029d56bc9031c5ff96ea7911b43c40d8ec3a22", + "_id": "types-registry@0.1.436", + "dist": { + "integrity": "sha512-DPGt+W8TFlEcTscacilgwlZPnQhWfKNT1Skw3mINyQ9a9JexFrROsVBpejSNVH2KS+RukB10hOpufHdm9eMr/Q==", + "shasum": "2b7d6b02deacf80c8603ef2d76be4810929c7b42", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.436.tgz", + "fileCount": 3, + "unpackedSize": 354310, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJc5xoZCRA9TVsSAnZWagAAYkMP/3R7d8NC9e/sbVg4jEkp\n8lDVD4wCVgfYovZB+QvLjAq7+IqmbP7shz4SufhmY+HoRGwWYCljr2doDBX7\nKQVbI3RgizVV1dO5O9VIROA+7RGStug82H24jb2jGNtCjZn+vJg2hjkIsSNW\nr3EaIJkLMcrmx8PHQ8lOQEvczirtEehVRUr3N4nfu53CxS34obnrXx4Q6nru\nu0CnzAf2Rl6pZWmBMSqOijavjSMPNOiegaZOQ7Psfg14xXeMzf9OV78fbhWZ\nUio92opvWZcFzgCJanRNkgO6/SGs71rpoO34uHKyPnEWufxaQLq3EJ+Y6tlf\nPLXs2ML9zwYPEHc1B6V5l0/mpDdbEOy///9Vroy++e1arozSDQctoZAKT7yh\ndg73a/5I04pTbHPCjP4KvEcXpPxrtEB+tuKCvoGuyfZL9rhds7SHJ3uG7ttS\nlQTOJc+8s5zilAWe5xzCi4XX1dqx8mDKRyTXEy2xjSyKszn9cf0fGMUxpsd6\nuJ59sKIaSPGIJnIM5x1AH9I9d/c2P0/KKs1tc7EtNRg3J4eK3aKWVyHCpF2K\nrSV1DiClDpxXSuM3HCTubQO25yAu6j7ncDLJuMGV/K0b+U+qKTU5fu3Kiu2W\nPQWU/IVHg+7mGxfWzCTrm2fZE1A/Yqe2RZy2roEa7GnDAkZcQ00gWvBu+NKj\nWU0m\r\n=5kh3\r\n-----END PGP SIGNATURE-----\r\n", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIGlPMWRdDwATuP5wEf1KRgs8rOnxeNLCP5/lZEzRe3dAAiEA66WB/jHNUZFP4zkwzpIfpDLWtti98Js9GqfCcGYIRek=" + } + ] + }, + "maintainers": [ + { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + { + "name": "typescript", + "email": "typescript@microsoft.com" + } + ], + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/types-registry_0.1.436_1558649368760_0.4859676953731402" + }, + "_hasShrinkwrap": false, + "contributors": [] + }, + "0.1.437": { + "name": "types-registry", + "version": "0.1.437", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/Microsoft/types-publisher.git" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "MIT", + "typesPublisherContentHash": "fdabffcac1ae9598eb25e0d4fa059303a16c0c3d15642386d7253db9ebb4d5c5", + "_id": "types-registry@0.1.437", + "dist": { + "integrity": "sha512-mBJ/zyQr/wQbbZBURJRNfeqCAGBWt5D5vhAlyKvURJ5EUephiywfim0DpIVyBCuBW2PiNA6GXh99XRidGRq+mw==", + "shasum": "f900d8e5cb06f08cfd2728e28aee472b30904f21", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.437.tgz", + "fileCount": 3, + "unpackedSize": 358073, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJc8FfTCRA9TVsSAnZWagAAVhcQAJ58xrniC7cTm+qhjxz4\nd8xNxmFIVqvGGDhBbHk5MLlvoVEtOgapzL4SPiv9ICGfG0k6CaqVVaqTbGZf\n1V5UvhNEA7EY2mT7nna+OXMPsKJGCCSMvhABt9qVaKZogu9QbtXDTiJAEXR7\nvkq3xY2qFTXFizZM/6wSUWmjCapKyQWwDj62JPY8uo54azloOkJHLFptWqCs\nIgoYQY1uwQIFLPvorWxzjbs2j2vQbcpPCqb2+OBIu5ZmZ5CqghYTCGBnmHmw\nT5IrA1MxW5HnUJRcJVWN2kcYsSwKoaAlWIm8+Yr8QIojU9s8hinj7wq4j0Zf\nAQ9D5mByW6osr8OUjEktj21an2mozEcM+zIt39LxlOsQ5upR5q0b+ZXGmop3\nCaZwMl1DoMt3zj585nyzoTvGJesAb0rUno0Bba+PCE3TWijBz06VNbCLsOHs\ntsC92aSrM64mw1WXPsrGlsdTLLGSlwjFKlmkguDyYmPx/oMPVWwY64HrOE7U\nVCjOZ4l4wVNrI860aFtXFjpIeRjeEkVS1il8uKl8jcKm30TJfkD47sCIcwIk\n+KM24dTwFmYle/kXpHuB6j2EQeZpMCkdIJk70fmmbAzidxMHxnVgHJuPtsSD\nD2qHv3h/+a777EmeYiGPRFrA07biBGbD2B1KbsGMOaXNf+/Gedh3Vj6Uz30w\nhL82\r\n=db29\r\n-----END PGP SIGNATURE-----\r\n", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEQCIHl6rWCqLY+nzd+F96zfd0UOUBzZ/piYn4os543+gBD2AiBZ7A6bVbyNMblrzkKEwzL4hLeo1rzUZxoq3J6nwQ2ryQ==" + } + ] + }, + "maintainers": [ + { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + { + "name": "typescript", + "email": "typescript@microsoft.com" + } + ], + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/types-registry_0.1.437_1559254994476_0.6893594042096438" + }, + "_hasShrinkwrap": false, + "contributors": [] + }, + "0.1.438": { + "name": "types-registry", + "version": "0.1.438", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/Microsoft/types-publisher.git" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "MIT", + "typesPublisherContentHash": "c7185ac32e04ed46f79bd3c5833bdc3721bb9e6c3bc738c725bca6df5dbbf853", + "_id": "types-registry@0.1.438", + "dist": { + "integrity": "sha512-jIqRdCGIoafUmxSanh2ebkfaqNMJ7eHeo6lTxU9IMVU1kA6WLQTwojHknUGsGflMRJXnv4CX9ycuTsrAasSohA==", + "shasum": "e90e83e827d3b79f7caa825bd73a3f037bdce2d2", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.438.tgz", + "fileCount": 3, + "unpackedSize": 359799, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJc+ZQLCRA9TVsSAnZWagAAbdgQAJlmT6RFyfuSRD9nxcvK\npk/GJbzy7AgONwrwVZvlkiSYYgLHy5RJr2/2L4QzPdtnXclQaNlNaGqcZ4Vc\ndu9Jgx0HfONXmvys6G/2uKKsszfGvy9S8J5Bpw8+FFwCeM6Nqpi2G5BejZ3d\nvnPwOnyoFU+M21xqwmZpiDa83Ux8R3DIuGMdFVs01e1QPE4gnk21pts+QiR6\nLUmIop+6Hd/gDfxjH+yGKa5ofxgAyVivheNcFsKuzjzEYtx4vb4LmZnqdcYW\nmLkuyK+1Zzq4xsmKMlnygojo9jPC1aNGXgcCN6bX4+gVZnVDizRHg4qdNrs+\np1lbzQMIflENfyguWGo13iiym0KqPeHSbBTyE7W43eBkORd15pa8quLYm7kq\nvXnL69ZF7fFbk+rDeCSVU/GJur9RTlkgRTElHtB3SevGa7Y9sj6dbxU/VT5X\nrtLms5kIZZ3pNzhdmJMWpcpLFvdsBNB5EhpE4x7CNruafwoiimnz20x3kJzy\nd2YB4qwGmnzxs8s13nrgBl5OJhD9VDuYVxiFl8ASiZ547Osenzq+uU/aKBjI\nBMFlH9fpKHuwMFFRu639QWOhXBzOkFzZNqiAHT8N8NtFPRRPPUaMr/f0t34M\nL/vO5uFu38UiQOeL8695os4zdxH5ofAKBJ/0J1UU61ioOwySTyFd6Fz98/iG\n4YNJ\r\n=Y7kI\r\n-----END PGP SIGNATURE-----\r\n", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIBhyPQlGl1TU/LT0zTP6n3f6iScOe6vHIErPdf5gGRDfAiEA3ARgg81x0DvzvuAcuZHUSm6YEcsD1MNndgLx21U21bo=" + } + ] + }, + "maintainers": [ + { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + { + "name": "typescript", + "email": "typescript@microsoft.com" + } + ], + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/types-registry_0.1.438_1559860234374_0.8394443341529527" + }, + "_hasShrinkwrap": false, + "contributors": [] + }, + "0.1.439": { + "name": "types-registry", + "version": "0.1.439", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/Microsoft/types-publisher.git" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "MIT", + "typesPublisherContentHash": "0cda9342178c6c496760b2908bb52f6887d0207473e80d1c83760363707219ef", + "_id": "types-registry@0.1.439", + "dist": { + "integrity": "sha512-LlHj1N5EfRTfmEL3wWiIJCJ46DAS15EGGt7+yfK95Z9bRfT4Vn9Prj80H4V3pQoeklNo1AlwZNIWF3IX7QBewQ==", + "shasum": "87cb41043aa06852f6e79a384dfe9468fe232280", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.439.tgz", + "fileCount": 3, + "unpackedSize": 360412, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdAtZQCRA9TVsSAnZWagAA0UMP/is3RJ6+mSD3NwZnU3CX\nq+h4EONv6yT7wOH46COu31wbGu53qtzH77N2qU4dwYbzJiyFF28cAEFc1dqZ\n733S5U/K6/d7X70aV5V6BQ9LN9noNu5ftqHrrHODZHcCMuz2SrGBowXx11uB\nxc7YLvzxCS1xzBofPBIMh4wks6LSRPfo1ohbLvFCEeMAFqVebkuU0qcu+Ff1\nRGcNmSwIWlXLJOYRC1Lj+PN/ZnL9wK7yN/mZWH6VjPgtVLvDMMos6PO6QcIV\nDhpA7b+uouSIwaMqEwjGjuQavk6V0u0aPW0Q04ylMTvN44qBJGBqcbwFJ7+g\nAQv/uOGFZHYaZvSuQBDI+znaqXS4M7rdF1EWYgXt5vtUYYJJPJYIxgvvJ6iU\ncmMJ9a6XylKbTni+Xz1rt9OoSSfRYm/kb48EYpDYUycvoXYKvLIk/uqW5h2L\nzGnKDBcIYdXGbWazoUiukh/JAToOIwPIvNc4REujNhNrIUgA/x0/eawATOuU\niV+0qqKu7Pl+CI/nx9PSCPe1ZP5+yTW6wXLLuaXwnupD6ECRwknLYR35y3Us\nOMIaqik4F95YM7I9pnVuhnFwcP3Ig7PRzfa3/+80upnUsw+38Yza/E+JiBzg\nZgT9i7s0F6bb6zzhvilECQ0BuIrl2w6KpGa4CQhKs8LbeGgHqLmvzx7fbi/W\niioO\r\n=Q6PQ\r\n-----END PGP SIGNATURE-----\r\n", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEYCIQCCWh4I/b0BxVkZ3x3fzDDWsecBwzWO7c+J2cPOqSaqOwIhANdUKOTcaH5OMe/pde3A3p1O18jix/o5qPa++Bm6fblF" + } + ] + }, + "maintainers": [ + { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + { + "name": "typescript", + "email": "typescript@microsoft.com" + } + ], + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/types-registry_0.1.439_1560467023727_0.3512847101090293" + }, + "_hasShrinkwrap": false, + "contributors": [] + }, + "0.1.440": { + "name": "types-registry", + "version": "0.1.440", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/Microsoft/types-publisher.git" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "MIT", + "typesPublisherContentHash": "3f7af926b6e4bb5dd5bd1ddf58b4223b3042eb626772b818ca8cbe65d1725f52", + "_id": "types-registry@0.1.440", + "dist": { + "integrity": "sha512-kJOOQ0ZQubbsMoi0bClqtw2QHCQz8G+FvJNACwUb9kIPZFQbPpJzFr091i5ihqsk7UwVyT+GqzQU4QR/MrFbZQ==", + "shasum": "70069ee83a181145817d78821aac935c74290344", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.440.tgz", + "fileCount": 3, + "unpackedSize": 363405, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdDBSiCRA9TVsSAnZWagAAXdgP/30SL7QkjwtOT2rF0Du1\nm49eotHjHa6huA1EGW13JXa6vW1ew3VWlbt0QCKiwqQSC+4eg5q7LO7ukts+\n1YPd1c6opZ53fLw7T1yCvFrolb69Uibn/KOH3FHgfsqAMW9KUWvIC4J7DnHi\nK3Try/UbMq78zaTMmx2/plHUjqnKJiMrXxfMgeZ848BDW3DJEtEiDZHXEN1n\nLTPxCOZ3oGtKXwUaPFSF/0IhsicO1XDxSiz/6sR3HAmj1yqmCADfmNgaMG8k\nf4RfeCjl2SDefIHdxsLx9Egq+Ku73jWo/Jw/8zcNaepa6dclQbCTbLwV8z10\n8F/YA6Qk6eryrhoIUvkkY6MH7IMdrtaAPhX4hb7dJiCKNpNa3bVXSQnO6cQH\nNOEVI1IaApjcPi1uirIA4q7fPqqpmVKGTTVAahA+DQmVBx/j8UYLwMT/Uu/j\npniGQLHvKOny52Ivz1+feCuBoFXbLF91fzlXYyAw50qHMxh1n0z7fkRgvlx9\n68vFjezHmmOldlIA71LtBiXp0A8iZDBaPqql7udK6bnmUCcvn+hxxkfaeEj+\n6pmkNJH/ZUvkmN7mYyXhIdIGgiRm7+XGMds+TyCTqZRnBthsbPnw1RhZQFmF\nF6DgtDQJwMnG5GbBK0Ga2kLq3u1FQ38do+F3dEWrOjPoBM6Vz6ElVruW1jep\nW22S\r\n=GBiA\r\n-----END PGP SIGNATURE-----\r\n", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIB00w5sMuaqJ9OJv/mgqIutftsxelcNbHDf3OUEr8nHMAiEA4IzP1LIMtUYvvZwnp6wYRh0q3rH+sNXTx6mm/wx4r8k=" + } + ] + }, + "maintainers": [ + { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + { + "name": "typescript", + "email": "typescript@microsoft.com" + } + ], + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/types-registry_0.1.440_1561072801537_0.1521223441509525" + }, + "_hasShrinkwrap": false, + "contributors": [] + }, + "0.1.441": { + "name": "types-registry", + "version": "0.1.441", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/Microsoft/types-publisher.git" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "MIT", + "typesPublisherContentHash": "72a44631c7631e92b3dcbd1b891dffc86966a364566b5d288ce3942e6204de9b", + "_id": "types-registry@0.1.441", + "dist": { + "integrity": "sha512-MRjC4aUew+MO3+DzaxGC0Rw6EpyU8SrByggT/bpPU6CAFYwupMcW1PodqR0MvtVWSfMha7T00DQohExzsg2bZA==", + "shasum": "4ffeaa2c6316065dd8a6d8637f151d2b08e143f2", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.441.tgz", + "fileCount": 3, + "unpackedSize": 364831, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdFVLSCRA9TVsSAnZWagAA0okP/jYF1saUF5Ahv1HmaTLX\nyAhVkd5subTnysaZ3Os/xy2RiPkM+TDQhDy28bsifdhL4KNr4cB9FfgY8d91\n+P5XYh/IJ7EytrOGHBoMWYxMFFTNgaGFTt1VR+9V2pD7weI2XpkNc0BhHOZ+\nPdRnxji74jsir38kEk625WEhDiPssFKTCTy28iqx7JkwDiX2NtdB3Y0BNuJY\no+hCKQR4UULlbCFeEWcHIpcGJKetIDghIMnlrqPMv7D8ilNBITZGOGJhewfl\nx9BD0b3+ZZ/2x9UTG/WA9eBruRPsZQKY+opHDRyU0SfVOENsh9hbC8gDTFUw\nkxkUX41WyQfQzbEhmisxToGIZV6H07fQnyVg80WYbvOD++ehmyP4ipe1kdJe\nveTxXjFL6L53TqE2sPqQSOh2cAwQ15zCEB/KAIoYwXgM3C7+M4FBK1MHYRXW\nTkdT2V2BzsTecuHab7p0PlH4qhPJUwhXJA53RCf8Tml7V3oSQI6vqo1+Hiyj\nkC9kx1nSGoq48cNE7DyROd0kApuTfXDXKQehkYe4x/aDOqQWY65jycNoR3OO\nO0x59Cpyc6L7RD6DgRq9uEdl97T/tuCoorKwb/dgq9HlmLXwpiUM2Z9aZVME\ncfZ6q08SL5YOfenwhk6A+/3Luf1yUqFOD3+zGhmKVxSw6duYNKQ1bSw0rdT9\nTFl9\r\n=6eSc\r\n-----END PGP SIGNATURE-----\r\n", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIDTllfxs4WKajqaVBjBUD540PxIwu1lfptXKETV7yUUHAiEApYH/gvYQtF1KXps+RhhEvvNLHGHv2ARoO2EhThhSqUs=" + } + ] + }, + "maintainers": [ + { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + { + "name": "typescript", + "email": "typescript@microsoft.com" + } + ], + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/types-registry_0.1.441_1561678545849_0.31561150540042404" + }, + "_hasShrinkwrap": false, + "contributors": [] + }, + "0.1.442": { + "name": "types-registry", + "version": "0.1.442", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/Microsoft/types-publisher.git" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "MIT", + "typesPublisherContentHash": "78f23146466465e8853131e0e85f0a38ba8a658b73ce2fd3d053511eb091e388", + "_id": "types-registry@0.1.442", + "dist": { + "integrity": "sha512-jQRY+2Qq6U5rYHHANgAmb13lxEcbfp6PbWxN/MKHMkpCwt+zzmSk8MKBD5dNCi2LbSa4RjBdsIRYCSmdoMJLbQ==", + "shasum": "af91452030b185e7ab3ffbd1058d0d7b4625df58", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.442.tgz", + "fileCount": 3, + "unpackedSize": 368406, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdHwHACRA9TVsSAnZWagAAwdQP/2owGDyRKsY4KfuvcH13\nA2SDO23/uVl5s2mtsvM43XTb9SQZyA572aq6PqFDWk2PHgrmz8AhVlJuoa9H\nUBPR9WbyzzDJvbenl7o8z9dYwUj7QnxNIFxc7LkYQRsYSh4ywVuVFn4d1bFy\nNAcmx1jqYJzI7E7/V0DoUsZxbWQqdXDgvBLRg0Mwa7El5xfBteyEG1dnXtBJ\naQz+bMSfvqCzzaAAaIUkY+ZWy1lUBDTWpLlyiM4aQgLoRMGPxeRUrR/HIFLz\nw883hGG7KssI97lxoE+WXNyuNRueBUlp3TdaHFTYtNl+D4NSkLJH3Rp+kgiZ\nG5Mw1fkXlTsz7HnwQhqlhZJ11H+T3GNC19YwKL9dUUPU9GwaqoAmQ1uzpF0W\n1GcXBGQwfYWMSVUaT6DbFtIAs0xF2DBBD1+sWch0vYy2mBVgmQNtWv6YsRnH\n/UkTJMDq8U2pe5w67yoOJ7HPaLVw7AblouNWtS55zBxETAwI7dR2i8S29e7k\nv/nhzVoazzKp4j1MXDxS2Yvmv/O3QEa0n61OLfuKcXY0wt3ZTRCbJOaYN0o2\nGBoV1csbg/rSkmyCxAaa/QD3jbndcnGsavkvaQMWjnKlVKWqNy4JPPDbkFYX\nDyj1GCjUhIFTy4xdqsQ1oSOA3CxXGlSfoGIYOnllla98QBSt30CrKhOdBNff\nD5yZ\r\n=HPgL\r\n-----END PGP SIGNATURE-----\r\n", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIE0wIEQ4+xHyP5+ExFQ+dTELQdxNjPk4u96Pi0meJBBJAiEAiZV3F09UASVpyuOTnOF5TEfiCf8am65I/LrEb1hYEdA=" + } + ] + }, + "maintainers": [ + { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + { + "name": "typescript", + "email": "typescript@microsoft.com" + } + ], + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/types-registry_0.1.442_1562313151450_0.06822011042053622" + }, + "_hasShrinkwrap": false, + "contributors": [] + }, + "0.1.443": { + "name": "types-registry", + "version": "0.1.443", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/Microsoft/types-publisher.git" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "MIT", + "typesPublisherContentHash": "6af2f73e7e9eb5cf6d25c1cf6ca0d66baac30d7edcca5abd01d48da1dc1ad35b", + "_id": "types-registry@0.1.443", + "dist": { + "integrity": "sha512-zi5jLaHfTbQbHAvVdEANAM4lt8h3stCa/mBTdUWmTLK90V8ZDLsOAi9HflEjw+o5MuFVVI7ClcnvSU0C+Ajq2g==", + "shasum": "98b5a9ddad3aef286db3511f7f7eb71803afd43c", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.443.tgz", + "fileCount": 3, + "unpackedSize": 370235, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdKEBGCRA9TVsSAnZWagAAiGAP/0oO+bpgzCpw8v37Xf4V\nh7VD3ZPIUCDW+fxNqO4pARGxeCxbjPJw2wcR17ri3Un8ZdNUbfFxKQVlAq25\ns18npFZfmaPMxTF0Z+TrnMKfRv94acFnqysjrf4iwURtdK2z+k/DJyTT2lAb\n+xUOF+WMPwv/XGANsw08VP7HaOpxZQbwL7MUizBEwlsNe8FoIZ8U3gSWtGNC\n77xekSC20T4+ctH4a3XMcPqTYAt3kZov8SZcuCiH7dH6ORmyYJNs1Yltmy2E\nBEl4dtNpl7W2I13nqr1kjdnPAGnt8c6rQ2DB54bU01ALlx8hlOE4w5ynKGg7\nvtnEV5Z+Kj7FbttKDHTycOz1OJPZmJ+9RgUZwIlMuoQWUBJBcBiatLq7lNSz\nZU1MPGC4obOIPIMrj8ZJWA6H676HLkQUZnF66GMBoaV86VA0j+1uFQsZhrhp\nXhnPF+mZCLIeK6THrwFBkitASEBzd2lt1CXBID/zcSw/zR3oS5LJZL0og01U\nhu0k5511P3fT9Y+DC0eMlVb1K2o0QjiW7ce70Ru35ZvmAfS7UvaMnC9hD9Ck\nUEDrivMe+D0TluD5IeSeigG1nYmYL1lWznInsseHkbLF8O6CUBzYpxQtWRAm\nSeOlFLzxc3KeR04Dud4IPJ8d4PsctQlQucn+VzSjFsLGBG8vhCnQxi3S39Et\nLnZ5\r\n=K8OQ\r\n-----END PGP SIGNATURE-----\r\n", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIQCAOXXDNQFruibFF8Nx2WUS1KZKfLRtbhIPxF8qX3Y+igIgBHc3p8HR6nRC11UxKzBF78nJiPVvBplyIfo6c10z6xM=" + } + ] + }, + "maintainers": [ + { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + { + "name": "typescript", + "email": "typescript@microsoft.com" + } + ], + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/types-registry_0.1.443_1562918981995_0.9379017133847813" + }, + "_hasShrinkwrap": false, + "contributors": [] + }, + "0.1.444": { + "name": "types-registry", + "version": "0.1.444", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/Microsoft/types-publisher.git" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "MIT", + "typesPublisherContentHash": "c429d3dd54835edb39f34cf98b0bd38227f7450a524df091fe701de4c3bb1d5c", + "_id": "types-registry@0.1.444", + "dist": { + "integrity": "sha512-cgBZOcXRfT24WmFhhuifQjATykmdL1EQuYxg3TjmciG0v8MBT5n0fa9LM4jGbLsbpZP0DctbDhZ/HJBxLEZoew==", + "shasum": "a0cc1e7b27846b2465cba074b0da15dd0e070eec", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.444.tgz", + "fileCount": 3, + "unpackedSize": 368937, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdMXuiCRA9TVsSAnZWagAABgAP/33R8Xdz8YeN8oXk7ctu\nCAV1akSwylEQafNk8aMwk5R95ANEZZM2+mf2l6RFV2px1DfSdxx+y+B1YAYa\nuJDh2w+og3LZP9ynYRYhMyzSMm2f6CrSkIt9NfNHHryY+2o5M0H+kTCvp5ha\nZWy8W9IqS43CAF95rieFHQo8PL78/+4CsozwEh67XyeLY41AkvpNrecT5bPC\nDl5+MT7GMHiluR2uCwacJES8ad2bnWGZwFDBU5qxZ80IvuilgNIVRKXy2eCe\nX2yhyNcBNpJeM9S1bY3xK7Uqa7s6ybZF3Dh7zWANSU9dLAKntTj4M87ytK10\ncbwh+6XRWRSCbtXdDJes7P/Cl7DHRHSvblwKnnU63aGj3+Dfqh1QLr/21OL6\nDPcus6Pfk8dNM4nqaKQB2uKLAUttBky/LvaD28XKavqypV9aKpWYnw3LWV2H\nBljZCfuzKmDXF8q8C4N/mmB1O00GFfBPH2tIHDiy9dkm1QA3hAuKlk7rj8RU\ndXRXxr3EFmZ3/n9msTZJZvCj1cNg8rmjV75EZW77AeOiv7AKGBpmz4Qu8nal\nvHlgayLEkaLbE6C4/ZldVtfB+mBzBVaQ7NFVmcmWklr8m0/UqakNFR632E2E\ng2Ojdub3LB8nOXQgGNWLV7OPoRiuSVw4qB2VXKuKklBob20jF79UVi79LgEb\nAPcA\r\n=KwnL\r\n-----END PGP SIGNATURE-----\r\n", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEQCIHl8YMKDPj4YXIGm5dx+p+HuvYiFpCdxHaGure5ovpo0AiBsKLRssMTpfZe7my1nfryVy5GkS5GKniN8q6tkoUy+PQ==" + } + ] + }, + "maintainers": [ + { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + { + "name": "typescript", + "email": "typescript@microsoft.com" + } + ], + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/types-registry_0.1.444_1563524001746_0.440999541743067" + }, + "_hasShrinkwrap": false, + "contributors": [] + }, + "0.1.445": { + "name": "types-registry", + "version": "0.1.445", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/Microsoft/types-publisher.git" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "MIT", + "typesPublisherContentHash": "6f0c6e8787a780c690472eac11d7714922cb67f8e1fb0ea85f150607a2eac0ca", + "_id": "types-registry@0.1.445", + "dist": { + "integrity": "sha512-0yR400pKOuozc6raAZL4SiiUTGt/etiQp640scKEX8BUwiqSGHryphoqIAlenwQFWUQfGiUdaumnXoY5n8pQpw==", + "shasum": "776e06377ceca99c6653036248e7a6cd2e529aa2", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.445.tgz", + "fileCount": 3, + "unpackedSize": 371549, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdOrh4CRA9TVsSAnZWagAASrYP/RTj1O8RgGS4icRUXOgP\nplZ+uWttUxv3HZuph0FREONkA0dwKJB0ymmZx+C+DQzniJgdQBiZuIrC7bYx\nG0+I4/H23GHRExlDW508wwWGBCD3Mq9x4Gl7YnMxl2C5YD4vO9JNxxOwg2Nn\ndiigwLu+L/JH9hHRjs1k0YvRAJBxjwAFXV/a5PRrDMPW5nXJA5B1UpzYFcUo\nbDquq7LlSZz7iAmaQD1nHQ4ao+RcOHF0R9I33SIn4O7tyNSgvGm+hiS/D38Y\nI/kUaQdb7KQvTBcCU49MKVPLogsrTP4s2CMsqKQQgbDQ885+nSq8vK9VGj3I\nK6l5gX/WpWeHusTnOulkWz86+KZLgCBSW9HhMzS36ZRwJzIvBWvggnUz02K/\nbjSqc8qoAdZUhOmGX1iGccTljf7V/dlLb2K9xi3d3HXp8JBVsZgOEbNe5vGz\nTcjE20i/YxL//LK28VSvMfyTmtJEnWrlxdb+AXa+QWMiUUPQ4mYJAIvaPKUN\nsRxG23nyLGt9o5SY7BHk2G1rPk7LOm6DhcEUNDOoY49aUrzIttstK0tD6Zn+\ndoLq2FTuSb2RPSNxQrcvKG0JcIMfx9yaIpdI9jaKiCDuG/HjKdP2sZw+qPDF\nASDYntmh8V5mMmsYHJfHEj1x19F5/4w7E8Idj7NTfsSaRV21CzKlbDna366s\nJvPs\r\n=z16q\r\n-----END PGP SIGNATURE-----\r\n", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEYCIQCBRW8LE4186OlpVre6rQ1DbDj5+UpNE+Qg7ZXNKGUD+QIhAOD8GW2WCCOEFmUlkF3p8jvDORjGsp7LMx2rEBL+ZVsw" + } + ] + }, + "maintainers": [ + { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + { + "name": "typescript", + "email": "typescript@microsoft.com" + } + ], + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/types-registry_0.1.445_1564129399789_0.9135014393330425" + }, + "_hasShrinkwrap": false, + "contributors": [] + }, + "0.1.446": { + "name": "types-registry", + "version": "0.1.446", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/Microsoft/types-publisher.git" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "MIT", + "typesPublisherContentHash": "d902ea1a0aa946ad4a41b6944f63225425d08c6958171ac5a416151d46640c8b", + "_id": "types-registry@0.1.446", + "dist": { + "integrity": "sha512-aNKNybhzCihUHAehKO2KtQAj3iRo/egLlAxcwUXoGeq1E9MCXGF0ChPzN8Tkg3iEJ45xFxiCjrnsU2aYn6YbmA==", + "shasum": "1465d01dd57a855a2c3c496da97185aa9694c91a", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.446.tgz", + "fileCount": 3, + "unpackedSize": 372840, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdQ/PpCRA9TVsSAnZWagAAixUP/REYFaV2MnQLdzLmclAQ\nkPYYZSQCdIfMq2hEV3kejy13N4Bl6wzN0+2H6kV2Qhs8tjAhSjG7DLpY2kqI\n90G9lsEC156h7LoDkH2f9o+brjpmdjZpcchcaInqeVBRoXqZjTpA1rXl+ZA+\nPnVWyjtOMqQBjFOGZjMe1JQWhVtReuaYuBZPSx7kdqiuXeIPFTDk9IDlE5cX\n5iQlc8sT5JKHgt2PrhXpHfvlWH6mdl930YvoKYQ28df3VaYLSux/OwHicoDo\nccYJhS7b58Cm4uXxUHoYOgL4qSvbhlPETsJHseDKvC4kuF0CCksV5pMIaoTE\nH+M2dmQwH6VfijwRJdrgHlOS4WgV1B4vd5fLK7HuoQ5IuDnNcf/Ek4kfNY4G\nRRDz5C8UjaaqO2Q1OZbH0r6GWwAfiVN7eapRcj8Gk8ARb1zgs3/TCgVBzK0x\nctZMMYfWqSuqC4A70l7FevAOGG1a4Pi+ifiyqzABwfC5PRpcPg46YjlNoTMz\nO4RFxalEs0Fb3+acQJqLNr7xHR2kP8Vj3QwuJBSWqTYh/r8lOxHvLg6rfg0K\n9Z3e8G7DLad6KUEfNBlvOTZfLMHAXaGMS4OmjVhMVaxNjeOazOI6YziRt3FJ\n91Fx6TkLUP9PLMbgk3+sx1jxn/QvJZ13ikEdKf2ZTwQL6akZ6jF6pQCnrUu2\nR9OS\r\n=kSxp\r\n-----END PGP SIGNATURE-----\r\n", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEYCIQCDxTBaRUniInUcuksq+SVTrjghDQyGBlA4ccUr3okOMgIhAPSboLUIB2vDBrEwxQPzGiPQB1VLkYjCbj8clGEiE8d/" + } + ] + }, + "maintainers": [ + { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + { + "name": "typescript", + "email": "typescript@microsoft.com" + } + ], + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/types-registry_0.1.446_1564734440956_0.5026253590744849" + }, + "_hasShrinkwrap": false, + "contributors": [] + }, + "0.1.447": { + "name": "types-registry", + "version": "0.1.447", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/Microsoft/types-publisher.git" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "MIT", + "typesPublisherContentHash": "d02cc9d88dc08ba89dcd3d036a7149033c7ead7f4a880ae3dcd7dd1bb7eeb88a", + "_id": "types-registry@0.1.447", + "dist": { + "integrity": "sha512-6R8vzDC2zixs/FS6mho3L0eK6h9bp03EqhRGR7CUeT/njl8bKOIjs6w1opzQDi5kuI2RMrD8O1EcXaWiUEj9Ig==", + "shasum": "f8991f62059641786fc53bba69cf337c368eb2cc", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.447.tgz", + "fileCount": 3, + "unpackedSize": 379248, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdTS7eCRA9TVsSAnZWagAABkkP/iZeG7rAq/GQm35skBKF\nwleer870CPNjjVX/b4Ynhy2kRCFhP2fUWLQpjHSt1AEiEBrQtrAAa2YUBQBx\nGibICDo7uteIUxl9dMWGGr5S67tKrhFYXq778gM1gFMMsn1k4K/fLhi0K2hw\nCx3UkpzMj8wPqH3xTVQl5CKJjqxnFCY3gbn+apSdID/PF9A5BfYBNQeyWw33\nC6RbDS8PCfwkGTjECR3KFq1Z5NHYDeJZbjXTq5SYZNjNxTKU4xziGuHtWiJG\neVQJaJuCTd4OSgWQ52xwZN6DlG4ObVietW/JIw2aFzaCgtEbtyEi7CHyafZJ\nzCsrSU3xXA0xvmaAtr9RlQ19qBVhxC9NroiHghRcbsbb2EhNEX8Q2c58qDa/\nru5mHAlQTTkxNkTo1Dxy33arZe7Ea96hOwRL1LKIOjGzZtaTThn/DoM2thqF\n3vsTmwMQ6w5dIogc2iVSzAUV5YwAtD/FvE6f6phEdxQfLR0+xBsW+F5jf1kX\nCAWV4aAL8LjYd7yH/YmN8fMGt5vvR3rFe8VMqBO6iOSXkgAMhgoLELG6jbWR\nHizX/1lgEysCve986zIYyCMXcopXzjLE9Jr5PV3NhIFUQW7GubVv6hUgEza4\nn17mcdWNF2CBqNHf+nGc2xOih6rfOZNfXM3BUYQ5eWXp89lsZci5MlvrYRnw\nOg44\r\n=w0Um\r\n-----END PGP SIGNATURE-----\r\n", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEYCIQCE0JjSgCT4Gq87gCca3vJxCoZcarcxRUZVp4o80wleqQIhAOTLML4ODkF+Fj8v7ZwBSBKut9c7q3L2CEl0H4GbFNyG" + } + ] + }, + "maintainers": [ + { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + { + "name": "typescript", + "email": "typescript@microsoft.com" + } + ], + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/types-registry_0.1.447_1565339357208_0.21053422692036294" + }, + "_hasShrinkwrap": false, + "contributors": [] + }, + "0.1.448": { + "name": "types-registry", + "version": "0.1.448", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/Microsoft/types-publisher.git" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "MIT", + "typesPublisherContentHash": "b187de8de50c74c3ddb32d56bc9e9c6582a8179c2b2b8680f2a3a40a2b007661", + "_id": "types-registry@0.1.448", + "dist": { + "integrity": "sha512-NYlFOmv4vuT8yrm5nddYamwtauHFZ+Gxrdc5KO+eSYnkOX1pcjFsNcmtsykvkBy9e03dPIze1djNjHgtLc0dkg==", + "shasum": "f8e9d0f0fb18e3c5666003cffbbdccea64eaee7f", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.448.tgz", + "fileCount": 3, + "unpackedSize": 379873, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdVmwFCRA9TVsSAnZWagAAT7YP/27asmNQe9J/uqVaB5Tz\nw7B9lW47W9wEHzy1Ux/MuqQ4tBxtwclQg9LvZxZEKeQALzE+9x2UP11XuGC/\nyAGy7ojZrLf+WXQe3ZAXGgRzWgqA5y3qcdA2vXiuczA+pkCK+KigeoSgxeek\nCZiUgl/NhflX3VY1c++0eXiaq1iXZGzTGpvvkcEdebE/ex3OH6S+JsdvVvky\neGrFsNN8R0fJMRfW7C7SIZBd/xXLmqbCmRpZXIc/18iC7F0dGKOUIyIjk5Yi\nUTq8wyGPwnPnjH81MmtzXAMsKiszGiBoImktPK5/wbmhRT3L+56fn5nLIXSu\nZoVftebV+GwLYvAJRXNgXCrUYT61cxJ+Hq71cezu0iNseIG7TXY3gPG5ss6G\nwRZ6J8X4/dFsTX/sS8lSfmur3jSjynusTq38QWHyH8q0LMYyw+VRcYtFZep9\nTnCfr+mqtgDt2asFHYnD/TCDil7Dmawy+hAFSyEXe3ErMf6hGmy5/QF/Vdg8\nYRub79z+F2yJDTjc6XsdIAykno9G13PfjM4iqUeAnZ1HV03yjpMNLvDZCv6z\nkLcO9AedTnt7h8A/bHEeEgoTNbZ70gvawSAJcFhxlmcZKlm1AdE0cZUfwW1o\nkpNSGlFJdgdHuriJInAvPqM30WfzZI2t1a3wrJ0VmVtYAhxWZ3eW6CB9tMfX\n8NkC\r\n=HZll\r\n-----END PGP SIGNATURE-----\r\n", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIQDV8xFcIs4rdgcMH+r8kviehPbwKVzqj0/45gNB4chRowIgIOqRV0kgV/bXqmpLdWGrbsXz8zCC4NHOu0xCGwDMHmw=" + } + ] + }, + "maintainers": [ + { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + { + "name": "typescript", + "email": "typescript@microsoft.com" + } + ], + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/types-registry_0.1.448_1565944836953_0.9881907726246486" + }, + "_hasShrinkwrap": false, + "contributors": [] + }, + "0.1.449": { + "name": "types-registry", + "version": "0.1.449", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/Microsoft/types-publisher.git" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "MIT", + "typesPublisherContentHash": "154eb366db4cd1466d6427544148c91f7ee719d9c7d2a54484997efe5d104d3b", + "_id": "types-registry@0.1.449", + "dist": { + "integrity": "sha512-Ya7RxEyzMe3i/F6KMotLTaQu2we/SCM5b9lOiU98BIr0jll+uZjC6cjvyvwpNjKHZGQyXH/CMndta4s3xB5alQ==", + "shasum": "4d4ef9b19673bbf2b09fdbfdef1ae3f21ab7a853", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.449.tgz", + "fileCount": 3, + "unpackedSize": 383491, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdX606CRA9TVsSAnZWagAAjncP/jt/Mivu+XP8/fKC1/UC\nFe5Vco8bhHUeeS54ky4YX4BB9plrjpjXiP2vpcBx8xaSCR4HyB19GCVrgIOX\nxX3gNSAjRmARl8hDEBJLqjju2zyo9MwguLVGwAYIywBdWcEUC1WCjK4rQ6bg\nbjFJS0ZP8EydRHOwZh7zB95luM3Lgo1WluGEyERWOd4bqxVY8VDtVdifGIJS\nKlMgRM/RQJRhuVXkmIzNFFnrtFgE6RAUuoQAtpbj3a5BeYLn+y1BJ77JPgN/\nLgzWdCC1SL/hbE/HFiARNgV+d7TO0dd+uyiXHRqLOszlUYjT60oNg6FqTSGO\ngSkDg7ZfrRpAcxD+Kwk4NXeQBtIDX9qbux4lCmkysC5EH8v/p5wk8JkqJJl5\nhzDqgArbdwn3UKjgYBmk76PMc6TSvKsDPKLUB0YCwJYk6eQTAKoTCmHVrVd1\naF+qoNe3ROxmMj7zk8oeaY74RLKbxgr7G85DqL5Bv/90AqhiUsoG9/gTgRNi\nx+azv2lRuXotqMTxs3ao6+iGkoBeoYHCZVA2DsORKhaFScVyJy4nQpVLSWcu\nfyWQeCayCZTCSxcyGeNpY2ifyyH3mdpBzxPggUcpWbBOrv+mxsuqGQJ2wGJP\nFyuLjINZYxW96vemjDtAg0OEjRWTKDBOPM2qv+W4VfGZN/cWXztK3Jcz7HY7\n+GEh\r\n=Tb0x\r\n-----END PGP SIGNATURE-----\r\n", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEYCIQC1XYaMzkcytezoxAlmdUp5oOqX3IR1T+U3FHDNtrlJ7AIhAPn3DsBiQsSlwLecJEnyfwNXT8Rt2kZuRBBzPl1FDDXs" + } + ] + }, + "maintainers": [ + { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + { + "name": "typescript", + "email": "typescript@microsoft.com" + } + ], + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/types-registry_0.1.449_1566551353309_0.16007477595752628" + }, + "_hasShrinkwrap": false, + "contributors": [] + }, + "0.1.450": { + "name": "types-registry", + "version": "0.1.450", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/Microsoft/types-publisher.git" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "MIT", + "typesPublisherContentHash": "3a6243bd303e373317c66eed2cb544b175f09c9e73e0e54f90b6dc09652dbc97", + "_id": "types-registry@0.1.450", + "dist": { + "integrity": "sha512-a2lz+QCwK1sXCyPE4ICTp70DWv4S/TBW7+bsJz+IOIvbe5fBnA4wbEAECOWR02V+V++F36SHLzsm+8Ur9hA2QA==", + "shasum": "ac50b208e3e76f21ecf919644c96d7db3586e443", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.450.tgz", + "fileCount": 3, + "unpackedSize": 384318, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdaOheCRA9TVsSAnZWagAATc0QAIZ3fJ0yOrsMEryCPuXG\n3vgmhdj5rv44JdiEVhfVtS3DmvxN1zhmhRaKFbDfKh+XgOtA7Dm6J2oC/I+Q\nbK/qrZxe0KQy5vLzdxylOpLaPYqgNSOL2AEHXecctZJNA5GrSD8TRN8Iu6R9\nqbjK2WI7DGDBfeswvbRjLJLse7jSHZJCeeZoNT42aGCygSCU0emnRTg2PT3t\n9X48cHnKtfXjxk7I6EskMUyLZKBgkX+WEk4EyVIPvGsraw8PqNQ/U/oQ2Ctz\neMBiYk4+Rb72NPDjOWG8lMqQ5LGVTtlz+knw9Jh0luaxUIRC7CjNCJcaygiR\nQpcz0GBk0KCdIlFdbeFmgJCtH7hfZK4g2Nb+oUidxE4KvI8Kc0uFpmBYNLE/\n5V4Y16dlnxLn1a2WYmbjcE6MEvnKM+asz2DHNWzYl3rpjQwOjMb1Hx0Jqe37\na0nawlbabmVlGI9+itAwudkaZKLV9L9+g1j3f3zOvlh2P7aZvucTBFbOjj3S\nXmqKkniccgLMEzLDt9Ma2Uv/D3mHT6gwq/NUZOjpv/ADHfWrAdUX2zJ9O/pd\nIrktPE/PeQNJoT5fDUUVKG1n6XB/QRN5dvPWBAf7no0IJ7NpERY4KhARcddL\nvobzZgCGQ5kL1QluxPE4faFVogMrFnqTtzkfTo3sVW4QRudA+ojItaBeBCAd\ned/K\r\n=69XX\r\n-----END PGP SIGNATURE-----\r\n", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEQCIBNJUboeJC5/g78PytLkYQsNHX00p5ZWVctfW+QyHasXAiAo/Zd+S0FpLoL3Xm/yKuQfyuAQzQvsbXtEe+LiGD24sw==" + } + ] + }, + "maintainers": [ + { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + { + "name": "typescript", + "email": "typescript@microsoft.com" + } + ], + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/types-registry_0.1.450_1567156317561_0.9086531393993209" + }, + "_hasShrinkwrap": false, + "contributors": [] + }, + "0.1.451": { + "name": "types-registry", + "version": "0.1.451", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/Microsoft/types-publisher.git" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "MIT", + "typesPublisherContentHash": "6c2a87cbaed08aec3d658edc8a62afebf68d2fbe61eea60a21d473e26c429a6b", + "_id": "types-registry@0.1.451", + "dist": { + "integrity": "sha512-fzOdlEVKK+TMjCJBRGiIhswUKJGIdJ2x7ambP/kBXPoGtgmwgIjVCrzFXXeZjbLjoAHhZccFsmv7hIvjUEv8eg==", + "shasum": "0d67dc116b2a2ae53d016c0dafefa7e53209573e", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.451.tgz", + "fileCount": 3, + "unpackedSize": 384929, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdciaACRA9TVsSAnZWagAAQ1YQAJp83SfhH+ufRZhNYWcy\nOwU9db7wvbU1jkh+Q9jiIGZWb3czM0NQwqRtdTokegcsRA+CyVYsNHPRw1Ek\nOPbpBQ3mZyNLzH3Q8kCnroen6E2NHCNqZVF1AFsEJB6ssmhiUmOF/k771cmB\nJ88FEjLeFlLoQoeCZ7g1efhnTPAZgQCySMGcNhxq8BXUm4g+7tkur6/2minQ\nCVvTOfFQujaqvt9yDmfJ1X3/kPaIugpFu7Bw2ckvJFihqYmBCxb2GSECHMBn\nRCNWcbt1+xBVbN0PNr6XTLBLRgNCG3tmYDfbLoLkvLODmD92CmWHbXFpzYtv\nuXkhlxgvI1C55mG9OeTeyJjnL5d6y62OOM/TBG954p2H18CIxQiaeG4OXjSl\n03g+2JjhuyULXl0CN0QDSET+sY2ZjCwMIkhfERxncNhWA3ahB/7SthDSzrFm\nupBZbOihszUkYC122/HOioTAU07m8KhknN9iGxfqhdVFyWLErZFSWXkw5ZQv\n9vpQNNnAh4WdEey9a2oVDSA6QU89PdkF3IWNDQqejWqy0SYvjUFNriBgdCZd\ne8C5N9ebUr8+hp0jOtY9lvJOnRjaqr3bN4s5zb72ZrlmdwyepBz2c/gOsc/e\neYnMrucGUlgr3RXJzN/YYTM7MpOdepkiRd7bO/16QIhVEvHYKXNv+r52/zzy\n/eT/\r\n=hLbX\r\n-----END PGP SIGNATURE-----\r\n", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEYCIQCZuWWJfBvb9EuswVu+escm15RSkpV+u1i+Yb2C8RfoZAIhAOn6wXLcmi2gRW72NSarzZc+lbPS/kAUY7QsaLw84xin" + } + ] + }, + "maintainers": [ + { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + { + "name": "typescript", + "email": "typescript@microsoft.com" + } + ], + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/types-registry_0.1.451_1567762048076_0.4958288304027305" + }, + "_hasShrinkwrap": false, + "contributors": [] + }, + "0.1.452": { + "name": "types-registry", + "version": "0.1.452", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/Microsoft/types-publisher.git" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "MIT", + "typesPublisherContentHash": "e25fa3cd521b8ee8526c1412e9527bdb07d4b33ca76409a4adcc4f1a4f4c741a", + "_id": "types-registry@0.1.452", + "dist": { + "integrity": "sha512-5BjPIvrJ9EmZaln6D5gwgIc43Js/cmBFruQLr4bYEQ5lEWGZfNGsv2ZcQ5EB2D+9+DQKWixNpFGCRl+EJBtfSA==", + "shasum": "17490f26ba70886b8227b25668b1e38de852a8eb", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.452.tgz", + "fileCount": 3, + "unpackedSize": 385810, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJde2UmCRA9TVsSAnZWagAAIjoP/33puwoS8J9Qz32Zlw2X\n7KaqzoBlCAuJJMWm45o4nfSYIY8otIkPWhSUBsE6lbZCQm9O2BJNNU8AtETl\nHnEV+aqS1+WNa+LS1z+tWWupMwu6leocZyFX+Wu6qqcIpccN0yzuD7cLLSln\ncB2TQQ5oC8BkO1ESBRSsLZ1CzqPZ3qSf0ySqIF1Qu4jU9mAQP92ysE6sZvSj\n61bRWeyXEIfxqE9dBW5dj7ujPvSiSi8uVPvMh3lFJudQtE5juXyOQ2lZ5UbI\nf8hIiv9CXEXmY90ddNtqm0KW1vOeRvImFS5OxzgT50CKai3iDsmVloPHD1cY\nBEvl/nDn0XSpl810mU6fFRd+uf8L7NRm78m8fpDqHka+N3ifOVQSqTVUiFvj\n2WhtuEbZ3TjOcU7iCs62M4ASJB9t+uXOCCELAtvUiIW3S2b2y9KEM1tzhSnX\nTDcUKiUGciTU5TvHgs2/U6NoVmVYMPK0uAWKLw+eEwlEZk6FROZ4o7NxZBNp\nfZM/32xceBBvMYY5XUrEztIm9Z3u5L8EE2SgIpRyLzLuHLXm9yv52tPCtR79\nvug0ekrRg9/Wp4M4p+Wn14mvWoX145W4G/jmWO4kNMalaAtMjJsj4e8K4Jbn\nJBKh7z6ScrVaZ0CrP/O3ExIdF3mqB8bESXRm9CKWYp1lSDcAJmBtXnDKGv6O\n6Kyt\r\n=KGZ+\r\n-----END PGP SIGNATURE-----\r\n", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEYCIQCOgoZBc+makxRWK31134Vsv5wHU6XWmHWRkNiHzyzQWAIhAKleAbBA96RoOBmxwW5A6GBIPsfnGOSlFHi3so2NKnG+" + } + ] + }, + "maintainers": [ + { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + { + "name": "typescript", + "email": "typescript@microsoft.com" + } + ], + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/types-registry_0.1.452_1568367909294_0.49061421385700754" + }, + "_hasShrinkwrap": false, + "contributors": [] + }, + "0.1.453": { + "name": "types-registry", + "version": "0.1.453", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/Microsoft/types-publisher.git" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "MIT", + "typesPublisherContentHash": "ff0dbaa5665195b2684f1c9e75517d3fd44bc6ed9a2c077709846a556c26316d", + "_id": "types-registry@0.1.453", + "dist": { + "integrity": "sha512-2p/6nW+NhSRJFX0T3aXG1RaaQC/srIZifTm7lOuqUQeGMc4VsPbmz/WBwNECfJhEhbR9662Fl2ZjPWjo0+3PZw==", + "shasum": "6033b66cccf11d5365891ec2f38f3ad9148a75d4", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.453.tgz", + "fileCount": 3, + "unpackedSize": 386189, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdhKVPCRA9TVsSAnZWagAAAw4P/0dLmbby2fHt7zgCdta1\nZp1xMuu98XT/i6mNeGuA6JVk+N1TWBpIIoNPgS3tknVL6G+31HIjox60bgW5\nn5TW0uEqkIDfI5xEZnO9lCmFcpCv/EDRhlDj9JSJXkz/NqiqhjucgsJHZpg+\nbUQl3OMZTsTGl1HfPNFRF7KUVsYauG9mXgqTi2tqsci1qOdrs0laoVykj8hT\nAC62aDlvJWuqsJxY7m9bxAit9l+QtnpLRBIynDpJx/4yBooTxhQq0vJiSavk\nk7a21iij6EqNvntm0nPJErZAkOQKctH2Zd2/vkvT2RvJyiGaIrXHKNcTfW7T\njntAgm73buMJWhrg/fa7HAEME/5+4MknEB9X3XTXhFURmmMDJwJYO4ekqLkh\n6Xw0NLLluXc8Ybn3mACQ3jcGYcsTgHtE0KHCXQVcQUuCPxBpRVd6w1MM32W1\nGCAcN+m3LA0rdJuaexKC07E6Y0QewhQJxOC+ZBuUZZFAPA2a6wY2p8IeBaKo\nuilETVHdmMexypHMscy/CJ97vkWoTqykvCucZC8ylTfDux0ik+sHMWawaTIb\nfHI1S+FWwyup9O9mOc+KAZkQbVG7uSCbCa3WuDr2A8iphQ3SP4889AlcC1VQ\n9l3J4qXf2jcnSY/zcKS55tMHzDmnSUw+2FBXQFGrufTczrXhYQuG1x1gT+9v\nSCGg\r\n=lz+H\r\n-----END PGP SIGNATURE-----\r\n", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEQCIBawjSqwP8h+rOs0V1R0Qxi01goNC2+kNn921SejKhy9AiA0XSgk98KDwaiwBibd1QBg4SGhflH28nBnH9m+FKTXNw==" + } + ] + }, + "maintainers": [ + { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + { + "name": "typescript", + "email": "typescript@microsoft.com" + } + ], + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/types-registry_0.1.453_1568974159111_0.49736119916891264" + }, + "_hasShrinkwrap": false, + "contributors": [] + }, + "0.1.454": { + "name": "types-registry", + "version": "0.1.454", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/Microsoft/types-publisher.git" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "MIT", + "typesPublisherContentHash": "9d8c5c0e78fe98f07e0c469c8c920238bfeda45cfd58c8edf884b50fc653af1f", + "_id": "types-registry@0.1.454", + "dist": { + "integrity": "sha512-aVaVFYV/DJ/73F8r4RPuYXKVq09idQ2rGsMleJ+KiQRqaWCb+p+HlM21J+FKeKEiebRTmUKJyrUrF+zWrB3LRw==", + "shasum": "b2d52acbf0acca0deb917458cb94d5bd8540dc4d", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.454.tgz", + "fileCount": 3, + "unpackedSize": 388005, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdjeUeCRA9TVsSAnZWagAAgyUQAIxLTYOIW6Fko7GY7kjt\nXVEEDPl155dNy4O1yRgrX1yqQxknc7aWV+VDPKE9NUkzXsN/07hEBKxL/Q2m\nY1dFhQ5AnbWliCHswlfdC3rnPJ+RBxJuoNO1ed34U+9ty6gHYRoVSKcYnLuE\nee37th1gPv99qFCccBJrxLctPVl4Ktg34XBtCpY2OAqOhSiY93/Xw92vkQhH\nUW/MSM7G+Csw2THYb9axgKSmHhJqxmVW8LjQTqay6CzowNLGP+ZUQQPPM2nR\nu6t9LGY6QGUi7tsPCUpEUL43ePFcFYhkJYQqdYN7464YuL7Meh40RNdkFQSi\nX5S7W5tOuMpOq2G14+2ybfIRg30xCsI62uNHsLUHuegsuDV2InuA8iSCcR9f\nu6+/5bMuyv5ihdGK2gAbTS253BDwW+XcyhkKuXv4C8PjlMtEhLaePAODQRBq\nD+upRGXCDdAHes6TBJbwdlHPilHZEnq9xBcnAxJND2PGZZxwzsKDueru7nBE\nPCeuWbvyiRV5IlNZd8xvWVFSsjP8xhYYur0OuRAxXzXsuUH5oacE3JTj9Q8w\nlUcNbJM72VDUeJS5ewS3/IQ6BsX9WYEEg3r/jcKgVGTUIpGfUbIKI/Ydmln1\n3TD74NKEKbhIGGibliooROYDyFc2AdjNvK+f7yi1x7kesVHwc6LZrPIZV1qX\n3sel\r\n=AlZf\r\n-----END PGP SIGNATURE-----\r\n", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEYCIQCRbpl/IXQwG61Llg7Xkn2p4cw+qu+FvK7I9tA+n2q0ngIhAOFJqH2hliS27kMzbmQg1ynPUklSZ0MKYFPpTRdm431i" + } + ] + }, + "maintainers": [ + { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + { + "name": "typescript", + "email": "typescript@microsoft.com" + } + ], + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/types-registry_0.1.454_1569580317804_0.8268452267415818" + }, + "_hasShrinkwrap": false, + "contributors": [] + }, + "0.1.455": { + "name": "types-registry", + "version": "0.1.455", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/Microsoft/types-publisher.git" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "MIT", + "typesPublisherContentHash": "a14ec8e7372cc9cf2ba8f408a5e91885ed6d9725b8c19b784d7621d2f96484ef", + "_id": "types-registry@0.1.455", + "dist": { + "integrity": "sha512-r0ApNQeZBVAjV9eaRUawMz+oUwpRB591PeWn6rxiQ5jni0gOYfrPvR54ZTrz/YEqDTco8g7Li+bNYFthAW23wg==", + "shasum": "b4ed6408263caf0e54d0da5372ddaecb7874ea09", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.455.tgz", + "fileCount": 3, + "unpackedSize": 386031, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdlNIUCRA9TVsSAnZWagAAg3oP/1pCG7M1UJW4r/ZyU/5z\n7SizpSF71BfuEglUC+XyYZUKeIyVHbiK4NtzRkSMCdVs1h6kxRGWoDdgplc8\nUANrpXk8u+bLopJS+bLQsFH8wy++Y9jdspg//OwiKqhdN56UILKRsvQ/Nvme\n0svG48t7F814zNiskn0E01Q6akkk4RBSJlWeVi5Yz9BfGnpXa09HRXgDpTsF\nXjMQuviMbxcftEVPVkBxMJ0bwXnggcnIeaAt3MTFYpT7Sxs7iy6qNwndaW6H\n5kYh2NH4VRVc62mybW1HhrlXIHDaVgBb1DyTuQ6U64RGIKuhVSaqaTSmxYBD\n3v2i1f0Dl8pyJ+sdhA3UJ7ztaEUX8t2OqK1Q6uJVFU0E2DnWX5CVcIaAvjA9\nosRO3fOQIwSbw0vSNlKUpwAsGLyH8xxF8BGP0uHidqaMEJVgZVWkc634SRY7\nkLHNd4D5k78C4iBR0kV+bYqjuR0XjN6HEmyEg6MtHARElHjdG43jUzrRU2og\nyffCdcAx8gM3KLzJcSpP0ZLC/JkaC3EBpVgoLEFzuOaXGrA7Ag8teuiRpOcN\neXC2QYCXoQYaDbYbFCTWvS/9OV17DL3OAAymlYKu6IiY1sZ9BfQsT5vKiPA8\n4pyh1l8HiQsA9W6EXTjFThkRnN4mldcWfe5zV2rZ7+eloVQ/WkL2clbFSL27\ncpps\r\n=V/FC\r\n-----END PGP SIGNATURE-----\r\n", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIQCHlw0UFamKTTLO44ztQKdkUO2Pb+o+Dd8nlHnXBO7j8wIgeB827hlaG773p4PErPAMPFWHsFltXc9BTC+S1WCnPKM=" + } + ] + }, + "maintainers": [ + { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + { + "name": "typescript", + "email": "typescript@microsoft.com" + } + ], + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/types-registry_0.1.455_1570034195101_0.7225280818165492" + }, + "_hasShrinkwrap": false, + "contributors": [] + }, + "0.1.456": { + "name": "types-registry", + "version": "0.1.456", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/Microsoft/types-publisher.git" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "MIT", + "typesPublisherContentHash": "b72e0cba267c900c958ce25ee41adab5314260e301e44c413205b48fd091e040", + "_id": "types-registry@0.1.456", + "dist": { + "integrity": "sha512-bd4s8a5VkULMqSE5NmkZNAoI5FSoYZeZS5zXWy3fPfBmNQNBVFp8fjqf9YvILqk2HSAFUyAxvCQeJJpxhBI8Lw==", + "shasum": "dc9e93cba79be9cd00f8b7cf3fef177e4f161c3e", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.456.tgz", + "fileCount": 3, + "unpackedSize": 386322, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdlNv3CRA9TVsSAnZWagAAxHIP/0NMTVz6zxFhUlVcmmp8\n62yGbpukFv5Ba2cCM6dTYFQF8pYgw0xqPVzzwyTinA6MCnv4EC8VTiotMKxk\nxSvK9L57V1ua1bFrrktRsyq7wILMxOdkdapi/mjnjSkc09OOmM6tFLJTUcEW\njt+JW3UZB/5S5lnF2YoIPjmUR5/XDUfo2LOOgwXxG65RwrhiDOzDIk86aZ76\nFFVZyICy8Oqe8nJgB70Iutiz8V/MvspYdrZ/1O0uhkqaLrtWncBj//S/MJWG\no1+4L4nC19m4zR7codCIW2r2J/qtLYhfvyp/2q/p20cqXtMihmyCwgfLShnr\nboI6zAeVthuRyTzOuWegjxpFJxhHJ8Gi1mXCovo1QMpZIxOQvkNa6x8l6Ebv\nnY9pbRRfErkw8AXE6IzvefkNtezkC/09KTFfrR2OsN8oWnWjVyuYtIvLj4eY\nlHxo8I4spEBlQV9QgsyX8Ipp3mtrxTlJt/x5pQ0e9ZWtY2wx/XiS1ccYtePx\njrKQHrqYevIDCsbKKVJi7TrAK5Z88+ivI5rx01gt/GiyCkC7DZhjDiyFCirC\nr7GUmhzIzWUuacp8VEDMfZ3LuEZL4I3rzH/9BMZ+fP5Q+QqIpxBG9CrJA/6Z\nqmYSXinSXkt635CQSOOP3g7gKpSrPDVXRTQdqY9E5MFNRs0tRQOTbFM3NyTD\nfNCt\r\n=2PTK\r\n-----END PGP SIGNATURE-----\r\n", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEYCIQCGWU7yOO8VsYwZ/bcyxbYACqRp3GaeNRBDw5H1ki0L7AIhAP+5JWDG5hXiMKa3i02nVOH5Ey4juXdlDUt1m8V8esAv" + } + ] + }, + "maintainers": [ + { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + { + "name": "typescript", + "email": "typescript@microsoft.com" + } + ], + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/types-registry_0.1.456_1570036726767_0.6132644002752521" + }, + "_hasShrinkwrap": false, + "contributors": [] + }, + "0.1.457": { + "name": "types-registry", + "version": "0.1.457", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/Microsoft/types-publisher.git" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "MIT", + "typesPublisherContentHash": "a62d53e04dcf8e16e1b44f2c5e705c61289df9605e13e962049caef2f3ef945e", + "_id": "types-registry@0.1.457", + "dist": { + "integrity": "sha512-RCGhKm6JpcMo//7GalM42kV/WEsvxcbumxvvbRL1qwyhosREMoBV0Op80/w5dLjU5srLX+H755LNysCE6YrheA==", + "shasum": "6b8093deb48cee7e3ee6c4bd73bf5b52de87e16f", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.457.tgz", + "fileCount": 3, + "unpackedSize": 387010, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdlRFQCRA9TVsSAnZWagAAszkQAKRQW597OIovIm9VFqTA\ndT/ziqmclGSUFFdDSzFo/ULLWbgV9+/4kXB3ydIemDXUb+SuxvbPUPBn4mRA\n+5S8gMXjh8YcGQKbHp1CXLGChS+F4UlZyO3KncL5OUM+P88ETApX+2g+aDuK\nKVQmr4lYBIRFTu3ggYjJaDzpVaA914w+uRLE6YgYr1ox9E4wous8eDYrOXGN\nRHxjnDox2fHVJkIFjrClo3Pj3JTIqVKbN2Q6J5x66Abi+5WBPQz/HIzA8qKM\nxTaH4vVCpzIO855uDXrYzed940F4Py32/Gi7bU5+a7m/UMi7PghPUxLvvVjn\n7nMU+9XCnfvK8iZB34eqYNv6/bh1wyTsus7tf1y9JfMjQFQWnTdi7TL+jBAD\nGjyCzTL3i5XOuC6lVP2r68grYmmyfrQxdUnlwCFgn9M6PV3ddpYCIoxYvem7\nnmUnP3XgRvJJGpg99e178AF4L5rp4q/Hcbt2WIDL++nDmfxjKbCbp8FRqFNH\n2dmAQjG63Xd/LvpVue1jVACb9GT5oyEfm52y0BjkDC/wXLefRF5evOsO3eNd\njPV/dZJQe2WUkofqm/z5NkO74KdkbkeZ4jNaVHo12C4UYLVoRCXhlL3eu6DB\nrK+B6m4VIDtINX0Ux3PwR8EP3KCvOqSjXWMWCzdSzdB5rFZydg6L7CKf+RUm\ntzNF\r\n=fvDv\r\n-----END PGP SIGNATURE-----\r\n", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIQC/tChMO5lnTkECR7XxZi9Ad+snZ+6FIdXIONAkm0P2SwIgLktxrDUiktNAkCsl2kww5ZY6fot1tjndMcxV2bqHf/c=" + } + ] + }, + "maintainers": [ + { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + { + "name": "typescript", + "email": "typescript@microsoft.com" + } + ], + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/types-registry_0.1.457_1570050383898_0.8051154631739075" + }, + "_hasShrinkwrap": false, + "contributors": [] + }, + "0.1.458": { + "name": "types-registry", + "version": "0.1.458", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/Microsoft/types-publisher.git" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "MIT", + "typesPublisherContentHash": "28ef0c7d5349b4a2f2313c3ae2a40b33e94ec2cfab1a171d52f308cede998d3a", + "_id": "types-registry@0.1.458", + "dist": { + "integrity": "sha512-nw1S9sGNQRpIEyDpzFntvQgiV1tR7q6467KlVYRsMkdjS95QRb68aZZSvmuoGFKRZVJsGFDn8dINRVg9cDzIOw==", + "shasum": "3d7a66c6310938250203b04a2792bb3ae783ffe6", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.458.tgz", + "fileCount": 3, + "unpackedSize": 390424, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdlSXiCRA9TVsSAnZWagAAgGEP/RVq9hHaCGYq3+1DDNE0\nCmvQDjC4+0AlEQDAk0iS0E1NGxamimEH+aJY/IYLTNqx249F/zZ4Mn+XLdmM\nE3Tmr/SveMyR7V4gLMFvkgibJ1xgfvHXhQyAxDJO9taPDeCx3+JaMqi+vavG\ndJQH10gUbUYLBHD/vtL/JR7FStbYvjx3CHKvKBYm1Iu6CYtGbFKDQXKInDhN\n9uQI8LNmNmc5XlTL4dDd2HHEH6Qzrd+GE+KQEO1g1tVgX5/0DXiNXsRCggBi\nn9f8Rb/ybzliFIqe5bHB5ywXe6y9+uNuu3q/BkmAiFgn+zyZSL5kpGfk00oI\noYBAGBAWRv3eOIgFnkhhZgiTLRtaVEpFEDjtMyBhtn0hzgqKPVSYdrKsGR9z\nk49X9AwWegHE7G9QpvK7uWOouhIKaflpjCGLd8/nQv/3LuR7daJHJHJMmOXf\n7po2VFYjVnWmE71xsZiETC419C092d5WqKprnGlp+IeRDUvgvwjSgsTrLsWf\n0oQhgkkHPXisRFvna8Ntg38wmysTJxPRwx7JZU4Kc3YbOt8HoxBsmQVsROOY\nV5YYoFP1xwbWblW80cvnBZj2weAUv/3vsr02rmyw+d+YntI6NAIsoj/gImhq\ntgIPSX3mmCAvTHzxpfHVPGEc01PNmlMqFZIV59H25JwEliGnlltaEEWQsycB\ni/l2\r\n=zEJ4\r\n-----END PGP SIGNATURE-----\r\n", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEQCIEEk0NuKFKEhN2mq9drTwY/++j2S/4FOB0qOJj1iTx1mAiBxI6bM4unrdY5fTVQDr3K43TRxLzF6tec7mNLX3yTOFw==" + } + ] + }, + "maintainers": [ + { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + { + "name": "typescript", + "email": "typescript@microsoft.com" + } + ], + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/types-registry_0.1.458_1570055650064_0.01388341086717615" + }, + "_hasShrinkwrap": false, + "contributors": [] + }, + "0.1.459": { + "name": "types-registry", + "version": "0.1.459", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/Microsoft/types-publisher.git" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "MIT", + "typesPublisherContentHash": "f7431d5ae49cc173e4319dce7c448c76381ad8d4f95d44f45442f4da6f77f9c6", + "_id": "types-registry@0.1.459", + "dist": { + "integrity": "sha512-ujQZJVk6QqG99LdBucnR/3fzBAMrlnzKBN685DosnMW7YO0uqj7qYrEzJ+zqxiIUHuozd1Kx5MA38zuZtHrG/Q==", + "shasum": "8c8bc52bd46dc59238f1ce1d32fe4acdb25925c9", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.459.tgz", + "fileCount": 3, + "unpackedSize": 390424, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdlS6DCRA9TVsSAnZWagAAVw4P/iasAEbZac9sFFp23nUe\nGd+fpKjQEhDIhNmZmoxZESWfZedmsMUV1WmUDUV6okhw01z0oE2KDtVt+N/r\n9VPhDSmKPT+Eva1xTqzUX/3eVqsfDkEWdYJ7tlYYmyu8O5L+i7+/pd5LXEHv\n38QKQT7JQFikeNcsyICu6oa/7BwcgANsQg+7x7aqriEOdcZ924qwhfXoRDqs\n4Zr8HJY6TCGZkGsyls96+XMRIm71gmKlxmjEZHGEvGt7GuuKoZPJ7RGAgeE+\n9BVIB34+qbD9RwddgnAhLdMSfdjXEWrnSGwl+MCvQ34fpAAch/79Zn4E5LXA\nczch8e1C4INWkQYLpVjddwNNW6ygCFHFkgVaAxulSL4mfUEFETC8m6cKcwWd\n+G73uVL2AjZz1kuGvF8abL7NgWnst6I81f76eHsdO8VqHpb/5sreUxTNKdGZ\nunMvwIb2NETkiD4oyx1qmv1GvpL8nTRQLZBvxJgWh3PieAvROkyCKj/y0P99\nORzXjbmUmmIlriurfvbZ4zy5e9UWB97K49xUeIEhSt0XOMI1agjroLNepoic\n0JkBNTtO7D37snE18gZxAOvG9rVj9vhMBnr4l91b2FGf9FTLVrpiG6lwoPDE\naOI/kEEkKrX9oR5HFaQpMFMhJabD237QdB7n2uEBrOJZOc1k0X9hmgVxfe9w\nDZjF\r\n=5BIr\r\n-----END PGP SIGNATURE-----\r\n", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEQCICehDFYGtKwtCY7T+5tejdrntuj6yqbHqsBYB6lLBJ4EAiBFMsCQPkxU360SlIR8oxE1th0ZZN4b3yxhGICT999gaA==" + } + ] + }, + "maintainers": [ + { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + { + "name": "typescript", + "email": "typescript@microsoft.com" + } + ], + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/types-registry_0.1.459_1570057858556_0.1446121033514729" + }, + "_hasShrinkwrap": false, + "contributors": [] + }, + "0.1.460": { + "name": "types-registry", + "version": "0.1.460", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/Microsoft/types-publisher.git" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "MIT", + "typesPublisherContentHash": "ea5c18411c18e73eb98ceb852c2d9334fd15376a0ec516dae258b532c0d01492", + "_id": "types-registry@0.1.460", + "dist": { + "integrity": "sha512-8/Lk9fSFbM/m8H1kdv1C7lrBeHma0u71ip2tSo0d/al3SV7hKeJKqtUAVyD/CKehrornFGanqepJbsVvtI3P6A==", + "shasum": "a5eb20ab06f1993ab8e99dac7cb96c71195f02a6", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.460.tgz", + "fileCount": 3, + "unpackedSize": 390977, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdnmvwCRA9TVsSAnZWagAA2nkP/0vCOJ5LPla6L5Fhf0s0\nqfuC3cRyUEYmjNAioid4rZWASfAKJ42ZxVao9QoMl8BSWIPS1QJjElVSiWRg\n0OjtOUBQ/DtRJwBuBiCp8kfz0bEDttiso7/hitub6klTMLeLPGRIUj6mfdlp\nCWyteTw1tvIDZgStoz/ArURBOGatHsfigozV4zJb1z5M/6lMKnHJkUPpi/+a\nQ5jRhmkz11hIe9DZUqLwmrzvSpDDk0PGeGNx+plocAwRUXA6VyD5BtHolC1B\nXXlvjXL+Ybi7JByL1lYwFhsq2x0OZ9Tlk7S5i1ww+xL97VR09f/yc4AQRDzH\nW3IktIp6SuHIoXLdpaoBiTPY5DRtyDAD/OGVKFPschOUjfIRm9y6OrgPMOD6\nSoE+po+bMw8HUvB4+cZSHaHjOv6T90wh1Vv5NCu4LMoI4ogoJhWerf/tgDvY\n3vUKcGiiQP2RbZjhSOX7/kZksdDlMQYuYl7fMjYEf/94J0PAsAWszP2y2vI6\nNaZl7YB7JvCwKND+F3abkKe1dQjbLBfz3yiiUGIYpSItcZmXNTt0hBoBk+9d\nzKOA/QNy4nXvUWBhxsNafTPL8Ae6jb/jeOh32QqYNYJ1MDwL5YuunIsEa+1g\nlISXMAiZtMeGFMOzXxdCPoyolkwAssC/wQcrTjuw9RNxWajVw/YPH/aIRiWF\n7j65\r\n=GBEL\r\n-----END PGP SIGNATURE-----\r\n", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIGEi/3JjhdpObS5O1kYUb/M/X9itNBNVOXbuhT3Czsw0AiEAshD2ZZCQHRGdUTmr78f0ZL33C1Rig4xPPJYp40i2B80=" + } + ] + }, + "maintainers": [ + { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + { + "name": "typescript", + "email": "typescript@microsoft.com" + } + ], + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/types-registry_0.1.460_1570663407345_0.5061986354278745" + }, + "_hasShrinkwrap": false, + "contributors": [] + }, + "0.1.461": { + "name": "types-registry", + "version": "0.1.461", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/Microsoft/types-publisher.git" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "MIT", + "typesPublisherContentHash": "c5d1218d08328df2e46b6213d1e25de897bab8454155c51835b264618905408a", + "_id": "types-registry@0.1.461", + "dist": { + "integrity": "sha512-06MCHoFH8rNY79EtAZt0UqDDqpQ303eXgy5D5s6bX/eRHaCLaR4DwHMrd9oadacYKIgWxsYvfePnI4ATgpNECw==", + "shasum": "6f64a9b40e1ee5c2cc482ac3e9530577e22b8676", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.461.tgz", + "fileCount": 3, + "unpackedSize": 392719, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdp6eYCRA9TVsSAnZWagAAJWEP+gMMOnipow30T3dX65Ux\n66KsDu4ErDEv0V4QKN3KqqPTS3ti7kawzuemEfIR3wANDiAf6E/fAdbnuZrZ\nY/V3HN4hxyAnS1nzExpWYSR4J7virQkHPt98gHxkmq1btluK/xkIb53GsGni\n8P0V9GQwZX7sVC0w/bk3ElOsg3ksHS5IlQ/aNpkFiuDieSBbjwnUqd/diqwc\n6pzoWX26tPbGOM/ezThi3b5LHb7bZKHSr5swH/LJHqDFx3myPhteUL6XmQZn\nsZYvKPrhf3GyOMvyOn+fctIzTXY2zfpHFaUR4ynueurL8BPa4PsAyEUvcFFS\nHy+wO4UUcJMNmb183AkxBxQzf7jP2/h7tkeKWFsWSkwk4MMB3v+iBXuJRDin\n/DEd/hwAlCNSZ2aPLQhP2mVZGuzoRphT3/y5PJpdPqmEvvUivohsNbex0LgX\nrkCZ1YIEhWi8Yp4b1bZFGuQrkwxSkjvhBPfu/zEeVIA4GbTAMdYAaHJXfeCr\nLM08hNLXncf8YLc+EhPI2QVVvNSk/OvFMj8+FqYyZQpz6RcY4SggPRTrQr9f\nInEQh4hfwJOTg6iNsOglCLiQlI1wiIGg5VECP1Za6IMw5VBudIjbWeBz1dh1\nknHLEemCnCgGstljutSS/CHjJ/brAUEsWQ8VxrRCs/E7zeRCB9FNBcYZGcfA\nIVBo\r\n=m8gC\r\n-----END PGP SIGNATURE-----\r\n", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEQCIEMPXvcNQsUSLbfo8VWZzNpFNX6JrdZD31kHUcPaKQ6lAiACT0WvS6fXIUiFhYpVEbpcRTjhSO7vE/X+QQf6tSdRoA==" + } + ] + }, + "maintainers": [ + { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + { + "name": "typescript", + "email": "typescript@microsoft.com" + } + ], + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/types-registry_0.1.461_1571268504286_0.12377528009880967" + }, + "_hasShrinkwrap": false, + "contributors": [] + }, + "0.1.462": { + "name": "types-registry", + "version": "0.1.462", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/Microsoft/types-publisher.git" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "MIT", + "typesPublisherContentHash": "f5aa40e4876b9c6a2ec6d9e27d156a339c3f160d11bb94a45b20d97f2fa4dc8c", + "_id": "types-registry@0.1.462", + "dist": { + "integrity": "sha512-6b9WlvRg8ZwpfwfFMTw6LPIw3As4KnQqGxugrqIdlYbz2gl1F/mJ/ZNNe9WsUr5HDisBxVOqMcf+f+IAC9n8SQ==", + "shasum": "41708e004be5b1901f8a172552d1a46db629c877", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.462.tgz", + "fileCount": 3, + "unpackedSize": 394261, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdsOeGCRA9TVsSAnZWagAAHRIQAIj/coJtn/4FXqH7VITE\nwCwfVucoW/Fx6FhqiyZPaUjlgLh44fnQwcr77Kj2WTFGE6OuwGypXmbQsIZL\nRoyjHT0riIkyanAWP9e/BzkzdTMb9rWN5ZI7viPcpRQ3Ts4HUzenBynB2VNc\na3ptE2e519mIe78Kyvko/lT944fG5+j/27Db4J3/ncTR8TO+X5RgIXKvcxvZ\nqk/it7lo5pLHzQtHGaEifslJJMCoWjJqYnEiW6dc5T0rXkHgx0A6sQIjHP5w\nRvtVpN6LXOWFmxK8ZgVHPvv/n1YJAQ6yzAcKHwGNb4sjnA73NPSRxmhLrt1p\n+zHCRW3JQZSg47w3IOuWYHPUPA9Xqk3QCxQ2WtmOj6cRDH09Mnq+40pjVh6y\nrtiWI9bhW+wWEMiMT22JVVT9B3h6IipUarkt+FecYo6DbSXeAjbq336bc6Yj\nTFlqtJ9tOFKKo+ybW2MvbJ8giVAWksiWnmmlH5MnYHSB+9B+fvScWT8acLIh\nD7PmrwNgpFNBbTfBqnRj8b4UboAuvdp3BuJXOxY4tx6gev97PQJfJ8h7YHK0\nSdzEliJLGd1EZl2JO42MV/SZpVMY8gUrKIei9eKcJAVK/BvDaNQ2kmk1O5TD\nAyXp401KdjGrKhoNAVPAQ0u8MavbUTYbC6DFqrWD0LHV4J/+nPR1PsoMK43C\nTgGh\r\n=ad5J\r\n-----END PGP SIGNATURE-----\r\n", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIBhuQzkXwyKbEyb1yeOxQ8J9cfYBmETxUXnsX7EWIfc1AiEAldII+pwwyTOpkNXpw3SWhMnf0pKdraMvxtdVxS577LM=" + } + ] + }, + "maintainers": [ + { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + { + "name": "typescript", + "email": "typescript@microsoft.com" + } + ], + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/types-registry_0.1.462_1571874693854_0.33132035325367104" + }, + "_hasShrinkwrap": false, + "contributors": [] + }, + "0.1.463": { + "name": "types-registry", + "version": "0.1.463", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/Microsoft/types-publisher.git" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "MIT", + "typesPublisherContentHash": "b8acaa439e37f018dfb5e4caf32abefdaeb5c45fd175b4500d9d9fb5740a7c42", + "_id": "types-registry@0.1.463", + "dist": { + "integrity": "sha512-Kqsyfqu5jgL/iJa0wU9jeVKZ0t7nL6vXLwu3gVjLgfUE9XUpLI+STD/kzv7vWy8U/fUDB4vEz3fHmgSRZvX7PQ==", + "shasum": "4107db4f6143589527433382b6c9042b0a750641", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.463.tgz", + "fileCount": 3, + "unpackedSize": 390825, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJduiLQCRA9TVsSAnZWagAA0YgP/i7CnO4nkDsyGss+oKXQ\nqOVnsow1xALwB156ZEThI26yEjl6ko5OlEm4M4CLb/7ujTVTCWT5fp3G+/V8\neXCQwkU6XVs+nynQ1EUC+yBJhlyyFRKWpmRc7S1Y5wh3SqRGarsVxCR18uaB\nILKVeuvGhJDReoUuiu13BfVf13DPRksMH0aYCihiDBSJOWU2hFWOJe7E5IdG\nd1709mYq0wgs43+9d6rDoR+M7hwOKH7K3xsmV3+6SoZ/gMsNyjUH94gYoivj\nd8PdUEqn36C3hMb1uOQqrqby0ALorVr/C07Hs5gg+Ka7ZjXIqS+z4WwEquMJ\nlKfDZUt/0yc0ydTFLbae7NcersL+HRZ3i47EEhXoZxB89zIDjqfyf3Lzxiqq\nX0N16z1Y351tF9g/atB+Y56wSLOBJotYrX1UdoshwOQbcKXu4hfkb3Dn55Yk\nMzUWvoDCzIQv12jvbjG1qB70oLMb2T/kkGfEP76/J52EPuz7F6cLvDEVKCS2\nLjpjnBRkFHhKrofm+d2Qo9qhfLi31xC6ydb0B9+G3wh9t8rqJvvk5G6+52CC\nWsQ4rFN45qx9J5YgTAegXcU4K20bh3gIUZpZJS3tRZIMfmB4XEMcrT/t8rlX\nSDO/bdpqboquOGS7npkerbV50KHzTkx+aCewIUDUDJyBEWdQOK3z1TJoigfs\nsmdS\r\n=w8J1\r\n-----END PGP SIGNATURE-----\r\n", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIEamaQqdGCZUmXA+naBy3TmpwJGJBHTPWec7s3qMUGniAiEAp56lgzS9YtVakIL/heB/tzSoojyHYL30aLrBCF2dhtM=" + } + ] + }, + "maintainers": [ + { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + { + "name": "typescript", + "email": "typescript@microsoft.com" + } + ], + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/types-registry_0.1.463_1572479695218_0.08589249253221243" + }, + "_hasShrinkwrap": false, + "contributors": [] + }, + "0.1.464": { + "name": "types-registry", + "version": "0.1.464", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/Microsoft/types-publisher.git" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "MIT", + "typesPublisherContentHash": "687f7d7cc19a98c29883832ded64cc80f9ca6098c3cec057427a1090a02520f1", + "_id": "types-registry@0.1.464", + "dist": { + "integrity": "sha512-pLv8t0JPPNS3aV2El473XAljrpFLx0Qxo+87Pnh46qlkjX8k01lsbXXRG6O6XFQ4qqaN4xN8AVhhqXN8LxBZTw==", + "shasum": "fc5c5c1c75b06f1a4ea96e823b31c81fba12abc3", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.464.tgz", + "fileCount": 3, + "unpackedSize": 386616, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdw2FJCRA9TVsSAnZWagAAaGgQAJ3TflX1rBx2VhztcfKW\n5O3N1gP9ORKP5Zf6VNLKk1Rc9ZEl22MnVOACO46Tepnj6FxIGV+nTwM3SD3+\nSOV+FmUV3JEBmIMwyQ3aba9CBaKa4rRsphUKNvARw1ElLeogtNldeOQg+BK1\ne63+Ju2Rj0QuRbB/c9iH7zP8whaLlZDabZH1gduGbJwkRVNEj5mL265E20Xf\nrJX4V+vyOb/Gbz6PmESZu2gj/rrX9UWb1UcwDbsGBfodl6EDUTmyP/eFBylN\nS7gmvwYPZhnBqTTEEUtEgMeAfTRqBWX+ogD02ciSrfB3dZDHtDnnGSDmzvsS\ncDVgJbJLXmfHV1dWfs7L49H0BjubUj8AxDSnq4JtHS9wvN/uVBmKSEafB+F7\nMIqkuULjZHC7ZcQSi5ZdYkicUHuaH+ZpV9LcjcpFCg39k7ZoTJl6vPsV4BZV\npDk3BjIEylk+4S+RMZv+ipbbHaewL2DMDWDz2udRvN9c/W9z2bb+v/SXD6AG\nXk4yrlth2hBAhCvlXGJCqIj19Jh4oTZpEmYPHKIqbmlHy2d6PEhFtRFs1eUQ\npGUPJS1j0faWgUImTDLXYIEBRNUcmRzLcLoq5XX2qm05L8VvANKPcPeOKuha\n2vHOmA6+Mr7UlgIsAAl+b+3TaGzOs0QqLugGhHJdbFytJpTb1m6jwtzi9iR4\nzhPk\r\n=cANh\r\n-----END PGP SIGNATURE-----\r\n", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIA2zI7eBtva6VvbNbyPtsO/7Uoy/FoFdSiYsTvgxHHV5AiEAz1JCNMfbsrR/r0ffq1kaB3LL9Mk/KgzhMV98WZXdjpM=" + } + ] + }, + "maintainers": [ + { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + { + "name": "typescript", + "email": "typescript@microsoft.com" + } + ], + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/types-registry_0.1.464_1573085512547_0.03190781182163005" + }, + "_hasShrinkwrap": false, + "contributors": [] + }, + "0.1.465": { + "name": "types-registry", + "version": "0.1.465", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/Microsoft/types-publisher.git" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "MIT", + "typesPublisherContentHash": "faaaa55c502edc139e0ed2b0a7ba6be98a36d17ade4ba3ca3340276e8fd13d64", + "_id": "types-registry@0.1.465", + "dist": { + "integrity": "sha512-huZMcX2ZsVFdw2toI7bKwNzFRpskG5QshowVShiZ+Aes0vj9MJVhBtxJtBov2nfLfcA64QbqIim9UtZ/Dteicg==", + "shasum": "b9737c70dcfab890c421c3ca279aa50925cffb2b", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.465.tgz", + "fileCount": 3, + "unpackedSize": 390771, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdzJzYCRA9TVsSAnZWagAAFXYQAJLh24PrzfOTw3cudPhK\n2dQzSk7o0SsZYFqEneh8fv8w5XYVF5VUxtiq+eKS7hFo3uNmux9lqMVr32uf\n1m0PENKCQnzILdoh9wSfDeKWxmV20fGreWDWpK/Tq/6AtKHpAceCXlpfPLr8\nMaIwF8QrQFmRsi9XwbwHdKdzC0Ma1gM7SuBgrmzQQUTHc7lvW3zki+G6S2tr\nD0uEJNISFRznRrZREaalT0zXmKv35D/g8IEyo2/4aYGWzClIWOySpeW7gWyU\n5L1rmg9Xt2VSjlbZvPnMWyKfuMLGeq2xFRJyK/QYXmiIc3waM4LJnKKm5LG8\nH39SinsEYCdF1TogrLhD2i0VS9TSLnbUZ4mAFToHsbpxJQOp0yANNSOW8fxI\npoAELAx8SsbZ1zKrsmx8z914wmfcr55nf9apY7Q5x5/Ozeb1hzGTAWgTP1dH\n6I81hikhifHr/48viqHtwCPhFljghekTe4dAZJWEouEevRcgRbVHPbxn5HGG\njuT04fQ2jk/B9KhngSsbGfXXoLePF8XX4cmbsV2zyndToCebKP94FLxylVrN\nVM8u2F5WO/6/OrJqNdsZbyFWrYBOQDx2HN3kFJC5heFa+ESixy3LqCA0QsW7\ngvzvEQMz/V97O2SDFBTx9HNz815YjCqPGwt9AFlBknvXLQT3BRR804aNBDru\n/cGh\r\n=JP17\r\n-----END PGP SIGNATURE-----\r\n", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEQCIGoGq/ko6Jc+bSBjzMMzlwZJNTZQB0376ed9M3ofveElAiAaW2OhfGo8CZDxNVzGvQg248mvtMcq+0x1/h2GQygg7Q==" + } + ] + }, + "maintainers": [ + { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + { + "name": "typescript", + "email": "typescript@microsoft.com" + } + ], + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/types-registry_0.1.465_1573690583730_0.031732097891888245" + }, + "_hasShrinkwrap": false, + "contributors": [] + }, + "0.1.466": { + "name": "types-registry", + "version": "0.1.466", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/Microsoft/types-publisher.git" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "MIT", + "typesPublisherContentHash": "7ea23e8ec55fb7e915d69c4e37a0c52730510a00ed6d4f04b0b4ff535d245809", + "_id": "types-registry@0.1.466", + "dist": { + "integrity": "sha512-6bCx459thM4MrST9xCLRXnE5MK4nYL5mN9XpHsCxzUdAJOs/atzEyl8bJcMY/y8eMb+r2iCl6vlC45PGzpavNA==", + "shasum": "287aaaaf6250483c24e766b44d70e986278fdad3", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.466.tgz", + "fileCount": 3, + "unpackedSize": 399130, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJd1domCRA9TVsSAnZWagAAoD8P/iXoeO92vbsjACM5FauJ\nSm8erbfP6VM1YGeBWp1OHcDQe8muGJyx6eYMNKc48pLDzlDjQhA4nFDLHrha\nYDs8PGTHiBL5ylh5RHoFQyotZt9Z94FjeU88f8BsKYXokITACuPnMY8VVPIX\nu8dq6b0HYGQJ5AtqzN2NcSEBxXVOJkzr+Sto50Rd0IkGKP93chRnowPWI8df\n1EtYgiYuO5JmNR2XcljoafQOUUd3WC3eLL5fiDpzmsU9DGny6OP7ZPTcc+6y\npWU8/MJ0gIlUeDtjr+Cl3FeHBpvMY+uJARSuFJOkqS6ob90kL6UJDbem/DlA\ntF/Zv0Gs0GXZkFihSK5A14kWRLATORB6ulIvU5le9sFpF4kK8Kiy5mC2EBie\nquiTYVWp/AYkZjWqhEfzGvGSedi7T6JKxhzgjiMGh5D0eSlCjT/l3fKoNOm2\nUlxzbpmndSj4lgvh7UKwU9nggDzwj5pnSGZt5ps+I0hzbS4PnsODPEjM6qyW\n34y9vjGZ/Q40jbwG07h4hpGdrS5MdzfZC6II4QZt9vkDu7HwDvqLmFIm8l+4\n3m1/aEqcDiX5rBwImWKRh94I9NwqPaeJ1mI1PQgbD9HmoGExD/FxX2TKUOv9\naUuNROiI4X0hT68qvuQQQKc0q5ptvPWQ3Jj/E+WmBmtjoM/ukmfFqSyEvhUP\nHJxk\r\n=tKRl\r\n-----END PGP SIGNATURE-----\r\n", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEQCICSKA8Uk9ThzmT+ZjeOYOj+xTk6W3Incs87UXzjWRYzCAiBUGzy7k/ya+Ir1+BRA7KQ76e+ZXWDIuTHFEA7sEh0evw==" + } + ] + }, + "maintainers": [ + { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + { + "name": "typescript", + "email": "typescript@microsoft.com" + } + ], + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/types-registry_0.1.466_1574296102035_0.8475302658948205" + }, + "_hasShrinkwrap": false, + "contributors": [] + }, + "0.1.467": { + "name": "types-registry", + "version": "0.1.467", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/Microsoft/types-publisher.git" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "MIT", + "typesPublisherContentHash": "7bb4a47a044694deb3e75a60f3491935b1ced28d68e2dc90561acc0975158a50", + "_id": "types-registry@0.1.467", + "dist": { + "integrity": "sha512-hp2e4GUXtSZ1MuN6o0PJfgcs2y8EG48gGwKv6PoBBCEcOAgyjeVWGWf7SzPTOmEhfWMNcsdz2jlntdWnlFI9tA==", + "shasum": "19800d1f0b932cef8b52360d3bdd1259f0338be7", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.467.tgz", + "fileCount": 3, + "unpackedSize": 406110, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJd3xVjCRA9TVsSAnZWagAAdL8P/22iWvO6UbxaIXVNyrkP\nrTSeCIt7YC3KQOmBGqP6sWkU4fO4G3lwR2A+JjiVoT5BMA79lHjP38HjIiK3\nQUP21IdaGC7UsWI5B1W1AqjraXFMtPtZ0ezJR44wWixKKPpgDZw8rysAZi89\nnTsJBG/FTJ7ipYHPKJ4ACIwtSVVnXrYxNkFdonQ8mlSBhGJaXSXgrJn+3IM0\ny2iwhKs0vDDM/LH4jHh/u0JwRM21XypBWOIhErBrKrywCg+vnZFU908xApHX\nGWnaFf+5+VEmBFvrXrMk/lZeKbjZe6va8qIdZRFQDEH1lmbIQpDirPejwEEY\nax0D3kYfPCGBH1Pq4h1jusyxn6jcLqSmcwGb3dVMlcCxqPIqJq+2OLy772eW\ngDE6FsU66mUDpjhB8T6wEbzgwedyPCOLVfvmX4J/AM75906DDAgSvMcxuUoW\nrB2UHhg1aKcQhdwVX0UOMxo7FFeeZfQGyu7zDfDnqY1oUkb4Rq/GYUcdfbcu\nzZTf9T3QFN/0KwBrVnlXdIDFs057+n9aGwSz+5lCc4h2WHjBS9tQkTTljHQI\nXHefdctZyRslu4Ealk1oYooX0XVkc8lMYkNRl+wEMlwFNpFK1qre6HYHZyAt\n+LwLowgJyATB0mF3VHPm9HgdjPIMKyfNX5EDRN3RuMXxtHDFImyIKBCscImf\nq8EX\r\n=mO4F\r\n-----END PGP SIGNATURE-----\r\n", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEYCIQCIDA2G8WOhvQColOshT9dizTsPKXYFIzPW9BfQzxjasgIhAIBpNi40xJFY53zxZLNDDYs1zv7JGEJnpR66LJbI/b4V" + } + ] + }, + "maintainers": [ + { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + { + "name": "typescript", + "email": "typescript@microsoft.com" + } + ], + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/types-registry_0.1.467_1574901090525_0.946556254462217" + }, + "_hasShrinkwrap": false, + "contributors": [] + }, + "0.1.468": { + "name": "types-registry", + "version": "0.1.468", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/Microsoft/types-publisher.git" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "MIT", + "typesPublisherContentHash": "6bcf06522f3708b6c053e100827512356bf1dc15590abc00a1828e939e41b8b4", + "_id": "types-registry@0.1.468", + "dist": { + "integrity": "sha512-tE5/MWlAE6W+clMs5n4LAYS/K3XmPAR8ISHsLZDyPjUxR524zgpcRdluoYeRC2RnJ3of7J4ZJX7THZNEHK8aiA==", + "shasum": "78db1e79e99755b48ed9b9ed5be4ddf6add1846a", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.468.tgz", + "fileCount": 3, + "unpackedSize": 407509, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJd6FL5CRA9TVsSAnZWagAASn8P/jrA1R6vf3rrZRRNHAtm\nzS/4UNc84S3K7qd/k0i4uqk3c2riaR6A54OflevGcVrlvtSNRDk8DDzFkBPh\nv213DGeeDukock+fJq3jQ6LQ/sjTaRtGRUs3wlKHuPV4QOqV6UnzXz3LnxzD\nZNZdnpYhv1QZNVyULBUYxvIvJX93FhgiG4avaeCBHnpEFaEJRjhjuTJeWYOC\nh8PgpzM4g5N1tOI2uVeGoq+H3VsabK3QDiAx5nEAcf7v2tPorI7qjeHjSgCc\n9mSMXlxr73Q+laKElduED2JSUlWHG+cWrM74Pi/lEzQj449XH2OdNqSisFY4\nmE2Xpz9wR3iNomfLDAa3AnNQa9X/j0z9FNYWTaAKWksFKWZiyJaP92D/hbtF\nen5Xk4mZF7lB3OxVAJ6YHkz4/X7ISjGDpk8SRN963Pfdku2DWzmdkaRvDk8F\n1DUJ2MZV2XWrA5e5qx7DcH2fvkAF+NzIWOMsS7iQNGYaV3AkmaiM3XwXNmhL\nod/VA+2DOPBirHk9+rPkAe0/7QfswCnrb0eXyh/2P4Lz9/WQSnpmz/L+Qx1i\n5soVEX5VOen+IJAopGMzJg1YXJ2x18hUH3ahG9XmnQ/vMCwFm+PrM1tW5PBy\noXeicopX63kD7mp6yceBY+nWPqOfH5O63neXxDZ5hjVLUDqKbNQULJ88hI1E\n0shd\r\n=EwKS\r\n-----END PGP SIGNATURE-----\r\n", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIQDDHkb5oX3rgnyvfaONimz7A5ATS/oI/ORMBOVc+dZnZQIgdkbMmElgsVUhqWIEB9ZaK4ugIIZ7QI5n/3H5UpncijY=" + } + ] + }, + "maintainers": [ + { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + { + "name": "typescript", + "email": "typescript@microsoft.com" + } + ], + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/types-registry_0.1.468_1575506681168_0.2040777573495356" + }, + "_hasShrinkwrap": false, + "contributors": [] + }, + "0.1.469": { + "name": "types-registry", + "version": "0.1.469", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/Microsoft/types-publisher.git" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "MIT", + "typesPublisherContentHash": "baf77a776c31186f73dbb0fdf26ab7831bf7e6595f12e8471e8166576b45e61f", + "_id": "types-registry@0.1.469", + "dist": { + "integrity": "sha512-1W19pBJh0ovCum5zMk/c9Pgu0wx6DBCuFeyGVYfeL3d6UORm+ScTOyv5LNXQ6i6NOi8sZLznQmR7UvDUc3e2Ag==", + "shasum": "8e4a642e0ec3d76b36e71224cec2162febffb0f3", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.469.tgz", + "fileCount": 3, + "unpackedSize": 410565, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJd8ZEnCRA9TVsSAnZWagAApB0P/idco2yvzuX8TrZiqVBo\nGE5QlX5MGk9Mk76PDyzYKP0N1/C3fi8fOs1ff4Mo3/FCVqTR9GlME+Q8F1sX\nl0Gra5lisM7j0TNu2Fy9RRiR6p1SYjJ7iUk5CbNxXlm/O/i9PPS81oCY9rMq\nabr7LnOjDnCLxaqrVMgktXmbVJkDb9CtIx9CC57cnr1wUW7QfN19YXDp6Jlf\nL6S33EnOxlcRqb92lLT2LxPdyUueCnDi61FWTqcA/OrG/Kw9H6sBsgqwrVtY\nreBrYdY+3uNrVyYi7sWooKUw5tFma6puA5Co6GqQaxIRsfY8w0xvvCotXdhq\nanWmaU71TAoHBIIUujiDhX8CmSsn9OmHomFFJGNd1sdaFq2lfoSERbpkCVBD\n3YCdyMUROgTbuBAyG2bVkMqq8xA7uFoHg0d2WnUMGU/WPbmSSa3bRFlcexEY\nhR6Y81BP+S+jLBsirU2zGf6BD5Xc6co3idoYRSveRwfiKSVLSVLqx/9FOWDa\nOt6meYO7vXGMpqcbHtcSxurxLaVxLNGO/fYeoi7u3Z637kzv21Z7KIBCjw2b\n+UrIOKOwwM4mfaHMkY2LFiSBc7d/wENKf3HCtpGJ+QPjy7I7/H/y0qZ4WzFT\nYR00MrPL28ieDJ4XRfUXwarrhiQFwI2HA8LIR1i0yXH3uiuVP7QQvAyKVaYZ\nbLvT\r\n=2k6O\r\n-----END PGP SIGNATURE-----\r\n", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEYCIQDJxYCRvVek0bv0r/PM28hIx1ycVaA7TlVPX3G5ZDdWwAIhAJdezA0HAFWssJxMiE9N7/XZEu6uPP176+WdOn9APdC9" + } + ] + }, + "maintainers": [ + { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + { + "name": "typescript", + "email": "typescript@microsoft.com" + } + ], + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/types-registry_0.1.469_1576112422535_0.47286441976854166" + }, + "_hasShrinkwrap": false, + "contributors": [] + }, + "0.1.470": { + "name": "types-registry", + "version": "0.1.470", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/Microsoft/types-publisher.git" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "MIT", + "typesPublisherContentHash": "f53729d5f0c0f6463a5a0f09748854aa0a6ff4cf93d83c4824887548ad048be9", + "_id": "types-registry@0.1.470", + "dist": { + "integrity": "sha512-qG5LIrEXB3DtRoJ9LCzUDVSDI2nEVnDxEL2NuRiRtRBNZgerwbQaSDsLQgJNdNqZRbleeyhoKMSO1GFrdKjzmQ==", + "shasum": "51e6ec6ee5c16e00807862eb98cebf040f881a87", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.470.tgz", + "fileCount": 3, + "unpackedSize": 413768, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJd+tPoCRA9TVsSAnZWagAA4oAQAJ1gJtVVh5QUuZy4WwW5\nRC8PBDIkO8b35BA8mfwkf39VPpshDVheJgZBaLc7NvtCrT+yStmqTtUI4oPq\nBSr4lTPvJfsCC1IZDcgrHhGUbCf2RqOq+lENysUIV0cmEsP0Eb5lB7Y9qhJG\nNatyU8yBbPn82eYmsCvL42G1gICZYJLGB8jHoF3fC6zOXIX3Kcn/QYCMJ+Ug\nvOIYSoL8v60WhtgGn0MPECqNCVuFusIs3r2Mr338ZlTr8rNrccjynsM9eexj\nF0ICVW3FTvxDN1KzmyXn/4fPsLN78au0y8kyjZSWkYcCyqLS0PNNfwVOSEpl\nBIMqzD0Ee+HFjYaejWRndVz4GXqEne3PHq+s1IHRivZSx5kdlx1FteEJsm8p\nyhJSYyMUkEy4AQ1/p9Xu6hichiCahFJXhqGUoBZUWsgDbCIdyiQ1klnKheou\n4D8xAamGnptgo9waoiHB25fcPZzEbeJcKlB5MOQx6yLIy3AlOeEtSFCCJ//L\nDqPtbhYCVYGwk45eJsXPYc6NgzmUylcTZ1cB7jUY6NeftibX7PR8GblR56tp\nn30r5j4UZFBiSK4fs21oUtzw55uP+JGcm+w75qC9zNY9cwrZBBXffnfxvJxS\nMira4i9kXYRn7b9BoCpKmjqO9tyDb4NMoKHO/CzjnssYAwyD1QdymGHxHsUw\nL7vI\r\n=32mN\r\n-----END PGP SIGNATURE-----\r\n", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEQCIGjcjx0fN8fAXZkUKNTw7U0MXiJ0coDELjX0KCb8ISX7AiAcw3/lQVrAyDjctlVijNct6u4YvGN4vi5bE0VkA7vq6w==" + } + ] + }, + "maintainers": [ + { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + { + "name": "typescript", + "email": "typescript@microsoft.com" + } + ], + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/types-registry_0.1.470_1576719335834_0.8762137970161001" + }, + "_hasShrinkwrap": false, + "contributors": [] + }, + "0.1.471": { + "name": "types-registry", + "version": "0.1.471", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/Microsoft/types-publisher.git" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "MIT", + "typesPublisherContentHash": "d408e854423745ccff8c6fcd6e29955424b4a2a55360e5c5691896f17e4b267c", + "_id": "types-registry@0.1.471", + "dist": { + "integrity": "sha512-4CitLHazQmvG+uMYkGcx7Ee4oARATJfK62Jsxn/9dSpH8dV/J9ADjlY70YaepZmmpuPkoC7a9NRfTVZ3qm82VQ==", + "shasum": "a4ada3e01110f1c2f9eb2ce6a0251fb1607ee288", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.471.tgz", + "fileCount": 3, + "unpackedSize": 419933, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJeBBWdCRA9TVsSAnZWagAAywwP/iLHsSJ2iSTPj7SOvK/5\nDWQkxc2TMjaYYXBVzDvArOtkb81UVX1NkfKKG4jFxql74Mre5Ac4WecxC20w\n5r2Jr2fxsWh+QWQrw+hRKQJQTOlByBPlHLxS0/OsSbvJ/R8PQ0t1PEbEXb45\naB/sKma+sGsDzRV6AfWvy1wE/7PPXK5WJNCr3yjWZGk7F6vPm/rdETLNQ1hX\npsQ2Ea4sAdxsUufJILYR7Anj7OCvbmUxvZOJwW2CwfriAj+WXCVp/iOiwY13\nXqKVLc7LGKiRqYTwTFykdW985w4JlJ4mxkn4P3J8YgHF85I/S1nbxho2EUYg\nUSVdRt/3RjQlxsY+6zfmWpaIeqY26uzBTb0+Ozefz1DUSxZ8ry9msOuG0RYD\nX43Zf+JJE66sxhO4fYShKFr9n43QPRrvKASBdkrhtoG5pogSDLlc/gN2Raog\nANsy8pLHQF+Pv5jv43TCx9OVxbA7POn9cYQPBWvg5dEnJUaB7fTd1jj1sllt\nlcY0bLvx0F8+Zw+1RfG0WX4S9uSpkZZ8zpZ8CFsLbUbKyJbTTG2lb+Ut9xxp\n7tHPA9+VoIMT7jSo6oshfa76nYrHIwuS2YfoaDHqtDpTsKzajW6XsZL/dSYm\nOuxBTfnNKMIj5dm7FRdeHWmDaztNKDdWkXE2zLcbqcvybHfNqU7DBDkVXTp2\nRMT9\r\n=o8rr\r\n-----END PGP SIGNATURE-----\r\n", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEQCIDcEjkadAPOuxvtjwTySE+gaPXIaJwxju38DuY3flN4IAiBxgAH0OlbHSSKBYpuVUVCxZLghvVOMYSV5bCkFRcRn4Q==" + } + ] + }, + "maintainers": [ + { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + { + "name": "typescript", + "email": "typescript@microsoft.com" + } + ], + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/types-registry_0.1.471_1577325980395_0.00366778785762345" + }, + "_hasShrinkwrap": false, + "contributors": [] + }, + "0.1.472": { + "name": "types-registry", + "version": "0.1.472", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/Microsoft/types-publisher.git" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "MIT", + "typesPublisherContentHash": "5cc5841de145e0ff843e20324c674632a04c0fd3b928224c4896651a6994f012", + "_id": "types-registry@0.1.472", + "dist": { + "integrity": "sha512-B9g+Kao76abyqwFi2O3Zsi+x9d1ZxKzmhHr3qNoF/x6LwCMVp4gO8jZWQF5oavXLu6B3/AYUQA/oor8WVxqujw==", + "shasum": "533edcc8673a27b86153b287d744109caa09ddcd", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.472.tgz", + "fileCount": 3, + "unpackedSize": 422872, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJeDVefCRA9TVsSAnZWagAAFh4P/Ag9xb+Mxy3SmNqsDEFh\nT5AY8TvPz7GFN6j+czHtTMlr7tel6QUUxNfJrHJ2419tr/lhvWdPLxHBxzDD\nJd40LL3tbhog5ZMPNhkkrmCyZmaj30eR3J1jNRPm8n6Uk8Op+Smdrw8CmFCt\n33qQOlAPhhWtcY5w3ZyFnEEl5yl/0zMQvxzhlditkqbc9fPN3RxjUXainUKu\nU62OzN49zRFTMvtB7q3WdVdG1YTva+k52Sp7Fu3JaXu6EkKVpn05EEL/wXVM\nSulZ7U1WGSlddAMEAyMu539rDRjeze62wyonQVt9pQ4gRASnSggAjSoOLoDJ\nA9VE0lOWYWfWmhLwg/WT6hgWParVsLeclZkvlS5K/4EfQ2CxVDWv9GveCE6d\nesJ82Rusg7FHvjzN3EkcVRt+qCX/LPBpbRA2e8HJ19TKDvEuf8FJQ+H003BT\nkQ8npZBC7mHWIeGc20vWS0Q2toO5vVl9kwp61tBzP+Fx50AFEZpMmcyTJ8iW\nlD4uJa5BAlqhn6AGfxk5ToEGRc1Fi6xvse/nnYJoeBS1dS7VtPjh2bcn/4xK\nC6ExRNgTJMuY++eSi6V3zUyifeckUG9EtAE49OcQc6bqLOQEY3WPjRK7efzs\nltaE/f/hjxBCf2FqLlcdBSU/YOoVgx2Cww/0BFyHJlBTZwy/eJ7w8/4s4CiT\nJw3e\r\n=wlLG\r\n-----END PGP SIGNATURE-----\r\n", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIDQHVzMiqgEERJsQEbeGqel39rA38P/QVk60T8uZZO+WAiEAuQny6d8sjEUNLJkOTJMgXTviN+I5f9paSfHbTJbS4qs=" + } + ] + }, + "maintainers": [ + { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + { + "name": "typescript", + "email": "typescript@microsoft.com" + } + ], + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/types-registry_0.1.472_1577932702942_0.39695341438625675" + }, + "_hasShrinkwrap": false, + "contributors": [] + }, + "0.1.473": { + "name": "types-registry", + "version": "0.1.473", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/Microsoft/types-publisher.git" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "MIT", + "typesPublisherContentHash": "cc9ff81fb79af09127948ee08b5aa1de8d05d7c3ceba65ad15734a89e8387df6", + "_id": "types-registry@0.1.473", + "dist": { + "integrity": "sha512-+sOoT2eYtdUzPSJCYsvnNYYdcJ7i7eGDiZKIyxX+doaMADfbutVGwf4X5699RfloAcy2EttnD2x+aTqkzyR5PQ==", + "shasum": "c03f510ff6c83b0bf538f4b51a808ef9c71dfd9f", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.473.tgz", + "fileCount": 3, + "unpackedSize": 427983, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJeFpUxCRA9TVsSAnZWagAAsrAP/ihVSqT76fefEuByO6gS\njkYh1WxI9O/cAZN0MnCQEGCf9lyC5RslCQCUCGUJ61YrEMVaMSCjbjEDEXhy\njohbo/4sUVXLctXPgXNwAo/TG9LnQupqtG+GBJgzMEGajw/lASZFuQwiNZXS\nQkNSfGEg6BQi6qQzJMwyso97mqXV30ekQgFXBSlxqvUd4FmCuwlAZldKQoVI\npXJPN0+A/EdH2N6bBjRJvoY82wfrhDl0QZCIjUYqPGfYI/scA5RPq3AiMJG6\n+Cfr0jkPFJ9t1NUAJRenxyE2ZGWhkYE0X0+Uuec9gxl2WV+M0zr62ZlfgH4x\nTtExgo/fzLHOhvqK6ZHhFgGvNc6Y6iejE9FDozcY7gjvBAZhaAYrB3Lx/PdN\nY7Ecuz/60dHA5pMBHQfAx7tCW5tdd1h+7vWl76XVBFzNl6/NyfQvNnAgjC3o\nuXRaT1LXSjQhJ2waSa0yESqQV6s868ylebmhtJ5swKvgdvZu2BIT6omag984\nRi/EbiW0FjZtH4QdKJpzXYOkVzkG8T/nuJVvDaSAB3lVDDUYyPQs5Ok8tvMg\nJv12ELFFEAMDbOoNF+KEmpms0VGoaQ2DlJPwCZ6n/rpjqv0eV11hxso4fWA7\n0NurQa7skXRoLJ7nkopq+2cfq+wV6kZ6hR/B+0v8ssnNby3WwxRp03ntsRVK\nykxw\r\n=/SEb\r\n-----END PGP SIGNATURE-----\r\n", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIDiZ1v0grOdWog/Cyn/LEkoSuv98bLDVEX6aisLDHdzaAiEA6NjKVfrkW1uhQAvbhCrNiWV++tInLtFzrlt9blol/4U=" + } + ] + }, + "maintainers": [ + { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + { + "name": "typescript", + "email": "typescript@microsoft.com" + } + ], + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/types-registry_0.1.473_1578538289291_0.848631796110977" + }, + "_hasShrinkwrap": false, + "contributors": [] + }, + "0.1.474": { + "name": "types-registry", + "version": "0.1.474", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/Microsoft/types-publisher.git" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "MIT", + "typesPublisherContentHash": "48fa4a4edf2038d1adc346e6889e597e87eb48f7c033ec53d6cc23c8631d52bc", + "_id": "types-registry@0.1.474", + "dist": { + "integrity": "sha512-XSt7SQAHi6mXrvg04q3+IH440x4YjbeJi555kxU30r5zJZdT7E0VpVYBDN0GpUfZd2AZt1FIwpHRx7kZT2y3sw==", + "shasum": "e4ffcd049e434cf272b802e78d7a945f2576d3ed", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.474.tgz", + "fileCount": 3, + "unpackedSize": 429783, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJeH9NNCRA9TVsSAnZWagAAu5cP/1imTNzP4vUC6QfH6q5Y\nGZ6RC+hEBvnBh9TeGxwDYDuGQKuGIG+O+/AcIaUqWSWlxVth/+lUxwWIjtCf\nbnNqJ0FNIHr7Ljdnp3nhp4pYRPxraPWuaV+HOQcupeRDpzFh1Z0Pbl3+pSc3\nql8VTo1QGCpeDMrJe7vujhCJ5V91bLQm9TO8MshpRVafEhuqMLRK/11rnNIo\nZnyO0pbDrL5vObK4rnPG5+5m1E7jtn3uh6JDPuApOcQZu5m36sLz3X/cbu4x\nK7zEq799IDDrNkr16NRTLgCSFSLXxP+Mf444sBhqGF2NmDxFCI87aVyY2Rma\n96577Yzf0wdLUEbGlkycLA/wB+i8Fiw8cHdXAyZmdbYUOVAEFc7nV2sutjZG\nLhM4+ff5HreQ1VycCAaQniiq2+W5LfSBIJGtHhToKxDKaXJs89vTj0ClKIgO\n7S0pQc7rq7WEzuwH/CWQInWadUVrmFFA8EJBVGkOFPvC7kCF7WE8wkvnwL8S\n5EJdhx//mprykxpFx55rv/8+Hc3kmTAqqpzZ3O7Bev30Xrg6Po8f7qbuJgHK\nToLeLRJtIcaEDM19oDAk1107eRzR3QdU5Fc8m22LC1cseGRUc2iJ9vysLSGg\n1wTEYzP1po26hSnffP2D1+M6npEMYzFWBu5FmyfGrUp41FvlaJ4PIfVezXYe\n/OWX\r\n=pkJ1\r\n-----END PGP SIGNATURE-----\r\n", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIQCp5yoDmbGxy3AlVeniZRCbdIjtomxji2k7R87UV2ULwwIgC+aNKwmSI1XCEnB5+LXj9njWGu5ZISspRBBJUY2B/nk=" + } + ] + }, + "maintainers": [ + { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + { + "name": "typescript", + "email": "typescript@microsoft.com" + } + ], + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/types-registry_0.1.474_1579144012788_0.6140577742214808" + }, + "_hasShrinkwrap": false, + "contributors": [] + }, + "0.1.475": { + "name": "types-registry", + "version": "0.1.475", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/Microsoft/types-publisher.git" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "MIT", + "typesPublisherContentHash": "2e0bc01055a31aa5b1d722d5c08b1e86ee2a3a74780b8b7e108dd348f3415386", + "_id": "types-registry@0.1.475", + "dist": { + "integrity": "sha512-KSBoeGQoQjP2wuPDMDGsf0CF1VSxAM1uHswBQ0nw219BX0o1kScnPjffBPN5w/b6gahmlwFMyD39GYvSMQEDEg==", + "shasum": "1fa6533246f6611e3f321aaa1524b1170123ea8c", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.475.tgz", + "fileCount": 3, + "unpackedSize": 434158, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJeKRX7CRA9TVsSAnZWagAAvmYQAJ7jc+WTE7/L7tGAtLfB\nmLBWD5s0FTqi2vNIxIjJ5grlP1sIVcoiEoQBE5VRHtRjsZaeG6eEWJSs5kvN\nTmf+QzPXo0/MWFBgeSyLZLWhbTGNDLjk8A6SanIWKLNHoKDWc64PuOA39khJ\n2hIX9dDRX5+cmkC5wMBZpSvaxr7A/zOl4bWZ4M7T8ijewje1RIAliPI9R+eS\nnHJGiYD5k6EVNz0NjP7CSJJ8LHXQJ3dEB1o0xdjSi9fI2vlgz8G3VKOB7QPf\nzf8c1nzeH6CWZNEWWrjyqBn87k+z5TytiaAGe1kUvvQO12IWaACdeRycCy87\nxyhE4ZHZJjWxEt+H268o0rxnksTvsWf5Z41BRn3lyA+2n2rOQZW6VGMFd3vT\nVoiD5RO/XsXaSWLmqxXNRuMME4SRwZkFhnT7WpWUYA7eTwjr5Y4k8RqvgM/Z\nXxpNzS8K5TV/kSG6l4UnHwzDyR02Ow7OgJTydA9gy+nScaUKe5Q5AyllptMQ\nf6eCd5rFOIjJqv5r9FoCIuvtuH9UOtmkzrlfqtjJnLG+5C6gH4mtAkfa+bhe\nA0DoiS5ajxsIm0Yq3gSkJ+jsLtUmh68QrFkaTk5xpvHFt4q16JM0aQn3xGd6\nfGfuitiGY4LdqdcVil/V81XKXxQUJUNo1rJt74viFzPf6atVqwVvhaBLpmqR\ni6Sp\r\n=GRAw\r\n-----END PGP SIGNATURE-----\r\n", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEQCIHA+M3+Vt0MvJmjVJWgARPXsXLzicSgXbAiNFUpijYyiAiBTBy0mHE2Hb/MC8vE5kU9yFq3JLTagO+hvHSUgQXlXSQ==" + } + ] + }, + "maintainers": [ + { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + { + "name": "typescript", + "email": "typescript@microsoft.com" + } + ], + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/types-registry_0.1.475_1579750906508_0.7222385022437887" + }, + "_hasShrinkwrap": false, + "contributors": [] + }, + "0.1.476": { + "name": "types-registry", + "version": "0.1.476", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/Microsoft/types-publisher.git" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "MIT", + "typesPublisherContentHash": "b5274309a17b2c3699e7f56c6496d30d857dd0209f4387c76f84917d5d809d05", + "_id": "types-registry@0.1.476", + "dist": { + "integrity": "sha512-ySq3drRhIvrsg89lqTh8JfeC4dV07JDXX/3UIfP9GhmRmxfyPwCSjTPS/WfLxnnxcx/NJnSHMKkKs3KB2KA/3w==", + "shasum": "375d7e025a7e82d9198bcf71b3726ca1817588bc", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.476.tgz", + "fileCount": 3, + "unpackedSize": 437762, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJeMwYbCRA9TVsSAnZWagAAOIcQAKNcS1azJs6VJslIb8PZ\ntFBALjLUGrv2PSpXWZo78dk5S7N7nse3VnGxilfI4cM7IWBW+0mE2h0hvA9G\nKEaVK8MGaBI762IBaktj1rpEiUPjihLznR9AxhiE/vGpbFm0ST97+do9x01D\n3npksyX8uicR9laO+McnfNFikmWIH8yvp5FumgdjawnrsRCZuYCsk2VnXEsv\n0Sb9IKIAA0xzn1nXmtJykRVtxEg4uXOLhpVdvO8T/x5RfiRF1cX4kKYtNNkS\n7nIXmTzDKrsV9ZE6FEcV1luSH1IbEtC6XC235OihYg6NUg4vl59ZvMUdySib\nITur2EZ9SGVYZbIH6ZUHfYZPY5l/otD/tT6/Wrx78FkOYgS60n9qds8QQNuO\nGD9m0ojwelBUbj9peLVs5KnzmmoarUUlnU7PlO/dHsrlouGTT3IVST4hC0jt\nzZUe+Xy3LFceGOTPrLqYxD+trXTpAFpNnxxJaCG1Y+OGJ3hrByO3TjY4DphZ\nm9U5TxdjK1GDqCFGKHOZNzDRAig6/uS974Lr1EptK9bhyOcqMcrzBQLw7oZf\npFOF73C5k+IZiW/m2ZGIEq/GGWEwGdA8MsQvKs/fdxgr8f4azvYHhEF0X+xu\nkomg6zCizYVX8Ml3jdkUADR4L81dh20owzrp9Y/pg241sTA0z7S7MWj8GTrm\n1yRe\r\n=1kxi\r\n-----END PGP SIGNATURE-----\r\n", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIQCbbcEsbfUh5bFXq8pic3172JPmdiXP3+LKNoFdgxn9vwIgdxvn+HHepF+5lWqiP8aDidE9iXVloiqZ8dDguCmeIhI=" + } + ] + }, + "maintainers": [ + { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + { + "name": "typescript", + "email": "typescript@microsoft.com" + } + ], + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/types-registry_0.1.476_1580402202623_0.3964578058440116" + }, + "_hasShrinkwrap": false, + "contributors": [] + }, + "0.1.477": { + "name": "types-registry", + "version": "0.1.477", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/Microsoft/types-publisher.git" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "MIT", + "typesPublisherContentHash": "3fcb129af1bb357edeafcdbc7c108bcd54f0cd583414f2ffe681eb24f744b36a", + "_id": "types-registry@0.1.477", + "dist": { + "integrity": "sha512-gG1xs2967dUul6NwWT+HySXa4ktw3UfBKGLD7S4tvdw2VXuq2dvJ34sd+36G4jB4LH+jPztYgmJyJ7sjJXuLLg==", + "shasum": "edb1346c5c1abc5feccbc590da919d78edd8f8fc", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.477.tgz", + "fileCount": 3, + "unpackedSize": 442202, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJePEEuCRA9TVsSAnZWagAA9y4P/iVswssye3yiO0ydiXvm\nNkzuIAPzFQ2Wz2vDmwurjoHedkAGvCCjKITZOB1t9U4peL9rRuEOFyq/jr1H\nArJ0KnImHqsMDgbrzsyuPPZf2IFhb8N+1SzHwYS1Mt5b3/8hFu020A7A1r+G\nTxfGULxRSLaQjT8LusT04kgDJu84DkzBryiceq39XJtlrW+RAN4Mbiq0Stcx\n9C5wpjrCiqegu+/hJ1zw55gzr1SrN/uV3gDPjDKQswcAY/SFyO/jZAY+VWev\nQkQij6rDPG1rvj2L/ZlUd0NNJXcIbkyNnZUaxtBZX3yTpH3t2+YK41xgLAU1\nbpcoBXl23QuqtYdgUa0t9Ky6kvklrl9XrL2FiOIxQvrLnsb33bDQ4XRmx7vG\nHUWtZOr/Q/Z+Q06o9kuG/rB9ZlXH2gwkEAtoGTRMADm8+MJz4MVxE/HdvoqJ\nIenkpfYtjYgwJ/BoK7yd0DP6JhG3kaf36GRLA/IhXMfLp53WeWlGyB2I2Vw0\nkN1Xe6o7mXMVel/MQlKt0fuMYJASC/uuGS1LUFaAZH/m/Rp052cyRHdb7akK\n/c9Svp56G7F2CpRZWzmTRxE9dFzTFZdLojtCtgDeq9epqhQLyN51kqDwh8v0\nMo/RMJ3ZRjijeWViJpF1xNzF0+R/PkmxvT/Y43o5RtWNt5cKfK/r1SwoEivd\nwyAG\r\n=xSda\r\n-----END PGP SIGNATURE-----\r\n", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEQCIGCBJMbgs6i0D97cfZiRfSvpgx5DolNrnlAQnYH+lJTZAiBSaBay11z00sddXnM5Zh1+4sEZrHzcEBdxYkI9xWz5aQ==" + } + ] + }, + "maintainers": [ + { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + { + "name": "typescript", + "email": "typescript@microsoft.com" + } + ], + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/types-registry_0.1.477_1581007149901_0.47380562121422454" + }, + "_hasShrinkwrap": false, + "contributors": [] + }, + "0.1.478": { + "name": "types-registry", + "version": "0.1.478", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/Microsoft/types-publisher.git" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "MIT", + "typesPublisherContentHash": "1154f0ba4d92518ad03162d03af9e53b12a346291da06846f6e8ed379ac67790", + "_id": "types-registry@0.1.478", + "dist": { + "integrity": "sha512-j6epHSvz55IVXWr8JSSWQehQH/35SWtZPadtCwNGUAWVg+67lHfgMtb+cw8m+C+4btrz5Cp0WnPaSvPj59Lb0w==", + "shasum": "d0a174c8ddd5246d2a06805f12e5d24f60ea4d1c", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.478.tgz", + "fileCount": 3, + "unpackedSize": 449582, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJeRX3SCRA9TVsSAnZWagAAAHEP+wTrZOx8z8WP1GeO/wI9\nCMrts1TLaVeg5WbeTtNaX+A+Qa/mTfNam9V+DmC3KVXLBsibL7P6sAlM0Ayz\nZtLMeJANJy5DYN3qIwr5mi9qvtS0OG3Sv41OO+vBH8jQlRgI0ByiFSHFk0lQ\nYRxBpbetfGgWakZOLGY0LB9AngY8J5nyw5AD03cEpERNghOgczs6bElA0PzF\nlZ+LCWBOlJK5uDnzGiXeEzbGnI7EIZiX4UVwa4Pzbbf5mBe4thm7Qif8XMyN\nKije3Xj5+f0FP9t5KTeBBheD294TRcK9UbANaAlXpbyA4cu7pyMv2Eg4DSKe\nLdvyS2wta3LAb4J26FF6CMrxkqMaWE0aDEphMO5t2JfqRq0DBHKD4Tkqzx2j\ng6i4hTB6ahZSeIsa1N+Lou+IVRhgbny83fvperYPoAX2axMPNKTVcGJbLZfx\nWLw2Sj6bgBIctsTk8mT9wQnc0KM14B4HRpL3Z6cs7+wQfG1aUvxMK+vyb54p\nJ/M94lFjKDYl2TqkxtgMobVxN2fUwczsgBZha5D4D791buxepnyJO4/Yov/k\nTl6YLiehjwehWf5fS8Qxx5wbAo8V0BY5dQer20AjZDF4gZQId2RpjZtxHXlX\naPlZ8eUlWBobOsqyrDnImmfzmAEU2ZXWZ1rd3XTye/FNheuEpSwkhKf1B1Io\n9iFJ\r\n=Oteb\r\n-----END PGP SIGNATURE-----\r\n", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEYCIQD2ff66hQP8FG3RxJtn4X5giGsKF9YtTKlHtqKfkentJgIhAMzwmHzwADdVkbSOc1GdUw0skrK7S8NAGswudw2quXHf" + } + ] + }, + "maintainers": [ + { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + { + "name": "typescript", + "email": "typescript@microsoft.com" + } + ], + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/types-registry_0.1.478_1581612497817_0.4051587428136969" + }, + "_hasShrinkwrap": false, + "contributors": [] + }, + "0.1.479": { + "name": "types-registry", + "version": "0.1.479", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/Microsoft/types-publisher.git" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "MIT", + "typesPublisherContentHash": "e1874a564cc481cfdf24ec40445f078e111868d5edff983fcb54fad5451481b0", + "_id": "types-registry@0.1.479", + "dist": { + "integrity": "sha512-jER2PTEGYYB58z/LS7aX9ybzW9Tm1fbvTVfEWNKIqJB9EDIRaKMKLjHz0wihY/5zCng3inA0BdwZA1SO/Cz8nQ==", + "shasum": "7dba9067c9716aa08d56ead22d1bf1757f1eeed8", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.479.tgz", + "fileCount": 3, + "unpackedSize": 453449, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJeTrtrCRA9TVsSAnZWagAAKE0P/2o+j5xHzJ5uc9CKABfu\najOpZQ6p+MF1U/GrTOR+QyUckR/7b8CRk6EQvfRTKS8VScrmPQSO7Wwf6eiB\nZ0r1ropsvplWezrvj0Ojn2x5M3nr9pP+mmYXlzj80iZ5vuYvIbHyfYxd7kXU\nMCC/XiopQIi5f/2DRFRLywNdFpd+JSYQgS8a/upFWatP8UX++SWq4dYRN/yx\nZKmJ2xa8HQ1uj/Q8GLSlYQlwoyK6V0ukIY6vKvm0Am4MEn+ed0JmW+uRn+HY\n5f9qPZKYAgGh89FJrRZtM3OfzSL3NaNtlimQCwWrIgQMazr8RPKJK9tTUJ86\ngnJNNzSa7P497xJlSdKSUS3XmA/tgw2F/vsCiSAG8csbLw/C/yvdseMdWuVE\nnI8eyh2fTJoaNJmzwFVFDrm/Bl1ECh25aEsXMS0Ay0z5+psS9DxYtGeoj20v\nwZ9F3/EhnqAR318grhGWL+6EIw0JARDmraAumxlNQAjgp3ZXpBbaABMRAH9C\nbQAx7XR/q2/GuStSaXYSA7i8xIemTSY3iEBtXhrhSXaX3KqRlnQ5MDgMXf8C\nxmirX4KGHx8wM8VDmK9AYHczKNgTDUYfEHYhYRmJTTTFYdjsfkbjIt8lqODx\n60ZGTirddg1oEO5QNK3xEE1l771YgqQbVK4WVM7FojC+WLNyDdaWV9MBjIQ/\nZaj+\r\n=T4VN\r\n-----END PGP SIGNATURE-----\r\n", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIBEiph5bSpw4saUS5anbpBFSz6pslI+s04zivh5IvOI3AiEA92+IWCJAoBSQ20+sJ+tihXYGlDjKDOEnanL8cFvLaEo=" + } + ] + }, + "maintainers": [ + { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + { + "name": "typescript", + "email": "typescript@microsoft.com" + } + ], + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/types-registry_0.1.479_1582218090509_0.9183357197913338" + }, + "_hasShrinkwrap": false, + "contributors": [] + }, + "0.1.480": { + "name": "types-registry", + "version": "0.1.480", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/Microsoft/types-publisher.git" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "MIT", + "typesPublisherContentHash": "977fd07aacf16891535aff2face6f5ec8caa1af1b0b47761b5f2170037273dcf", + "_id": "types-registry@0.1.480", + "dist": { + "integrity": "sha512-h6xQxbUD5s7iSoptEUEltIekGfZWb80knmdD0rNWpVpCFgLrHuN/wtD4EvAHPGs8Zkth7isx+YXqdDgouxPDLQ==", + "shasum": "5861d083355cb94b60012560d1d1e4f7ef58ded0", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.480.tgz", + "fileCount": 3, + "unpackedSize": 463873, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJeXWckCRA9TVsSAnZWagAAycEP/jxnXqdFomz0t+XW5ngO\n3X9IolYCIHZQaq8QgfxTaEgWfW6I3k1EbAfLEn9HtaO8oyTS/MqVZIUE21h6\niutilNBoTMcUB6daRWPHtlHWBYAyy2WRjK85WkCWVyDs1uXc29RAqc+X11K+\nmbAFVGmEb5lWv7gRHOTx7UCAzYD5YpIqeqaqn3LyvtxkJeCRIt+STdWlfHcS\n71wPFrnhJ8lS1ff6SHgs5S9aMyS45IRKrpWdPTN5AidXGn28pGuygmt3QSiE\nPr5SqdEhGNhx6XdrqyGri+T0HfTXt1+qcjMhLX4APVRjKwxPB/6OGMIImmt+\n71Ngm00A62/qtBQ3jQRlyPYLU8eSQJB8rdEl0eXDvhE8uZwxUa4M1tHu7JF6\nOh4HY3cUrB/5qHSumVwcqioe6u9X2auZtwGeF+Q6AR5Y1ayS9K/o+h4/FO4q\ntLJbPMnEfbRwJMF1+VST7Sk81XR8GyYMnBQjHSMc6sjiBqwpLcniJfnqRuNO\njaTknT91qASUd6ZPq2IrMDdNViAxkOEF23Xvxuzhk2Z3HDA8g39ZtIAPNz1v\nk7MElP09XLqcvfbxe/eY4yc244QBRHtj+rVOxw6kBGggsW5X68LkIWcq8OSP\nobl4eXluvUxKp8jdgcNV4WzHKSIa87LzfYyWwOLl6SZXq5bCveoJ25HWOP6e\nOnbd\r\n=CbUi\r\n-----END PGP SIGNATURE-----\r\n", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEYCIQDGm458w363RHNHzkzrEyjU/M3+0mtjoOi1jNh7KPl/5AIhAMh+vHb+U54X2cYNtQXh/IoLLNaTu1YJNt22s0Dwve9u" + } + ] + }, + "maintainers": [ + { + "email": "andrew@wheream.io", + "name": "andrewbranch" + }, + { + "email": "mineyalc@microsoft.com", + "name": "minestarks" + }, + { + "email": "rbuckton@chronicles.org", + "name": "rbuckton" + }, + { + "email": "ncsander@indiana.edu", + "name": "sanders_n" + }, + { + "email": "shkamat@microsoft.com", + "name": "sheetalkamat" + }, + { + "email": "ts-npm-types@microsoft.com", + "name": "types" + }, + { + "email": "typescript@microsoft.com", + "name": "typescript-bot" + }, + { + "email": "wwigham@gmail.com", + "name": "weswigham" + } + ], + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/types-registry_0.1.480_1583179555866_0.3274518358135674" + }, + "_hasShrinkwrap": false, + "contributors": [] + }, + "0.1.481": { + "name": "types-registry", + "version": "0.1.481", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/Microsoft/types-publisher.git" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "MIT", + "typesPublisherContentHash": "9233d58425553d5e044b242fc6361a53e8c319fca8b6749516a6faf77ce65f16", + "_id": "types-registry@0.1.481", + "dist": { + "integrity": "sha512-Fs5oWXegSSIL5ruYzW3GaLD1+grnE4UksXA5cIKZvZxG5eLPRHt2E8jXtL9by+OYfavPnw70Zzh86AToY4sphQ==", + "shasum": "9a95f709e32ce1b703e6b18d9dd661c081e9779f", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.481.tgz", + "fileCount": 3, + "unpackedSize": 466142, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJeZ+UQCRA9TVsSAnZWagAAr1IP/2Yga23PfHaVGWVj+dii\nPoVbaRYJxXFEVDb8padSGxx1R2fJIPEJGydRh2TB+6lWqFcaTDX+oS370+hI\n4haQbjCL3p1ybC5i8ZqBccJ94Q/oYuUrZ32Zl/TgjUdEhvAeG/p2DjeU1JS4\nPjdAw+BpTDDXotXD4y1WgALCqXQ4juIowDwgbzcRcjuRIw60rchW8WCvdcLi\nyfg3J9cYW4WN0cZn7H6ObLy9RCZ7P8yFfSL+HyCDU6tiEp1Sn0+BqlEzW1Cg\nICTcvpfJPVhGqJFakpa+pLFDXshOg3hP2biGtFiO+/q9ycD8N6oLUVQauNd5\nVwk7q9mhkF4huiju/T8SrTELKFxq7ERI1pBPtV/FOtWCdBX9KVegwHBvbdsI\nLycV7mgKhB9i6EikfsgPXTP0eEa150VINGenaiv1Ay2sksH5Z5yA/WBkLa3P\nEX92ajawpDCcxzvQ4Y/asREFy4sVwXl/Ws2rh96cT5ovc4+HXKMJ5xlut9W+\ncD4OzIwVyWTVhLJ8bmcq4k5r3b5nxn93GrWmI1ZRSFQ1GVVcNMaipXcC4A9+\nW6p4H7DRQ3K86k5oTv6fVL+/0maqX5p2ODCMBETxs045l3cLHhrs37lp/3fV\najLM+K3GPP11vYl5fDANNFMF4q/mEw3U8H88oii0wqbh8t0/TYOXpfP+srym\nPjg5\r\n=rVgd\r\n-----END PGP SIGNATURE-----\r\n", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIAtpvcbDuLUcw6tudKnLrKSanFg9jJ0bwYtAHZVC2pJzAiEA+/zE+uM6cIGwbQmzNrc5LB2BWD2KNMy2MC0XRZezAvA=" + } + ] + }, + "maintainers": [ + { + "email": "andrew@wheream.io", + "name": "andrewbranch" + }, + { + "email": "mineyalc@microsoft.com", + "name": "minestarks" + }, + { + "email": "rbuckton@chronicles.org", + "name": "rbuckton" + }, + { + "email": "ncsander@indiana.edu", + "name": "sanders_n" + }, + { + "email": "shkamat@microsoft.com", + "name": "sheetalkamat" + }, + { + "email": "ts-npm-types@microsoft.com", + "name": "types" + }, + { + "email": "typescript@microsoft.com", + "name": "typescript-bot" + }, + { + "email": "wwigham@gmail.com", + "name": "weswigham" + } + ], + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/types-registry_0.1.481_1583867151980_0.7415949563998563" + }, + "_hasShrinkwrap": false, + "contributors": [] + }, + "0.1.482": { + "name": "types-registry", + "version": "0.1.482", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/Microsoft/types-publisher.git" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "MIT", + "typesPublisherContentHash": "aacbad015c24c5b872c84084b3deb6508b17eefcaf1e8c8c6bc9874ffc575465", + "_id": "types-registry@0.1.482", + "dist": { + "integrity": "sha512-fUgpkDDIaTUn5J6gIP4ulv/lYB9v3gyEPedDmq11JfFI5CE0NZROOBhyinSWOX9FG1ch/mE4N0KEwhbCCLv6jg==", + "shasum": "7ba8d28eb9ed6a7a4eef1314ee6c7287a8423aee", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.482.tgz", + "fileCount": 3, + "unpackedSize": 468965, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJecSTRCRA9TVsSAnZWagAABWcQAJAoVTBGZCk9sXquMYlh\nPg+wwx6Uzawz+kUXs4fvZVQiKwaexfmjlvt2rZIcAoZ/kCzvutzMf9IAg80M\n63oMPoJz8AYYIbo9yqqfEbdd+vq0Dr+mc+a8OAxr11rFf3lLgGJSFCJCaAy9\njfFURokGAQ44zuFYBfzew94sg6xXeyAoIcTkmecbse0ZXlKHHdogClglSapp\n9++1PKLsDbdm0nXsp1GefU1mnczMUfKEyrBHtxNIhmlWdzj7ngTg3he1JSex\ntWLa0dRHeInZgxiKjOO7tCwChoh8sTtVTB8y4cV1Vs/q2pv9Byiq/kdoGw+T\nhcQ11CXIiaH+kU5m8hMfrq6+P6CX/MOnhk+goNYjEsPyu2+DIdnmNEyPvtEA\nB9pVLxKn2zWsMwV70zrOH1N13Q9rtQjMsAsHyYzTyBWOPH8C25M9GI3gJw0b\nRs7EHkEZ/m2fSbM0VKpjPc8A72U/h9Qk31L2WLhZwkfZ5UWHVa725PpUFFp5\nWJI/Q8feEWLivHhK9L74RZY++BG/7FKd3ME2anBMVuaW73yP7+1AoviTuh5V\n1E5BN8uvQqPeu5crrquWf0gfSL3xDD7x/7IUB95ZTz3Ra6MKWj/RyhzMzmBf\nrD1kiXo1HXiWtBunOa8dhJb+U1kiSr0r4M2QJ6XPbUzJ8++iGOMilxN3R7em\n4Mug\r\n=koId\r\n-----END PGP SIGNATURE-----\r\n", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEQCIHIJ1dyMrGFu83qOsx4tN9dOa2W8Z+BtWHMKXcEX+ZdKAiBmzeZuSdfU5ejVzjxAl4L1hDYtymHTtbsQPXqFxrYN0Q==" + } + ] + }, + "maintainers": [ + { + "email": "andrew@wheream.io", + "name": "andrewbranch" + }, + { + "email": "mineyalc@microsoft.com", + "name": "minestarks" + }, + { + "email": "rbuckton@chronicles.org", + "name": "rbuckton" + }, + { + "email": "ncsander@indiana.edu", + "name": "sanders_n" + }, + { + "email": "shkamat@microsoft.com", + "name": "sheetalkamat" + }, + { + "email": "ts-npm-types@microsoft.com", + "name": "types" + }, + { + "email": "typescript@microsoft.com", + "name": "typescript-bot" + }, + { + "email": "wwigham@gmail.com", + "name": "weswigham" + } + ], + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/types-registry_0.1.482_1584473296548_0.8606604584445985" + }, + "_hasShrinkwrap": false, + "contributors": [] + }, + "0.1.483": { + "name": "types-registry", + "version": "0.1.483", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/Microsoft/types-publisher.git" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "MIT", + "typesPublisherContentHash": "ac12b15f62171c8eeaf9b4073c944e93e8fb3beaa345ed81038d709a7248d75b", + "_id": "types-registry@0.1.483", + "dist": { + "integrity": "sha512-E1oj9TbwtE1s9jz65PMj6av7KBZZG1oqbjUGt+YPjha5mpmHUfbXtUwi5RjTkTflsDS8RR6iPQNmLbF+9TqdCA==", + "shasum": "6791011ddf0e6b757250d9a5c20a2ec0072e059a", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.483.tgz", + "fileCount": 3, + "unpackedSize": 472933, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJeel/3CRA9TVsSAnZWagAACCoQAIJ4LybKW4bnmvNiRzln\nPpvpMjKkcY07aEVLUSlW23L33+Fnb/VZZ/YYTYKBf7WXWSAx6UJpVli4N+0U\nF7u4lPHrPbJKhx2dO/o+xSSKQ8gmkwxglzQJVsGkzzaX3DiPzKSlCPDxXnrp\nIPoBT9QwhMv+r5RGvpdzmLOE7jwr3ej4fdSTHZAmegZzeQVRQtQ8Eo6alpyw\nGx12+We8+wyTDLzbhKdeH91a5kz7jq/9MqQbABI7C6zOvsljoQbwzdZL+bsa\no4bpwrfkZQmh4yduWnER2jyrvZ5EWVDEHn56lzq7fj74/LDUuINL2DfejCxQ\nMJddIOahEcObHZljNTd9ZdBZHcwYGfIKfyMhNElSvu3WS5kBBwZMhiCtityo\n25q9OfCtHySEAHB7RADCdXZMZSvnFyBJcOJ7/NWOFoi1unRLy7hQpoRhHcs5\nsbspiXfKTHPuONT/TvxWA88c0IMdyu3FlS9KKmsFWVNttrgBZrB3TIkQX3aw\nIwivlm4PuNoJisr3ZiiTHl975CGz2uDXxicwqTYHE9E7KAkWfenXG6w86Tpn\nR2UBXKNV6voF7o3gdvCOf0nBndL7eWgIWl+Njc4Ce2xCRPkZvLjNvr/PBtYE\nlUfU4qBad0owawq+tAOs4tD8SJd0EtUqQYk8+tR7AuRcsHFaGRhIHI4zzAJa\nRx27\r\n=WjVv\r\n-----END PGP SIGNATURE-----\r\n", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIGuXMJmJBuy4wkQ6BneMMXZiTjpN688aS1rP18JzBb/vAiEAqlQyMigTEpQTtiWj7kfFjqd+SDgb9ew/pEWTA9DqI74=" + } + ] + }, + "maintainers": [ + { + "email": "andrew@wheream.io", + "name": "andrewbranch" + }, + { + "email": "mineyalc@microsoft.com", + "name": "minestarks" + }, + { + "email": "rbuckton@chronicles.org", + "name": "rbuckton" + }, + { + "email": "ncsander@indiana.edu", + "name": "sanders_n" + }, + { + "email": "shkamat@microsoft.com", + "name": "sheetalkamat" + }, + { + "email": "ts-npm-types@microsoft.com", + "name": "types" + }, + { + "email": "typescript@microsoft.com", + "name": "typescript-bot" + }, + { + "email": "wwigham@gmail.com", + "name": "weswigham" + } + ], + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/types-registry_0.1.483_1585078262813_0.8548909748567146" + }, + "_hasShrinkwrap": false, + "contributors": [] + }, + "0.1.484": { + "name": "types-registry", + "version": "0.1.484", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/Microsoft/types-publisher.git" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "MIT", + "typesPublisherContentHash": "9a9a5a843c736978ced0b29babc58d6c1910ba20844699a73c37b7edfa52f150", + "_id": "types-registry@0.1.484", + "dist": { + "integrity": "sha512-xQF9iGq1u2hUH8AHpg+lj5jlkJkidikF/jX2UG+4hme1fD9Kb9uC4m/A2bPu0p/uAh/3vprHs7oxJVnlTWTGdw==", + "shasum": "227bce7b089c5485955a1a90b5db660e51f6b6a5", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.484.tgz", + "fileCount": 3, + "unpackedSize": 477891, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJeg6JpCRA9TVsSAnZWagAAjREP/0nFuh7iZ5rKx5Y3s14x\n6AgSRAPW0yT/hX+px/7t5qV7aBjfr08ia0Z8QQPyuknWjOhGlX8BstXZ0k5d\nexJ77lOQZDTIxbKmI/Wg2IfqbcGdDeA7d5wRt7Y+Og5Aum473m5MoozzJSQa\nZ5rX2dYXwugFOjmXQJZBaEGOAAMrg7ou2x7PWb+LqtZ4jj6Kke9V4PHTwvUP\nj/9lrN9qSkeX/3aiGK7glv/bLKlo7aMCEpXpbEDpSxD7r4djWHVs9iJKYeNL\nn0giAs3XljFCwiIDypPuUcPT8M24MWRQiXtiFGsGJ44BL63pvtyUkCPQbJlr\npLB0gYJO3nxhj4pULD067b72E2U7RnXbmcB+aCEdvWCJvBDTkuFIL/IlL74s\nsayERhcw6yFCsBFwWXZBiBXvmoLMTk70Tf/M16vy82ZdO1ofzDQbK8oTrnZW\n5XtBh7GQ7G2wxn+psg45rQyd5hEXkUw5yFvFasTaaQ5GnffObfozou5vqhhs\nCdYpBxX4wBWYcAPOcG9NULpV+xCBBKoZ92c8H/8/xJ4msXfD6VDAvXyExqh5\neP0cQ8hw0P4X8a3PRqJ58qg1XTRBNyoscWyvdizRZm+6NhS8k5jlxxGpcmZ/\nMBL/0gPXXw6ehw3cnaRUm2FPsdo0Gu5G3Bp5u6zx2Rx7FbJbxzNwNdDYYklw\nOyzs\r\n=Tm/0\r\n-----END PGP SIGNATURE-----\r\n", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEQCICWeV6DIWFy2nQho7v6OmFR8iKteuOdhDFGV1XHA5jMDAiASqnGGnF+6o7ZIIohpgwNEdDgir5QjYnUqAlLEGp8OhQ==" + } + ] + }, + "maintainers": [ + { + "email": "andrew@wheream.io", + "name": "andrewbranch" + }, + { + "email": "mineyalc@microsoft.com", + "name": "minestarks" + }, + { + "email": "rbuckton@chronicles.org", + "name": "rbuckton" + }, + { + "email": "ncsander@indiana.edu", + "name": "sanders_n" + }, + { + "email": "shkamat@microsoft.com", + "name": "sheetalkamat" + }, + { + "email": "ts-npm-types@microsoft.com", + "name": "types" + }, + { + "email": "typescript@microsoft.com", + "name": "typescript-bot" + }, + { + "email": "wwigham@gmail.com", + "name": "weswigham" + } + ], + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/types-registry_0.1.484_1585685097496_0.6514299108276409" + }, + "_hasShrinkwrap": false, + "contributors": [] + }, + "0.1.485": { + "name": "types-registry", + "version": "0.1.485", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/Microsoft/types-publisher.git" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "MIT", + "typesPublisherContentHash": "3f8d6cace263a202b4cca39d42eb08fba60883f9c69569343d09c2509f506128", + "_id": "types-registry@0.1.485", + "dist": { + "integrity": "sha512-H3mW3YTfoyMP/q2KWDGoBku1XmivVenRCc2EwKmjTC51i7mldJ+qKcAT/8pXAKRsLvvtgunxy2KatUyU4eY0jA==", + "shasum": "816630cf6aaf36147d571d7e3ebd911852a439d6", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.485.tgz", + "fileCount": 3, + "unpackedSize": 484450, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJejOB8CRA9TVsSAnZWagAAOjkQAJbgwCXvt2U7RsuxPj4U\nlgMm9d+l+M5IplvlupaYyz8Nx4LtHJxhi1DhMJeBKyeSoYDrXOgwmKrLia/w\n5kiQccjHl0qL6RQPyMlfdKcM0SwCnrTjbHV0jDKA8SvuDBQCq9Lb9LygmgnH\n5BtfQKvzZER7q2ZcRdICqMY6as4H/Ut/Y9PyEieRrZteaW3MSFRVh0R5BqWF\nZtTqzQ9MQOsGztBlkQIt/MCmsra3WX939nK3BChRyFGsPqdN7P8O1GCH6ZwT\nmzXGAiSrKKQxkW2yrqQMHk5y1d9Zvgchl5WiomazcVwDh5QdSibGqywO3nt3\nPZMo9o/AfE4XDnBtZowXU7Nr87hW2HPZE1fHeo9LYgeLboSNBEpTa+glWObL\nAAdUZBJlnBmP1Mewy1Sg7t0fsRhO+SZoKJtEBS0RLOWKpMDRm+NPNBeRin2Q\nGD1Ibp2oRmUv663xqAxO9yNfEd3M+Uxcg2dCHCkEhObZj6zM4JeLHc/KU9Gc\nFo8ZbUYytJayxJI7S4OVcAPQ40fwCHOHsPPM3MNmdTIkUEPTUMf4ATXvg5T+\nBUb9XqEtE3CcYq9Bx8hv4dUjSEq511OgP0i3UyCj8o+yQUW2B4E6rHyOzWeB\nVoDydsjaLhnDKfGkMKOVzKlacOgyQMqSo+/o4SkeJGPabrWIIyBhcTtrhzZQ\nfO+w\r\n=+dgJ\r\n-----END PGP SIGNATURE-----\r\n", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIC+05uBg7C7EvrXy4ROaXq5ISv4X9IzbsDlnkMTx9e8sAiEArW7Js1z+4/Db6k7IDaaJZejLdk0/NFfMGAaigF4AZ8Y=" + } + ] + }, + "maintainers": [ + { + "email": "andrew@wheream.io", + "name": "andrewbranch" + }, + { + "email": "mineyalc@microsoft.com", + "name": "minestarks" + }, + { + "email": "rbuckton@chronicles.org", + "name": "rbuckton" + }, + { + "email": "ncsander@indiana.edu", + "name": "sanders_n" + }, + { + "email": "shkamat@microsoft.com", + "name": "sheetalkamat" + }, + { + "email": "ts-npm-types@microsoft.com", + "name": "types" + }, + { + "email": "typescript@microsoft.com", + "name": "typescript-bot" + }, + { + "email": "wwigham@gmail.com", + "name": "weswigham" + } + ], + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/types-registry_0.1.485_1586290811604_0.4140547379449844" + }, + "_hasShrinkwrap": false, + "contributors": [] + }, + "0.1.486": { + "name": "types-registry", + "version": "0.1.486", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/Microsoft/types-publisher.git" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "MIT", + "typesPublisherContentHash": "cb6e490d86134b12a386e6c76a3ed066cc38938184004e85bf44d517ed2585ff", + "_id": "types-registry@0.1.486", + "dist": { + "integrity": "sha512-fqvtMlqF05aUL8eK0k1etmGuh3ZipLO9iGscMaQPPbZJS5KA4A243JUiVtR9I4zEq23iS/ZSdL+vZp1iw6FpvQ==", + "shasum": "68420ea3f866ae6abcaf9ee134a9ff95eba09e76", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.486.tgz", + "fileCount": 3, + "unpackedSize": 486615, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJemLc+CRA9TVsSAnZWagAAW/QP/066dSXvhKI90RswdSpd\nzqTYwCQIUSM4QajieoYrFJ76QAhcTSFtioHYjzWQURe1Ebr+vA/Hx/M6B9Ug\nZlDbfZFJqThd/jIVVaV88P8chdTi7kd3Wm+H9jUJ3jxiIip0fwMU2fkXr6M0\nImv+rXUlw5mfjVGCDVOQjWa9zr77o+x7NMTsk6xRpcemsrUpB/Fc3OSfwUiw\nqGmTEd3njhvqT3inLB/899SKLQnBFHBtIHu4X4xhwDAIcTQ7PHyD6f95qOCy\niFMIHy9dRmqkMyKjWTk3YA+YR656HWBpZbXtcoM2ybzJfcXAbarxVmHOdJQz\noZmGM6GYxPdmyvokY7QwMBFs1eJl3IGVekUpWOVnl/iB8N2Mnge0p4cXEr0u\ni7YFqlDE067FTyZANz3VuOJRVu71rv8YtWELsgyr+DIjmq5gVYDYFg6c7B9k\nOfJ4ilapF07G4kVz20mO2Q3eszLjdxX8YMBA8ivG6kzjg/FBmviMrNGHEaj4\nTPyF1LNYY8ZGlu2XAF3kZgLLUNaXsCJBwrh3tPlzbuguD38VjNCRV7NEJwZC\nKc35/SUu5OF96L0f9To+wFBVFx1PGplBPnerU919DHIRjKmed4dk+w8Tnzlu\nIH5CcEK9Ydp9O4vLYGJda4lutukXlpThbOaVSoRqs42F/d9pPiJxOMWdE6OX\nVC40\r\n=rNGG\r\n-----END PGP SIGNATURE-----\r\n", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEYCIQCZzBtMTKmcebwOiV9byKo+pp5poCRoBl+R7fVBczGF2AIhAMjcAhMSKXQjfVXro0v2wVydDowWLeGCMM8ESC2KYgNX" + } + ] + }, + "maintainers": [ + { + "email": "andrew@wheream.io", + "name": "andrewbranch" + }, + { + "email": "mineyalc@microsoft.com", + "name": "minestarks" + }, + { + "email": "orta.therox@gmail.com", + "name": "orta" + }, + { + "email": "rbuckton@chronicles.org", + "name": "rbuckton" + }, + { + "email": "ncsander@indiana.edu", + "name": "sanders_n" + }, + { + "email": "shkamat@microsoft.com", + "name": "sheetalkamat" + }, + { + "email": "ts-npm-types@microsoft.com", + "name": "types" + }, + { + "email": "typescript@microsoft.com", + "name": "typescript-bot" + }, + { + "email": "ortam@microsoft.com", + "name": "typescript-deploys" + }, + { + "email": "wwigham@gmail.com", + "name": "weswigham" + } + ], + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/types-registry_0.1.486_1587066686053_0.9985376380135198" + }, + "_hasShrinkwrap": false, + "contributors": [] + }, + "0.1.487": { + "name": "types-registry", + "version": "0.1.487", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/Microsoft/types-publisher.git" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "MIT", + "typesPublisherContentHash": "8318f6ef3a3c429a6b9b9b499fd5c1601e07b1aae6e510cc697c2d8024d51bf1", + "_id": "types-registry@0.1.487", + "dist": { + "integrity": "sha512-u/1EM+efWCwNOoI+zMnZmiY9ErEHKQZ9V+gLl9xuMOi6AdkynuBy9gBB3dZOppvIrexo9ZfQsfRj+aaghKLCfw==", + "shasum": "9d3caad0f753a52ffeeac6aca79e2d9d14baf3e5", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.487.tgz", + "fileCount": 3, + "unpackedSize": 486342, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJeogS6CRA9TVsSAnZWagAA9tsP/jzSHEmMlNT0QrVnQQWN\nzLrktVyUJJ5aqip7kQ3yCuBWa7guDvy+Yd7ocUACgWtsCvhIxqO16p4yMIwV\n1cIdME6A0PXBOefZOhVd2epnXpXEv2+LQNxx+/5X3MPH2JjLRugfr91EekhB\nIWljjy7iJ7D8sfeA0PYNYOYllwOMMmo4VjOwaKNbPdmNxSWCUicZa9jO3b/B\nL7Q+d7omOosHcBhrEkUPyLD+6CsDyTgAdANl1ZYaKs7IEsI1yLG4IATEk8iJ\n3yOa6XYwgRyBAZ69wj7s/omEg8Sohur13+5VuNw8fCua1YpSdGPHCtuzM+9/\nLZQrIp6oS3nZNBbE9ReaBjGVYWESgt2FcjmWKL79Cpd9mD7UTC911ZnuS6/M\nM9E2oqNIHWL7HE7ZOxpX/zegHyXqfqHYWmuK5gZSi0O1hb+A8dg1XVd9ndBL\nz1gJJmXQPxhCD/X24InmaUYsjGOYsYsrCwDkN+/QeiR0jCytl15YBSeOH78u\nCNGJ0fn1aCFuhhFE2O2BxuNjlDHguCh912sk/BEdUEK3PTo+cGwZwhsEbYei\nZLCGPVnSbp2qUqSCkjvhR5/fYgImU7sEwGuTKM05dkStInzc3wrNK9yChmzx\npa58OFlxWAuTQMQQu12P40qdN7fEpRUwMD6Og/qns4MeSOSJwfGtMXwk57pD\nUNX4\r\n=6KTS\r\n-----END PGP SIGNATURE-----\r\n", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIFhIlYivPNMV2rZTnUjwc3fejacFo8niq2EyhtfzYJAYAiEAo4uOKiBQpPuafmQftT2CdNiNSyD/IHGPi0wHmQBygAs=" + } + ] + }, + "maintainers": [ + { + "email": "andrew@wheream.io", + "name": "andrewbranch" + }, + { + "email": "mineyalc@microsoft.com", + "name": "minestarks" + }, + { + "email": "orta.therox@gmail.com", + "name": "orta" + }, + { + "email": "rbuckton@chronicles.org", + "name": "rbuckton" + }, + { + "email": "ncsander@indiana.edu", + "name": "sanders_n" + }, + { + "email": "shkamat@microsoft.com", + "name": "sheetalkamat" + }, + { + "email": "ts-npm-types@microsoft.com", + "name": "types" + }, + { + "email": "typescript@microsoft.com", + "name": "typescript-bot" + }, + { + "email": "ortam@microsoft.com", + "name": "typescript-deploys" + }, + { + "email": "wwigham@gmail.com", + "name": "weswigham" + } + ], + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/types-registry_0.1.487_1587676345900_0.44346349095750415" + }, + "_hasShrinkwrap": false, + "contributors": [] + }, + "0.1.488": { + "name": "types-registry", + "version": "0.1.488", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/Microsoft/types-publisher.git" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "MIT", + "typesPublisherContentHash": "7109df8e1f84e764511dad9ed55795a7512dc7567467ba6cc11ac6358effd053", + "_id": "types-registry@0.1.488", + "dist": { + "integrity": "sha512-AKL0mRLR4LWTRFOCulR6cp4DvzkTKVLjI232JhJZtt8RCnBv+HErkEV3zzOR5Pbb9fAmS5LipXNXa18hjddZvQ==", + "shasum": "c1b07f2b3f30fb95ec2c3af027c58914f7d7cda3", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.488.tgz", + "fileCount": 3, + "unpackedSize": 489785, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJeq0ATCRA9TVsSAnZWagAAbEgP/2qET/MtBjAPv/I7/Gm/\n5yiP4iezk6MJpDZiJftlQ873s/I9TsFK+xweepXF1WbgpEcDbGlO9d4ydM/b\nwa2CYR3fVP5kCGBOnk87IN6zwncxzdictwgSnqcxYFf4tquVuyi/GBNRRAWB\n9cthnBecOJRTCPfV8NBDsldSHGn7GTezdc8sRFbb+LjzL66Rbnz13CAvenko\nPm0zg1yWFDgX1jP3UVAHP2dGt9vBuPXUuRNw6Eb+lhuL6U+M2pWjZvlfNJ10\nTKLAP2Wptr/vZkYqM2//A+oiG466KabaXMunz3pHAx3QJTooyxIRff5bfTGA\nv52K0pkvkh9XC5X40nT/K1vwsZtCKchGc9VXHTMrNCeiOPT6geMHZlV8sCTa\nQYmYLmt26LcvOwQWyErq7Zc4QatC7TdPy7KtLOVI1fguJaEQ1pJ7FJ8YfzRY\ncFTaiBKH48xUKw+nHVBqdWn71a5TzAyfWxigm31+ricuDogSjcaCudnehXNE\nB50v7Yum4uPY2PswS4Ve+Viie9pN/nplFOTjq349GTwdqBI18GCVry7GURFa\nV7cLVmveqdQYrWCVO7KJRZzBy64jh7PqfzWkXsrgTdrpwNnmQRYSil53+PoC\nPYtqr9aeBoeeIP/lXSzzHrQKYUCCH+oGFogTIGD3z+/mdy/DT9TqkIZwxYRA\nDj5B\r\n=sh+i\r\n-----END PGP SIGNATURE-----\r\n", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEYCIQDHpPTUMRLTMLBb4EeNKoqrihXbTOPZYeGxIol+rYIKLAIhAO8IXPWIFY3SdYLax4XvxvAX4YL18nC5fHW0cM6Br0sz" + } + ] + }, + "maintainers": [ + { + "email": "andrew@wheream.io", + "name": "andrewbranch" + }, + { + "email": "mineyalc@microsoft.com", + "name": "minestarks" + }, + { + "email": "orta.therox@gmail.com", + "name": "orta" + }, + { + "email": "rbuckton@chronicles.org", + "name": "rbuckton" + }, + { + "email": "ncsander@indiana.edu", + "name": "sanders_n" + }, + { + "email": "shkamat@microsoft.com", + "name": "sheetalkamat" + }, + { + "email": "ts-npm-types@microsoft.com", + "name": "types" + }, + { + "email": "typescript@microsoft.com", + "name": "typescript-bot" + }, + { + "email": "ortam@microsoft.com", + "name": "typescript-deploys" + }, + { + "email": "wwigham@gmail.com", + "name": "weswigham" + } + ], + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/types-registry_0.1.488_1588281362220_0.6265188215785766" + }, + "_hasShrinkwrap": false, + "contributors": [] + }, + "0.1.489": { + "name": "types-registry", + "version": "0.1.489", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/Microsoft/types-publisher.git" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "MIT", + "typesPublisherContentHash": "89aaeed351e4e1213c37f8680a5d2ef5f632a8fd227a091741ec1ff5a13cebee", + "_id": "types-registry@0.1.489", + "dist": { + "integrity": "sha512-f2MD/49wMRCP1Y55SKaDrcMsDN+QS9kcWjAm+8+hnAtFfz3Fj3XuCCJWCX1sd3vf17phgSLvBkQaN1VUQBi2NQ==", + "shasum": "68bf842db1b2f2d4efd4013472109214dd6d468b", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.489.tgz", + "fileCount": 3, + "unpackedSize": 492063, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJetHtgCRA9TVsSAnZWagAAAXMP/3L0POrk/DVW6QEOhWcK\nSuGPtnXse+/3NGibc+dOV0vbxQtydx3VdHypCnMX/tHJ/GOBumCCAp89yX0h\nKOgRI5GE/q6J0cA+FLQ+i6iTNjmgNzQDh3eDeGVdn1zVAK3apNpzB9Bg8H4g\n79fojZtWT8h/b3weTslpbkY9DQBDzO/CzE30KEM3sW4KZYG0NWMzUIm3oaLS\njIyR06+pnQ+PQlNM6zIi3mg365esRLsxB1ZPa7EyUgr50E4iqHlJVZfABrTg\nrDGIEGHCu/5u+5ZXJcz7NQybJbqacpuqJ7cpacYWYkRjV1bT4ZtKxzTL+xYL\nNZChoXrDV04d1+tH9PSIBR3qLI/+w0oBkLUIIDiLvbrNMEUTijgIwylhK+OM\nhOcWmnSAXjYChi35FERZSpk5bjPYiTT846ZMflmNplbvarQ3dqOZBHlDRW0B\nacKMWngniw9IqQp/x8VPUIFA3fFF9HJS96zU5xB8Ga78UFyKaLSRvV0/ps9J\nYw+DF3tbuLFd/kc/6M4s4uaakkjzZS7X/5VAvj2PoiWNmc4aBEGjNtSBY78S\nuMUaRDbLHhlXRlgkjpsNJI1ch+c3gb80tqxdvQW5M7P6blRQI3TPVsV1i4r9\niKD9DKpiSTqtqJvYHLgbAYUjgzrcpn5pBXfYnD0sEUJDxZFTtQseH9S3eHvg\nFmuF\r\n=zDh2\r\n-----END PGP SIGNATURE-----\r\n", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEYCIQDDcFDa9n2h6LdfgLXejkd3YgOmR+tALE7fsmLryPGbcAIhAP+k9fKTBOsJS5J9MAX5yqVi2xNyOVPMhjlDkxJHUcWf" + } + ] + }, + "maintainers": [ + { + "email": "andrew@wheream.io", + "name": "andrewbranch" + }, + { + "email": "mineyalc@microsoft.com", + "name": "minestarks" + }, + { + "email": "orta.therox@gmail.com", + "name": "orta" + }, + { + "email": "rbuckton@chronicles.org", + "name": "rbuckton" + }, + { + "email": "ncsander@indiana.edu", + "name": "sanders_n" + }, + { + "email": "shkamat@microsoft.com", + "name": "sheetalkamat" + }, + { + "email": "ts-npm-types@microsoft.com", + "name": "types" + }, + { + "email": "typescript@microsoft.com", + "name": "typescript-bot" + }, + { + "email": "ortam@microsoft.com", + "name": "typescript-deploys" + }, + { + "email": "wwigham@gmail.com", + "name": "weswigham" + } + ], + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/types-registry_0.1.489_1588886367874_0.7568915697317617" + }, + "_hasShrinkwrap": false, + "contributors": [] + }, + "0.1.490": { + "name": "types-registry", + "version": "0.1.490", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/Microsoft/types-publisher.git" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "MIT", + "typesPublisherContentHash": "7bdaad66cfac908fd4e4a14285a3ada3c253ddb3e99fdb5397d1e09b62eb16b8", + "_id": "types-registry@0.1.490", + "dist": { + "integrity": "sha512-FMJB90DaWzQfj2WGbnOxfn3WVHFdGRUiiAKkllvx333avKqvB1otJbqfwkUwwioEABC+J1e9ILcfrFWhMzn5TQ==", + "shasum": "80bc29d22c246014ff248ef2f3b12866f9e8ee33", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.490.tgz", + "fileCount": 3, + "unpackedSize": 496523, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJevbaZCRA9TVsSAnZWagAAzTMQAKNDio0JNbjB7yAL8LGS\nfLip7OJrvZowydcm5vhcMR9cI7jCKM2pKnzmsp7OEB/ZK0bm9Q0Wi5zOqz8B\nUz6QzOKzLFlRCYqjy8zk8yo3En59nuKNtRYKpaIN0mEChhRxHcHOCOd3zLno\nYNUN8X0veljPq01ku5i6w+MlBrpHtcQAOOjpn0O0Y8JvrtygYfnKUs4l1pK2\npdmEXxV1xtBz2rOqSNxi2nXLz0oabd7fQ9VoPfWbdsF33vNXbwPor7JPvTYO\naKTdJAmllQutpluKnW3bN4GOsje3Z1lk6L4c97vThna4GtZBTUdfOZW1IcKR\nHVPmqb3w9soqYcGnFhodpjcAM+FYWXnQ53r8FPi3G7M82ZeiruxlHOHNNJsD\n/2AmNPSgLhR4vrkmYygZVZEdQyXfQAvcLLICPis0z+8QcF9fDyGMJEhIiyoS\nk9laRESDehnCdaQC5PxEvANptrCkOIT8bVXfzQVROqn3s/4E0dogSpOVRk3u\nfNJSZrfc87gmq4fKFeovhe89nYK4eXxRrbtO7EqPvFSO2CU6/nLLcf7Qwj2U\nZVExXS68gyPoX8whCoNM3CjnOwWHqTaV2ug/zGoKCGmDdgk8vNJb27Ja6leC\nrml8Jm8uj+FVx+gc3yMwBzHrDLpRWa6QRprKGbGqWtUN9qWbq9fRSVglMjv5\nPNxE\r\n=RReK\r\n-----END PGP SIGNATURE-----\r\n", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIDl3ew849y2779vFl8qBDYF9LSkgfftMx43r+hnSF9X2AiEAwS+5rJr8RcngBNH2nH69d7HqA5eGvEKobLU9AJmOuEo=" + } + ] + }, + "maintainers": [ + { + "email": "andrew@wheream.io", + "name": "andrewbranch" + }, + { + "email": "mineyalc@microsoft.com", + "name": "minestarks" + }, + { + "email": "orta.therox@gmail.com", + "name": "orta" + }, + { + "email": "rbuckton@chronicles.org", + "name": "rbuckton" + }, + { + "email": "ncsander@indiana.edu", + "name": "sanders_n" + }, + { + "email": "shkamat@microsoft.com", + "name": "sheetalkamat" + }, + { + "email": "ts-npm-types@microsoft.com", + "name": "types" + }, + { + "email": "typescript@microsoft.com", + "name": "typescript-bot" + }, + { + "email": "ortam@microsoft.com", + "name": "typescript-deploys" + }, + { + "email": "wwigham@gmail.com", + "name": "weswigham" + } + ], + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/types-registry_0.1.490_1589491352950_0.6698471182234467" + }, + "_hasShrinkwrap": false, + "contributors": [] + }, + "0.1.491": { + "name": "types-registry", + "version": "0.1.491", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/Microsoft/types-publisher.git" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "MIT", + "typesPublisherContentHash": "ac12cf9d5b94350b6395f35f273f880c5530638bdff8e16d2a9be6ae433220dd", + "_id": "types-registry@0.1.491", + "dist": { + "integrity": "sha512-sPAfVlWZCURikCHmBu6a3qODe6pUiZgBVkc0unUJdTDd3WbvoSU2+bZI6hssPBKLqDD7LdpaqE7oS9Um70mfWg==", + "shasum": "aa287592b3341cd492a98374ea62aaadbb55b7cb", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.491.tgz", + "fileCount": 3, + "unpackedSize": 566977, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJexveaCRA9TVsSAnZWagAAuT8P/1rCADvf6Go8HKneO2aw\nl+49/AvtXWlMcIDcwdD0sdb2SC0V1RjXGOzm0cQG7sSROfCIk67Ha7gE01Zf\nTzULjGgg8veMfo5zfjnem00YAMbrBM/QxlDhKdAtNcCHSXAfR/QlDcSk7qwy\n79CYX+IZAqG7nLySMqwMKCPedsuRZQHt1UG1Tca0oqEh2L7fuCM02vH6j7mO\ndKgKxtg0uHsQUAFzjs+ExdqRhD/2ImxCNgCGPE2XnubH/ViaJUupmJ6Ing8Z\n6KWclSuOrZfUp4foBgiBVjNtlfMywCyJf6BehtfXMDN3dOxSvqWqsntrD4/W\nYkHnUHEdtYpq3Rekppj8/mCMp+vlOoaV5sI7YMyz5ynEpbV/GaY5DBYEr8I5\nCsCFuhOnPfuH4rszzQ1o21nfCVDfsdvw+gO8PUhwQEN5unOz2J/0V6roc97j\njaFGhQqjh8uHyxfIpn8yOQ+eFL1bfiTxBlbKHbROchVYGidMaqEChBMrC2XF\nebSnW3yN0eT8rC25EMijOX3XVdig3UkbdITzxNSBSvPmesFbIptq409mjTYm\nwc1r/HEtocA8oIVkiN8VmtuZZ3M3cZ2nkgfIzKFgxG81JWrDAXLu04MS+n2F\nICKghrqHvQGNgNmWteLacg//Xl4RmGunZNWAHT4EQsIKOVUTeJ3NqMmkTlxY\nKXyO\r\n=Xvbv\r\n-----END PGP SIGNATURE-----\r\n", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEQCIG5s80k7QA1xR8g6Ed+MmtTK4BbH9PPF3DyEVbBwjRGAAiAJxSs9ZxmdHsdNFRDZQg4xlYpcMCr464f2AkNMlDTTRg==" + } + ] + }, + "maintainers": [ + { + "email": "andrew@wheream.io", + "name": "andrewbranch" + }, + { + "email": "mineyalc@microsoft.com", + "name": "minestarks" + }, + { + "email": "orta.therox@gmail.com", + "name": "orta" + }, + { + "email": "rbuckton@chronicles.org", + "name": "rbuckton" + }, + { + "email": "ncsander@indiana.edu", + "name": "sanders_n" + }, + { + "email": "shkamat@microsoft.com", + "name": "sheetalkamat" + }, + { + "email": "ts-npm-types@microsoft.com", + "name": "types" + }, + { + "email": "typescript@microsoft.com", + "name": "typescript-bot" + }, + { + "email": "ortam@microsoft.com", + "name": "typescript-deploys" + }, + { + "email": "wwigham@gmail.com", + "name": "weswigham" + } + ], + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/types-registry_0.1.491_1590097818170_0.30979219691870363" + }, + "_hasShrinkwrap": false, + "contributors": [] + }, + "0.1.492": { + "name": "types-registry", + "version": "0.1.492", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/Microsoft/types-publisher.git" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "MIT", + "typesPublisherContentHash": "5aec14a9d6e9f53285f0085899a79260ce2e21b1622e7a080ed3f07ef62a83ca", + "_id": "types-registry@0.1.492", + "dist": { + "integrity": "sha512-Gs3a1Sm/YZI81GGDRt7QB321FApT3/eXKSgqAcA4XY2K+0ird2KKs963CKe2RzWRHC0cUrh/MowLTaYCh4feyw==", + "shasum": "c48bbf2aa8c5a7f5ea0e0d149bf83e23af5c33aa", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.492.tgz", + "fileCount": 3, + "unpackedSize": 569430, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJe0DXFCRA9TVsSAnZWagAA+wsP/3LZVSlpnk8U1gR4Q73h\nxQmfOSlBlnHEJLzL8qKAiSKYrkiIxqRRzNmqYiiirdNi3hXk/V0li7RrXHe1\n0YLqvQIXONppMV7njEzoT23xhflxyHzIFGZ5/njBXXsENLKuBo0F//1U1ZGX\nVh6wI6WDMbW79nV5xlijcWiORQE7/vxNdwUnVOwalRTUahTu3RKWyYx6gc9U\nL4cFLS7a1mGdfr8sNKdPmyFNkmG3idBJTxYf/1eU/Sco/JQ43jtW16H1/KMN\niwvyUo3B9wuInRodb0fLvOB4Oc5fT+TqalSVC65lf9P1oJz/O7ydZQ8NLUc+\nuT1Wmx4md7oRGQ5JpaPHKGVX8DVFwQix5plH+De8M06MtiVJvrN+xtZDkaSQ\nLhBrQABG/c2e4EtUnqjryxuq6CvPQGAX6n7stjfQupAJ/LmzWrToAlj0rea+\nxT6C1oYo2a1skOOk/out9AmspItuUrpGJDE7DhAASWPEhZ2L2bIs/kX2kO6n\nqtY3C7MsdMtsYsiqGy4RU/R89dmgWNaOnNrtGRDFr6AMHP7sD6zBWaigaBwR\nsa7WMt4ymcxJnHEiGOqq1YPpnBrNsuTD2lVxEEuM5PkXQYRPKy1cA4AACqJ5\nawDD8HnZul886Mkq066Mdn8Yv9BhN6hUwOjvgIEdqvy+RZcCFn6tB0pGM9JE\nqZRd\r\n=t1mH\r\n-----END PGP SIGNATURE-----\r\n", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEYCIQCRO6/hJtkIJie8esjQdN5th21letnqVf7DQYFIDUkDPQIhAInWJXhloIvkO8WlfqWXh2E6tPtky8vg/mYag7tsyEwU" + } + ] + }, + "maintainers": [ + { + "email": "andrew@wheream.io", + "name": "andrewbranch" + }, + { + "email": "mineyalc@microsoft.com", + "name": "minestarks" + }, + { + "email": "orta.therox@gmail.com", + "name": "orta" + }, + { + "email": "rbuckton@chronicles.org", + "name": "rbuckton" + }, + { + "email": "ncsander@indiana.edu", + "name": "sanders_n" + }, + { + "email": "shkamat@microsoft.com", + "name": "sheetalkamat" + }, + { + "email": "ts-npm-types@microsoft.com", + "name": "types" + }, + { + "email": "typescript@microsoft.com", + "name": "typescript-bot" + }, + { + "email": "ortam@microsoft.com", + "name": "typescript-deploys" + }, + { + "email": "wwigham@gmail.com", + "name": "weswigham" + } + ], + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/types-registry_0.1.492_1590703556714_0.8169493757814783" + }, + "_hasShrinkwrap": false, + "contributors": [] + }, + "0.1.493": { + "name": "types-registry", + "version": "0.1.493", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/Microsoft/types-publisher.git" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "MIT", + "typesPublisherContentHash": "9f0231c7f09ae3e3832c653e182a2ce8155d0794c1c6db31f882173ba0499f03", + "_id": "types-registry@0.1.493", + "dist": { + "integrity": "sha512-cp5hpzGbDHcv6omU4RSljiO6AAVk+yy/dKHqDF2rU0slQxuAQKS/cPN0besv0YthL6sNbgbh1/8A9xzAF08L0A==", + "shasum": "60cec3893f5b56882281ed4030aa3c9dd247f659", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.493.tgz", + "fileCount": 3, + "unpackedSize": 572458, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJe2XONCRA9TVsSAnZWagAAU2oQAIbAgjf0XTxh/TLLg6TA\nSzaXiXDcQkdAXfkwg12ecSKlObWBGtJNl7m4BQodO6EM6zv3KaxenNoIwa5F\nx/22kGZjg+84dWRrTTP5WsGCBRn7C9HrWiyWJd41yPJ00VqNCbdglIywhUTu\nZF7lQ0O5qBU1dFd2TEBQTdswuBQjVMVGkAMBIjnv6Vd6pNnd0JdBUqHhhFgB\nAVT37nB6uUhWpMM0XVLLf0T5IqK0O9f9/fXxXN/14nngL7b3EHtJ1w9j4tqm\no7timqMnvyWloAqPkQwugPcQOh1tClrv2QSwufAV1QPWE8Q0q9QHemw1rnw5\npA3BLcozRLt+xOd3q0mwEla7YCy/OjLMKZyKaFseSQpCx3hK/aKDUVX3axM1\nEn1esRTBFOFBWR4gQ8NVF+YExawN1psyHQ3N/2JbHOEulxLMzhG+cRdESEnA\n7k6UFAu8cqcfyBo58Bkg0z/D60EMmav5YLbxkF1Ntxm48nJhQ6SS4CAw7KHP\nTv8Vcf1m5PEkmeaPr+HsXTGnENwiVu7jf38llufrai29XJkiJ/E53DkF6F6r\n4JzYorZ3FLc7liCuK/OaeiqbcDx9Vl79N7lusSJDsLofYah/pJPL07zKVyaI\nC34ZdAUUwIdFbASRdJMXxKKduMWO6f5RJffYtCWG4b8WRwOoqmvY9uWk3/HN\nDzbM\r\n=c2n7\r\n-----END PGP SIGNATURE-----\r\n", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEYCIQD/OF62rfWSd5kBrBeWjMwX2weYB67x87aTpzRSCmVzGwIhAL+xmG6GrqzgIrR5/ydGKcjdp/Hl9pidtF2xmDgDTePi" + } + ] + }, + "maintainers": [ + { + "email": "andrew@wheream.io", + "name": "andrewbranch" + }, + { + "email": "mineyalc@microsoft.com", + "name": "minestarks" + }, + { + "email": "orta.therox@gmail.com", + "name": "orta" + }, + { + "email": "rbuckton@chronicles.org", + "name": "rbuckton" + }, + { + "email": "ncsander@indiana.edu", + "name": "sanders_n" + }, + { + "email": "shkamat@microsoft.com", + "name": "sheetalkamat" + }, + { + "email": "ts-npm-types@microsoft.com", + "name": "types" + }, + { + "email": "typescript@microsoft.com", + "name": "typescript-bot" + }, + { + "email": "ortam@microsoft.com", + "name": "typescript-deploys" + }, + { + "email": "wwigham@gmail.com", + "name": "weswigham" + } + ], + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/types-registry_0.1.493_1591309194471_0.1599726807223918" + }, + "_hasShrinkwrap": false, + "contributors": [] + }, + "0.1.494": { + "name": "types-registry", + "version": "0.1.494", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/Microsoft/types-publisher.git" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "MIT", + "typesPublisherContentHash": "cfb081105d2789bfcbf9ee63fd37655907c03be58a2f9b52f7d87b796157fe36", + "_id": "types-registry@0.1.494", + "dist": { + "integrity": "sha512-25mKG3QZwQIfXj0vVo9q9ztca9En5sfGJzOd8XTu9b1Tx+56Ct+j8zrpewMuR3Dtwv2882A2FYPLQ5N0+Cyxvw==", + "shasum": "213d83d897cf71bd7f452ca2785aa012a8de623f", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.494.tgz", + "fileCount": 3, + "unpackedSize": 577607, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJe4q+9CRA9TVsSAnZWagAAr4wP/i54RlG8eFr8QH2Kqr26\nXxFj6nv6AQzTQ269sZ5zfib8uwGpAz91L9vLwqAhCtr9WIbh+5L79cAVPsYR\nKU8WcHGOJQlvbrg0Ym3PVC0E5cMjz7FvUrt1yxP032MykARtbmvwtPgcxn5Z\n7YbGBpT9Hfp2YM8ty7iujjhChKM3FHAs5HvJ+PTrlotdRNw1FqQEyEU7a9Fa\noz00cAheWfNy4iz9a4ftrC5OyC6RKUU7bIn900zRO/n5brxLFM9ZLWvuVsKS\nOvIudrlj+dcfVSRgS9Cx6rKN2oqImTdqJAtUdxpd/UQgA5PXYTPMfg1EQd4M\nVMXAJiyGAds62V+WonC8kyirRa929iQiEdWjCRQdyf0GISzogFz0JYRiiEu/\nDVv5KvowCeBKcJuSBt2P2nvR1ljzvjt0v2Hl95gYN2xg2vnnz8uKZ1KQrFIi\nMv9BtmFqcNVT0M/4KXr3H6h5E+QRhjS74q6eTdeHMrWNfjN59UZQhBYKDUnz\nVbH87U0VKf7kkQAkT+bNGRndT3MIymCs2GXbqYSkp6Xf0YDu3VI71ikb4VAZ\nIGDDOAgN/ciJfez7oTkwSScKoDhRN5kD4vuXw3+s0wHa9FleTNbLLlpL43sM\n9wqiM+TaYxFLIiUbe2r3viZBWmvn4nIIQr4UPdrMRXK1rs/7p8VTnqA/m/sT\nW1zw\r\n=5ZbI\r\n-----END PGP SIGNATURE-----\r\n", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIQC9UkRdRPl5GtNaLRwI99yBxNZ+BPYVItQB4PK/0SqY8gIgHz+eVUSLAHI23D5wOP9hLUczL6GNqRKnbMYDn9IG3Dk=" + } + ] + }, + "maintainers": [ + { + "email": "andrew@wheream.io", + "name": "andrewbranch" + }, + { + "email": "mineyalc@microsoft.com", + "name": "minestarks" + }, + { + "email": "orta.therox@gmail.com", + "name": "orta" + }, + { + "email": "rbuckton@chronicles.org", + "name": "rbuckton" + }, + { + "email": "ncsander@indiana.edu", + "name": "sanders_n" + }, + { + "email": "shkamat@microsoft.com", + "name": "sheetalkamat" + }, + { + "email": "ts-npm-types@microsoft.com", + "name": "types" + }, + { + "email": "typescript@microsoft.com", + "name": "typescript-bot" + }, + { + "email": "ortam@microsoft.com", + "name": "typescript-deploys" + }, + { + "email": "wwigham@gmail.com", + "name": "weswigham" + } + ], + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/types-registry_0.1.494_1591914426617_0.38025716337555715" + }, + "_hasShrinkwrap": false, + "contributors": [] + }, + "0.1.495": { + "name": "types-registry", + "version": "0.1.495", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/Microsoft/types-publisher.git" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "MIT", + "typesPublisherContentHash": "19f60f7e620b1290bfbd1ff9042b31002eefdf0e5aae58cd008c5daa8763df23", + "_id": "types-registry@0.1.495", + "dist": { + "integrity": "sha512-OCBxhaNU5jqk2CDxv40Gge/1bJ/FGEAvG5rjM/v/Q2Odp5riUxXr/VtjgSZ7juXTi72uSzx+6YdZJKu74uhaww==", + "shasum": "da36e10782fc85f6d78897eaf1bb1452097ec067", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.495.tgz", + "fileCount": 3, + "unpackedSize": 580112, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJe6+9fCRA9TVsSAnZWagAAXl8P/Rc5a7CpconMJEUVuFds\n2EwRcAvUd0IsGT/DPvmcKjI6vqOfWRexXN8eKWlCshpZQz3RCdIFk1qO/46R\nWAb3ZuHiTJjH123BT246ZlzMg1ntIs0UybNRwImHX9vPSx09demysJMtoq5B\nGrigpykcQdjkC/f1knMA/mDVufJULsM6B8UMCtqngWD3vB08k45WfhTolg0K\n+TFmhrFjBurI+By0eqUUISrvXG89Z3dQKH8Y1igRweof3L2SFVaAuEq404qi\nV/QjMBpUhDrPByz9colaaA7YKisgtWqWPeeUOs7FtZDh6LS/9VlIJr56me5I\ncggNfeDaYOcFDLMwNhon9vsXE/UnCuu6tipKCNC5qdKNpB3N4AU+2c36YPDU\n5UxMNh90my4uyWA67QtwkZw7iIH5NVMoxxPkuyAwNLKGJM675h+EuWZJortk\nDPkxrJPidw0Z9soEUfP7Cm+MG1adXfIy1XBhLvy0/D4EoFpibfW7QAESho8B\nWNhmM5Orsq4As9bQ7wfw3RkhQRVkDuQPM8qItZRgPsge3NynY2xY2obUxQZK\nKhMu+aap9ky7bvUV+0u9W9N5cQmPF2+7fs42OXhEiooXIUKOuAXkuwIpG0O6\nX47aeg3jLzWpjPOmivqVLWRIr3MEULNWPNmGlStv//LWr8Eo2GXNCAKSuswb\n8Gf5\r\n=Yyqd\r\n-----END PGP SIGNATURE-----\r\n", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEQCIEvRLFjAiZSuE93nV/ihelXKDiVEYW9FinoNg70rSEvHAiBb8zqFv9EnEOqH/frw/PN/4/IFCGu1dodJmv1D6xYXYw==" + } + ] + }, + "maintainers": [ + { + "email": "andrew@wheream.io", + "name": "andrewbranch" + }, + { + "email": "mineyalc@microsoft.com", + "name": "minestarks" + }, + { + "email": "orta.therox@gmail.com", + "name": "orta" + }, + { + "email": "rbuckton@chronicles.org", + "name": "rbuckton" + }, + { + "email": "ncsander@indiana.edu", + "name": "sanders_n" + }, + { + "email": "shkamat@microsoft.com", + "name": "sheetalkamat" + }, + { + "email": "ts-npm-types@microsoft.com", + "name": "types" + }, + { + "email": "typescript@microsoft.com", + "name": "typescript-bot" + }, + { + "email": "ortam@microsoft.com", + "name": "typescript-deploys" + }, + { + "email": "wwigham@gmail.com", + "name": "weswigham" + } + ], + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/types-registry_0.1.495_1592520542485_0.5490273084398654" + }, + "_hasShrinkwrap": false, + "contributors": [] + }, + "0.1.496": { + "name": "types-registry", + "version": "0.1.496", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/Microsoft/types-publisher.git" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "MIT", + "typesPublisherContentHash": "ceabfb25ee5583aa92526f75859b5626061d702707ca7a2a09668d8aa858f0fa", + "_id": "types-registry@0.1.496", + "dist": { + "integrity": "sha512-/XFvisATlYPL8WF+z4koI25V1qLWxB7iQfH3GChriDJ37db5L16uyXJOIfZqu/HbAOBVJmNzbCod0HfhQnq2zw==", + "shasum": "1a9f5879fe46da144104e1e668624c93560ff66f", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.496.tgz", + "fileCount": 3, + "unpackedSize": 584356, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJe9SySCRA9TVsSAnZWagAAucgP+QGTOkunzAQ7AItMN2aC\nUsduMj4yXReeRAZdrJmdbaERaRQaBIh4Ie27+QPfgAC8qf52MvxgA+a+3zlE\nG7AU5JOOgnhWRRQs4XAmgirpJ8Fv1YSBj38cgXvyL7x0xe2bAGLyE367JgPW\nEboR3zZS3hj5EL2R5eUjEKV9Gfpbnxxk6Q8F5YWGEuKksewKJVWUAwbxpF5R\n+YdMbCAmFv3vRbASZMTfXQ7tL20As1YxivxLA+pWCXO0q2X1kfxZXk7h8gHs\nn7njiB+f5hgNoIqWfonktVbDG5kBC7SKNp1oNELblEi97T9Tq5UKx2zBuqV+\nIIp/9dxR784hKV1UsPqvTwcQ6dCpeBYSTq9K5uxbvmXKY0ydDDpjuoaKQB9l\nQ9qF+hnHGo2Jil9tHPRCxYnIS5rESb8UJCYbuTPf39QD7pZa8cn5vzIT0BBX\nGMhCyZXmU/+0tK/O1iU2osnzLeeLRz2P+a7g8lo6smWNF3412XQAi2AM7Tpu\nJr5nmQgQ+RwpURMN27MggECkX8trPFWLcryqa8qh4kkH94siA+panlY+VFWC\nKKZ4VoVSDLMUladApV2ZJXO2EftkVmuLXtLMnBp6NLK8sFkTfiAuI6u/ZcEY\nvewrX691Uomo0dhHw91b2BE4dL5QiRa3+fthL/TEUK9YxGr9j7Ac4IHa7nSY\n1ysl\r\n=Gohj\r\n-----END PGP SIGNATURE-----\r\n", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEYCIQDMWHHizLcmHLeW5dJoeLvysH3OQxMDyGvdYKWiWIJICwIhAPnStYq7uxAcuTI8Q6AMmJAEU5OOcR9uZmoYWMRyifj0" + } + ] + }, + "maintainers": [ + { + "email": "andrew@wheream.io", + "name": "andrewbranch" + }, + { + "email": "mineyalc@microsoft.com", + "name": "minestarks" + }, + { + "email": "orta.therox@gmail.com", + "name": "orta" + }, + { + "email": "rbuckton@chronicles.org", + "name": "rbuckton" + }, + { + "email": "ncsander@indiana.edu", + "name": "sanders_n" + }, + { + "email": "shkamat@microsoft.com", + "name": "sheetalkamat" + }, + { + "email": "ts-npm-types@microsoft.com", + "name": "types" + }, + { + "email": "typescript@microsoft.com", + "name": "typescript-bot" + }, + { + "email": "ortam@microsoft.com", + "name": "typescript-deploys" + }, + { + "email": "wwigham@gmail.com", + "name": "weswigham" + } + ], + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/types-registry_0.1.496_1593126033698_0.42978739539736277" + }, + "_hasShrinkwrap": false, + "contributors": [] + }, + "0.1.497": { + "name": "types-registry", + "version": "0.1.497", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/Microsoft/types-publisher.git" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "MIT", + "typesPublisherContentHash": "d920760316816dda8d1138e7aa24908736383fec1f97dbdd918d466f2720bd5f", + "_id": "types-registry@0.1.497", + "dist": { + "integrity": "sha512-5fwwIk26O8Hud5Uy2jGmE1xrxSnuBb70xlsRs+11zCoTHrmF8puCuoCiGit+p7puJDff37pc9teZki3LDJGn9Q==", + "shasum": "0d8aa2c1b474912df33da22d4b6e8289df953f75", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.497.tgz", + "fileCount": 3, + "unpackedSize": 585222, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJe/mzkCRA9TVsSAnZWagAAhZUP/j7KE0iBUULYvgd/61IG\nRQLls5bRWHepUuLRwDJlIoDY/aTaCSTTtG2a2+ZHL+oTPDDGSixCxVae2o2G\n47MSN6jbbThBLSwkr6X6HooMvCDKq0GhFBfIK4JQC5V7cB2XD67ZX+XRd7w+\noui7QymB8N5jQGHIVSxVeebbEQaRdpx/gQP7wywE0gX4QXuMi3R9qPEOIFMf\nF7w95+PhwdNcxkG0MmQSeuuYd8K6UhiESMsjkypGcVdY9I5SeYXDzGqHc+IL\nqjoVS2zZlwasd11rDIG9bIXobqyeQfS+LgAfSFQgl4g7rl+Xg2DER4eLzFuK\nSA2UAcNOrWmLGNjLqba9Dv1Zc5KnV9Scp0dxKQtp70D4JH2Ht4hA8GumI04H\nOAU+oqFCgTeG+upUj1LoeU/g+eKcfDyzUnBE5oS6BbjdWAghFz0IGkNDfNSL\nVMtLX6ZC+QdD5UAqE0LUo4amPBjoVovus3LaSLh3oWuD4Cy16f9/ywlyJb9O\nWsnXdiBzU0dBfhnbmJmoB6XsGQ8PbgPV7Slu9dq9e5nxwW3zQERH0fjjLxJt\nzmkr/GO9MfndYgXwlI3I/HZss+FZEeM/TaVdqMwaug4DErQh6HxaojhGqQ16\n6WTfjGSkO074XKe6TcEplKOuHK9J3Molh4iA6gE7fl98rT/c/S4EwHCPaCVS\n8CR9\r\n=YRmy\r\n-----END PGP SIGNATURE-----\r\n", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIQCuElSpws19mJ4hADg/3VAFPgTkQFsLWnN03tCXNTvorQIgO0q0IaoraoOow0fy9P2vQP7KP77n4OvDj6OhclpWyCU=" + } + ] + }, + "maintainers": [ + { + "email": "andrew@wheream.io", + "name": "andrewbranch" + }, + { + "email": "mineyalc@microsoft.com", + "name": "minestarks" + }, + { + "email": "orta.therox@gmail.com", + "name": "orta" + }, + { + "email": "rbuckton@chronicles.org", + "name": "rbuckton" + }, + { + "email": "ncsander@indiana.edu", + "name": "sanders_n" + }, + { + "email": "shkamat@microsoft.com", + "name": "sheetalkamat" + }, + { + "email": "ts-npm-types@microsoft.com", + "name": "types" + }, + { + "email": "typescript@microsoft.com", + "name": "typescript-bot" + }, + { + "email": "ortam@microsoft.com", + "name": "typescript-deploys" + }, + { + "email": "wwigham@gmail.com", + "name": "weswigham" + } + ], + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/types-registry_0.1.497_1593732323435_0.7856303616237958" + }, + "_hasShrinkwrap": false, + "contributors": [] + }, + "0.1.498": { + "name": "types-registry", + "version": "0.1.498", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/Microsoft/types-publisher.git" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "MIT", + "typesPublisherContentHash": "b7945b2fe528b40d7560e8e0ee759d7de2540d82f99f0c78a8698f68c2fa3240", + "_id": "types-registry@0.1.498", + "dist": { + "integrity": "sha512-jKPsU3MsgC7lzdELCx18/PUCxX4bNv1YDHDxW405JhrD0r3RRAuTEjy0Qan7Ex/i78jFPWZ0bdIU87B5yrz0xA==", + "shasum": "49fbc8a707746cbae320356cc9c7164779f0f9a5", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.498.tgz", + "fileCount": 3, + "unpackedSize": 587478, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJfB65GCRA9TVsSAnZWagAA0aIP/27rUywvG91Ae7Bj8JfI\nOiyxJpXn3WsY4QxUsJLI/UI15MQHrdLXbvs8tMQiyyJo3IYt/4QXBYh0VlnH\nf/JTU8+loLfEfM9rmelxgPj1Cb9OdMATHPepGzu/etoaLvCarP9dqdpo3SDR\nZNXVCzUXTGARqDrOQUvzMG3+5EdwB3twmw0iZfOsZtDELWxEQ+9Go2u31pi6\nq1t8gNWv/pcdGU/A3tzIrfkQNogWVI9b8jrZQCw8EixSUoemjh++bDEPavqN\nTQPIghwvOidK3FlkiL/dC7EadAlhDZW2RzqIB0cPLYlQzDj+6/epnTyJRiaV\n2k/feWT39J4bO7F2cUZtp4lpGQULxuPOpc4a4N+3sdoK/T2L75QqDe1PCyWg\nYKkyw4Glk59pHIV9jySwKHviTAiudzSUQX2HYUym9WsnigRmwjfENEkOgtTK\n2yrJdYOIgjoOzA7og8JnmPSwi24iVJlUSNntKr3ZkrytnVjxSdkBs8J5VaJ+\nNINtx00O/Yn0xS/Th+pJSmlRGcmpgDZ49DLJ9WzSksAS4/kb4xfYYcfV67Qe\nUhwfFqS9TTTPoNZMZBfW2yxx+0k2SB07XSpOEiGdI3MKjREmfqpFcg/HJf6Y\n/1K/IfUT8hw+WNTk7mrBNhPlMGsZ02uS1pdxVwkMY0Ha/lmTKTolZnpeRRZe\n9dyO\r\n=Dhv4\r\n-----END PGP SIGNATURE-----\r\n", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIQD2vRG5AE9KvcMB9DBA5M9kMMC6frYBy41wlRGEp/3mIgIgIxf9+KEhfeYv2O40zrfG8EwfNmaNHms6kG5NhXlwSSE=" + } + ] + }, + "maintainers": [ + { + "email": "andrew@wheream.io", + "name": "andrewbranch" + }, + { + "email": "mineyalc@microsoft.com", + "name": "minestarks" + }, + { + "email": "orta.therox@gmail.com", + "name": "orta" + }, + { + "email": "rbuckton@chronicles.org", + "name": "rbuckton" + }, + { + "email": "ncsander@indiana.edu", + "name": "sanders_n" + }, + { + "email": "shkamat@microsoft.com", + "name": "sheetalkamat" + }, + { + "email": "ts-npm-types@microsoft.com", + "name": "types" + }, + { + "email": "typescript@microsoft.com", + "name": "typescript-bot" + }, + { + "email": "ortam@microsoft.com", + "name": "typescript-deploys" + }, + { + "email": "wwigham@gmail.com", + "name": "weswigham" + } + ], + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/types-registry_0.1.498_1594338885941_0.9644202766516621" + }, + "_hasShrinkwrap": false, + "contributors": [] + }, + "0.1.499": { + "name": "types-registry", + "version": "0.1.499", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/Microsoft/types-publisher.git" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "MIT", + "typesPublisherContentHash": "c68ffdcc3de5317332d8ed1f1bd07457939f3ef0c59f92ffed065783e96ffab2", + "_id": "types-registry@0.1.499", + "dist": { + "integrity": "sha512-iCVK9phqJdbg7JnUKfK2iO6xtdvU93JOW4WZ/a47wTVV4vI8Po1zgdwTZd891R4L5PfTD25HKHFQrWa6tjwqXw==", + "shasum": "4dd084fa0d82755c952e3e0e2e00bc157496f831", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.499.tgz", + "fileCount": 3, + "unpackedSize": 589913, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJfEOm7CRA9TVsSAnZWagAA9KMP/RBWEem2np90S5fnBig9\nenGa/w/YpqbUKaVCv8lWNCzUVCM+Z/Xh16AgavaqX8zNhwrQOughUfOU6sKX\n8UNQfeEaO4r7M4Re8dmapZpJB49WJC0BeQzGcBZTUTs2Wv/LjxnTwYE/Qqj1\nEPJyJ7cl7bWbP0XAAbv8xFEh/hEfgf0DmX6HhOuqCGu6WOjZEWpurt+xW1LW\n/gd4H3uLjmcdl1EsWhWgM4ADb8V3qmK5erfThbAQNHH5WLq1cssUEYDtrN82\nBu6n0HC3CS5RlLnMGTf9j4sv/vBztrHw+WL7uaCjQYL3TM5fCdYcMOAVM5nO\nhQEnpPF9EbyRW56YtfoTrsj+Jj3hfXAzilF4YVu0dDG2PSXUQEWJvpVaubkV\nPf3uPxv8qRk5mWHh4PV9dRHwiWXlFca+BI371XaprNHnWzkWmdNp7uxbwW86\na20Gk0piirv1sufm7fJe3JYHwFopHcvjryqrZ8rwfNjaQ3Lens9WgUIYtrDN\nLdqU2YRc31EaEaUZb+Gg7bv783FHpsTt/OB28lYSJbOi0P4toY/R6/lp7MH6\nPhwqeVNP1WTBzR1rQs55lPSXvGtEAa4w05vksplv29tAhjvSW8lthxsVxsiM\nayKv7QQmb+w3waaMVNCXDgTSnDdcFHc1RRkgckCR9aHSSl9ZNvM0YReO8wFc\n9Cph\r\n=wO63\r\n-----END PGP SIGNATURE-----\r\n", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEQCICuv0FpgiwOYrUONP6vJaIiuNSbcCaz+MI7QpxqJTjdXAiAsGMvab/24y2c1SWwCbkT/WhTm711TAkFuu5ZoPgmyXg==" + } + ] + }, + "maintainers": [ + { + "email": "andrew@wheream.io", + "name": "andrewbranch" + }, + { + "email": "mineyalc@microsoft.com", + "name": "minestarks" + }, + { + "email": "orta.therox@gmail.com", + "name": "orta" + }, + { + "email": "rbuckton@chronicles.org", + "name": "rbuckton" + }, + { + "email": "ncsander@indiana.edu", + "name": "sanders_n" + }, + { + "email": "shkamat@microsoft.com", + "name": "sheetalkamat" + }, + { + "email": "ts-npm-types@microsoft.com", + "name": "types" + }, + { + "email": "typescript@microsoft.com", + "name": "typescript-bot" + }, + { + "email": "ortam@microsoft.com", + "name": "typescript-deploys" + }, + { + "email": "wwigham@gmail.com", + "name": "weswigham" + } + ], + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/types-registry_0.1.499_1594943931016_0.9163073798994736" + }, + "_hasShrinkwrap": false, + "contributors": [] + }, + "0.1.500": { + "name": "types-registry", + "version": "0.1.500", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/Microsoft/types-publisher.git" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "MIT", + "typesPublisherContentHash": "0caba3a2451872471bc0eccf0ee05ede56e0bee210221ab82dd6e3ab2c782169", + "_id": "types-registry@0.1.500", + "dist": { + "integrity": "sha512-cTZD4CYRI+Rxn8YSyW1VAoH/YDUrfFSwD8YHPZCqgA31kmQtkyRvZnKfKPupv6rdqp/yS6cHkf8q5u7hfahtFw==", + "shasum": "b8bb448d2693a811a2bb215a28b2202a81d0b54b", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.500.tgz", + "fileCount": 3, + "unpackedSize": 591839, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJfGiv+CRA9TVsSAnZWagAAfrEP/0AeZSmu80/SbIfWMkwI\nCwNeuirtj6oYdncoNG2ldnwNniKMfdr6UVCtWXaIDrCwDvfg9dkxPcNDwVKX\nmLO6Gi6cG3Fi3YUoYipUUp168avd3ie9FlgAcKc/ZlCVPvqQ8mCEDUpkEI0J\n1+fkMZiWC6dxdPACh+S28mFZGO/aCLft8IFYLc5kY1+axbVLpXJ8UDQcO0nD\nf5gdfquT9ApWUs1x4cvzbkHUYEs2qYPvU0lbKnxBe09VLc/u2m45nWx4NhrQ\n8mR/9r9A53nEGTphegSLm9QEv4PgH1DaaLAvmcbFsoGZYWfghdRAdO1Y1D/i\nbqWsRe+m3vKj/+E8liEYNaHdECG9SQMlXG2qyZXjcdvUtB1ceI29h9KjIIkO\n+S5Jn3yqgEx5HCwyWZJBM3dlb38OKUgtobAc1feNQ51ZpAwApYdzEVekeKTf\nvZ/RrozlvA6pMdiX8Mdf58DWZ2AP7yRBj8PF7E/iatXe+oU2dZuadGgBiQWk\nyY+/pOeIXIi3sF0+h3iiqOYXiUuqXjvGapFxoO4l7dOQBw88JFrPhyn8bptG\nEPER+yC6yA6LkjCVRx33K65dl2+Q0vaGHIqh6aUx0e8o4siBuHBor/f1oQa+\n5fLcp7/8vcaRaryCuWTeIHIYK0uZAmCyOZBdxJ/caqnUBO7V2GZYZdVGjgHO\nX1Lm\r\n=H6OV\r\n-----END PGP SIGNATURE-----\r\n", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEQCIH7sXCtnJyGAZVf20x7MzU5kHbd5AGIlsy/dtc34UV4DAiBtPNLdAVLuIO9TJuaL92TPJFCeOUvxtLXH+8Zz0f1TdQ==" + } + ] + }, + "maintainers": [ + { + "email": "andrew@wheream.io", + "name": "andrewbranch" + }, + { + "email": "mineyalc@microsoft.com", + "name": "minestarks" + }, + { + "email": "orta.therox@gmail.com", + "name": "orta" + }, + { + "email": "rbuckton@chronicles.org", + "name": "rbuckton" + }, + { + "email": "ncsander@indiana.edu", + "name": "sanders_n" + }, + { + "email": "shkamat@microsoft.com", + "name": "sheetalkamat" + }, + { + "email": "ts-npm-types@microsoft.com", + "name": "types" + }, + { + "email": "typescript@microsoft.com", + "name": "typescript-bot" + }, + { + "email": "ortam@microsoft.com", + "name": "typescript-deploys" + }, + { + "email": "wwigham@gmail.com", + "name": "weswigham" + } + ], + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/types-registry_0.1.500_1595550717612_0.7255218585320362" + }, + "_hasShrinkwrap": false, + "contributors": [] + }, + "0.1.501": { + "name": "types-registry", + "version": "0.1.501", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/Microsoft/types-publisher.git" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "MIT", + "typesPublisherContentHash": "4c2de75761658b7e6ada9a245b91b784ed22f8037831884091fa37a0b5ec0265", + "_id": "types-registry@0.1.501", + "dist": { + "integrity": "sha512-3If8vPL5sLlsiP5ka2+7CBWbPZgKbhwpLpg50tvDOLrfcZLndmCCftH4C4RZhysuj8rpgtcLN65cBFQFdTZGEw==", + "shasum": "ea764bd47e102eb911ee4efe9287caeee819d669", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.501.tgz", + "fileCount": 3, + "unpackedSize": 593870, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJfI2zVCRA9TVsSAnZWagAA3QIP/AjyJaaVOu1B9hM45zKh\nnH0UW7fLuzhF5Hw8uBRRu4/monbO6Ht/AErf63O0g/1KfUm9Uv6DOZqw/3vm\naP1XnJgY5XFPZGcyTCAXOeclEBSmwsPpdhyUsIf6ECm4zbBJwDKs2y+QfttE\nBbJCu+/kNOV96XQddVziI75FaC6MsVTCYmMTMMXET0KOW90HSeGR2HA7QNuf\nwbzjABuVeHh6bgkHVDsjlhc3TTh1WTLOm5rvXblxJktDDa0k3HmVoOgXDTkZ\nNQxjJl4WjS31Q3oo+1andEK/k4EIuVtIWzBjZ+jj6hGb7mxIOC4tL1JFAIs2\nLs+zjTGDloxiE+oCsRo44HNtOvavNUSjb6i3oX5SJEKdV+GIbqHgu2PYAjp+\nQocXYGbFhgZV7UmTFsjRony+hW5ZDB8xzFixfJ/2wJqYG8ACBxlTuoKx1+KM\nyrc4qnsdEFmCuzcPcWLSMft1HxVJ3r6FMUGmIwmtQI8QgoRaW1iYPD3byp1L\nSokAp0ifGrZKmUfrMD4K1ErU1MNA7CYQ9jioXCZ7bRQ9OfXt2h4ErDeoSi32\nmexJ+elLqe17K+dU/NEqFsOcMPZnhLgPgC9YGMXqqvwUxDU/WFk81u/u8uEU\nZOSig6Um5IUDNDu0k7X5wl4+aV88NURM0mJLRyXAJ2jS2hrrCCLtKpyhLWdX\nOdNR\r\n=RFjr\r\n-----END PGP SIGNATURE-----\r\n", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEYCIQDWv0Qbbsfz2fxnVXn+QtfmoPA1cbwUCPQm0r6zlo6K8QIhAPE1eyoSU5tDkPtLKuB20Us4VtmAe9GOyBGPPsgzgWLF" + } + ] + }, + "maintainers": [ + { + "email": "andrew@wheream.io", + "name": "andrewbranch" + }, + { + "email": "mineyalc@microsoft.com", + "name": "minestarks" + }, + { + "email": "orta.therox@gmail.com", + "name": "orta" + }, + { + "email": "rbuckton@chronicles.org", + "name": "rbuckton" + }, + { + "email": "ncsander@indiana.edu", + "name": "sanders_n" + }, + { + "email": "shkamat@microsoft.com", + "name": "sheetalkamat" + }, + { + "email": "ts-npm-types@microsoft.com", + "name": "types" + }, + { + "email": "typescript@microsoft.com", + "name": "typescript-bot" + }, + { + "email": "ortam@microsoft.com", + "name": "typescript-deploys" + }, + { + "email": "wwigham@gmail.com", + "name": "weswigham" + } + ], + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/types-registry_0.1.501_1596157141040_0.8470229845073243" + }, + "_hasShrinkwrap": false, + "contributors": [] + }, + "0.1.502": { + "name": "types-registry", + "version": "0.1.502", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/Microsoft/types-publisher.git" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "MIT", + "typesPublisherContentHash": "0989a67a3983ce6dd0b8d7663845793f692542a17293012df65c1e55b9fb121a", + "_id": "types-registry@0.1.502", + "dist": { + "integrity": "sha512-TM5/4n1Tb47kIk7Ajk6MNuhKDeo7k3kVF2r/iCu2zoGHKez+DyBG+r6i0TM93Vi/kSKPViY5iMA++DXZ4q5Emg==", + "shasum": "5829d938b7c0e6c86d0657d741463da7d53b2b05", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.502.tgz", + "fileCount": 3, + "unpackedSize": 594931, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJfLKyGCRA9TVsSAnZWagAAg4MP/Rqx/Lo4vQ3jysZsn5FY\nQboBW8CvfR15FchcmTKQmNL3+OfYynNOf29PdG0XJrkcqFJR5AzoWXkliS0V\nnJCIbaLb6KM2b6A4Jcadwy2cW5U7My5C4+KUTB0MQIjIS2vcVkP+6du2hoMx\nx5LVsZ+2uYdjuocIx2bfRrLU6mns0QnuxaB9KbfBU/Lm4eoGS4eSJ+t93fg/\nkvZOVxgnKVQNxMpI5jh3o/dP6jEkXnLs3XDD9K/qVgy6MuwjbI6330cc3v7C\nVOz+W1hUPkcCtNDk6I6qcLTbvyZm+bJownE9ENCUmHLZhbtcGVlccWNqfqVD\ndGkVQcgLG9Tv9Niph3MjDkrRPygbtus8ADO9BR+w7KIp5Jf3WrEdboq6TemB\nrag/Utw8/oxb82Wuq1HZdgmc02xrndvVI1GVJCNULdRy01CrpWOsfasnNeH0\nsPZhLn0CRk5otb1n4BxS5WAH+Hco/lQA3lwocVfiDEK86lGUULJjPwCXLSOj\nAwkpNRq+TwCIBqWqR2OQXDiPt2jyIHfWkwSxivJyryrjn8kflNALaEOrIjot\nWmS6Eg7KNWabjFBj4e+D5sRjLJ/SDiuiDcUEo3+Pn+OgrZXq1FEgHejRXAQG\nPBAgUcloJabflDiALmUQhQVMLgyKRl102JKtL3K9bj83Ci+9DQQQB+Fd1j9x\nbZhf\r\n=XDDY\r\n-----END PGP SIGNATURE-----\r\n", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEYCIQDF+GSKAy1I0c7omd1MTEx6fgc41IlLzBONLsin1uqKEQIhAN/XEFOhIvebGHL6Xx2Ucnc4luipT31rbHADhGJLIFEz" + } + ] + }, + "maintainers": [ + { + "email": "andrew@wheream.io", + "name": "andrewbranch" + }, + { + "email": "mineyalc@microsoft.com", + "name": "minestarks" + }, + { + "email": "orta.therox@gmail.com", + "name": "orta" + }, + { + "email": "rbuckton@chronicles.org", + "name": "rbuckton" + }, + { + "email": "ncsander@indiana.edu", + "name": "sanders_n" + }, + { + "email": "shkamat@microsoft.com", + "name": "sheetalkamat" + }, + { + "email": "ts-npm-types@microsoft.com", + "name": "types" + }, + { + "email": "typescript@microsoft.com", + "name": "typescript-bot" + }, + { + "email": "ortam@microsoft.com", + "name": "typescript-deploys" + }, + { + "email": "wwigham@gmail.com", + "name": "weswigham" + } + ], + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/types-registry_0.1.502_1596763269646_0.07671692197127733" + }, + "_hasShrinkwrap": false, + "contributors": [] + }, + "0.1.503": { + "name": "types-registry", + "version": "0.1.503", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/Microsoft/types-publisher.git" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "MIT", + "typesPublisherContentHash": "cc23152423a214f64df49a257cefbbd6db620f5402ea50ab85cf4f0d61c900ae", + "_id": "types-registry@0.1.503", + "dist": { + "integrity": "sha512-zqioomuT/KsQFEZcSTpxV7NLCS8MNq+SeuHHv5TGmvpKQsBBAQ77r20GgS8abxDBnfzTxp44eBd8yCVUgPEprw==", + "shasum": "c782b39267a2ef31523e3babdf4ff70831268479", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.503.tgz", + "fileCount": 3, + "unpackedSize": 598795, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJfNeyECRA9TVsSAnZWagAAVZ8QAJAmm4X0BB4mPKDGjL+l\nIjXR+zjKyD5RXdH5PJEUBb2AWcQQNXVJJJ4xLBNMpnXLbl8+3Br6jVJo9PSM\nFuNrk12W9BFJiyx95YhJY5rrq8AQJ+ZIhVEuV783sgthnDUXgGVweCHk1r7M\ngC3anXcF/gu0KN4kTeU+O3X4Ebk4Zs2pQwtT4jAavgJVucnoCVVNaOKS9pdY\nYEBUzCNGOVr7IK/Rloq7OuTjIWl5610AOKrKRVR4nMLBZxwMTF6pqsOTUv6w\n6QDVShtVk1R9wboYV90wBK9kinzPpemLD905ULB18CC3sJipr5acrAtu4Hqd\nmr78vMHe/wYz4GZpNQggv122zQW8NNOY+GM9oV8DL2joZEewPMANDcu8WEDF\ngxgYyfWceSJt90zObEhCE7DbCj+2tfqhZF6zgiYVjnY6VLdSQ/BuqKefltoW\nJkKGOp3sC14SBAQ+YBCx8vrTP6dB76vd1PjKMVHBGL5S4wo9seB3dFpqCNWG\n6WwxxYZuXwF0P6LgarsftyDvSjhNjkclU2sZO/CyIOTW1FhYrmQHi//aQwnl\nTjwHcvcJn/WBk045XN+xS6/LbD2RGR6M6Ia6CFv/EGpf7uU+SKolNgFzIpwO\nD7lor8KU60+uRyJqfFKktsgCb7Z5xlUoYQtzgeeyL9CKHPvcYz8/tnasA2oj\nfBcI\r\n=ORFt\r\n-----END PGP SIGNATURE-----\r\n", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEQCIFohDbKtuT8kBAgc6k1Umx6tzki1ZgbzFW9XfPmQI1PQAiBtlO6Hb5ZNlLLH6GfX9l4gSspvmFVrUHVlMSH7Uvi0zQ==" + } + ] + }, + "maintainers": [ + { + "email": "andrew@wheream.io", + "name": "andrewbranch" + }, + { + "email": "mineyalc@microsoft.com", + "name": "minestarks" + }, + { + "email": "orta.therox@gmail.com", + "name": "orta" + }, + { + "email": "rbuckton@chronicles.org", + "name": "rbuckton" + }, + { + "email": "ncsander@indiana.edu", + "name": "sanders_n" + }, + { + "email": "shkamat@microsoft.com", + "name": "sheetalkamat" + }, + { + "email": "ts-npm-types@microsoft.com", + "name": "types" + }, + { + "email": "typescript@microsoft.com", + "name": "typescript-bot" + }, + { + "email": "ortam@microsoft.com", + "name": "typescript-deploys" + }, + { + "email": "wwigham@gmail.com", + "name": "weswigham" + } + ], + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/types-registry_0.1.503_1597369475468_0.0829862589391368" + }, + "_hasShrinkwrap": false, + "contributors": [] + }, + "0.1.504": { + "name": "types-registry", + "version": "0.1.504", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/Microsoft/types-publisher.git" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "MIT", + "typesPublisherContentHash": "ad43f4ce580bdaed6e267c0d352084122975939c36a8b263ec91393f8a871fa8", + "_id": "types-registry@0.1.504", + "dist": { + "integrity": "sha512-W1Lw7O5hDjYJMck9kOfZdkqK0VmN3z7NwgJzLsQQduPAiaeIYBAXukje6yx1xJIb0+ISqha/prRD3aOkwDxH8g==", + "shasum": "29a9733742511dfaeabae75f451781ac67773b2d", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.504.tgz", + "fileCount": 3, + "unpackedSize": 602087, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJfPyewCRA9TVsSAnZWagAAXGoQAJpWzALxMQJG0vpwWi/P\nGFRDAnOO+bEsQmFd/IEOjsCBTPgVGMe8c39E3lzOHd0iwhjdOVF4HN6Uf9aD\nbVULn0jaWW2dwmZXuN2iMKvz5YQ0BKbKOWcodO3Np+K+lmDKiEmATEx/yYMC\nhWmeVuCEsexY8kwT8+O+17CJMX75TR6mXFDe6+3J4PZ+DM2lhfh1wS9pguv2\nsUKP/wfF1eIE/3KT5OTQhsXnd8WQZJG66mf5O9I9YrvkypaIi5Gsr97MIjzI\nI2bFMBl8fPxz8jYUbW0qnWSMFsLDChOGjvPrN6URpv8SQ0DKIpbGJLkzKXs8\n4zAF0BM+M53qpzNmaRySRrac50hUCK/4uXQ+KKViR9WBpvIyzCwwoBev6HHc\nL7trnE2i8mRgnoETKhXEvFVn8hPS771vUGTLkWHu2Rm02quSoLp+wkuLNYIF\nuL3WCphDwj37emt+d5Ee5Nw7gpHS7Au6VW73gddY59Pc/MKj1XjoaxZGjW80\n8iAHI34HhQVb79OmqmV6AcQK20FtgcGeTGp53gJr8MW76ahoENHo2RJAIfua\n9U74iRm5mn0MAxQPYi6jy6EAXGBe+9YrDOSh6ZhKwXBAHA5nl6fdcYwZQTzS\nFiNqSaAttx3fo7n9wbjZEH1TcuEZ35kJYJ9rlwvymKwOBI6W1lL4qqtHG6V1\njmvf\r\n=uTsR\r\n-----END PGP SIGNATURE-----\r\n", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIEqmdSliQkSQUKtk/irOd79wgyBoaSj2XOoF5MYo6o0BAiEA0JwipCwPh+jteOpMKO9wuKAab9M4x7u2XkM5ydO7h7g=" + } + ] + }, + "maintainers": [ + { + "email": "andrew@wheream.io", + "name": "andrewbranch" + }, + { + "email": "mineyalc@microsoft.com", + "name": "minestarks" + }, + { + "email": "orta.therox@gmail.com", + "name": "orta" + }, + { + "email": "rbuckton@chronicles.org", + "name": "rbuckton" + }, + { + "email": "ncsander@indiana.edu", + "name": "sanders_n" + }, + { + "email": "shkamat@microsoft.com", + "name": "sheetalkamat" + }, + { + "email": "ts-npm-types@microsoft.com", + "name": "types" + }, + { + "email": "typescript@microsoft.com", + "name": "typescript-bot" + }, + { + "email": "ortam@microsoft.com", + "name": "typescript-deploys" + }, + { + "email": "wwigham@gmail.com", + "name": "weswigham" + } + ], + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/types-registry_0.1.504_1597974447469_0.07424204302646187" + }, + "_hasShrinkwrap": false, + "contributors": [] + }, + "0.1.505": { + "name": "types-registry", + "version": "0.1.505", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/Microsoft/types-publisher.git" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "MIT", + "typesPublisherContentHash": "0f75d91ff42d67c39c301dc8b516d8b55f25f3acc314ce03b8f5df44c6a2104a", + "_id": "types-registry@0.1.505", + "dist": { + "integrity": "sha512-p6OTsiIynigVh3fnJmGidyZ+qYHLh1Xk5czudRYjUBZt57+LSRFVx6jnB7K4LapfNX5Va7674iRERP/JhbN1Eg==", + "shasum": "7174ddb0e2eabd7f20738085ebafbdd97e237c31", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.505.tgz", + "fileCount": 3, + "unpackedSize": 607984, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJfSGjWCRA9TVsSAnZWagAAGBYP/3GjBd/4bHFiZngK2HGU\n654iiUL6DQF7PmpbQ5tHXnPa5oQHP06blziH29lGh9dJ/ao3fx4ByBMgwkX2\nXHhgSE2b5nQc8zUvzLIHr2YuH1OA2nzgsen/hLDIJR10/fgXAGUpRzmPCazf\nJk8tvo04U3DBEsPuPJh7vqNL3jIABjivoJqvoOG/gNxzJi3YI/1mPnseBF5k\nsjzenDWqb9wmskelygxAQTWiugbg58LSR1+idfNqaPB1cUJVKENpYqmGn4z8\neo3Ga2fbAVQc9wirHB1z3YyGX7IxnXzfHhe6M69FMeTbvM/z45on27NpFUB7\nMh7ly19MIWjfAnlVH2kxwHXFyQAVnY72HjfhCtXrB7lHkAu+PBLSGIym71Du\nzcdhfS85c5g7k+MFOpFwNHbyXnHJuBgHT7K00Gdq3t+QNu1rAGX6ZVnSmCm/\nKUjGmAOClDeOxPmxog9Sv57+uUAlZYGUut3xjFPoa6FUnecwPpM9lzn6Wd2c\nzzGRJ+rIs2+k6qxprOOj7KVlKsT/g4NlWZki6LRhYx94rf8OL6d6VevS9I7B\nQCfvDHFukA069Q+z5VnBvnaxkuJdFTJ+GQd81Fy9jO7ldh1dFuCiwiVtc7xw\nVOoYVDZjoAkMcHF82825Xq37r1DXCEe+t+UNHs+veYTiHlOxy3YcWCe6Oslr\nana0\r\n=QGtT\r\n-----END PGP SIGNATURE-----\r\n", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIQC4KxjiI29A8+saNJ/iO/PDxoYnwXSMB2m/9FUryOK4nQIgF7WKv5+0dH3xBTwMEqZ4ogEXYL+mzMNNZZY1bvODFJM=" + } + ] + }, + "maintainers": [ + { + "email": "andrew@wheream.io", + "name": "andrewbranch" + }, + { + "email": "mineyalc@microsoft.com", + "name": "minestarks" + }, + { + "email": "orta.therox@gmail.com", + "name": "orta" + }, + { + "email": "rbuckton@chronicles.org", + "name": "rbuckton" + }, + { + "email": "ncsander@indiana.edu", + "name": "sanders_n" + }, + { + "email": "shkamat@microsoft.com", + "name": "sheetalkamat" + }, + { + "email": "ts-npm-types@microsoft.com", + "name": "types" + }, + { + "email": "typescript@microsoft.com", + "name": "typescript-bot" + }, + { + "email": "ortam@microsoft.com", + "name": "typescript-deploys" + }, + { + "email": "wwigham@gmail.com", + "name": "weswigham" + } + ], + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/types-registry_0.1.505_1598580949986_0.5736522353196023" + }, + "_hasShrinkwrap": false, + "contributors": [] + }, + "0.1.506": { + "name": "types-registry", + "version": "0.1.506", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/Microsoft/types-publisher.git" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "MIT", + "typesPublisherContentHash": "638d9e7fa63260701c22d0d51d04497ebfa2760dd2a9025377e5615c3b3c1c0a", + "_id": "types-registry@0.1.506", + "dist": { + "integrity": "sha512-ZbL6mcywM/eOD9SagfdKnlK0qgPCp5QwviW9TRcJVTq6hdcIpZLuS9QqlsWiKDg0S/DncoXRoqabXQWFul1qWQ==", + "shasum": "281b031347876f5176584810c9121c59772b3765", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.506.tgz", + "fileCount": 3, + "unpackedSize": 611614, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJfUaSfCRA9TVsSAnZWagAAncoP/Rk/bA+RbL0qmDImhTJL\nyi39/yu+dn2hzLuVc1Yj9fHvT1u5PYQDyoChdMNlGQgTTGiufWCZC2IvKgAx\nXLIpycdYphbu7vw5SsWV9BdHtUJjaqS9QZrKcE6w4NtN5oK+OoBu/VN8ALpv\nsxO+hEf56iIiFyAL6zZdL7FrN+JMhCk994Mh7P6uuiK9PWLRhqFLEtUE3RNY\nTh/Choj37s4wCjoj7EP9YXZ70SZQkpInlmVA7OriTS3snHMy5o3EdEcb4hmo\nBL9iYa5WpP4E5oaRUagq22snFZH44G5UhwAvdFD8Ek59S9KlGRzt13GBmXH9\nV3OYCsqhpO9Bx7bhaMbRgM2mSTgfz6iZuaCuYOkF0QalDa+KszKI8xvyhLQv\nUot+obTSPRBGThDfZMPDRWYW15/OJBC2fzqQSNW1ej16P2NkZIPizStsyW7Z\nFfwlmZ0aBEuMfGEBzSguvieMkZoiMaiPXSDH2nfVojzbLarh5S+7f2cnK4HD\nbZhnhCxhPzUNuHi0xGLfmyzT/ZQyB7eD2PLYJvdENTI94n4nyJRtc0n+fANy\nfYUO6+ZwBIum/Iyv9SvKaQkkMLeW1a8F0V2qIqfM5EZhjBxIgbHJoVXgC3j3\nTkFXG2upksjnWzdaQOS+KKRge0zU51lfk6aabsoZPg/Y3Bym3jdrkmz6s6rC\n0nG1\r\n=HHuB\r\n-----END PGP SIGNATURE-----\r\n", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEYCIQCdaZVvy8kanf/kV1juzBYZPbpi5vF/sPQoyk5ratb3JAIhAJgzlPL2aljNHDi99J7hG9C1v5CfAM+AKztTEgwVwJdB" + } + ] + }, + "maintainers": [ + { + "email": "andrew@wheream.io", + "name": "andrewbranch" + }, + { + "email": "mineyalc@microsoft.com", + "name": "minestarks" + }, + { + "email": "orta.therox@gmail.com", + "name": "orta" + }, + { + "email": "rbuckton@chronicles.org", + "name": "rbuckton" + }, + { + "email": "ncsander@indiana.edu", + "name": "sanders_n" + }, + { + "email": "shkamat@microsoft.com", + "name": "sheetalkamat" + }, + { + "email": "ts-npm-types@microsoft.com", + "name": "types" + }, + { + "email": "typescript@microsoft.com", + "name": "typescript-bot" + }, + { + "email": "ortam@microsoft.com", + "name": "typescript-deploys" + }, + { + "email": "wwigham@gmail.com", + "name": "weswigham" + } + ], + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/types-registry_0.1.506_1599186078893_0.08286956542309531" + }, + "_hasShrinkwrap": false, + "contributors": [] + }, + "0.1.507": { + "name": "types-registry", + "version": "0.1.507", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/Microsoft/types-publisher.git" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "MIT", + "typesPublisherContentHash": "633e69cb46335642b6e3ebdce62d2f8302033e38a2700a005a3cd55eefc6ec57", + "_id": "types-registry@0.1.507", + "dist": { + "integrity": "sha512-BwzmTGGX9fpUU1IWDKaOrptUwS/TTS313QgWkKY2QfVo9b+qGl6G4xTskHF1Al7wpqfDiaWSFvQ1jnQMeBJ38g==", + "shasum": "3ecff4ddf970705eea4cdb42e505edb58e5875bb", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.507.tgz", + "fileCount": 3, + "unpackedSize": 616621, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJfWuKXCRA9TVsSAnZWagAAEI4P/RKm0pMi5HRRgWIGjSkO\ndfysMWENlKMYuRBvhW16UE2wTh6oQAB9txADUmVOEjdJ0k9MqsKRWl/1z0QM\n/5DXku5/OjaO5IaWvomu8OKC4i23d3JA78DUfQxODIgNoyVbnOjx8QLnEZ05\ns2JriPyV9AQ1IakUAzfTXz8IqzvLM/8QYUmZ9rSevZU+msEQDgS1ZSqdYmhT\n7xsXLrspwR1VBOu1woSjWNZi2UWlVD+UfFaXKltlxFTgw/9k2RHy2uOGbpvA\nBZXAnWZo3ac2p2wUYAg+DAlBma2M1q7jDs6gTo1K+w36auJZ4Jgt88toAFuF\nT2ZJDs2O3AHBMdWVBuBJxai0I13wYUyRDQ58tI3A0ywFy4OvGnrMpVsiDtnA\nDWJ3TTPD4JdEnL5C9lCU1xpVYSgZsBAwcf6UXEJSngZonoIHYkxk2MD/M5BW\nra1R0GbA/5zI61t7Kx19quhKq4jD9kiCTauKG57V/MB+Fl3+nvEL5UvzBfOJ\np1ryH/jo4Gd9wcJzZejHauK/Rz96HKi3Da+sJK+3OzmJ6XsLpBSOVz4kwfQZ\nraVARtq5XN4Shu8i3ZEAjvRdXZslzpi3SZ4ivDLq37RLG/jU7pH6GOXTE0Vr\nF78Bg2HVU61wbIdOwMbFJV9qtI6HT5APnu0qQWFuxebpes/ptXkGcdFz1VE4\nyB/a\r\n=fzwl\r\n-----END PGP SIGNATURE-----\r\n", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEQCIDKGgatuVWhF5plZNR2zjQlTBHBR06rhz7vNfnILWuwVAiAyYqxkrgqOO51fM0Pmx/m1/8miaT7yOneX2Kg+4I4PwQ==" + } + ] + }, + "maintainers": [ + { + "name": "typescript-deploys", + "email": "ortam@microsoft.com" + }, + { + "name": "orta", + "email": "orta.therox@gmail.com" + }, + { + "name": "sheetalkamat", + "email": "shkamat@microsoft.com" + }, + { + "name": "rbuckton", + "email": "rbuckton@chronicles.org" + }, + { + "name": "minestarks", + "email": "mineyalc@microsoft.com" + }, + { + "name": "andrewbranch", + "email": "andrew@wheream.io" + }, + { + "name": "sanders_n", + "email": "ncsander@indiana.edu" + }, + { + "name": "weswigham", + "email": "wwigham@gmail.com" + }, + { + "name": "typescript-bot", + "email": "typescript@microsoft.com" + }, + { + "name": "types", + "email": "ts-npm-types@microsoft.com" + } + ], + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/types-registry_0.1.507_1599791766702_0.45266566604341785" + }, + "_hasShrinkwrap": false, + "contributors": [] + }, + "0.1.508": { + "name": "types-registry", + "version": "0.1.508", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/Microsoft/types-publisher.git" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "MIT", + "typesPublisherContentHash": "3cfea4b4100b2a109980eb666374f3f4b1f450d4326b3abd1cdbb07a57b15bb2", + "_id": "types-registry@0.1.508", + "dist": { + "integrity": "sha512-y3xhoQdiTDTlrS3VHJYq7eEiwr5Wl6FORj2wGf8UPdVLI6wepU+dr9RxNnItRPi/FC/qijjSVGGM5pY2Wd2dSg==", + "shasum": "a6d52b9b99e915fbee2a951df9b6a82c84448f5b", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.508.tgz", + "fileCount": 3, + "unpackedSize": 626444, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJfZOTyCRA9TVsSAnZWagAAd2wP/0RU9a3xNiXtET/JE6Ej\nfE3qNiU/LEneYWPErcjRkv2f2s3jTk9JPh/aC+PrRkjr2GybJ3e98FfPSpx4\n0dC60hSq9yeSIIBYWB7PHE+SpKzkDzm4XR+aA9sQXVt8zKdFGuNzEYBI5gQK\n5mzMGB9M44SHNXspLNYpjDYHIQJKE1e0zYpwRyzjGc1ViPK8r8nm8yonC4AE\nOqzxOhSZ+/Y2V5ngBV0yjnhpf8pRR/OygbuIGPU2Od9YVMWG0O57A0PnOgsu\nxbwO+T1yqYKX2K3Z+O1gWEupDPUImKfhXsL4KGTJF8k2gepuy4u6tpcVTHYO\nOu6jJWy6+TLjPx3KbFE1kvJaEc00jIIibkNLV6jEdX6K08FbnbhZ1wzj32Ll\njnGJC8YRkgKeCaEzO4M7T3J6hnMAyptS7FiTDMGBoLlCsyr0HCPxv2AF9P/w\nVrgFLYYfHHWn0pVv1PdkE+QF5dlhxggzciI1bQUpEIllyxJ+P/vUQ0h2BgL5\npHfLAA5LE/ALgPBhVyJ+pmDLlcYblHhn7PP/A+hnGTfidQpNfBIP9HJveEQa\n0CiwyD0GPaNqreL120YrXgny/C+IQ6YhVj4X1WtcPYVXsdjKEoFnGNV6ZCMu\nTT44W751CUrBivbgVT7o5VC3cMHXL9cgE89koDeWri01klq94GFEJw4VMiTl\ndo0y\r\n=9mot\r\n-----END PGP SIGNATURE-----\r\n", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEQCIE6U/mjXsCkv25MfjQMEJSqf/ZIdPT4NCCyIUhn1Ok6qAiBl3NzROTqZ+jAVu1Gr5zGeRPhQ3RkttfIJbLj7xez1pg==" + } + ] + }, + "maintainers": [ + { + "name": "typescript-deploys", + "email": "ortam@microsoft.com" + }, + { + "name": "orta", + "email": "orta.therox@gmail.com" + }, + { + "name": "sheetalkamat", + "email": "shkamat@microsoft.com" + }, + { + "name": "rbuckton", + "email": "rbuckton@chronicles.org" + }, + { + "name": "minestarks", + "email": "mineyalc@microsoft.com" + }, + { + "name": "andrewbranch", + "email": "andrew@wheream.io" + }, + { + "name": "sanders_n", + "email": "ncsander@indiana.edu" + }, + { + "name": "weswigham", + "email": "wwigham@gmail.com" + }, + { + "name": "typescript-bot", + "email": "typescript@microsoft.com" + }, + { + "name": "types", + "email": "ts-npm-types@microsoft.com" + } + ], + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/types-registry_0.1.508_1600447730413_0.2843207931261811" + }, + "_hasShrinkwrap": false, + "contributors": [] + }, + "0.1.509": { + "name": "types-registry", + "version": "0.1.509", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/Microsoft/types-publisher.git" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "MIT", + "typesPublisherContentHash": "3ab56e26b5be9eca8f6142e34f60ccd60006aed29f77bc92fa295c32ebfcf31d", + "_id": "types-registry@0.1.509", + "dist": { + "integrity": "sha512-w/daaP5ugjHWBwpBUZouYqIbIRLLyNLUgxwmWIjj4Utuscsh+zV8M5V543eeXyTUuOhStSWBlq6Q4h7ErUTUiA==", + "shasum": "9a1775dc39a0de49a9df58f418700b01c83fb0c5", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.509.tgz", + "fileCount": 3, + "unpackedSize": 632110, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJfbjsiCRA9TVsSAnZWagAAuukQAJTQWDw9H8YxsOU+Qul2\n6saFFhBkcaL3AgoXvSBNeU1RGOf5KcVJPn/4QduoceEc5W6y45bYnjKgd+/i\nG6h4PDeBh2l4vme65vb01Pi92a/tXGdn7aBJWrlz2mkfwijRe3HXkGq5hx9/\n1a030dgoRqfCWQ1quwbSUVdjxyD0kRmfZOewv44VmNtIWQpC7f9qSalbEJek\nXJUxS+VyBrB3MadFzfmIpqV4/thBmN4cfT5RbeAoCaB2RbzlGCxvIEv9Hbas\nV5mDMS9hsYV3flYpbQqHgdo8ksV39GCLwDzl2Al0RSOF2xMff1ja/BBF5xN5\n8MBw7JU4mjxPydoZTqyg9QtTgBZqGew1h5/vzBToDDsNHTudbuiqHESxVrER\ncGI0RHJjEZxfoT6ivhwFJ6HLfxIlxGZym/JGLo7G0ulhxGxu+mefuy+5DWM9\n9Tmq8rUAbQ8WTVqra/csO3ZUIRs774jb90YoV3m6+vta8reDvGY8iWANPq2e\nn9PpQD8vmSKpmRyXg6RLvgfgWB3tS/G7YbA68Fdcr4wqUyDmL80EqEVxFn8c\nogEzVTEoHxoLUTfh8RuSOQorimd5RY5pr8Y5NQUI7O7vvGe76Dmdn1gbqp+D\nmkAt0hxntHZirlzvbY3Mf9AVtAJTOIwFXOTbfLLkpoOqG3Wp912fVe6RUpZu\nNsk3\r\n=rSwl\r\n-----END PGP SIGNATURE-----\r\n", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCICkNKmXKZQOtkRDCFQRT5Wyf8V1bKSJCtqtrMzAgPR2lAiEAyYW2euaTzHMIrPjAcrwkRCrWNnkOwbW8ifWmk2ov01k=" + } + ] + }, + "maintainers": [ + { + "name": "typescript-deploys", + "email": "ortam@microsoft.com" + }, + { + "name": "orta", + "email": "orta.therox@gmail.com" + }, + { + "name": "sheetalkamat", + "email": "shkamat@microsoft.com" + }, + { + "name": "rbuckton", + "email": "rbuckton@chronicles.org" + }, + { + "name": "minestarks", + "email": "mineyalc@microsoft.com" + }, + { + "name": "andrewbranch", + "email": "andrew@wheream.io" + }, + { + "name": "sanders_n", + "email": "ncsander@indiana.edu" + }, + { + "name": "weswigham", + "email": "wwigham@gmail.com" + }, + { + "name": "typescript-bot", + "email": "typescript@microsoft.com" + }, + { + "name": "types", + "email": "ts-npm-types@microsoft.com" + } + ], + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/types-registry_0.1.509_1601059617550_0.66913952107417" + }, + "_hasShrinkwrap": false, + "contributors": [] + }, + "0.1.510": { + "name": "types-registry", + "version": "0.1.510", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/Microsoft/types-publisher.git" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "MIT", + "typesPublisherContentHash": "75213eee09467e44df7d32c76966d5ca95915697250e9d49bab46181a21c5373", + "_id": "types-registry@0.1.510", + "dist": { + "integrity": "sha512-7zxKrO8QfV99xT1XrRFPksC5Vnza/Jwbh+QlZdFkj0m4G/gRlNcb1J74CVQsKYm8imMFZGMtJD1CXH+dWYzRyw==", + "shasum": "8891379f7f64ae0d5876d08bd8780d97f2bc6e5d", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.510.tgz", + "fileCount": 3, + "unpackedSize": 656461, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJfd4RoCRA9TVsSAnZWagAA9FwP/jytG5vVA5rU1keDMyoa\nmwgmoZlckl/g9WLEUzOeYniSpR71+6pA8iS0eqLz2DniTHeMNeiKsa9FBqXy\nbhjCiysrS/Ck+QSJ6HmCyxgfkLRPhLDS3m3PHy2VtIJa40NuiF80/2RwXADx\nU7FV9uwZO2op/xQG3YNmBTNKmFEnFMlBW4O2ynxiYgGLchzaHAseU+17QLnb\nxBItRgR3OTvno3FoysSBvK/yyDp/5rc8d6KElLF7ajjvGDhDrzmjOz6pq9gK\nUUGe6ZgcnfAMCu8G0LMVjrB/F4FzabdJmdBZW1CYLdieJ2hSK/GXwmmp+fAV\nGqkMbg0cQolzcj24auwrwYP6ax17g3hEpbQPsg/3WrBzA8EVSRxTUxKsoRyk\nUFwzQCDr43m1rcpwheAvPRmX0MIedDiOtImogWvcP55QQaY6+UMillI1mzoL\nNIJ491xvQx5LAJa9gxXe5BYs+Eyt1r124lkjhucAxAGwwLKI4pIEZjel7H+5\ngyIqo+01LNqzrbkS1+y4uwPBnzZziEL2YOnWAJpffj3Mhixa6vkRlNOKMsAc\nPO+5l5sK2DrR35b11UMk+PhAvfiV9K4JMyFPaj7RD4PovD/pjYD7D1oNOmYd\n/G97QL2Z5V0K2seeRwbiaMi2IZsxyYGXb1JfPKcTR9PIRHHGlThRaR8xLvt+\nda4W\r\n=KD4M\r\n-----END PGP SIGNATURE-----\r\n", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEYCIQDVVjJf9vS5EIQebfeMpy7qVGcUE8YKls4bAQhbDQv2sgIhAKM74N+I3a9CygqjT7zxMqmo7CDzqpWZEPkkblUfEKuG" + } + ] + }, + "maintainers": [ + { + "name": "typescript-deploys", + "email": "ortam@microsoft.com" + }, + { + "name": "orta", + "email": "orta.therox@gmail.com" + }, + { + "name": "sheetalkamat", + "email": "shkamat@microsoft.com" + }, + { + "name": "rbuckton", + "email": "rbuckton@chronicles.org" + }, + { + "name": "minestarks", + "email": "mineyalc@microsoft.com" + }, + { + "name": "andrewbranch", + "email": "andrew@wheream.io" + }, + { + "name": "sanders_n", + "email": "ncsander@indiana.edu" + }, + { + "name": "weswigham", + "email": "wwigham@gmail.com" + }, + { + "name": "typescript-bot", + "email": "typescript@microsoft.com" + }, + { + "name": "types", + "email": "ts-npm-types@microsoft.com" + } + ], + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/types-registry_0.1.510_1601668200099_0.8372232802365014" + }, + "_hasShrinkwrap": false, + "contributors": [] + }, + "0.1.511": { + "name": "types-registry", + "version": "0.1.511", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/Microsoft/types-publisher.git" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "MIT", + "typesPublisherContentHash": "18b0a5d2331081a87dc7b24c71716a27df95e7a8f5e0e55a341f219c68ddef6d", + "_id": "types-registry@0.1.511", + "dist": { + "integrity": "sha512-sZCp4DQN7qSl90qLjbv9ogL5aoTxPa0bVJ/g7kU11tRSD2ivTIaSksZlHCIlxE4l0BIwxAkx0jWyGDhFHLtV3A==", + "shasum": "c3fcadd853f007918dacba7309a3d35ae8781623", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.511.tgz", + "fileCount": 3, + "unpackedSize": 659300, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJfgMCfCRA9TVsSAnZWagAA5YIP/3do4AMxMjk3P4tcKmnU\nqp3NETmIQA/6GMOFrsf8b3wSqkrwB4Wtbd6oJGHSGga8QLuokXwfIvdlr2+q\nhU54LtEXIb7dMSuI7G+DNtOoQG9zGlMDDizWXonoAeWJPTnvhyHEdS6wQ7Mu\nCbcFzt48AcezH0OtRpDeHD/a/tEpGajwnTcjB/sZRBVmP580eY/kcxIRwoLy\nd/yrLa/leDxB9INUplSbIgMWs7+7goJu6AI3FwLoD6rnk/jRGT8SLeYrDgZf\n9hcd4fvIy2oso52KdNgYu8jLtQFoVhe89jLEYEhERcCqmNyOt2Cm+cbE8ThY\neEZOOzZGfP4c/XyLnOYFo5CTzYSTd23NuoNII4uZDG/wnKqXyDL1FZ3bBPms\nsafRaLs9LITI7lKuB1c1YIH7edRrZJHcVahYVLwLb8hAAigiNMs6uBVhm2gK\nlS2JNa5t/rL+bmcYpSZDEjJzSsB7PwIIAOsVo5ghZv6QHr3VyXOQaU0J8kFi\n2ET7pGbFDp1EdRzTCe9YnzumBY+ax4EZ0yKIaY6Oq6TX4ZAmwiLyNxBUgnGj\nUHWH4epfURAENvkHUIYiVPMaphzL2yWmcQrUKy95lryzppOuivhiz1IZHJGB\n0OkMuUDmU87vx7pGDTw8ULM9NJfsJVBEfR3CgPQqgF8/1lgAq9wRuD3EQfoL\nYGDK\r\n=WT4G\r\n-----END PGP SIGNATURE-----\r\n", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIHOy6oX8wUu99EDMW2ZMQaLz5mv7z+wy1x94ttXh2W57AiEA5LsBvgX4rAXBlozlmUFtxEBLRLxt4boTRTq9GNmi568=" + } + ] + }, + "maintainers": [ + { + "name": "typescript-deploys", + "email": "ortam@microsoft.com" + }, + { + "name": "orta", + "email": "orta.therox@gmail.com" + }, + { + "name": "sheetalkamat", + "email": "shkamat@microsoft.com" + }, + { + "name": "rbuckton", + "email": "rbuckton@chronicles.org" + }, + { + "name": "minestarks", + "email": "mineyalc@microsoft.com" + }, + { + "name": "andrewbranch", + "email": "andrew@wheream.io" + }, + { + "name": "sanders_n", + "email": "ncsander@indiana.edu" + }, + { + "name": "weswigham", + "email": "wwigham@gmail.com" + }, + { + "name": "typescript-bot", + "email": "typescript@microsoft.com" + }, + { + "name": "types", + "email": "ts-npm-types@microsoft.com" + } + ], + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/types-registry_0.1.511_1602273438964_0.8545674725060548" + }, + "_hasShrinkwrap": false, + "contributors": [] + }, + "0.1.512": { + "name": "types-registry", + "version": "0.1.512", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/Microsoft/types-publisher.git" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "MIT", + "typesPublisherContentHash": "f66a4142f08f184b54d7d0bdc4fd009c79446bb830523fe73a7726a4bb0b7d49", + "_id": "types-registry@0.1.512", + "dist": { + "integrity": "sha512-HSpwnMpf2oiurSBvr3Jsq4xNRBAK2FnX8sNq6CzTY1ouDIik/TeI+0JrE1WBPuUub/eAEHizSPBL5G6DFU31gA==", + "shasum": "dd3161129bb2834cc0c9399cf36ecc16277f4602", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.512.tgz", + "fileCount": 3, + "unpackedSize": 665811, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJfifvGCRA9TVsSAnZWagAAz8UP/ieSFMAMdNu9An1tKAc7\nGqwEYhk1XSzTE36BMkTuHCE4uLkcs5iR176QGJxvztZ3G7gQyXvqU42Qa8d3\nXc/iZ2+hkKYX7gKzB0fR9Na4E54/UXZadCd6LpjX5HUtFdRbtATwXl8XWP+L\nidysj61KYYSDc7V4sv2Pbpob7/qb5S56VfBcg6ZXrsqkZxMcy59Xcsc7KOjg\nf16WmFGnQVnWpmmbp/1sYoV1k8NkKoXF+4UuznM0M4S9TX1W4V2a9OjF3LGw\nKJyMqZ+bhFQ9OGwZWmI/54tv79p92d5kDRB3MJ9T886hMEfpWj1xT5ngDHmj\nzewUkXMF1fgfsDAsDMYGXiLCWtR0iuCgJ/XexXYxmKbzpyRGtJn+Egn71Dn+\nQAY+6F0zzhl6xOViNOvfo7/QIAEK0zQVf1h9HwiTK0sWl3uA/B1XLPCDPQ6W\n+uuEQoCaqwzOKGjT5d2bOsuGTAJ6kR/OfDLD5CI3use7QoC1L9L1nnSJ8au2\n96jPcyqhct0VHydmTakW2J0wwGXQAQzfRe7kObjIhPguInjPoYUGvvvbTOaf\nXnHtOvVFQeDxROnO40opBphcoud8yVBpo7lvsoAOavmUwREAufWihy/mC5a7\n0MXXJFftsNJsXGFRE8VeyEf8hv0zTVKVV/RQEGZurCGhTFm/zIVyo6ym/wXJ\nxL5M\r\n=10XX\r\n-----END PGP SIGNATURE-----\r\n", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIFX1iiQeWDey1bHna/px4Qc1+wsD85voG72bO92zaTgoAiEA2M0ZB5UQI1NtOhAYJD+5qx3bMmIzXThzQP+ZIRW3sOQ=" + } + ] + }, + "maintainers": [ + { + "name": "typescript-deploys", + "email": "ortam@microsoft.com" + }, + { + "name": "orta", + "email": "orta.therox@gmail.com" + }, + { + "name": "sheetalkamat", + "email": "shkamat@microsoft.com" + }, + { + "name": "rbuckton", + "email": "rbuckton@chronicles.org" + }, + { + "name": "minestarks", + "email": "mineyalc@microsoft.com" + }, + { + "name": "andrewbranch", + "email": "andrew@wheream.io" + }, + { + "name": "sanders_n", + "email": "ncsander@indiana.edu" + }, + { + "name": "weswigham", + "email": "wwigham@gmail.com" + }, + { + "name": "typescript-bot", + "email": "typescript@microsoft.com" + }, + { + "name": "types", + "email": "ts-npm-types@microsoft.com" + } + ], + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/types-registry_0.1.512_1602878405695_0.9083173681096002" + }, + "_hasShrinkwrap": false, + "contributors": [] + }, + "0.1.513": { + "name": "types-registry", + "version": "0.1.513", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/Microsoft/types-publisher.git" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "MIT", + "typesPublisherContentHash": "aa55be7e3b787d27e6cb2fdb92c86f06cd6a2602c7c5331eab39b34adcf87f8f", + "_id": "types-registry@0.1.513", + "dist": { + "integrity": "sha512-679S+WCl20wr/RPcgKShXv/Ot2098CffUG1lyGdhRwxzHMRfXqMnOtYNS0/iPPfNHbGrUyGuQ3OUUPkYd6qWvw==", + "shasum": "fcb61afb59b1e6931a53cecf3bff53f934c43d78", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.513.tgz", + "fileCount": 3, + "unpackedSize": 670968, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJfkzbwCRA9TVsSAnZWagAAYV8QAI1LASUrgrUgFH2HBQUe\ncIr1ux8qPe3NXEyNZV+b267XRH5rC7ZbKNyjgxgzB1n/QhQcY1Opeqr6/yBP\nN3gKgXc67o111xxx+QTVlsd/qkJbcoR8JADsPi7pNVrDHgYdX09uq2H6/s/h\njx9Sewfr7SoJ1imYZlCxmH9zkq5tz9BgnrGb5LHmiYpBzP4It6yb5EATD9MZ\nkW8iAcaPVsyAozIi7eiJQNkzaXRTnwTVoKmjyEwowrbb4euSQhbzSTd7Cvew\nwUeAaUbTrX1i8+Vh+5jS/G2UPH0YIZ5jDEJ8X8WCZZgQZW0G1iV4cn41kbrU\n+Y1AW/qm9kee5A3QnqMdExbha4HYdYNn5HEx3XRuKmAyN+oQ/4eYwUhau0Nr\n5ztGKO3QxnQycsFyoZTwgUrc/aK0Fuxcaxo3tvsPjWevH991h7fqTrRwHqft\n4luMxuTlakZPnQbMjKb+6M4la5CS7EmYDs4/CgpNUkmuIaC2woOdRk1gVWnA\n1ND9PhZLN7qJ2DNPQLidGNiByY5rIUmwCQ+nivoPUei/1B1iRImz3cDSmF1s\nBmuOCz75XI6h/sbXv+AHtRsCUcmOCL3TDDFVKNs0VazXnn1nD1UcV65Xgpp4\nmDZrjDIWrvDEufMOPU2CBktWpc1y6mu9pIFffroM+JbR1e79VKnIQ/kL50uZ\nyuD3\r\n=tcl1\r\n-----END PGP SIGNATURE-----\r\n", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIAtD/PrJYQEfommd/7KZdOipvFnjwdawqE7y3Niuk2gTAiEAlAbQfLcOBOEdg0sIPjquf6zGuB+R0F8XHIPiZAa/NOE=" + } + ] + }, + "maintainers": [ + { + "name": "typescript-deploys", + "email": "ortam@microsoft.com" + }, + { + "name": "orta", + "email": "orta.therox@gmail.com" + }, + { + "name": "sheetalkamat", + "email": "shkamat@microsoft.com" + }, + { + "name": "rbuckton", + "email": "rbuckton@chronicles.org" + }, + { + "name": "minestarks", + "email": "mineyalc@microsoft.com" + }, + { + "name": "andrewbranch", + "email": "andrew@wheream.io" + }, + { + "name": "sanders_n", + "email": "ncsander@indiana.edu" + }, + { + "name": "weswigham", + "email": "wwigham@gmail.com" + }, + { + "name": "typescript-bot", + "email": "typescript@microsoft.com" + }, + { + "name": "types", + "email": "ts-npm-types@microsoft.com" + } + ], + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/types-registry_0.1.513_1603483375677_0.5441478462652223" + }, + "_hasShrinkwrap": false, + "contributors": [] + }, + "0.1.514": { + "name": "types-registry", + "version": "0.1.514", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/Microsoft/types-publisher.git" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "MIT", + "typesPublisherContentHash": "f90b1e05772efc49697a428829a8e768873b6446b810d5408eb0049d23a63fe7", + "_id": "types-registry@0.1.514", + "dist": { + "integrity": "sha512-+JLSwQ1/OU20az2MZNsYeRThM2av5A9enc5nVzJTDKzl0AJMhoHcT0tKzF2Vu5HkCIHI/R1tD9sm2YhivRLoqQ==", + "shasum": "14ddb507688d1ff08d90feb971e0b3277517dbbf", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.514.tgz", + "fileCount": 3, + "unpackedSize": 678385, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJfnHeaCRA9TVsSAnZWagAAdzsP/2+bqlSHgHrCHkSQzSVY\nb53503Dq4V/ms56p3BdhF5vD2DCKQBKvuIKjgwWwGXEal5MbJQPIg3gWIBGf\n2fnX0Qte5/g36cnP493qWa4bPk61jt9ybYEQ8awBEny8KWvTn1HlO6AyBNDs\n8MAgvQVJLoLJYQdmkrgxX8RGwn7vpV8DU+y2r+WPnVKXMTf/WkxrYDxfMh70\nQ7mSllIWKecTQn5cTc0F3+IGV0jWl4E1rxNHduxtOUT8fTBAPBllXEwsj21W\nnavrW5D8zCsigHD9L8ki5PiO/lSpuaxQeYKqKC8sDnUStWw3LaKBa8cxf8+H\nwlrwQ8sGnyILP+J1NkW0JCuN2hfR0yw5MVrwSS8iH8+/X8fLW1ljMdxJqxw0\nVEnbDDXM99mUF7nknSyZZiLkuq0Me4KkrJZmRk3UpAXQw+zc9lDSt0797zyG\nH0n0NQVgi0VjYBgW8CWCF7OeTMjxOZ/7YelpOVxZuJnDrV2cavkTSzIS2CMi\ni8GUIWLzst8GNxBC1Q3l6aoTROtPk+JxHvzqp+LdY+Lmugd9ob75WRlQUHEY\nHRAupc2GAmrxYa1smjmUM+JdloMny7ljh3SccrtzfUFzl9IBv2um2jUfImc/\n8XRsF+3pVP+KRSmtN7DYFpABs7Cxh1buxmQ6/wogm6beGhZG0LRCuOf9i8IL\n0Hrk\r\n=pgW0\r\n-----END PGP SIGNATURE-----\r\n", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEQCIA9KuEWL/S/M2MIXWaerbe1h+/T3OTL9Frexxcc7DLWoAiBF3KO+Vf/PlFj7AQm7bL47AeNhvxCoW9TW9mZ6SDfunQ==" + } + ] + }, + "maintainers": [ + { + "name": "typescript-deploys", + "email": "ortam@microsoft.com" + }, + { + "name": "orta", + "email": "orta.therox@gmail.com" + }, + { + "name": "sheetalkamat", + "email": "shkamat@microsoft.com" + }, + { + "name": "rbuckton", + "email": "rbuckton@chronicles.org" + }, + { + "name": "minestarks", + "email": "mineyalc@microsoft.com" + }, + { + "name": "andrewbranch", + "email": "andrew@wheream.io" + }, + { + "name": "sanders_n", + "email": "ncsander@indiana.edu" + }, + { + "name": "weswigham", + "email": "wwigham@gmail.com" + }, + { + "name": "typescript-bot", + "email": "typescript@microsoft.com" + }, + { + "name": "types", + "email": "ts-npm-types@microsoft.com" + } + ], + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/types-registry_0.1.514_1604089753352_0.9028150186802033" + }, + "_hasShrinkwrap": false, + "contributors": [] + }, + "0.1.515": { + "name": "types-registry", + "version": "0.1.515", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/Microsoft/types-publisher.git" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "MIT", + "typesPublisherContentHash": "830cad4b59119f692b216ddea19b436b6cc8df913e633834599a1e7c25ef9d8e", + "_id": "types-registry@0.1.515", + "dist": { + "integrity": "sha512-4xJyVSUcEoPioqqUkbU6cL64U1le1apqYxZ+5Ge763kzNafU7xj3t/GesZp4Rc9woUqy+3S9TeGKLO5P2bEaDA==", + "shasum": "0102f3b34172fdce43f9b985cd68afb20bebea96", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.515.tgz", + "fileCount": 3, + "unpackedSize": 680709, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJfpbPmCRA9TVsSAnZWagAAGlcP+gLkcaI/aRWdfCD3jzm6\nqMVodxmIkp2Oti8cNj/Du8RYIe1Sf0mM3ukW4lcraq+QxR0elLTHpxxkXNoD\nN9h4xSWcB4UlX2Fixgh8W+sNZ5HmwRb5FUONqyogLTErnxqPK/CuAudjKu+v\nGHX5Jnm8CJflU3TBdlbnLgs5fy9PLh1bvWEF0k6OA8SUrrQKpKvVe0pRyhEn\ntI0cbTgvMo1PyYj46hXzWjEp0k7Q9H74ud7WScZYy/l32PvN9nxqW+6wGC6D\nv0QkKYIjwkzbjPwPDehZx87xUmr8j3+J7OEsyAesnPi8Dbz83bTkKSlGFETS\ndwUlepyaAOj/9MLyVOsG7EI0Hg8Dj+sVlwsxaTGcnh+DAIFF9pzM1RNtDwI8\nfXkXz6sRgK+5g0w627QMVCvxDFYr64OYa4Z/X0H7Dc9oR5Y1Shj4j6PBZOtU\n6A0Kf8L3PQi5OmUUieCuiqwvX4LxRCVb2j5ERl+Qs2dBEiyrTSOIzLzvJBxT\nm7EH9eaSSoV3GlgnUEiOV2y6BkhAUuzmW8FGmkzQDCGa/XFd2k2eNvi/BYqS\nhV1vKSqZmh9eony9Lrd4Ka0+ItLS4x+pay2lMJ3fOAWwTyQku3KR2BbQnO7c\n/s97V5j8Pl0OijHW9GgBknjmgYmasql8UPDUnJtLHZSaTa8u7HAhsbXn5KCO\nnDu4\r\n=7PzO\r\n-----END PGP SIGNATURE-----\r\n", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIQDs9qvr/uvKt8Zg8rnpEL/SLEQ/RGdKt2FxUV2HJGJchgIgYPt6b0Mlc6/8Qw4W2DZj3xod/3ZLhl/liDzlj1cY8mk=" + } + ] + }, + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "directories": {}, + "maintainers": [ + { + "name": "typescript-deploys", + "email": "ortam@microsoft.com" + }, + { + "name": "orta", + "email": "orta.therox@gmail.com" + }, + { + "name": "sheetalkamat", + "email": "shkamat@microsoft.com" + }, + { + "name": "rbuckton", + "email": "rbuckton@chronicles.org" + }, + { + "name": "minestarks", + "email": "mineyalc@microsoft.com" + }, + { + "name": "andrewbranch", + "email": "andrew@wheream.io" + }, + { + "name": "sanders_n", + "email": "ncsander@indiana.edu" + }, + { + "name": "weswigham", + "email": "wwigham@gmail.com" + }, + { + "name": "typescript-bot", + "email": "typescript@microsoft.com" + }, + { + "name": "types", + "email": "ts-npm-types@microsoft.com" + } + ], + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/types-registry_0.1.515_1604695012217_0.26803664414326445" + }, + "_hasShrinkwrap": false, + "contributors": [] + }, + "0.1.516": { + "name": "types-registry", + "version": "0.1.516", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/Microsoft/types-publisher.git" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "MIT", + "typesPublisherContentHash": "ab11057dd08f22f603b3ae10b750df18d5f60003a83fe7c704f6e021d07849ac", + "_id": "types-registry@0.1.516", + "dist": { + "integrity": "sha512-BXsk1XEO7sRzoMcl3cX1LvcVnyCNvpCzKwRZhBUtHjLFqUkcbGcJB9C6so/zsgtV1wh6xj8+fGF3Bhk+hX8SfQ==", + "shasum": "246583097e7dd1507b7fbc4914a5bc5838cad16f", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.516.tgz", + "fileCount": 3, + "unpackedSize": 684737, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJfrvIECRA9TVsSAnZWagAAKIwP/0OoHbyJKYQBrFuqMpON\ndjmCG/4EBGBhLCMfnrUfN3+uOTMLwtlf4Ddayu9leWr7cIaMBDhZaX4xT8Eb\nTsAJfTQRbw9Hald2b2+1aNUf87lwj+ldPqSF1ZdtghtCRVyvtKT03dRwtMkF\nXNt2pics6pcT9SfZC+dPA4QDHnjsNrRMSK+w6HKpzK4IT7JdoxButkPNQS4T\n5F1f9NT3n/cnHLg+jKRittTikGR9bkoFBvIle8Pnt5JZI1f7oGnB3BBSsrzz\nKKPvspRg9Id+rQg/1o/WDdHiiFH0P2KrifiOs9SUGZqZciRNSHIWlFnPwctB\nfDz4lLtVEJFZ0tb3cVc/b0nksaLulLuvAlMgJUaM+gr9xGWdM3+Li7XT0a/H\nA1pL29iAMnxplDdzrUdsz/EB1A6Jz2Vf8l2IHhLp7eSnzJTl5iY8dt4c5uim\nVjdpplPVwT5L08NrDpSsFovhbESOD8cwN5beocx1Gfu6IKtMCNNwPGgOKjCC\nUVkf0pAtXPkuMwQy0tFk6wV7KBppyht5/c4wWjAi4XuUqPO9jkk/m6zF609s\nZ+84nFlBJ4D41w3W8EC24EYbB+s08Z/qYRQdB/B9mc8kYAzO6Nj/UNrQPPw0\nORmlbr6IfBNN8vu2+mgG9mAn79K2rVntXNdi1+SvqwD/iJ8MXGwJS7ZQw5Tr\nRvXQ\r\n=HY5Z\r\n-----END PGP SIGNATURE-----\r\n", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEQCIFzTuZAv2AhF+u7z5AOajphqPLe9e3jA76O/0O0ADCAmAiAuiTIMXoOPNury5cnWkSFTVE6599sM9XC84CUNjXPE6A==" + } + ] + }, + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "directories": {}, + "maintainers": [ + { + "name": "typescript-deploys", + "email": "ortam@microsoft.com" + }, + { + "name": "orta", + "email": "orta.therox@gmail.com" + }, + { + "name": "sheetalkamat", + "email": "shkamat@microsoft.com" + }, + { + "name": "rbuckton", + "email": "rbuckton@chronicles.org" + }, + { + "name": "minestarks", + "email": "mineyalc@microsoft.com" + }, + { + "name": "andrewbranch", + "email": "andrew@wheream.io" + }, + { + "name": "sanders_n", + "email": "ncsander@indiana.edu" + }, + { + "name": "weswigham", + "email": "wwigham@gmail.com" + }, + { + "name": "typescript-bot", + "email": "typescript@microsoft.com" + }, + { + "name": "types", + "email": "ts-npm-types@microsoft.com" + } + ], + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/types-registry_0.1.516_1605300739657_0.7828460466987648" + }, + "_hasShrinkwrap": false, + "contributors": [] + }, + "0.1.517": { + "name": "types-registry", + "version": "0.1.517", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/Microsoft/types-publisher.git" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "MIT", + "typesPublisherContentHash": "c74939c1080f603217ae2a66789dc36a29bf7893c1b12c4d5801fb6933b7158e", + "_id": "types-registry@0.1.517", + "dist": { + "integrity": "sha512-e0tKpcxFeyRLlJ0qsv87EjE2IDLMsyOip9IB0ywDyurs0TrWzGVAgzKw5fbiOdbsfiE6tZZwZ2VYHmh+WBBngQ==", + "shasum": "da768d742a55a78944ff90c60f05b5b128b989cf", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.517.tgz", + "fileCount": 3, + "unpackedSize": 703120, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJfuC1sCRA9TVsSAnZWagAAqAQP/jmNkaZMKiuXlmJqJKUm\n8ewAExjg49uMXwrhmvAQ0K9krLXzngVuL1aC2Qk6HvRFPOEC7NjzYh47YETz\nruzukwigc4mK4y4LwJ1U2kAWgz4q15QZNRIlkxsRJft26wbFva2+WY7DPiin\nkGQAEmOFcErvGVcpapaB44R+IT6dv0+cXuI0Vu5bZujCMAerjPUTn+njaERG\nRwja3XtMyKQwjHHQSvcvkbf7FambgDOijwpzrZfvEIV2ApUWPMbhJZ6zfsoQ\nBXTR5KtOZc9lSfSvVthFbj2OjyQ8y6ggDRUhCbfbbqOuBtiCRMJ0+/Og0ZWF\n2dXO3E3cWpmyXP9aG/HHcwLjDa/Vkj4fIHOOSPzlnfTeSCnak1WYajNdZ7sr\n7f3dYUYjP8Ctlmp7bl4tNYPc/aFKhrDTxmLDlcm7iSJmCZDT9k8r+Bp66SLw\n4mUEbett2HIi2r7vKmCKEk94ZFn+oX6pd3it9DTDCQNy/50jEh0fujoFMkAf\nRUC2E6lIVfcfJ6Ck38TDW92aPPzB/uZkp9jOAitEGgSEbGcb86ldXuk8xQAn\nNjyQ7L+3Hm97uP/fCPqEie4Yc2Ztu49UcRS1LaRdQxuEIywg1OrmW7n2t1wq\nvVHP38IR9pnECpMYWMX2HAIH6UkJnecIYKUVZYjvRY+QOC2k/eKn3ShcqAHS\nQSiB\r\n=N7Cq\r\n-----END PGP SIGNATURE-----\r\n", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIQCNQvOdLjxNZDdYhnl4MLRhul0ZrkblK5W1lL9kp8sxqwIgQya8nP1HRLY+AZx7IRexhsu0vg9F+XzLOf1MdvPRMd8=" + } + ] + }, + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "directories": {}, + "maintainers": [ + { + "name": "typescript-deploys", + "email": "ortam@microsoft.com" + }, + { + "name": "orta", + "email": "orta.therox@gmail.com" + }, + { + "name": "sheetalkamat", + "email": "shkamat@microsoft.com" + }, + { + "name": "rbuckton", + "email": "rbuckton@chronicles.org" + }, + { + "name": "minestarks", + "email": "mineyalc@microsoft.com" + }, + { + "name": "andrewbranch", + "email": "andrew@wheream.io" + }, + { + "name": "sanders_n", + "email": "ncsander@indiana.edu" + }, + { + "name": "weswigham", + "email": "wwigham@gmail.com" + }, + { + "name": "typescript-bot", + "email": "typescript@microsoft.com" + }, + { + "name": "types", + "email": "ts-npm-types@microsoft.com" + } + ], + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/types-registry_0.1.517_1605905771500_0.46415337195306705" + }, + "_hasShrinkwrap": false, + "contributors": [] + }, + "0.1.518": { + "name": "types-registry", + "version": "0.1.518", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/Microsoft/types-publisher.git" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "MIT", + "typesPublisherContentHash": "ca7ba09ac74621f8bd04a53f0d75f41aa0c07fbda6b885feb7317dfeb01aab03", + "_id": "types-registry@0.1.518", + "dist": { + "integrity": "sha512-wlvQMHLVsmFaCqykU214OrsO5i62FhDv9n4Om90yM/ctAFzalvQcWSO1B5ZZkMbtjBEEXjozX/dvRoqjkRwuOA==", + "shasum": "9e88941c8b10cc186ff69530cdaea671c850ab87", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.518.tgz", + "fileCount": 3, + "unpackedSize": 711115, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJfyRcBCRA9TVsSAnZWagAAULcP/1OSQjw9zHXUn4oxB+kB\nqab9kO+JbECq31julWfIjuvIKlsbKPheWE+sYIAKq3AzgaudVk8Obs4NgHyw\nf+85mPdXDDjETtbUUefP6ysg64nEsfLfDom2T6UxMain1wIswkZo+jBeVXnR\nLxrqlOYeZP+HRXZnXb3GrOhtJ9l+DXE4HkdVgVfSwWr2lrXD930SxqIgia7w\nv+D6eJWJKwMK0suvY8ndWe8i3VPu2/eNBcKFkHORrAa9sEKkGBbP4S1nJU9V\nvLbxOnBS0uTF3cnptw9CTdXmouleq2SFlaNw6VLf6Ad1YHFqjSYSFfTaTDD9\nlpTGD/3vQ88GdPu1kIvc7iYRDhtjG4yhUvxcYYJR1k8HghssfNGrlmYV4fYs\nf88NSuBcnGTbUtFHWtCYMIlP3SI7nNTdR3+a+Vb3Q4IY1Ws9lUUChuQMB+v0\nzhFqZmmy2wxzaE0JBeF8Y16bBX0KYwrxCYjIfitRz+ejavqIBzcOKH22sIW+\nx2Wg6qS03op46Q1MhfZQ6BJjUSbBitBiT9g8J/K7kQymvoscd2SxfroIcZod\n504/X0BiNNuRFapKgwClP+MKgZna7Q8CkUN0c3xm8hd4tTTBkFEVB1sLYiDR\nR5oprM36vd4dQ9iV6p2Nl+699VDjjbP1Jd9iQvDSl6WRMIqfNxpMxD7qDIxZ\nABIW\r\n=9T6h\r\n-----END PGP SIGNATURE-----\r\n", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEYCIQDZ4wr80KTg4+k83rUvsfXbSMz/Gt2LY91mNHtCtGGregIhANtlul0yJlHV9U3VgPcDfqJdLx8MkbBXDBWBu5VwE8j4" + } + ] + }, + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "directories": {}, + "maintainers": [ + { + "name": "typescript-deploys", + "email": "ortam@microsoft.com" + }, + { + "name": "orta", + "email": "orta.therox@gmail.com" + }, + { + "name": "sheetalkamat", + "email": "shkamat@microsoft.com" + }, + { + "name": "rbuckton", + "email": "rbuckton@chronicles.org" + }, + { + "name": "minestarks", + "email": "mineyalc@microsoft.com" + }, + { + "name": "andrewbranch", + "email": "andrew@wheream.io" + }, + { + "name": "sanders_n", + "email": "ncsander@indiana.edu" + }, + { + "name": "weswigham", + "email": "wwigham@gmail.com" + }, + { + "name": "typescript-bot", + "email": "typescript@microsoft.com" + }, + { + "name": "types", + "email": "ts-npm-types@microsoft.com" + } + ], + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/types-registry_0.1.518_1607014144962_0.5777140371680529" + }, + "_hasShrinkwrap": false, + "contributors": [] + }, + "0.1.519": { + "name": "types-registry", + "version": "0.1.519", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/Microsoft/types-publisher.git" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "MIT", + "typesPublisherContentHash": "01ca71ea912b9478edff92643566b48206133770fb55cfab64b188b0b7b9f683", + "_id": "types-registry@0.1.519", + "dist": { + "integrity": "sha512-ANtV0YFtlRURSV0VyqDgpH1S/VBd6AHGDC2okEi6loO0QsvzQxIIL6AKgEsd62sz2lu2IWwkVFTBsQA7FOUF+w==", + "shasum": "825ae85bbf681309af70d8746025f91b3b6ef791", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.519.tgz", + "fileCount": 3, + "unpackedSize": 713807, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJf0lTCCRA9TVsSAnZWagAA8B4P/3ATnmXJVn2mtBInVsU6\nXDkJEaJKHgnrmgSDeIENCuXkX+14jXqEXY4f5ygjPey5SRCBZXtEMbevMIzV\nL+fGaEz22wi6TARLRWF8hAw7J7rgLnWuVvSxoyf8TAIgW2D3St6/9L0c0XiE\nfoFp+qGncLZiU+AUouYyrcIlG22mH3i40i+U5IhK3q5t7vfsH6vuOLc0oVw6\n5Y2FCj5dtktBRT/39isS9PEHxk1xXLi6jDpfgx3oOxerg9FutFrd3cUPnXfE\npm0i0O1nqMk4MgDy0T/umrsyVevVp022WsXVzu+xlwF7GnDoeL83pO0/TYYH\n4SFtvRibuGSYIHmywOHgZF+cyXBJD6gNWa6py+9trdVtmVwevlrTkdU0A1mu\nDw122jSxQVZHxFh2gXWIpmhOzmqX0u7R8iUl19icx1xfNyFxVGMtJQQOBBUx\nA9nHpCyKR5UwsaIwZrLbRZVOhH0BLTe6mr2mTkPxJaNVzfFqw4lUf9I2JMVz\nTiWfqKoTjvW/xtU4NtNJAw2bVAIhijrILzK3HN0mOunySJ1kgq2ed9sANIgc\n2JtZhcv4GC+7ELs3EdFBeXqDwTgwlLepLqq9UD7ZUBUSGr9d639SXbAV51d+\nmvLKhgxoZcASyjnx6CM4Fx2wVfhvIjb4XlpQWRu8wb14D+AFlXKCQtZZkOtg\nEKDV\r\n=5brk\r\n-----END PGP SIGNATURE-----\r\n", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIGo97p1zgIKZOc88K8lHIqMpzaSykJ75eN48/rj0Y3nYAiEAs8VqISlGVgzdYHGftC/OAiudcyhaa3B8NWxASKu5USQ=" + } + ] + }, + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "directories": {}, + "maintainers": [ + { + "name": "typescript-deploys", + "email": "ortam@microsoft.com" + }, + { + "name": "orta", + "email": "orta.therox@gmail.com" + }, + { + "name": "sheetalkamat", + "email": "shkamat@microsoft.com" + }, + { + "name": "rbuckton", + "email": "rbuckton@chronicles.org" + }, + { + "name": "minestarks", + "email": "mineyalc@microsoft.com" + }, + { + "name": "andrewbranch", + "email": "andrew@wheream.io" + }, + { + "name": "sanders_n", + "email": "ncsander@indiana.edu" + }, + { + "name": "weswigham", + "email": "wwigham@gmail.com" + }, + { + "name": "typescript-bot", + "email": "typescript@microsoft.com" + }, + { + "name": "types", + "email": "ts-npm-types@microsoft.com" + } + ], + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/types-registry_0.1.519_1607619778476_0.7267192649019909" + }, + "_hasShrinkwrap": false, + "contributors": [] + }, + "0.1.520": { + "name": "types-registry", + "version": "0.1.520", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/Microsoft/types-publisher.git" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "MIT", + "typesPublisherContentHash": "2bcf098e50235af34d3fb2c33acf6221b5d92bd36b913d9fb1a0cce008621f2a", + "_id": "types-registry@0.1.520", + "dist": { + "integrity": "sha512-pd5ZuMzXDDSeONpd2bl6hOLDu2soguWBg0lx2wk884usazppglTDrEcahU9DIdQEydx8lq/Xd3TtIoHXK1OpIg==", + "shasum": "2fc119395be7948ac8d40cef8701e9cbb4382d76", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.520.tgz", + "fileCount": 3, + "unpackedSize": 717160, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJf25GdCRA9TVsSAnZWagAAD74P/0D/s2/BxUGDDMMxN+BR\n+TvJYQKqKyxsIglL5BWHkeRWOmPVAVhqzVzxHMXEtGKOWI7V/DrGqdjpi0DY\njU3f5XmZHAA76c7cAv2GWt1fM8N5WZ3TY05ZIgpa79tFMZOZK8QU0ma54DdH\nKNs28KfUgZefCXf8zZqOgpR176TDU4G/5PU2bBCdy3bSxYx1OuuVIzltbU2t\nScwAzrYpn7Mlh+Pexi3MdagpXnjNNuY+djtmIRpMZnqw9PDysi+nGZenyOWg\nzPRjZLquU55tRXsS2XFXCzkR+i4m6nRNozhQxWCpnx5scfVPEbR3gvN2icyv\nqg14/kAfy3JpnlhrLs3jodloDhtxHaF8UwvKqaeWJ+giPvve5TdzbpZ0/xUi\n70/FOnswFU3pTDVRt/4oNT4mXQeNYf66i0oH8du8MpvdF2WPSja9Pbkfi28b\nm448eaO1F/FBeekw0PjoQw4mLDHD0BBZ5heAFu8CjlkPHssBValI+3IAU5ow\nVu+MLptNQEivQO3f2AcJEIvmxoE/X7AIxV4YAG7o4L7lLq+NsNsGxNXmAWnT\nMQBVZQNDfnUdNZvYuB9J78reA43UGf7s76uKrN/MtgeeuVOd6v0yxlDCX5M4\nsort9WE7lvUGN2FFw4lazmSKqLn0+gRvAQfaoRXYBkixjPdt1jtpCoGWFajz\nJ068\r\n=2rLc\r\n-----END PGP SIGNATURE-----\r\n", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIQDnDaSuz+Wc6QUiF+iMObBk4BRrsiRzaz294Z+tyJcYlgIgE939htJsijQ6FoT000AS4HNqnqRn9MHMg3ogeleQDJY=" + } + ] + }, + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "directories": {}, + "maintainers": [ + { + "name": "typescript-bot", + "email": "typescript@microsoft.com" + }, + { + "name": "weswigham", + "email": "wwigham@gmail.com" + }, + { + "name": "sanders_n", + "email": "ncsander@indiana.edu" + }, + { + "name": "andrewbranch", + "email": "andrew@wheream.io" + }, + { + "name": "minestarks", + "email": "mineyalc@microsoft.com" + }, + { + "name": "rbuckton", + "email": "rbuckton@chronicles.org" + }, + { + "name": "sheetalkamat", + "email": "shkamat@microsoft.com" + }, + { + "name": "orta", + "email": "orta.therox@gmail.com" + }, + { + "name": "typescript-deploys", + "email": "ortam@microsoft.com" + }, + { + "name": "types", + "email": "ts-npm-types@microsoft.com" + } + ], + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/types-registry_0.1.520_1608225180885_0.39533622818518666" + }, + "_hasShrinkwrap": false, + "contributors": [] + }, + "0.1.521": { + "name": "types-registry", + "version": "0.1.521", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/Microsoft/types-publisher.git" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "MIT", + "typesPublisherContentHash": "ac5736f1fe20057f9d27c821fc68a2e44635684b64bfc4caa98850094512387d", + "_id": "types-registry@0.1.521", + "dist": { + "integrity": "sha512-aJZuJ6YUqZEklPXYy5pFdSPc61tuZs93r3ByhLnHwYJ0D8OTiGxfIEWLpCaKx1n8W64hDcjw+woJyuLaoygsMA==", + "shasum": "1729ded582e0e069cbe8f5df6ba6277b4399b288", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.521.tgz", + "fileCount": 3, + "unpackedSize": 720322, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJf5NL7CRA9TVsSAnZWagAAKioP/RxAbpSb2ED+c4Xuob7Y\nU0DBsaeF1OZ29u1mzBbrYlD7nRnSM/mG32wK/3SmvungxqrVEcUFaVscyWeZ\nROfs9Djh+qB7Lnt9Z23sPU6BFidw9dlvSaZlrtam3JH96ZpTBvAn4zFOBqZE\n8PBa35FypJkeok8MZvpaN4LrvgClReiNZBcGp93RMIURYDJulKzpmqlAD7oT\nxcv5UDWfNYcWKPg4zqGgbzzuCD4ndIcY/IrtK4NOj9Y0WpDIzr6N3Rkpu86Q\nnzbHf8E86GJSPXW0TBC76412L0ULt1jF0G/sjpQ+SX1vSvWqBgwz1YvLGoG4\nrM3NydifONPoQFKykwpdNXALARp3VGSqEKOU72vRD1BPJXQd7Fhkt/W9MYvP\nBLdWcD/wHNiOgS3S8yM2jmx8S9/5PVF9gI6D8Yxba7Hrfbsl6BN+p8rpO+eM\nmCli1Gr+ATnAofngzHKaohbsjOuOpGGza15QHHE1n581pQOW7MsL9elrhPZI\nsJqoMXkvYjadlCnw41nsgHgUURFPsVT46hVcYWakPgy8WLgkVy9WALf2SIs7\n9m05ntJ92eYUjD/MAikKyp/wutYoEB2lrwps3jgWWzxNDDPuw8rwoVLfRpeG\nMd2A4NREmCMT8g2/k43Rp+HFea5wXawPFroKzwWj6en3HGRzFvV+A2M+MMOv\nqGII\r\n=EyKY\r\n-----END PGP SIGNATURE-----\r\n", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEQCIA9x7WrlfZu5DGx6LAx9GUB57JPoQEmDUCQsnivn5jeGAiAQZob5/LwSiss32bkcBwph/u6inxS509MY2e0aWb8QPw==" + } + ] + }, + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "directories": {}, + "maintainers": [ + { + "name": "typescript-bot", + "email": "typescript@microsoft.com" + }, + { + "name": "weswigham", + "email": "wwigham@gmail.com" + }, + { + "name": "sanders_n", + "email": "ncsander@indiana.edu" + }, + { + "name": "andrewbranch", + "email": "andrew@wheream.io" + }, + { + "name": "minestarks", + "email": "mineyalc@microsoft.com" + }, + { + "name": "rbuckton", + "email": "rbuckton@chronicles.org" + }, + { + "name": "sheetalkamat", + "email": "shkamat@microsoft.com" + }, + { + "name": "orta", + "email": "orta.therox@gmail.com" + }, + { + "name": "typescript-deploys", + "email": "ortam@microsoft.com" + }, + { + "name": "types", + "email": "ts-npm-types@microsoft.com" + } + ], + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/types-registry_0.1.521_1608831739231_0.9802342411499285" + }, + "_hasShrinkwrap": false, + "contributors": [] + }, + "0.1.522": { + "name": "types-registry", + "version": "0.1.522", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/Microsoft/types-publisher.git" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "MIT", + "typesPublisherContentHash": "bd72253f976ec686ebd54fc2e8541f1ec3ecedfe2509238c44ab5c3b6100f46d", + "_id": "types-registry@0.1.522", + "dist": { + "integrity": "sha512-/PUWA0sR4z6OXMVWvebgVcUgeJbPYMFdPNc/wjGh8Ck3o4J+ra835p8xZhc2uKjcZ/SKrYqgtCm4egV5SQQqTQ==", + "shasum": "17d6b1327e9885954c1678d397d20123c707f05f", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.522.tgz", + "fileCount": 3, + "unpackedSize": 721247, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJf7hJdCRA9TVsSAnZWagAAGIcP/3U7ojDn5IClnpBI0rc6\nGdnj5YtTbBYcw/QPIkKUQs8SgKRh3lE1ul2zcwqnPhtGXX1fyI01/lXG7Imt\nnOjevk5aMTtcDsy/IOoBI+6QMunpqaMmCYdMEEKS0twY3o2GPua9r9Xd1Dxy\nKx//AQ0lMp6xREoSsmA3mXOvut4DLYpOMgcZy2SPIHxHQ51lE8/ieXEFXShZ\nK/suGHEhCKUtyNPPGQyGsZm2SzVnSrjcx0afpyAGA/RCQOyhb8jI3DWw1wt1\nDd2YAz/gxlagNCOPess6tVuGTO4BvZz6SINz+1+tq4y6BAXD/s5JNEHdw1A9\n/F/CR6icss0SYF71jcnvDqrmNF8KHDr00FezPqTGixZkhEBiiPmqWwhUwJSw\nEte+Bf0PZGLSJeUaR2o9RgQQiheKgrz5qKdqfh7M3nuI52bCjDcQnP46UddC\nrcOTrfGVAQfPrZcVQTDHfZ3kHyhxIJz9xMCbO1VG85YsoqRqJ+ae+PwnaDnR\naF1E7ddrGfyOV6i1fHnIY1sDoEnhvPR0JDX3sygsHV9zyLTWm4kYdoZJxhdO\nX6eMGXp3sbsu/b3MxP9vC1mscmzkg2DADesdtHf+RyVU+83ianu83tJ3ZnBa\n+r0NykceXdF+/hVQVP+DI/ZD5lctRBngBHfEC70C8U4KsCNkBDleZTv+N8Ii\n+WNp\r\n=C6kI\r\n-----END PGP SIGNATURE-----\r\n", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCICZ5nEi4GqGqM3e3pL2e+y7yZNb1zedQSbL4WH2ak2n7AiEAgB7hE5jWe685AWEvNp+ZjWgACdTjNFvaM7+pi6KgEW4=" + } + ] + }, + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "directories": {}, + "maintainers": [ + { + "name": "typescript-bot", + "email": "typescript@microsoft.com" + }, + { + "name": "weswigham", + "email": "wwigham@gmail.com" + }, + { + "name": "sanders_n", + "email": "ncsander@indiana.edu" + }, + { + "name": "andrewbranch", + "email": "andrew@wheream.io" + }, + { + "name": "minestarks", + "email": "mineyalc@microsoft.com" + }, + { + "name": "rbuckton", + "email": "rbuckton@chronicles.org" + }, + { + "name": "sheetalkamat", + "email": "shkamat@microsoft.com" + }, + { + "name": "orta", + "email": "orta.therox@gmail.com" + }, + { + "name": "typescript-deploys", + "email": "ortam@microsoft.com" + }, + { + "name": "types", + "email": "ts-npm-types@microsoft.com" + } + ], + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/types-registry_0.1.522_1609437789294_0.37509167776493757" + }, + "_hasShrinkwrap": false, + "contributors": [] + }, + "0.1.523": { + "name": "types-registry", + "version": "0.1.523", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/Microsoft/types-publisher.git" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "MIT", + "typesPublisherContentHash": "2919bd089c691939fc08063e3014db4a1e52a6ad6edfef9119fc038732f1bc04", + "_id": "types-registry@0.1.523", + "dist": { + "integrity": "sha512-Sn4/PqWWqVp7jmWHsmgYOdr/0rHBs+CqPuNG1ZBwqYrf6jAmhSwS/ha6gX5+hhnWhSKFTPQhAcxVUdcUb4FsdA==", + "shasum": "9d2be2da75b2f6b1db51a6c4bc1a5ba72a4a7778", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.523.tgz", + "fileCount": 3, + "unpackedSize": 723004, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJf903cCRA9TVsSAnZWagAASwcP/2VQgY9hftSPbuXkjtb3\nNYh2nD7/OUBOrwOk9dzm6JfnHpjlIp8n0fjqmW0tlZkYNCUBiEQvT/N7Tz+7\n4o9/MORXlnNcReybf/2Kbw/9sSZFQcimwPUmdtLJXEr6AQpfwNT/JgxWodCn\nAGbkdtXuWphMdYpwCMgie9B3N7pOs23mQm/T5cLZTdCocsEoqxyzrgtnchSS\nV94Z2lcVFSTHcEjvR4zAOBu18MjrvAbhH3S21jOTE0WJOJUEuw63JDQC3HcN\n86PkZnt6wgn9KfCEdtOsbbZc2Dqe10sRBxEX+nRNegZkVLhvhJC8y1A0bI9N\nC52RqwOnCdfk23GZH+AjQauN0tCWpqhAt/QG7CNLSNIfdOEOAVv++l6z3fMk\n466v/RS0X7jl0YrAlCx+UMLgxMjhF09mbuu94BcaES/t7SPDhxgwkDsWAboL\nObrgnH7ti0pNlc4ZJXjkV6IOcyKV7bfm/NthXAUWAUXRPF8HDpnvcOZwEN84\nHhHR2rY4CJRpBMsln8fRDp2V1Br0tXLIrK9JOuRU2FZjdg6rqeaZ8FwtCevI\n6JFhRELPbRrl+cSwekWfKlTHzQlUbx09uw/hUjAA6oPCcoajDH5BwmVIV2VF\npZn8E8eqsZ4srTLVSAoo2RkTwBS2iYeEMTVs+8uiUoIjM8dRhmZBL6UmCufO\nFkgB\r\n=C6y4\r\n-----END PGP SIGNATURE-----\r\n", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEYCIQC4+iVFvzKKwIpWuWmUoeB6yqEBBvjGWtjVQP4xOKtcNwIhAOKiOFPBS+ZPk9mCosXpCbW2wJXjTgkLuzMC4dqJea5H" + } + ] + }, + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "directories": {}, + "maintainers": [ + { + "name": "typescript-bot", + "email": "typescript@microsoft.com" + }, + { + "name": "weswigham", + "email": "wwigham@gmail.com" + }, + { + "name": "sanders_n", + "email": "ncsander@indiana.edu" + }, + { + "name": "andrewbranch", + "email": "andrew@wheream.io" + }, + { + "name": "minestarks", + "email": "mineyalc@microsoft.com" + }, + { + "name": "rbuckton", + "email": "rbuckton@chronicles.org" + }, + { + "name": "sheetalkamat", + "email": "shkamat@microsoft.com" + }, + { + "name": "orta", + "email": "orta.therox@gmail.com" + }, + { + "name": "typescript-deploys", + "email": "ortam@microsoft.com" + }, + { + "name": "types", + "email": "ts-npm-types@microsoft.com" + } + ], + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/types-registry_0.1.523_1610042844249_0.6093304499850511" + }, + "_hasShrinkwrap": false, + "contributors": [] + }, + "0.1.524": { + "name": "types-registry", + "version": "0.1.524", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/Microsoft/types-publisher.git" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "MIT", + "typesPublisherContentHash": "3d1f191bdd068298a3f203b964ff9b22162c112158aae8c6ff6dd7c74f23165c", + "_id": "types-registry@0.1.524", + "dist": { + "integrity": "sha512-2bHJLsFunWfH8Gqi+3w1ACg8Dl43u4W+MBg5nYcuMF9Q9DDLcgmTgvgOI+c6Lm1dzxftMzN8sQXIeB1VksE3PA==", + "shasum": "59fef96d2b7fe0de7e261570c70da9f09c8a9b2f", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.524.tgz", + "fileCount": 3, + "unpackedSize": 727052, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJgAIl1CRA9TVsSAnZWagAAseAP/je8oX/nGqhOiHpYRooV\nhgFXgj3H3hv6qLGPvY2TxjvVes8BWD2iHJs19+iB8pvBx7XTpSbEUzVU/V9D\neNtU1Vp4SqWc54jB9+gXNJ4o6qCdDLy2iVxveTtY5dp8REwj2GI2QHgx7/pq\nBoayY5QdPGTdnrKR83Pob/R+5bc40QDT/VHkVv3K1Xc0bI7x6Qr8bf0lsy7i\ncaKy4qRkMl9ozSb4fUExgVOzdoRf6g/rcVBcyBy9g7DIN9TguDjGz1PuWUEp\nEFJNssBYeTfwhzxy2VzqSJjsyke7GrqfvfF3fSQ91+zz/sTbeNVmbbTdOHai\nBZY1n6c3G2X/omkSTlB1MNyjsuIA/NipdILHa67A0gXMr8KVA6Oxt4/qbHSL\nm1V9Ub+TwpVtWBPk4cukOcB/Q/ZV4711HmA0pvHYcaCxi0WQX5YR+LBK/pgm\n9gFzHSirVsj1ZVOPZ2qQ5ZLduFI4RoaGH51+SedxBj1Db7dSp+CxCkIt3Piu\nmcE8yCjhYuHRpXIFotNr2QSI5uAXCHjY0Dpyi9Hb2uymzVbbMywOuXQLXERD\nJAg8MtWmc+YHS9obM8kGKhZX3FdcPFpXsrWhkqROFq0pQeFNu2hU9G0RDT66\nJ76m/BQZP/frNGGatg0e+E9vnxG/b6zK1V8IF5Lpkp/VTgCRHHeOoHhTBq/f\nD/8a\r\n=vaS1\r\n-----END PGP SIGNATURE-----\r\n", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEQCIEvmxIl4iOZ864/4m21DD8YwLHDTLIjkjqf2anRlW+AmAiBcui+Qys/K5nqrkreKmfHN7lqtNF1hHPgzyHhap1mmXg==" + } + ] + }, + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "directories": {}, + "maintainers": [ + { + "name": "typescript-bot", + "email": "typescript@microsoft.com" + }, + { + "name": "weswigham", + "email": "wwigham@gmail.com" + }, + { + "name": "sanders_n", + "email": "ncsander@indiana.edu" + }, + { + "name": "andrewbranch", + "email": "andrew@wheream.io" + }, + { + "name": "minestarks", + "email": "mineyalc@microsoft.com" + }, + { + "name": "rbuckton", + "email": "rbuckton@chronicles.org" + }, + { + "name": "sheetalkamat", + "email": "shkamat@microsoft.com" + }, + { + "name": "orta", + "email": "orta.therox@gmail.com" + }, + { + "name": "typescript-deploys", + "email": "ortam@microsoft.com" + }, + { + "name": "types", + "email": "ts-npm-types@microsoft.com" + } + ], + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/types-registry_0.1.524_1610647924794_0.3862366918498783" + }, + "_hasShrinkwrap": false, + "contributors": [] + }, + "0.1.525": { + "name": "types-registry", + "version": "0.1.525", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/Microsoft/types-publisher.git" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "MIT", + "typesPublisherContentHash": "ae65c897c06f68cdc54ea622c6861e628ee7f8a93656365e3192074ae997e7a5", + "_id": "types-registry@0.1.525", + "dist": { + "integrity": "sha512-ZyHyfzZ0e6XWpmn9BECxF3g5MKnHtFjcEBBtZ2FD8kgkx6GG0+GdNVVAC5RWpqQYTssBphp+YwAA6ki3F/Vrbw==", + "shasum": "bab4ca95efd6fed8c08fa7eabcb81993316bbc72", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.525.tgz", + "fileCount": 3, + "unpackedSize": 734305, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJgCcldCRA9TVsSAnZWagAAIYgP/Alyc+xkp9VcofIRxopO\nXKRxeaIpX7kixWEhzLE/gG1IibKT8OUnYQiz02/CbjjG6MfzonTltoJBEqp6\npLja1efSWaF6oH72nWnhZpBqGGKB+SSR0zIxK1b898gRZSox1bENgCGju3i/\noWBBjU8Bx9QKeeM4KLk0iCN8GKqIEnmQczWJbdHUQTLQo3tvRWPIrbpqf183\n0KqBIoTR0a4/YxnuptsqTO1l6W+K1O5+XYf/TdBHAwOkKAe9QNXXL+x3uYBv\nzIkE2CAX+lAEFn8fP4IKtKebB1GvoFOAToG6P0QF0NmNp3U9n5aGJOarkWOs\n63DOpf6+PZfJl/3d8IgtFJVYmqdjEatxCkQx6Rw3+slItYGc/1ZfzoQxlHc+\nFujCpTULggJ7LkmWTEOWAV8odq+37TDxfgH/gUVOn0sT79DvRejlse1iKl/C\n7Kqj+qX6Y7LBYMxxF0/4uT7pfO6m13QomFcs/T1A8L7N5YH0PwT+wxODYve/\ngO4b7blPv5WlgiNrDWypr5paWJrfyFRtOphi25LzTkwy+yLgv+3dpSpHrcbe\nRdXHiXUR286KIdqhA0QQTLggq7M8OwfJOh6DDGX/rY8f6/pyeIqnCLOa8dRe\n8ByRnjac03OPslJ+q/T4eS4JzdcnG0gJ7N+NN9IHFzMvr9JolYJmdq0MaSn6\n5ovl\r\n=QSpJ\r\n-----END PGP SIGNATURE-----\r\n", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEQCIEMNNcEztM8xL4hgPo/El3c8ysnQ8+C+nK87ab/KVv+qAiBJAVYFp0cPV5ALAGZl9uRITqD7nvn2ramQG7l32eDRqg==" + } + ] + }, + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "directories": {}, + "maintainers": [ + { + "name": "typescript-bot", + "email": "typescript@microsoft.com" + }, + { + "name": "weswigham", + "email": "wwigham@gmail.com" + }, + { + "name": "sanders_n", + "email": "ncsander@indiana.edu" + }, + { + "name": "andrewbranch", + "email": "andrew@wheream.io" + }, + { + "name": "minestarks", + "email": "mineyalc@microsoft.com" + }, + { + "name": "rbuckton", + "email": "rbuckton@chronicles.org" + }, + { + "name": "sheetalkamat", + "email": "shkamat@microsoft.com" + }, + { + "name": "orta", + "email": "orta.therox@gmail.com" + }, + { + "name": "typescript-deploys", + "email": "ortam@microsoft.com" + }, + { + "name": "types", + "email": "ts-npm-types@microsoft.com" + } + ], + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/types-registry_0.1.525_1611254108586_0.4952551017789879" + }, + "_hasShrinkwrap": false, + "contributors": [] + }, + "0.1.526": { + "name": "types-registry", + "version": "0.1.526", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/Microsoft/types-publisher.git" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "MIT", + "typesPublisherContentHash": "69a956e25cfec560505eac1c4e3f3497cda4becd29a9d19b01f5126e77914bc1", + "_id": "types-registry@0.1.526", + "dist": { + "integrity": "sha512-QXDfIL0gYWzylyWTcRXJesU+CEMlhcf3pXYMQMFxQTAmJO1pr7Z1TVXsmDgNZdwO1/416C6bKjti7NgCDk4elA==", + "shasum": "d907b3b7fae6db9eae060e36b46ff9bc5b4c8198", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.526.tgz", + "fileCount": 3, + "unpackedSize": 737966, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJgEyCRCRA9TVsSAnZWagAAueAP/jLmr+Mv9Vo86Afg+2l0\nnnu4Z07jB2n/ZmGbzmNwcsjkHulWAzitMo1KguWgX0XT3o3hZ55LsURd1W19\nu66rE7Eibs8afqBOjs+nuEG7T44JgP7pSpT9SbqvTgElgKhlqaICKjNLcf0c\n2qtbCHdpejmPXLorw2I98BXXPpfdfSw2/fbt6/6E5urADli6dBUql2V+lZMO\nTsxBNSAw73fFu3zXWagmdY+1z0Ywpm+5cRuD3rJ8PhpncZHcDJeiqEUQPLfS\n4DkDGpPEKXIQA7eD4D0wHEAtHSRx0Bfw5S6Ep1gP4bB87XeKqYcfmVqgvD6K\n1lw6B4orPx+j7z9Y0vgIqoBwUMoAwMEz1MWLIMcEGkh/A+tXf0fBXPAwRLt4\n5amFiXnw6KXBf7g3Gy98/Smg5M2BZeSib1/21bNB5mB7UGrx+lcNxneBcFBS\nZKb3qUm8/u8ITh4bjynF5uWfcg1D4/se1cpAKNUpNPLK/TDRxz4bR+LWjYQ9\np00b1uuF4R44It6LHpXoGIpvClFYmArwOX5FkZVDNkXSZJSb25aJGIlXJnn0\nou8BtaMC9AuDsKPDg9RXFApfS0HlNMONfDxcHcaNy/9Iq9bPfvG6HKH1jHsQ\nN5zPRSz9kbmXB3mNttFUCPD+HTaKhnId/aKWQXAwUijeowLzeZs5h3anOm/P\nicRm\r\n=q3aM\r\n-----END PGP SIGNATURE-----\r\n", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIQDvcanryWnHzLHlmFbAW9A3heeUSw4ea8I0uq5HpW31TAIga4J0Wt7EACiVYdWUnwZ5TtaRKxBgQgW06f+j9DHXscs=" + } + ] + }, + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "directories": {}, + "maintainers": [ + { + "name": "typescript-bot", + "email": "typescript@microsoft.com" + }, + { + "name": "weswigham", + "email": "wwigham@gmail.com" + }, + { + "name": "sanders_n", + "email": "ncsander@indiana.edu" + }, + { + "name": "andrewbranch", + "email": "andrew@wheream.io" + }, + { + "name": "minestarks", + "email": "mineyalc@microsoft.com" + }, + { + "name": "rbuckton", + "email": "rbuckton@chronicles.org" + }, + { + "name": "sheetalkamat", + "email": "shkamat@microsoft.com" + }, + { + "name": "orta", + "email": "orta.therox@gmail.com" + }, + { + "name": "typescript-deploys", + "email": "ortam@microsoft.com" + }, + { + "name": "types", + "email": "ts-npm-types@microsoft.com" + } + ], + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/types-registry_0.1.526_1611866257133_0.8974819913916543" + }, + "_hasShrinkwrap": false, + "contributors": [] + }, + "0.1.527": { + "name": "types-registry", + "version": "0.1.527", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/Microsoft/types-publisher.git" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "MIT", + "typesPublisherContentHash": "32106c2291bffd899259a93f127e4e4e0cea6ada7782fa1d908522b9a11f0e1e", + "_id": "types-registry@0.1.527", + "dist": { + "integrity": "sha512-lI1q5e8WMeqnVjIxR0879e46+0RvgXPSwfMuDE81Ef2KVa60Dzs0HZ7Zwz3p5XebXUMOB8LbsfnV5rwVnKLZ+g==", + "shasum": "b7c5e866c9b65e366db0974dfde0f48e6203662a", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.527.tgz", + "fileCount": 3, + "unpackedSize": 742143, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJgHFurCRA9TVsSAnZWagAAH7AP/1E+g8g1m1RN/3HG+Ix9\nZY24XFsKUeUHaw7UMDos3KoS5iQnLVCM3DAB5CWRDyuHXTUCSSxakS7P+vDQ\nBjzc8F1g9vqo3usesZr4VkeC5zVZcvp2kDNPvJwGK+2LIstggTAAZ30/Cglo\nIgn7KUfMkXJhjFQUe6XlApX/1ZOLDikMKgFL7P/jPnMifHhdAG96R0r4x9CB\nZabDRn18ykvGnG2rriUcFy0bkwji48jaDP+ARZK5Q4dCEUokQzFtT77DOCiJ\nV36bNTL4bPxln25grWOR1EcvfHJ9cr1ZYFDTDqutGB1W5e5nWA4nZIMMDRbo\nGy3hdjVpItDCn1hpStguBgloi0vn8hfZpMKIuYMLmBnniwmjm/Kev4OuNhnr\nryZ7dkMLarwXotLRZ5H3Mx+4nkFwMKfIp7mf89DBLRjO/a4czdnxGVxefhLp\nRlydiTRFuX0RzRc5UBEFm+mEGj52zZaDPmUYuDEDYqIy2vtwV5BN8aqcswE/\nF5yQf3pnECttlC+UQVLuuDgMB5gXU/Ks25D7d2QjyCj6RuBWGZ/g1uSSK7kf\nBQ6ryEdVC41PNfObuDDIkjGjinMgRNKXbs7Ez6sujr89dMp8ytg5gG49kNPL\n/KolINr+PO+kBBG1v4kyOHkL0hGGHG5vZIOhtqktFQRUI/MxraJZfJ7TafKZ\nz/jJ\r\n=ZYek\r\n-----END PGP SIGNATURE-----\r\n", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIQDhmoB/GSZvgIouAhM4ZhVxNgUsozJafAkYMmaXFm21sgIgAhN/l6AFEClwv7uBKk+S7EGKPInFyHTgiMmyu6fe1rA=" + } + ] + }, + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "directories": {}, + "maintainers": [ + { + "name": "typescript-bot", + "email": "typescript@microsoft.com" + }, + { + "name": "weswigham", + "email": "wwigham@gmail.com" + }, + { + "name": "sanders_n", + "email": "ncsander@indiana.edu" + }, + { + "name": "andrewbranch", + "email": "andrew@wheream.io" + }, + { + "name": "minestarks", + "email": "mineyalc@microsoft.com" + }, + { + "name": "rbuckton", + "email": "rbuckton@chronicles.org" + }, + { + "name": "sheetalkamat", + "email": "shkamat@microsoft.com" + }, + { + "name": "orta", + "email": "orta.therox@gmail.com" + }, + { + "name": "typescript-deploys", + "email": "ortam@microsoft.com" + }, + { + "name": "types", + "email": "ts-npm-types@microsoft.com" + } + ], + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/types-registry_0.1.527_1612471211208_0.9814853012802864" + }, + "_hasShrinkwrap": false, + "contributors": [] + }, + "0.1.528": { + "name": "types-registry", + "version": "0.1.528", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/Microsoft/types-publisher.git" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "MIT", + "typesPublisherContentHash": "1aa02b19b37b051c8c2f26559d2f01563ebfa185e0b0c114645cdba030866674", + "_id": "types-registry@0.1.528", + "dist": { + "integrity": "sha512-1WzDA/ORVW4SzTjoxn/YDXyuFyg3YVODeyVljPvOC6DvpqPhdnw83tv6EDFTNQ5CfNthW2YMkmKGM8Nc29JshQ==", + "shasum": "59228c43ce533af401ef0cdb8390701925247b24", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.528.tgz", + "fileCount": 3, + "unpackedSize": 744209, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJgJZyZCRA9TVsSAnZWagAAoWcP+QAoLZNZIRhVMlrDFknk\nlcir0riRrsG6nHH6dKoylgISpO+SJlMYQQ6FmM23UIA6jmnZ0d3kpGQVFd0m\nT0Ay2lirA7JPfbUzVVBBe5v3Wb91Fx/+ISqsT+kAib+1DS4/TYsvi+6/S71/\nThQ04om+raGr7L0rkT1Thpsd4rpABUjRGRaC70zvJE36FnYxqEmy/TSSlIdc\naRuBp1AKbETqj5seGJjbMm272Ivd/xWRw2wJ5aSC+8S4/9Qjp2cDTSTVkyc5\nGRnK1GqLRWyH3C8pqgHYV0zgBqhJxOkRJkrJZsem9Mxy2D/Rrj8CUpARlk2n\naZ7JzxC0UhsZ+RUOYnHbLEAzlw59ORk7l+k5wanYUiEHy1j6Wn7xs+KRuz2x\n6HUT2uAx5VNobZ9WM9fPd2/PrPWsBUESZpxDnNRYe1Tb1bjNGRHzWd27Yb2r\nYZi8nqU2Rp9uNtSAw1HN3TXFefmcPPLy8Yi39DTB0jAonKfRiC9LLblSIwrr\ndDG6/zFTeGZb8kvChzz114lL+dXgJOoIVbykof/8RQtlfWHCXjDzQdvuRXgz\nC/xhOJPgKWGAwZlEjTGAIzfidD+LA5Tls8aGiVFcqDQTqBf2HEFGIe18TwSM\nHf9pNyB8sBbhHhw5r8NtPbouW8mp6MqObhVdQeRzyuJ3j2mvvoBAxpP6Oefl\nUOsO\r\n=cgA+\r\n-----END PGP SIGNATURE-----\r\n", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEQCIFPFUmwTshFqS7OuVmvcnaV0GelPWkn5F5h7+ZVR6E30AiBHoJWc9GPPvAKbodybXvYW0ktpqQBQyCh1aNTF2x+DRQ==" + } + ] + }, + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "directories": {}, + "maintainers": [ + { + "name": "typescript-bot", + "email": "typescript@microsoft.com" + }, + { + "name": "weswigham", + "email": "wwigham@gmail.com" + }, + { + "name": "sanders_n", + "email": "ncsander@indiana.edu" + }, + { + "name": "andrewbranch", + "email": "andrew@wheream.io" + }, + { + "name": "minestarks", + "email": "mineyalc@microsoft.com" + }, + { + "name": "rbuckton", + "email": "rbuckton@chronicles.org" + }, + { + "name": "sheetalkamat", + "email": "shkamat@microsoft.com" + }, + { + "name": "orta", + "email": "orta.therox@gmail.com" + }, + { + "name": "typescript-deploys", + "email": "ortam@microsoft.com" + }, + { + "name": "types", + "email": "ts-npm-types@microsoft.com" + } + ], + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/types-registry_0.1.528_1613077657294_0.7890040428379013" + }, + "_hasShrinkwrap": false, + "contributors": [] + }, + "0.1.529": { + "name": "types-registry", + "version": "0.1.529", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/Microsoft/types-publisher.git" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "MIT", + "typesPublisherContentHash": "58498b75a13d89adb302ac265183d1e12631ce20771470c3da03cddae3dc11fb", + "_id": "types-registry@0.1.529", + "dist": { + "integrity": "sha512-EfYhxkYymFy1UdkuVDEenXOG2yox+b8uhelRqVhbMg1YXjlt5UWH9QeDCztiZgrur4kJVKEFCkgmP38BxoirGA==", + "shasum": "53b770117db6d205d016cb0cc44419126d90b9b5", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.529.tgz", + "fileCount": 3, + "unpackedSize": 748220, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJgLtqACRA9TVsSAnZWagAAZjgP/29FJSNT8+SLHvy/f5cZ\nlNMTXJZVqrfXGGZzdAbdVLJeDiwYl3AKzQ8wrkXUW+9kMgoV7op0vLJyqRr9\n4MJ8C0yIC2pMdvOIkA1gfN8o26MZtjrH67IslCqanUUdZuQ4cvuGNnic8klJ\n1QqJDBnr2dhoHqTytijA6ERLpw2IWpt5Q2Z4ZwYZoYbtH4vd3uHFF52WjB1p\nrB+ysuqDgXzdfIYJVSR0h4qz8BqtcsqwYfWnP6TorLBbzggQ2stcKTxXekLf\n/CjmkemIFE8KlLAe93efrooUpDiWvSo/tHTKkwV+AqZMiDk4/jGEVa+5MTLN\nbeJs8puEahtmJ0W1VacQ/oYI2WkBWq1mHDZNmrgMBRSio2feX47mwwzCi82k\nHDDbePVVSOgxYVy+tA1b2JDkRsZ2QdSuZzwNEziBsDzuFPtJDx3FJEt0iqiP\nFuze5Vj3COj8jDXXYNGn/uPlb9dxyIV9yCZ+ysBLH8HqgIZvHNCTAKSTBXl3\nGvtj3hobpfnXCD8rWEMSBwkqYFxsrLLq4Crdp79qYqyXtW582fuBqEGuAG5y\n/W9AINKLL5ekaudsNW7jddl4XBRZHbWVMHGOJq4EOMSjROqmybpdwMvwPX7g\ngwQbIrLRtGJCsKe9rZ1C9la+GSnVCL6DcXW3/xotzqUKfPmgrAejLuxf8/ep\nVzrS\r\n=GUul\r\n-----END PGP SIGNATURE-----\r\n", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIQD7BIOVMS1lLSSE+OIfNzYKqBr84pKEe6YKbc+5RxzTgwIgdVoRGQ3Gp3AA6CpFB5xG+rnyYfILkNXjZedvVbqTOP8=" + } + ] + }, + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "directories": {}, + "maintainers": [ + { + "name": "typescript-bot", + "email": "typescript@microsoft.com" + }, + { + "name": "weswigham", + "email": "wwigham@gmail.com" + }, + { + "name": "sanders_n", + "email": "ncsander@indiana.edu" + }, + { + "name": "andrewbranch", + "email": "andrew@wheream.io" + }, + { + "name": "minestarks", + "email": "mineyalc@microsoft.com" + }, + { + "name": "rbuckton", + "email": "rbuckton@chronicles.org" + }, + { + "name": "sheetalkamat", + "email": "shkamat@microsoft.com" + }, + { + "name": "orta", + "email": "orta.therox@gmail.com" + }, + { + "name": "typescript-deploys", + "email": "ortam@microsoft.com" + }, + { + "name": "types", + "email": "ts-npm-types@microsoft.com" + } + ], + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/types-registry_0.1.529_1613683328304_0.05612171943443167" + }, + "_hasShrinkwrap": false, + "contributors": [] + }, + "0.1.530": { + "name": "types-registry", + "version": "0.1.530", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/Microsoft/types-publisher.git" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "MIT", + "typesPublisherContentHash": "37b32ca13a5c5f3a82bcbb94f988a88ff51447cf422457fdbee1dee901a76bfb", + "_id": "types-registry@0.1.530", + "dist": { + "integrity": "sha512-ZMdv+lQ7c1zhCxBK/Gx0gJlkFpgikUIDfRV5QFrcLosXqgfxohr3cB2JCLkjfl93FQ31/eRiQZZOw3/mendHyg==", + "shasum": "1faea4826d8332a8ed66b3d5f5daee6bbd1e6884", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.530.tgz", + "fileCount": 3, + "unpackedSize": 750305, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJgOByrCRA9TVsSAnZWagAAfUYQAIHG99MsgIzseu5BVSZx\nneP0zcJXxYkzFoAN5AlHc5by2nUeAWPbq7psfoYYSHEsfNN9miAfenmYyRtv\nEABF6FuvjrFfrDRr4JLei1I6bkQySQ8ADIQOqDEGpEFpeknX+QuGjK832pXB\nlolNbfh8dcMg4zuVRirfQmsDTVH9rGi7SQYJjkfeYLxUmGzQXogOdDw+bI5n\nVggasFsnn6fhzFa3U+2SdS35NVVPdlTqLmi05ZPQNqEJbrhtmE6id0wNMbeb\neVHN16zksEm15kuiLVQE9VR/PhIqQ/3GXoLqwkglPb3xfeRZdsdVJyBFAK5j\nOxxNG/aXcdV3eq9X+xqsyQEdh8d+wPAoIwKRMzgXr7i1dsuFO6P++QOo7YhJ\ngrs3bwkNQV8eg9kZaVUyzQExtFrZKwwu4iW1dvbcEFYZjeGq8EF6WCGKLgN6\n9hZfFUNdXtKtgIM++k6/GPE3nJPdRq5t9eXmn51lEF8vYTBcDljr9jyvsoLO\npzqIc/lOj3dXpQwY1bytPKz0jt9mwII56dFrA2aFuC60aaPKs32zGkJdVMcg\nf3FNYJ5M36f3vchbNlhDoTppp7fgsiGuo5ag3P4N5IrUsA935CDixtrMkueb\n0SiURM9cUK2InZgVs/vbuHLxr4rl4K6rvQzsNDimvolp4oQijhz1mB61R1bE\nuAZi\r\n=me+L\r\n-----END PGP SIGNATURE-----\r\n", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIQDOlWoWkJ/x5/Jb4SBtSON6oDuNUj8K/LDaPQniRS6OfQIgQmH7jJK3C9LwT5f5tlAEDyW4FgSJ4XtQWMFbecnplh0=" + } + ] + }, + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "directories": {}, + "maintainers": [ + { + "name": "typescript-bot", + "email": "typescript@microsoft.com" + }, + { + "name": "weswigham", + "email": "wwigham@gmail.com" + }, + { + "name": "sanders_n", + "email": "ncsander@indiana.edu" + }, + { + "name": "andrewbranch", + "email": "andrew@wheream.io" + }, + { + "name": "minestarks", + "email": "mineyalc@microsoft.com" + }, + { + "name": "rbuckton", + "email": "rbuckton@chronicles.org" + }, + { + "name": "sheetalkamat", + "email": "shkamat@microsoft.com" + }, + { + "name": "orta", + "email": "orta.therox@gmail.com" + }, + { + "name": "typescript-deploys", + "email": "ortam@microsoft.com" + }, + { + "name": "types", + "email": "ts-npm-types@microsoft.com" + } + ], + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/types-registry_0.1.530_1614290090917_0.7401043760095287" + }, + "_hasShrinkwrap": false, + "contributors": [] + }, + "0.1.531": { + "name": "types-registry", + "version": "0.1.531", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/Microsoft/types-publisher.git" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "MIT", + "typesPublisherContentHash": "3062fa77b4a3e15bd74342031155cac887d6b9f71ab8b06238b851042e032162", + "_id": "types-registry@0.1.531", + "dist": { + "integrity": "sha512-MzTUQoVUZPrfj0RiXKIoGgv9ucM3nSS6Gh3kooshTh2m86wVvTEz9Gen8ulTp+TfcN6r8Smh9r/dwsHDQv3Cmg==", + "shasum": "4352425da179fbbbb97342ad0b6b1622d7ff3d12", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.531.tgz", + "fileCount": 3, + "unpackedSize": 752581, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJgQVrCCRA9TVsSAnZWagAAqmYP/1hSYywEWaIfsJVtFgt8\nG9xvb9AlknXJ+mC+26ZPNhZgRIr+dnrcOiPWgR9XWH3K+hbH1MlMEMQWDCsG\nLIvz+oBDTKyqAa9N5wjiuYkdniyDC0ntVNiJkqWLkCTFu7uzBvVcsjFYAbNJ\nSL1BQle8d+ARqXZwYkNlu8auplVGEVTvwpCR6sncrI9GgnkUXfwZAdC6A28K\nyy12PWVly7iJmoMX46RdYRfAkVbHHc4hg7AJvksceJeBpWVgT3yWLsWsTWIE\nUgeYfU7EP1VPWIF5b3MhEcbK1M588DkxmtR5rYRCM8ey//s34oSD2BMmCqjd\n3sAqkKmf27lBQxi41+NF8RXGbDQ2TtjipoYGkJfgy1dIVbMQjt23wSiXMOu3\n03Bo1tryHb+GcDorA1DF7NTRnEBVUyPrlKw94OTiw+f6cPjHKicBx+yp/WHw\nkQd6VKekCOmH9W8pBydaDgwP4H3Y3CVtyrTMrDZv3p6dHBtxfn6innWplfvS\nBRN+uRP/+ntxt4Ss2Usm3fYZFzaPYP0suABoVwn9Ob+ther5JhsSZBe48/aE\nBbQMbdqABUXIMP9pe5AEJVStBMLVpV5q2ZAYKZT4cgliVQTFkAjzusyWvGz9\nJUwlVIhsuDV1oTsThqyJVi62UPnF0/c6cFPLMKpdccsnJG8b6H5eZzL46e27\nM2Fk\r\n=cGs2\r\n-----END PGP SIGNATURE-----\r\n", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEQCIBeZrOF3smJqTOk1fuyKxelHiUN81TDnbzZytcdktLUYAiAG68Qih6dBFEBmtZR0RDqitEt0fR7MNPLOrjRI//WdwA==" + } + ] + }, + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "directories": {}, + "maintainers": [ + { + "name": "typescript-bot", + "email": "typescript@microsoft.com" + }, + { + "name": "weswigham", + "email": "wwigham@gmail.com" + }, + { + "name": "sanders_n", + "email": "ncsander@indiana.edu" + }, + { + "name": "andrewbranch", + "email": "andrew@wheream.io" + }, + { + "name": "minestarks", + "email": "mineyalc@microsoft.com" + }, + { + "name": "rbuckton", + "email": "rbuckton@chronicles.org" + }, + { + "name": "sheetalkamat", + "email": "shkamat@microsoft.com" + }, + { + "name": "orta", + "email": "orta.therox@gmail.com" + }, + { + "name": "typescript-deploys", + "email": "ortam@microsoft.com" + }, + { + "name": "types", + "email": "ts-npm-types@microsoft.com" + } + ], + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/types-registry_0.1.531_1614895809665_0.11317473765063335" + }, + "_hasShrinkwrap": false, + "contributors": [] + }, + "0.1.532": { + "name": "types-registry", + "version": "0.1.532", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/Microsoft/types-publisher.git" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "MIT", + "typesPublisherContentHash": "ec02587498693afa5020615bd58e4bb9a5f3ebefda31cbaf2e24998fd64819e3", + "_id": "types-registry@0.1.532", + "dist": { + "integrity": "sha512-TudxYES7xaqbX8K7Qv27sMVvY7elajJMyGOYSXDHFk6SOWBwQDNoM3CocoArhjYu83hH9T2lWdSyZEBgjMcGXw==", + "shasum": "33573dbe0019f14a3cf389d4f485f280b0ca7a82", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.532.tgz", + "fileCount": 3, + "unpackedSize": 759537, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJgSpzJCRA9TVsSAnZWagAAG/AP/irRuNjwJ5Q/HxBx/xvF\ntRlv9r+s9c/edqyBZzTHzBlA/KJYj6ZADveyPLKM0PPgFJy5sSrp6xR/pHJS\nCkRK7MD+td/+AQr6gGD1WZgPEmagsbRHWAfOnlMYFVLhQGsLrmoGoFlCQdlB\nEqISRieH4yXWSXDvzrEFKNwRXHeGG5U55qK3xoqCB76qH4+m4ZitGsm7YrWa\n1LzuHQKUR9oNoreeD+qEpgidbUWmHY0d46AAV2WThOjkmtPy3zgWcbAcN4ak\nxkLK0UDgaWzKOCIiBuDbvVdPg9+Bs4NwWx353h4vnTVxF+E2uDHAYylqvkYz\n0cQ+W3qspBxTaS0thwT8lYcAxzfX0jMAhk3zi3mV8IvkjdkJiMdiKVtgiLbE\nMGxKAbhQjBrDFzbx8vv+ITP/Q9U8FgF+kEIUyf2TCw9p2IrqSdpbpLQc5nPU\nHBiFcCk+QNxjg5GIsglZOyYz3c2y8dk9i3Yjt3c4Wp6lcleJVDfSAVhDlRMd\nw0X7WjBj4moNtdC/7siHOUiZwu300ZQDn6Y7DzsMvc+uOps9gWWwJMhiH25p\nxTPShF7AJcqbIA3Y2EWRRt/5fo5nD81WPN6YjZdXbIG7a1vrV47fUf1pVyV7\nMJ3Fcrqqr6LBXJwSm1mcCKsM/4UjAaBmhevEquu1pOQyxjmydifUl/Av06+V\nVpWf\r\n=D31J\r\n-----END PGP SIGNATURE-----\r\n", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIQD7nb+bU6WIjZ6qtwgvVMTRt9MfAAlqBBCyixTq7pInwAIgBZ8DUEFVzhHsDxkBvOzuDb9e8/A4brCiK2MIcqMLYbc=" + } + ] + }, + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "directories": {}, + "maintainers": [ + { + "name": "typescript-bot", + "email": "typescript@microsoft.com" + }, + { + "name": "weswigham", + "email": "wwigham@gmail.com" + }, + { + "name": "sanders_n", + "email": "ncsander@indiana.edu" + }, + { + "name": "andrewbranch", + "email": "andrew@wheream.io" + }, + { + "name": "minestarks", + "email": "mineyalc@microsoft.com" + }, + { + "name": "rbuckton", + "email": "rbuckton@chronicles.org" + }, + { + "name": "sheetalkamat", + "email": "shkamat@microsoft.com" + }, + { + "name": "orta", + "email": "orta.therox@gmail.com" + }, + { + "name": "typescript-deploys", + "email": "ortam@microsoft.com" + }, + { + "name": "types", + "email": "ts-npm-types@microsoft.com" + } + ], + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/types-registry_0.1.532_1615502537332_0.5471165420059354" + }, + "_hasShrinkwrap": false, + "contributors": [] + }, + "0.1.533": { + "name": "types-registry", + "version": "0.1.533", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/Microsoft/types-publisher.git" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "MIT", + "typesPublisherContentHash": "12c72f81ca4ad0ffb75b24db0e6cc58222cdfe8a4c6eb0d563f34f92f05b0224", + "_id": "types-registry@0.1.533", + "dist": { + "integrity": "sha512-acEDqbBXWYr6xyHHvxbgyIrPjFCnHwJDKijqQuuKQ6YwWiHF3Wi06wJe8vzZwky9zwUXiXoXGqRdIN3Ji1s+8Q==", + "shasum": "0267072ed1afa3be03e1fc8c24cb742715e0bf36", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.533.tgz", + "fileCount": 3, + "unpackedSize": 763558, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJgU+KACRA9TVsSAnZWagAAreIP/AsMoFwhPrBOeKvy8jB+\ntnpHmfiw94o71y4GAYhP6Ev1j+seR+109m++mUx7S9N3PxWX+MXbdfi5N2Qe\nlrK6vqWZ6Q9n97DNZ4myPnUxgR7qeqdNQPjV7963E0YCtw4cE3PNZFENzWvc\nHVss/FMHdB9ViPVGUQdFghVGcMIxfLet3nw7pHmIGCJM9cJVM1uk0/PcEqr/\nl+Vz0TzXelJDlMRjk2xbYWYQk5w0UKacRfrlWghhxOh3+VfEDTL4ycAM1FGr\nJ5kPUgb46MjeIFoe6PWEYXFixOMGl9mL3MZwmdKslxKC8sfjwCe5gZW3wh7h\nVqWYCHZrSoGpZAcCAq7oWoTcMwxa26WWS07fCnUKNtvRCBepOEvYjTtXF53H\ni3D0ij9An7do6E9L2PIiUd6isdyNW5bdxL4BhLWzKw3LFwC4tCcwH7fDpksY\nbFeGhBZQEXF+rSPICu3AWlEmeDoPPkILOEVDMC5Pz81OGHFKJnSt99HT8vkv\nIyWJo3gXLe4OMjCSgSO/MDZa1pxq2TBACizwI51uFLZfcHg0p2pN2wqOc/eV\nTR2K8O5GDDCX9JAtH0SfjzN0ocNhyYkgt+hZyCZBJBFqMAWReRkKgPO8l8cv\nsjhqIGk8ddKSfkd0L2s/zHGrGuA9F0VVCttMgxOI/20OxxtQb2Y8lm6lIy+2\nVjQP\r\n=y1P+\r\n-----END PGP SIGNATURE-----\r\n", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEQCIG/ko6tI60fl7fE387nRA8N9FNWruJSk5Ikq2seu0uu6AiAkoNQdDbUSej8xWmQ40PswosVeNcAyHytqZgD00ZtdJg==" + } + ] + }, + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "directories": {}, + "maintainers": [ + { + "name": "typescript-bot", + "email": "typescript@microsoft.com" + }, + { + "name": "weswigham", + "email": "wwigham@gmail.com" + }, + { + "name": "sanders_n", + "email": "ncsander@indiana.edu" + }, + { + "name": "andrewbranch", + "email": "andrew@wheream.io" + }, + { + "name": "minestarks", + "email": "mineyalc@microsoft.com" + }, + { + "name": "rbuckton", + "email": "rbuckton@chronicles.org" + }, + { + "name": "sheetalkamat", + "email": "shkamat@microsoft.com" + }, + { + "name": "orta", + "email": "orta.therox@gmail.com" + }, + { + "name": "typescript-deploys", + "email": "ortam@microsoft.com" + }, + { + "name": "types", + "email": "ts-npm-types@microsoft.com" + } + ], + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/types-registry_0.1.533_1616110207394_0.9296677156949267" + }, + "_hasShrinkwrap": false, + "contributors": [] + }, + "0.1.534": { + "name": "types-registry", + "version": "0.1.534", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/Microsoft/types-publisher.git" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "MIT", + "typesPublisherContentHash": "9713f498a95038b67b0029d6772206106dcb7cf42a2980381ae416a3ac02578a", + "_id": "types-registry@0.1.534", + "dist": { + "integrity": "sha512-DnJNvRr4iPcKl+G6g4jFnZGQFfe1I3lDgmhbZ6+iOPuCy8MON+f0CgfWXRAnx+Th3Fgz3D/u7i/3nqw8jrEU1Q==", + "shasum": "4fa20933aab1e17f00a68a76a6bbb8ce27d52c36", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.534.tgz", + "fileCount": 3, + "unpackedSize": 780496, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJgXR2MCRA9TVsSAnZWagAAlysP/A55d4b4RwuFLT47KnSK\n9vgFbeqof21RBCB00+Vz7fveEPgNCqvjJrg0G3GA/MLWMo1xtIrh/XCLzt05\n3sBOkG+0zU9GmUeBmPcAL4Pn0laZOHKWzjmexVoVjA7dn1bG3QVlA0Q0cOXH\nsv9zSeM2hYG3eED12rgXFn3Muf2dsN7XoUqOnwNuDxaGsWMokhVFxcEV88v5\naX10KgiMKNbwsrzF4bEpgHnxBKRLVyUdYcZZ0qxYmicW10HGtCZq0AVSTq3M\nYFFYc/UV1vRw9P+FtWgA0a7wOjtscq8xQ873EsHiouHIA0/IPC8JLZKi4Me8\nAvK5Gg8WcuGltzZGM10JsAldJqQn+9uYGlOxvCVHci8U3FaAEKqMdzEiAkHn\nS6LtYKrYVwLY+4Am61I5uHKrpOsk/k8H8MSfr5z66axq0N96FOUeEwDKcqFE\nGPHxy081CjoFY32UmX6g11ISe2W11vgZVBufbRkwsarif8iFRsHLGDfqSMI9\nY8xxtDsKQAEk+dOIOPaiMvjZ9cRdm/uVQheX2L5Ik/ZGUsJa6lDMmeQbG1UU\ngyqWWFkhZhctm3U53ZnN1XZ/6Zcx+lQwa9VMgQAWeDI82C7PoZDaW1HGqBOO\njV27dQzUDS4xqdPDYGsjMCm3dur0lUdaqcPuAwrMIBXpGq6wsMoAbfGMV2c1\neth/\r\n=kpwV\r\n-----END PGP SIGNATURE-----\r\n", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEYCIQD/HBbM3o8Yp8Qh8zQY8BYl+rphTcrEFVHmdB+CvQZJMgIhAIQucyX8YvzNPgO2QvTnZ+mFGAu8xP7mhX8YTfYqkvAK" + } + ] + }, + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "directories": {}, + "maintainers": [ + { + "name": "typescript-bot", + "email": "typescript@microsoft.com" + }, + { + "name": "weswigham", + "email": "wwigham@gmail.com" + }, + { + "name": "sanders_n", + "email": "ncsander@indiana.edu" + }, + { + "name": "andrewbranch", + "email": "andrew@wheream.io" + }, + { + "name": "minestarks", + "email": "mineyalc@microsoft.com" + }, + { + "name": "rbuckton", + "email": "rbuckton@chronicles.org" + }, + { + "name": "sheetalkamat", + "email": "shkamat@microsoft.com" + }, + { + "name": "orta", + "email": "orta.therox@gmail.com" + }, + { + "name": "typescript-deploys", + "email": "ortam@microsoft.com" + }, + { + "name": "types", + "email": "ts-npm-types@microsoft.com" + } + ], + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/types-registry_0.1.534_1616715147605_0.9304388788782723" + }, + "_hasShrinkwrap": false, + "contributors": [] + }, + "0.1.535": { + "name": "types-registry", + "version": "0.1.535", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/Microsoft/types-publisher.git" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "MIT", + "typesPublisherContentHash": "113ff789973f50e1bc6c5517e411a73f54f9081b7560d2b9380bad30379ee07e", + "_id": "types-registry@0.1.535", + "dist": { + "integrity": "sha512-D85ipIuHsPviEMdWTdRcYFvFPxqB7+HOFGMGbyRJO9OHGABUsKyOEVeB8STVlo+45h2iXrvgQAm7OTdSb59Ydg==", + "shasum": "3e2f1c91eac21d0b90fefe1398125f43048097e4", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.535.tgz", + "fileCount": 3, + "unpackedSize": 782731, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJgZl81CRA9TVsSAnZWagAAlGIP/2ywH1bQz+p/z46fTJZa\nhkzRthbQb6NsAOSV40zqJp5KIF66co76nPCKVlwQF/+J4X+6Xsqei4LnPu24\nyYUXrECwKStcugG+4gDL8+kI+bQoBqicL0jqMiGQ9M5I00+bE7Mpn6xsWi+F\nRUs0/3NNgaUsypueZuljPKhK1RU9YMVfUkRRmzyjrohWGgT6Zh8AJczoeWym\nCBQk27mL4qwlB2jw53JNMSXo9kuvcsrEfbT0H8iibXCH1CX/cAjzl3ur48tQ\nfwvoiJvA7SND+jYi3Bc0x0JPp/sh9e7rH6VDqWoQAEGkPlbWL4wCKTSi5ZuZ\nW4RsXTe7rK5S0g9h2xA+CBlpp3B7sXuHDLDNkXsoV1WCdwLh2YdLOEHkFQYU\n44A5LrtSkC6M7HsvXeLEPYqDJTrr6UoXwwRYBOWHL3+Vs8DhiQvEWltV9aHI\nNjfxsccAr5yN/ShDgPdNtIwlRnk9P7gfM3zDHrnOF/8S9kF9BzqJiAwYs3z4\nGJJUWki+jLfsLgUW7VELrxb+efU758RsKimwCTgNX/ceKi5sesFyjgLaVaSh\n9+CEZdqU5RZXXLDcmC5qM+qlpB317kG+Y+AST7PerJhGm/nzN0N5fysjy5s2\nkdbhzijp/ktu1+TnomNPDbzK3r3m+usjchbYWm7dVs4ZBkWeo76JTZzdmvmw\n8zPC\r\n=0/BM\r\n-----END PGP SIGNATURE-----\r\n", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEYCIQCZ3JEOdT+akt0DPxaQeR+u9sIuaqPr5LHVlFvU5Bz2gAIhAJfRHcmsGhJA9zMEBBeTtsMvW04hbd6NCAvmTqz1zHgB" + } + ] + }, + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "directories": {}, + "maintainers": [ + { + "name": "typescript-bot", + "email": "typescript@microsoft.com" + }, + { + "name": "weswigham", + "email": "wwigham@gmail.com" + }, + { + "name": "sanders_n", + "email": "ncsander@indiana.edu" + }, + { + "name": "andrewbranch", + "email": "andrew@wheream.io" + }, + { + "name": "minestarks", + "email": "mineyalc@microsoft.com" + }, + { + "name": "rbuckton", + "email": "rbuckton@chronicles.org" + }, + { + "name": "sheetalkamat", + "email": "shkamat@microsoft.com" + }, + { + "name": "orta", + "email": "orta.therox@gmail.com" + }, + { + "name": "typescript-deploys", + "email": "ortam@microsoft.com" + }, + { + "name": "types", + "email": "ts-npm-types@microsoft.com" + } + ], + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/types-registry_0.1.535_1617321781465_0.34409950192284144" + }, + "_hasShrinkwrap": false, + "contributors": [] + }, + "0.1.536": { + "name": "types-registry", + "version": "0.1.536", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/Microsoft/types-publisher.git" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "MIT", + "typesPublisherContentHash": "cd03686d67d0c71b6d4fce94fbe08fb47a588de512d4b103b52dc9a55e0d50be", + "_id": "types-registry@0.1.536", + "dist": { + "integrity": "sha512-ZoYD9ff71B5KK+Qua4x3AgpLqeOPksgqz7v2zj2A2TmtiR/SDCfyguQ7ymsu0q47QEZeJUjC6L3bfST+jjE+pg==", + "shasum": "602ecaf29a93268bcb7648d2ae7af352667bf085", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.536.tgz", + "fileCount": 3, + "unpackedSize": 786805, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJgb6C8CRA9TVsSAnZWagAAutQP/1Vcq6R2Q3IOwJ7P5spe\nteWylf/O9rs2cqZpW8GJ3Oz6VnG6BV/KAiM39AfVctguBMUo7eqsxb2/Slxy\ntiYr/+Ug+QW+ftZ3Q+z9IAv+q32xNHw/8NjfpbPguSrTizwHL3iCjts/t2OA\nU+yUkKKAxyVEKyhQh8QaJtVSUF1iBO8DuJ5GFewHvDySAhbnbyzH+vd9+Ton\nuc6YRoVmxXu2dXK1E7RTyCpUOEU2ZmoMrwthcjHEDTzuycReUkvC2/x2xvb+\naqM6XPiKzI2rO8ZFl8JfQDiEvI213esAQ+8zOUh5Mz2ddlIVTwfIv6WY+J//\noTZBc5xeXiWkyi6ikh8JdltEUP37FrZWJrLY1PoYapdvxOlhfvqGgqQd7sgp\nTCEoVuhmfUYTjrWdece05FeImqmQtuOz9yKiK/xUGvt9p9bkQ7aTwqnpc4xP\nlPc4vMffjHhcidZCrKOlSTsHGO6au1inzilXH5G3hSggw/CS0tJiX4KpNhCS\nc5hglJlhy4bRrtVCOtugKLFYKP9sfBZW49BiffstzDVcl5qYu6VT8+ReG7fi\nE9gDA+dcoxAkXzD8fUrlNhZePZ5IgP91jnyGr46VgmzqrlhRF2UNTP6OXpUf\nzYVUKFV2FnWi1QOB1MvOqUf306vk+tgQl+xb/EnMHJjom/7pzcmakQl7hPKt\nGeyQ\r\n=2GAk\r\n-----END PGP SIGNATURE-----\r\n", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEYCIQCtk1S36cy1SHifkbAo1rAe1fQxLis/3khKWHj/2F1uwwIhAO5t5gYVCyrlbn/ApjRzKGuGAVTBvNSuKtdQSohcAjEO" + } + ] + }, + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "directories": {}, + "maintainers": [ + { + "name": "typescript-bot", + "email": "typescript@microsoft.com" + }, + { + "name": "weswigham", + "email": "wwigham@gmail.com" + }, + { + "name": "sanders_n", + "email": "ncsander@indiana.edu" + }, + { + "name": "andrewbranch", + "email": "andrew@wheream.io" + }, + { + "name": "minestarks", + "email": "mineyalc@microsoft.com" + }, + { + "name": "rbuckton", + "email": "rbuckton@chronicles.org" + }, + { + "name": "sheetalkamat", + "email": "shkamat@microsoft.com" + }, + { + "name": "orta", + "email": "orta.therox@gmail.com" + }, + { + "name": "typescript-deploys", + "email": "ortam@microsoft.com" + }, + { + "name": "types", + "email": "ts-npm-types@microsoft.com" + } + ], + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/types-registry_0.1.536_1617928380205_0.9995610433761735" + }, + "_hasShrinkwrap": false, + "contributors": [] + }, + "0.1.537": { + "name": "types-registry", + "version": "0.1.537", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/Microsoft/types-publisher.git" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "MIT", + "typesPublisherContentHash": "65aa6b56384ed20c48b6d2c264e812e7d4c90c04484c03c788aec1a2386183c3", + "_id": "types-registry@0.1.537", + "dist": { + "integrity": "sha512-OSeJgkEWiEMqN/uC8vmh7YbbMItKNq9vLgvUQ52ogNZrM954eK8GsgdCnrh4RmNl0leBVXgRRGpLm1fJGs59aA==", + "shasum": "84117f5e02959463095f9d0ee2777e4e039ade6b", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.537.tgz", + "fileCount": 3, + "unpackedSize": 789719, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJgeOIuCRA9TVsSAnZWagAAwPoP+QHHnb0ikSPgPXXTUv6W\nNB0JQT/J+n1WpShu8DIvftcWZxP4o5y8koNrgdJUW4U0Rb2wUA74v2VK//ix\nfLfquWoCIQYBggOKnVQSKC/GiDD2WPVkZBw7ifkzfPRO+erFiu/M5nvM+ivk\nbEFUkt14X0bmhsc9QP/ifADG5sr/EDU7w8igYHmhcAH1mCxZNsfgslT2ISPo\nVY8BvJd7pRM1iHFOnIQH3iHGGPIGFlwyk4Dl9FPyzs0eEzT19nlqHSjzkfvy\nZjdMLFbdjayrVJuEsI0B1F7loTyM/JHrtrnnAD8X2dxm4fsysNOaB4uoDXrT\nGIBwA5Wifo9kuqNwxed0K10F/fIIq3M7EZ/Bj3Bp9t3v9F6pQHXdrIEcatIh\nFf6SwoaNhbh0jZ9p7XVfmggLl+dlB9dxukiSDVRbm1MXL4agckej3MOL1zu8\ny8rqD0vFkVRgxvgHof9qiyAFRBQhOoVtKZzJygMmoOAXqV9jrXwyF8qmqjKR\nOzBRcsnx2EDwMdFLhoTnqBargWbAZoR1jVgxISPmABi7lx+Y2mvFfVFX8Sls\nRCUPNEFIjG3TSSe8Qnj4mAKKL5AMt79n8Cb+uMrC55jvCRWEUsdDpn0QLwDk\nlLyR5c7So4yyaMb7n7rXk936YoH3w1xWM1EauX4YPKy+qqceOziCWyZtYW7c\nKxmr\r\n=qdLu\r\n-----END PGP SIGNATURE-----\r\n", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCID9qlPWgmgiNupYmV1aFZMSi9+oWPJcuTU6FXtYnOuhPAiEAybn87U+hlN0jQznB1IZTD71BaZwTadHmFh5oawN5do4=" + } + ] + }, + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "directories": {}, + "maintainers": [ + { + "name": "typescript-bot", + "email": "typescript@microsoft.com" + }, + { + "name": "weswigham", + "email": "wwigham@gmail.com" + }, + { + "name": "sanders_n", + "email": "ncsander@indiana.edu" + }, + { + "name": "andrewbranch", + "email": "andrew@wheream.io" + }, + { + "name": "minestarks", + "email": "mineyalc@microsoft.com" + }, + { + "name": "rbuckton", + "email": "rbuckton@chronicles.org" + }, + { + "name": "sheetalkamat", + "email": "shkamat@microsoft.com" + }, + { + "name": "orta", + "email": "orta.therox@gmail.com" + }, + { + "name": "typescript-deploys", + "email": "ortam@microsoft.com" + }, + { + "name": "types", + "email": "ts-npm-types@microsoft.com" + } + ], + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/types-registry_0.1.537_1618534957871_0.1464913198731872" + }, + "_hasShrinkwrap": false, + "contributors": [] + }, + "0.1.538": { + "name": "types-registry", + "version": "0.1.538", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/Microsoft/types-publisher.git" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "MIT", + "typesPublisherContentHash": "144f2b481e1b9b66306f6293729fd1039f90d22d7cfde5e6fa431bfeac89a4ab", + "_id": "types-registry@0.1.538", + "dist": { + "integrity": "sha512-WoDRPNPBJxpm6LbJfOkhkK2ZWMqHsj1FLiU2LWKsGT7gRD8ciMIM1Fty/M/GOXjNA4qej8vRTS4zeR/JtM69mQ==", + "shasum": "9b61b388ce812321b0bf532a27bf72d3b12e5360", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.538.tgz", + "fileCount": 3, + "unpackedSize": 791565, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJggiO5CRA9TVsSAnZWagAAZWQP/RVR+7t1kvE1wW4F72xm\nJRQNc10Un5M6Bc5DjooqiFA3hndcVpmB7NiJGTDORuxkNRZRsrdJZoA+K8gI\nQTO6U74Vn6lT+ulxvoN9vqYpUb7w2XvgqRCoprNljytJYyWbgqZLJiOPw80I\nxbwliOp4bfjRBntmD3nKL3gI3nOiPfPUaXIMlWCmT/2qMP0K5unbSpH9YGR3\nIrvzvXnAfdve3zjpoLrx4IdaHCus6/sWtLtwSalTcxzxrxFOsaJPDqymT5V8\nRvhMjVzhIYgR5XHL74Tte1q704tUGmrVuYJxXDcKXR0r+xjyEBdFQTio3Mi2\nJs0cWdiM80LaUiO4wGF0yWEDFpOK+ok8FIPlB5ixhr39Ak0PQFXAlotXH7Rv\n369lRKbrK8c2YlGKjlrXfOFDViyUxvmR0/HtTh0c65i3Upe+FZspcubToztu\n/OH6ejWGHvpwNjcFOvI6Ow1OxRU1DxcJSdyhZNxLNHzIIqxSoI5a0/1JHst+\nB34VLhwU6UEQxQPrN9hDtCxHKwNv63BlxMXN6WywrfjpJpQ/QR5AdOmAmsTf\nn6VD6QaJDz/vTVeBBv57nu/ysk0+Hv3le6NcGk+XpdSNQViKD0bJyEMQh9eY\nXzL+ikRiP/HmBYFGmQSqJS5NtWVSoUbMcksb7rG0lMA4pjkPv+KFoh/0q0SX\nfZgr\r\n=/8lC\r\n-----END PGP SIGNATURE-----\r\n", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEQCIChCGB8DulMwY7WufDITFAzgY2yUQBMi9vFaii4zoZZxAiAUJz+JgWlFsDDXoDkhtWO2lTx3dmhgkD4KggtmC//uMw==" + } + ] + }, + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "directories": {}, + "maintainers": [ + { + "name": "typescript-bot", + "email": "typescript@microsoft.com" + }, + { + "name": "weswigham", + "email": "wwigham@gmail.com" + }, + { + "name": "sanders_n", + "email": "ncsander@indiana.edu" + }, + { + "name": "andrewbranch", + "email": "andrew@wheream.io" + }, + { + "name": "minestarks", + "email": "mineyalc@microsoft.com" + }, + { + "name": "rbuckton", + "email": "rbuckton@chronicles.org" + }, + { + "name": "sheetalkamat", + "email": "shkamat@microsoft.com" + }, + { + "name": "orta", + "email": "orta.therox@gmail.com" + }, + { + "name": "typescript-deploys", + "email": "ortam@microsoft.com" + }, + { + "name": "types", + "email": "ts-npm-types@microsoft.com" + } + ], + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/types-registry_0.1.538_1619141560857_0.7995635585432952" + }, + "_hasShrinkwrap": false, + "contributors": [] + }, + "0.1.539": { + "name": "types-registry", + "version": "0.1.539", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/Microsoft/types-publisher.git" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "MIT", + "typesPublisherContentHash": "211d48c61753e46083218829d40ac5a92e1bac46dba56b9fb790c93e80e7db3f", + "_id": "types-registry@0.1.539", + "dist": { + "integrity": "sha512-2x0ONEg1wRWJuuo1M4FolS0aYmoVElFGWETBbzfLwgHUAPkFi65IHl9YvyCc6b6lzVEUdnt/ZADjuKmh3coztA==", + "shasum": "667d83d83cfb5677c8b9d88912015060f1a8f58d", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.539.tgz", + "fileCount": 3, + "unpackedSize": 794588, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJgi2VUCRA9TVsSAnZWagAAOfgP/iEASiwfVk+os/NwLzJS\nJRzW+rsh1QuCkWUvRAEeNERmESkRAQADIsB5neSJThQsCnHzmdNMH8HrN5sy\nG6j6mfDHYI+C8SG80/M78CWdyuflCD/OZwAPWjEDvR3qamVGAsrh7YZZMuBR\ns/RWUIo3eQXZIdaZtKGyqiBz/+5pPgHQ4CQ9ejbQ+eNKytdFiMZOjTqlhqd+\nvkbw6J+iVs9SU+LL9yCbihwTwuOMZDoZC9jzMqRpknkrVc4H07OvO9/A3s+a\nrLvypAhNJljhpLuWJ4B3iK8oD2TgjMOCNRoC5TR7iF2kNQbkuFhJeu9tMi/5\n0mVVhxTvrC3wnLTpxLHqA/bttH9kmUSMktlD0ZN5z7XrGGZmQrEdOnwF+Hh5\nh9ER9JpQTV4gYn+6PQJ3AWP2GI4CgamgiIIDS2cIyYz0a1woGbASMHUM/VLh\nwKeAoKMoH4M0X7TwqjnNcA/AXgLss7oWvROFjZpraHDrNP5A1+mWQHGpkDIb\n+yfAuZbKBS3Q/i6fNeAmjUEgDrBC1SRWqNsmk9xehR4YPchWRnEU7r3T/Gs9\nDKrg3nAxkug2M6WQuBlxHF2GpxkzGErpeJzacmc1cL3pdqF20IulIc/D8X3C\nIPS0vrxg0VDJs9Zp0oJsZCri0ed6+T8KX5F4g5xEWugvg/aoQJbQnZv8aEoM\nGshu\r\n=h1ne\r\n-----END PGP SIGNATURE-----\r\n", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIEKOKAttFmeDPnLfg5eDNYjrEu9uRIf9nOu5eE9eSWHQAiEA8M6lbtMixhlDOHjODZ7DPkOHPwqe15JHXCioHCdY1xU=" + } + ] + }, + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "directories": {}, + "maintainers": [ + { + "name": "typescript-bot", + "email": "typescript@microsoft.com" + }, + { + "name": "weswigham", + "email": "wwigham@gmail.com" + }, + { + "name": "sanders_n", + "email": "ncsander@indiana.edu" + }, + { + "name": "andrewbranch", + "email": "andrew@wheream.io" + }, + { + "name": "minestarks", + "email": "mineyalc@microsoft.com" + }, + { + "name": "rbuckton", + "email": "rbuckton@chronicles.org" + }, + { + "name": "sheetalkamat", + "email": "shkamat@microsoft.com" + }, + { + "name": "orta", + "email": "orta.therox@gmail.com" + }, + { + "name": "typescript-deploys", + "email": "ortam@microsoft.com" + }, + { + "name": "types", + "email": "ts-npm-types@microsoft.com" + } + ], + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/types-registry_0.1.539_1619748180106_0.3330328814708843" + }, + "_hasShrinkwrap": false, + "contributors": [] + }, + "0.1.540": { + "name": "types-registry", + "version": "0.1.540", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/Microsoft/types-publisher.git" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "MIT", + "typesPublisherContentHash": "08221340fd4ea5075e8c671bd78bfd71eea36026d68705f86ca34c01d4a6a884", + "_id": "types-registry@0.1.540", + "dist": { + "integrity": "sha512-2PiHjAdzvkvzhZksjRBrBu7sYQcCHkKgHP0xlXLxgA5UoiAGEM9H2QtOD1HI5vlryASkwu/Fvp/0qUjaXBXLLA==", + "shasum": "0ab3273dc398bedbd695bec839d7a51c77de92f1", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.540.tgz", + "fileCount": 3, + "unpackedSize": 798790, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJglKbPCRA9TVsSAnZWagAAmSEP+wSAS/+/ddmXLIyIBmpA\nM9IC0Hb+ImHCFpuK4HPdD6uljh5TUsECRDNKYECiyf1YucDCTFTWkPwtFBVV\nPGYwl7/BDpXNVK+ekSM9g/I33/BwI9xJTRpx5q+AWhpf4obEs6CvtqDYWGvv\newiNn8QVmtLlIPQPZHv9LQtaF4nea4OzIfCvIfj0IlQHMpVkOH0iL7tcbmIP\np6+glalukCDUosbGR9RVWzmBoo1YtdKfYuVdztZ2gnrtAxQnIj8NnBbS8MEn\n0MGe/KnKuqPO1QsfnGH6HVRQM/epzlonM3uBP8Ku/ad/K+ndRVJ1YQzAykgI\nx7tc+5m2KGgzazdBTJ5pB02ChJ8KwE5T5xNw/XYZ4RoGErm+30qjsT3hf5na\nKiJV5n6r/MG0YG8ewe1erC0v2C25XkX4SuboaNqS1zUNWIneoRz5biCFBfQ4\nL/RtTr+vYvynKDeqbBx70/hc+xs5NdN/3CVvwXMNAgTQNChsBPrB7X8qttvI\nWPQtpfaKqhXoGaoKE3PAfr8F6dZhu8DrwLus5tTjktiLA6xMUQrOp6jmq+OU\nwb8VJJ7cYTicphu/vA0kgJSsl+j6CcwVOj3gBOF+WsPRg0JZe+HVZb6N18a/\n0IAuLWV5kTDwJW6AE1qEvjKYC2oT3tZ5qk32R2Kdm1wgSXVsufmNGHIRKbXe\n3a79\r\n=FoQp\r\n-----END PGP SIGNATURE-----\r\n", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEYCIQDzCmnJA8GYoMgJAXYVnZhF7jv9yrXKSzJiXAjfx37Z5AIhAM4fC2wiuziY+G8Q6YmZhF5zMEUKMebDMmq0ijd8T8+H" + } + ] + }, + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "directories": {}, + "maintainers": [ + { + "name": "typescript-bot", + "email": "typescript@microsoft.com" + }, + { + "name": "weswigham", + "email": "wwigham@gmail.com" + }, + { + "name": "sanders_n", + "email": "ncsander@indiana.edu" + }, + { + "name": "andrewbranch", + "email": "andrew@wheream.io" + }, + { + "name": "minestarks", + "email": "mineyalc@microsoft.com" + }, + { + "name": "rbuckton", + "email": "rbuckton@chronicles.org" + }, + { + "name": "sheetalkamat", + "email": "shkamat@microsoft.com" + }, + { + "name": "orta", + "email": "orta.therox@gmail.com" + }, + { + "name": "typescript-deploys", + "email": "ortam@microsoft.com" + }, + { + "name": "types", + "email": "ts-npm-types@microsoft.com" + } + ], + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/types-registry_0.1.540_1620354766416_0.01753735979168347" + }, + "_hasShrinkwrap": false, + "contributors": [] + }, + "0.1.541": { + "name": "types-registry", + "version": "0.1.541", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/Microsoft/types-publisher.git" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "MIT", + "typesPublisherContentHash": "7b7a1aae9b29c76ac73f46d7b2af91020c445807ffc67e257b147db998b1c39b", + "_id": "types-registry@0.1.541", + "dist": { + "integrity": "sha512-fZGvxKaLmEEKIOYPnQaThjFzNCYbWqRGtwFh6bd9NW4R2uSdTC01oHNYs/+mMAANBMzUYEg9uMVyk6p177WoUg==", + "shasum": "49e3a4226bc157db0ddc2c1fce3db60fe91df095", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.541.tgz", + "fileCount": 3, + "unpackedSize": 805616, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJgnehlCRA9TVsSAnZWagAAQ1oP/A5sA39quSh70yrtibYo\nQQEzer+mJOgKyACzWZZAyl9JdozHVSQo0Ohbt4tfRYT6k/wrE1Jowr9FyIkt\n7BZY1jdlPL3vnNs7X9BpXP2HsRc5dHphJhI0aSC72ss9vATTIVWWN6GUacUy\nxZ/rKZifxjbAmqUnmoUDQuCcLPjhgwShGx+P454c+WtBjBOIYtLz1ARA8YaJ\nx0+fa/TrlgeQ7ZP/QKwzgFWXeexTkSx0sIOBSqcvgK5HA2wI0hYMuI2SImKh\nINpBZp+0xZVs4wI8j5su8IFmPc3M4Me2qCZji82mgp7nbTVvDDLbkKDHBfhD\ncrjpWb0uiqPsqKoppVpUOpM0o2LFKmjEFQYw57KTvagD1zx/EDjhukF5M+Oa\nT2mdQ/KMGoMvZtzUDThgvt67QYN7bugkSizHMUIPnK0WBQnmlMTouDiTbko5\ndtDKv8OWlQw1FkIgKLovmZT6ZOigHTbjNP/opDg7vp4Ob/+ogf9R9h9iC8tz\najUGpLyJnwfQSe6pZM0KOOOnUY9vLLUh+Ud8HY5SecpJN13QpWMK54joxm6B\nJIjq/Nm5NvtgbgrpH75aPpnOXCmDSlx+pBrcRWbl+L2QxmLdCsPyPJ7c/c0Z\nAfbQa5qnF0fbVeI1EeofOWu3CaD7Q+Hb4TgPDzeqNlZTTdyhCzicbJpALBkX\nSV0J\r\n=POrR\r\n-----END PGP SIGNATURE-----\r\n", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIQDccNKDNL4SiewsmqX1slgF7Qv8VP/K/EidcVKJohr6JgIgd2VGZFEC/cImNzhM96hNN9JJz0jxHPzI1gogyHb2hlk=" + } + ] + }, + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "directories": {}, + "maintainers": [ + { + "name": "typescript-bot", + "email": "typescript@microsoft.com" + }, + { + "name": "weswigham", + "email": "wwigham@gmail.com" + }, + { + "name": "sanders_n", + "email": "ncsander@indiana.edu" + }, + { + "name": "andrewbranch", + "email": "andrew@wheream.io" + }, + { + "name": "minestarks", + "email": "mineyalc@microsoft.com" + }, + { + "name": "rbuckton", + "email": "rbuckton@chronicles.org" + }, + { + "name": "sheetalkamat", + "email": "shkamat@microsoft.com" + }, + { + "name": "orta", + "email": "orta.therox@gmail.com" + }, + { + "name": "typescript-deploys", + "email": "ortam@microsoft.com" + }, + { + "name": "types", + "email": "ts-npm-types@microsoft.com" + } + ], + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/types-registry_0.1.541_1620961381117_0.1250578970540943" + }, + "_hasShrinkwrap": false, + "contributors": [] + }, + "0.1.542": { + "name": "types-registry", + "version": "0.1.542", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/Microsoft/types-publisher.git" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "MIT", + "typesPublisherContentHash": "dae5789fe8a10b9562f5e788ae5f4a40c24c35b1a79c2d10308717046f5f810d", + "_id": "types-registry@0.1.542", + "dist": { + "integrity": "sha512-2XOPAAiARW/f04PDeXC2XJf9CWVQMzrvzCcqXSJa60BYg3QlRLdQE5Jr9i+RZzpphm5nA1oi/snnLzcm0v/ucQ==", + "shasum": "454cf399c87d5f1cb6f86259750f2136f3626b85", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.542.tgz", + "fileCount": 3, + "unpackedSize": 804504, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJgpyn6CRA9TVsSAnZWagAAYIoP/28A+HXTywxMpyO6xy+i\nCoxKSzrpCvyHl6eCQaxD3MpmX1lrSyBf3a3HjxFaze7LV1ER/BjWHMFAyUIf\nRv/+IUjtlohTd3WFb6iLRnlQ1eMr0zBFR9+sjK1Wt02jnXJiUzA7KGyRG0kU\nzISD+vssnYFFKQGyJGmUlicei1qAVrLYOp13KxWGOhlYs1Z5GdRKzK/AOEE0\niGbdwDaRtLZGR2eItRlYq4STHWmzMR+m9pRjiCZG+hTjGTF3FntGGhZjzi+V\nfnEzaet7b5cjbGpfc9Hh0PCo8BqhDZQedS9HUYAarkfoOM73EgVRxtkYdzEQ\nZms2b4vWwBsewNitNzmbujYxvZVLkeqtOwww8BlJOpXkRu5f33B/Oe9usLDW\nYBCOewweDLzVWdtFGMgmSXgTA/9s80kPrmsOSapDCyqNJk+KbzpJQKbGUw88\nWfF1v5cb9ZEPFi6zNJC44A+2xSInjiujkRelx6Ci25bq12rIR9e7CI/jgh+v\nTNtMReUlaudc5QNEnQS08RU7DMDdmxQlNp2D7QfRDexqvYnOMOCr0pzbnoEt\n6edr0kF3cZlSo6Rm/JKojcvrczXnk3bVC9UDm3UdOLrAfnteX8jHUDbzQY1d\n76b/Ij2uglRMJtjog8C91lzeA8CLn8wh/gQQsrJDLfX/VFenmY/9oFQZE80d\nNXA+\r\n=gRDN\r\n-----END PGP SIGNATURE-----\r\n", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIQCRj/M0wEnW/34mzoOJKtQHT48K8IEeL00cLum9TouVqgIgEsQ8ECkCJyQL2jkQv+WSwloNnbPvR1gH9LUzoRyNonQ=" + } + ] + }, + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "directories": {}, + "maintainers": [ + { + "name": "typescript-bot", + "email": "typescript@microsoft.com" + }, + { + "name": "weswigham", + "email": "wwigham@gmail.com" + }, + { + "name": "sanders_n", + "email": "ncsander@indiana.edu" + }, + { + "name": "andrewbranch", + "email": "andrew@wheream.io" + }, + { + "name": "minestarks", + "email": "mineyalc@microsoft.com" + }, + { + "name": "rbuckton", + "email": "rbuckton@chronicles.org" + }, + { + "name": "sheetalkamat", + "email": "shkamat@microsoft.com" + }, + { + "name": "orta", + "email": "orta.therox@gmail.com" + }, + { + "name": "typescript-deploys", + "email": "ortam@microsoft.com" + }, + { + "name": "types", + "email": "ts-npm-types@microsoft.com" + } + ], + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/types-registry_0.1.542_1621567993667_0.6880636062403096" + }, + "_hasShrinkwrap": false, + "contributors": [] + }, + "0.1.543": { + "name": "types-registry", + "version": "0.1.543", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/Microsoft/types-publisher.git" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "MIT", + "typesPublisherContentHash": "04893e2d67a09f955806673dec489194ab43cebc6eef506917b56de783977c35", + "_id": "types-registry@0.1.543", + "dist": { + "integrity": "sha512-Kg6X8FAkfQDJJIBGikyIqDOe7Hsuatma28Ihoq5Qn72hpv8pdtRaH+r+3IUpUQMLMvn97tczCNJl1R6+LfT29w==", + "shasum": "d22edf257439db9868e2b7274346bd9d22c33423", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.543.tgz", + "fileCount": 3, + "unpackedSize": 795455, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJgsGt4CRA9TVsSAnZWagAAN04QAIwf2WLjozRUFuq4Rc67\nypx/mwIiCCRoJrssHjUzWPquCY6SLD1cIB7zR2XeW1t18cVjAf5CVSBSCWo4\nINfLwggGtbb7ZlyOi7Ixl0H/RLhpaI6IWnmVJHV0dh5f85Ie32IsenBeOC9L\n0odGBtPh9abCHCyJ0vysPv/u+21WU+Md0AoPR7ZytLIT6t51esHULZfKvQJ1\nvx4+JiLNr4kR/4sv6qKagiC4VHHf5VVuLGt2JKS0wY92ZDNl/f7dUBJl/uPQ\nmXVMNXbWmlkk/9MR2N2FEkVv1j05a5q4v+REdsk/oP+F9elVc25t9Dzb1EIG\nO5wcrQ8fbRfTjk5LS/jDbG5WDdDX4/DVEW8/YYAQjzEjZ2CIkEtjbSM9a7xi\nb6SZre7RtWQbHiriyyt0+zWGyKxTemtgZItq19SqXqCh/QJJzgyzbP8Ajhcj\n+FsC7Dup/XVwGDXAk1YwFRsE4KeYjb/wJZeCZigKj6lqBBTYB1/cH+VcCShM\nhVZBd01ck28uB30Myirk7tEWJVegymTcb0VavxITFCF6TWSLEcR+wcsFYRMy\ndVyqy5EkYDzIHyWj4Uy0Gb3VcqRviZDWFfE3kKrSFEgyPAbOtgclV/eNGeGV\n2uxBk5CA9h7PVsY+pzEPhM9JUz27WQsOfY5M2WCJAoJwNtj1efCrB7hf+WTk\nSfda\r\n=r3Aw\r\n-----END PGP SIGNATURE-----\r\n", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEYCIQCmPUaXoRGKYsFhDK4OpAiis5fOnIJ5pe+2UyFj6Q6bgwIhAPtwOS51YRA3iSHHjfS4G+3Rs5rkudYYJVZGRew+Z57N" + } + ] + }, + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "directories": {}, + "maintainers": [ + { + "name": "typescript-bot", + "email": "typescript@microsoft.com" + }, + { + "name": "weswigham", + "email": "wwigham@gmail.com" + }, + { + "name": "sanders_n", + "email": "ncsander@indiana.edu" + }, + { + "name": "andrewbranch", + "email": "andrew@wheream.io" + }, + { + "name": "minestarks", + "email": "mineyalc@microsoft.com" + }, + { + "name": "rbuckton", + "email": "rbuckton@chronicles.org" + }, + { + "name": "sheetalkamat", + "email": "shkamat@microsoft.com" + }, + { + "name": "orta", + "email": "orta.therox@gmail.com" + }, + { + "name": "typescript-deploys", + "email": "ortam@microsoft.com" + }, + { + "name": "types", + "email": "ts-npm-types@microsoft.com" + } + ], + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/types-registry_0.1.543_1622174583977_0.609701179260913" + }, + "_hasShrinkwrap": false, + "contributors": [] + }, + "0.1.544": { + "name": "types-registry", + "version": "0.1.544", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/Microsoft/types-publisher.git" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "MIT", + "typesPublisherContentHash": "6530c99eff99d2b860db4d2063edbf6692afe50c09ecafd484391f7a754b4751", + "_id": "types-registry@0.1.544", + "dist": { + "integrity": "sha512-HGHUZgmtWvru0OyygHniW1QwJTb0X0aJ0GAUSR9bxOAQFgQM0OnVZxH/AIw2FtxjO8D/dhrtziC9zmb0/6+5bw==", + "shasum": "c3f31aac2ed8ffb8814d2cfa0c8c00b7665c39dc", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.544.tgz", + "fileCount": 3, + "unpackedSize": 802203, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJgua0ICRA9TVsSAnZWagAAe+QP/2sMevQltFlBLnnZlRmE\nkLgj6GlCW3OELAqIJFyV3dZYhg5F5lMg3x8cJS2Ct/J5KFmGEoXX4aFPXOpE\nuucc4I8uf+aRnq3rAGNIt6CYG6KKpPWNPi1KvCELFoHxgPMlaOzvTwcMyowx\n05LIbhiMfi+8QzRrEfjzvNshKZvEyMHm/61tfqjPn2qcLL1MDejB+nnAcO/M\nLdocy0jOj1QPzifhVsxeH55hFCPpU2J3FBskPaqkqnnICcsMdRCwsVkBwpXj\nQGQxs7D5kUvGdwqxw1j1xpk6oK0IYBXpUq3tCVdU11Mz95rTA5krbMn9wbPE\nSfEAh8TjZai5cl9y9qyZ6fiUCJ0VbPYT/w/NNcAZvau4NPwEG9XaJm1YNwWi\nrZ9ZsRPheF3yweYJpPvDigFegAxmsumL7oRFJJOuBkohhZggkMFL7yaIjVvp\n73EokQ9wA/FHbJOr/Ci5ueYUHlD5HaHlH1XY66PaaO1qkau9gsKhAuNWGPZC\nU51fteexDoWjSxllwAPQCcJsQnCO/0/R7JOsJRzBht+lL8S3p/x9BvNdKLSZ\ncPuPgkJG1fMTYCSwWcKdlgthE5qkj5djgtxoj56Agh6BYUqKhoXXUWc0cbpc\njITbexLIeIudJYz9c5va4+zZXa3qIGhpHY3TofZHlMP76TwzUBTlbgUkWZ/o\nWXe1\r\n=MFJz\r\n-----END PGP SIGNATURE-----\r\n", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEYCIQDMnn1mslObeDg3mmM2xyVd5gTUhSnDxv/DNKNAvYXz6wIhAL2lwrtK6mlt8MrukJaYxL62Yw5PMXQGDTTZOBL5ZsvH" + } + ] + }, + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "directories": {}, + "maintainers": [ + { + "name": "typescript-bot", + "email": "typescript@microsoft.com" + }, + { + "name": "weswigham", + "email": "wwigham@gmail.com" + }, + { + "name": "sanders_n", + "email": "ncsander@indiana.edu" + }, + { + "name": "andrewbranch", + "email": "andrew@wheream.io" + }, + { + "name": "minestarks", + "email": "mineyalc@microsoft.com" + }, + { + "name": "rbuckton", + "email": "rbuckton@chronicles.org" + }, + { + "name": "sheetalkamat", + "email": "shkamat@microsoft.com" + }, + { + "name": "orta", + "email": "orta.therox@gmail.com" + }, + { + "name": "typescript-deploys", + "email": "ortam@microsoft.com" + }, + { + "name": "types", + "email": "ts-npm-types@microsoft.com" + } + ], + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/types-registry_0.1.544_1622781191997_0.970687529729038" + }, + "_hasShrinkwrap": false, + "contributors": [] + }, + "0.1.545": { + "name": "types-registry", + "version": "0.1.545", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/Microsoft/types-publisher.git" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "MIT", + "typesPublisherContentHash": "fc46ede16e23268ac9b33a525d84988474dc54b624d4722428dd2ba243fb62bb", + "_id": "types-registry@0.1.545", + "dist": { + "integrity": "sha512-J0AKs4eZDwdfOXsaNAm5G3G9yCxk0R3u1yK5mv3eY3jSHMfW4kNNci8d6PbrySpBcocbtV4ouHyjqi6KukWJOw==", + "shasum": "afc9e6207decf53c89d1f31532e8221a6a46427a", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.545.tgz", + "fileCount": 3, + "unpackedSize": 806112, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJgwu53CRA9TVsSAnZWagAAvOgP/1WuGEPYsrbFxZLW3SSD\nLRC8HwS6jFYgPMJBUw6Dov8SbWAijZv8X2a2+yEsWPMpq9H1qBLAYZbqElf8\nFtrx83LZKWcMebvmFRhggtujpRL8u3uems3usp2lREOpBZatCtMBKUV4f2S+\n0sT1upxMou1cq9bFPQv/XOJNW2HM4w6W634y5dH2CDGR6tns+ZGt/sO6HIDv\nY5s+SU88DLwYbXAjgsm3TAwTzPZfZgYJ2lttmivb6njOiQBIaNo7Xm0IW4iO\nKJo8nvjr7wVTZS7D1BUO8R8d0yM3TOpvHNzs0Ya0pzaLiszLU8yj+Bniiy4R\nxIeCMgneRqLSqap5+oSpQs76oTMWCyQHyY5JWz+fcA7XXzVIXHzkMLea/nRs\nf8R+kwqUPj2dS6sTw4lA1vqKPrVsh1hCYeiWgN4ozshaWaTWu1puZiq/Gi8X\nj+JXFasHtftaspBHD03kYL1FR8PopubE0+rQbrUY5lMHLMIzNdksoZjGSMhP\ntq14yNhD4vgdSqjIcxaZpZAowo6W0KKC4xZfj+v1SDpbn3FUMxYFtiFjQr69\n3IHB0z6JXu3dFBz2+EwCeXKTbiQQ+M/WO1sw8MuLp3H0VWGy6SpAnkVKqDYa\ncGE7/Ai9yun8WEJQ6Y4O6ijwuye9gAWA3QTN054x4JrxNW7ZJnQxHcG51iFW\n6BF9\r\n=qpFD\r\n-----END PGP SIGNATURE-----\r\n", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEYCIQCU+FFKO0ANeCOjqZdsd/ootwSkoPtNhYw1QGjybrl0ygIhAJlE4SG1Vg9ZoRPk+I3Ua7HDRlvwyFowYic0qQLY9BAp" + } + ] + }, + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "directories": {}, + "maintainers": [ + { + "name": "typescript-bot", + "email": "typescript@microsoft.com" + }, + { + "name": "weswigham", + "email": "wwigham@gmail.com" + }, + { + "name": "sanders_n", + "email": "ncsander@indiana.edu" + }, + { + "name": "andrewbranch", + "email": "andrew@wheream.io" + }, + { + "name": "minestarks", + "email": "mineyalc@microsoft.com" + }, + { + "name": "rbuckton", + "email": "rbuckton@chronicles.org" + }, + { + "name": "sheetalkamat", + "email": "shkamat@microsoft.com" + }, + { + "name": "orta", + "email": "orta.therox@gmail.com" + }, + { + "name": "typescript-deploys", + "email": "ortam@microsoft.com" + }, + { + "name": "types", + "email": "ts-npm-types@microsoft.com" + } + ], + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/types-registry_0.1.545_1623387766972_0.41927250788718773" + }, + "_hasShrinkwrap": false, + "contributors": [] + }, + "0.1.546": { + "name": "types-registry", + "version": "0.1.546", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/Microsoft/types-publisher.git" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "MIT", + "typesPublisherContentHash": "c1f4139ddd0e4aea9ffc6198ddc1b19f5632cd124243bfab146e7398be78cc99", + "_id": "types-registry@0.1.546", + "dist": { + "integrity": "sha512-YSU8pKS91tiGTli9qFH/SU3wpTVxmRxdLGb5Z7ak1QjfNxRfUnSwjP+yCaU68O+l9cCPNSsPL8yU3+OAQh9ZqQ==", + "shasum": "eb63b38f32b281caad99223f829f471fa58c4a39", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.546.tgz", + "fileCount": 3, + "unpackedSize": 809110, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJgzC/yCRA9TVsSAnZWagAAcY4P/AhrCUZQ8CAu+PTEmQam\n8sg/zzVL2BQKpThLbMfoMawF8Lwprfg7d0ZaXycTzjUNGyqBbr9W7IMJYv3S\n053NAyiNg+xykk1Daq+mYwyAnpz2LuLQNLJGcD1D7OjmcaY4imziUcwuxo7s\nZqPHnYOVe+Kf+G/L5ONJNb0nFprg5LuY3Rgeoo6wXXgsX93WzMND2RVGh/eI\nc7M9H5j+5tulqjtKtTQ0CBz51FKZTRpFSMeUK3Ui3N2j8sXwnLILe4g7So3Q\nEQwrs7N2V/7aLkFt0FHJu9nh9AkyAhTYKlFoXzxvVkN9oADo51FlyAAeVvFX\n8N1TOQfu/OG2B2tlz8T3eY4U3NAX6mM58fpUz6IS5PBWedaokPKO5tXmSKae\nE2l1z2J1lX0qZE4Si5VFfuPbCSpnX2byhh3LJjqb7bzloqdo7LBHtCjzfxIO\njh25zlIXMb2pdeC7SQGixxwmxwUfNs8MfEjHH8B1lr1dfP4Y1VsR1iB2nEzf\nD24mMxl6gDhZ2BOIDaptpeR+av5KvZ/lwppeEPEvm96/Ex4RvJpT1tpeA3Fn\nt4/eb3rksEBcPJ7018RwTZTUK95cxhy6NeyuD/9reLzQPLc76SlyLaXePOsG\nIDjl7wTJHOMYWYxvLivM9pXI0BBg3CUKkxRgPC4dIR6JVhYmw29k1Hu0w4gv\nxcRE\r\n=tjQ+\r\n-----END PGP SIGNATURE-----\r\n", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIQCnhYgVq+2DelDd2pFFIIsTAs2yXVSqnE86CQSc58nHkwIgI+2T+wLri0NZCe/6zWQ0H0iG0VJn6RkHDuk1UwMvDQw=" + } + ] + }, + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "directories": {}, + "maintainers": [ + { + "name": "typescript-bot", + "email": "typescript@microsoft.com" + }, + { + "name": "weswigham", + "email": "wwigham@gmail.com" + }, + { + "name": "sanders_n", + "email": "ncsander@indiana.edu" + }, + { + "name": "andrewbranch", + "email": "andrew@wheream.io" + }, + { + "name": "minestarks", + "email": "mineyalc@microsoft.com" + }, + { + "name": "rbuckton", + "email": "rbuckton@chronicles.org" + }, + { + "name": "sheetalkamat", + "email": "shkamat@microsoft.com" + }, + { + "name": "orta", + "email": "orta.therox@gmail.com" + }, + { + "name": "typescript-deploys", + "email": "ortam@microsoft.com" + }, + { + "name": "types", + "email": "ts-npm-types@microsoft.com" + } + ], + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/types-registry_0.1.546_1623994354307_0.04188404570192428" + }, + "_hasShrinkwrap": false, + "contributors": [] + }, + "0.1.547": { + "name": "types-registry", + "version": "0.1.547", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/Microsoft/types-publisher.git" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "MIT", + "typesPublisherContentHash": "63da7c0ec12fdcdee976da7105df7296fa217fdf41bf7e62fc1eb4797eb1e433", + "_id": "types-registry@0.1.547", + "dist": { + "integrity": "sha512-kERVnkvg4rBE/jinRXW6IJHEVU6Mcuk79WrI/1SwSooek73ZLjm+jUXGKnLgoTAd0JnJI3ghNWbs/lknOxLTsw==", + "shasum": "fc813f6e3cd5fcb39040426eed3808a637eaa84c", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.547.tgz", + "fileCount": 3, + "unpackedSize": 813614, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJg1XF8CRA9TVsSAnZWagAA+HAP/iCVQgK/5MNzg7s56ZmH\n0mhc/iXUpc2+otQIS7U8NQFNpr+9R7AKU2wXCCVcFPwCs1G3ecYf2Oh2pzr5\nyLXVd7T9slP9mZEPuKyw28bixB35l36UB37zvE4TE3M7tRYusvryymYj6kPW\ntWXro3ttgNhweP6iLZ+x4NB7uP/8yZsa8KeCdHLA0D0KsGe7NqKvjgUkmSSg\ngpZPdaXx8yBVXjpsEDwYB+U3h4BsRakg5KS6GD4lKGNEolQ/eTuJj79ROh2r\n9+ZBkAo/+5Fj7OKBfbocZy2nnXrubCQOZjrmcCp8trAOX3QPfrOUBjtCgdA+\nA4w3H7ZAACGkhAtC9VQw5YvsO+PPM6VPwA1Yx5npjlBXOV173i/LdzIZZAOJ\nMMydURXG8y8TvFbogVDkT10tDRSmYq9Ya7IbRzjXrdnBjzCNi3hr6XvVl8NQ\nMV9EXaCQDNIWsrVc0CB7IJOOejxjG2kwXyXfHNXWSc6cMI+Z0fVylX7IwmEO\nzXzcDn5+i04JnAq2R55l+0FCyiSLyqiag5Ch5+DLtvozxkmbikwUm/HFOUiL\nJwrDNK4WJ55GJakodY4bTRwkICtaUKQF+MfcvtcmbEKrBm7uXVv9KTWeX6JZ\n4u8z5Nr+4kkGiwWCVlD93gj2AEYm0oF+dtniT9VEIEUVLoBfdy5K84A/mNVk\nxLbk\r\n=zeZu\r\n-----END PGP SIGNATURE-----\r\n", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEYCIQCK0EKnIvJINXxEMJLUGYpTXkwANlnrsNh3n/q2dRPzHQIhAM0Y2CfvthiW2Fc/xbKIM6CSQVPNtWu54ZWhwNnz2Bko" + } + ] + }, + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "directories": {}, + "maintainers": [ + { + "name": "typescript-bot", + "email": "typescript@microsoft.com" + }, + { + "name": "weswigham", + "email": "wwigham@gmail.com" + }, + { + "name": "sanders_n", + "email": "ncsander@indiana.edu" + }, + { + "name": "andrewbranch", + "email": "andrew@wheream.io" + }, + { + "name": "minestarks", + "email": "mineyalc@microsoft.com" + }, + { + "name": "rbuckton", + "email": "rbuckton@chronicles.org" + }, + { + "name": "sheetalkamat", + "email": "shkamat@microsoft.com" + }, + { + "name": "orta", + "email": "orta.therox@gmail.com" + }, + { + "name": "typescript-deploys", + "email": "ortam@microsoft.com" + }, + { + "name": "types", + "email": "ts-npm-types@microsoft.com" + } + ], + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/types-registry_0.1.547_1624600955769_0.002420134998320167" + }, + "_hasShrinkwrap": false, + "contributors": [] + }, + "0.1.548": { + "name": "types-registry", + "version": "0.1.548", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/Microsoft/types-publisher.git" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "MIT", + "typesPublisherContentHash": "05dde481c895ac6a67aee828ce1a90238d8746b5200ef301d02d505553251543", + "_id": "types-registry@0.1.548", + "dist": { + "integrity": "sha512-xHedGCQbE/KVUjn/+FkbzYXDEsHVbrz+9m1aL8itn3tWdv9cQQLnlL3/o+9//f9mYn5JHH34pDtOefuNWiHwxA==", + "shasum": "222151210abd74fc3cdfdfb5e2be74818855073e", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.548.tgz", + "fileCount": 3, + "unpackedSize": 819122, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJg3rMlCRA9TVsSAnZWagAArq0P/jNYXAxxDtuJUx8CzcrG\nQEwGVVcp3+GHnOliUlqr10DIIKOy0dnpZGjwR9s7L6PdpyGaj/r5GrIp6j21\n8Lg/lHJHC9qX9rt3QRS2PbGG0/Z4TFuemdpF4TZG4k+kVwO6LTrOA9/h3V3X\nXeH1zcHnshTKAAN3tln0GEmKdlIQKTb38C5+TOrMmXzsp8toyD5Yr/g+0Nxn\n6y46t9207AH11m3kUNZtjuR74r58mxvHrV/Z5caNhe9ZuO6sygtI3+xwbvte\nDcuPUqjZsqZ8e4Hr6h8P6gamAA7b72UXHuTcL0d7EAeXGeBMlM8yC2Zxyjm+\n68rU35G4TGjSYmMNXDRxzTi18sfL9W+W4CcavE5Aq1rsbg+LEuTxMxsxpMf3\nWrwG0VH+Y3aYA3plA8L6hdyye3H01M4D+4st+SF6F/NzpZAYUwvljwscnOwS\nNpMrdcYfUqYgofTR2aYr1JHAgZtQSPOa9Bk9mLY5sRqoqlnPYYXOBtQyZu3J\nFP8henpoKjxz18eQFlyTFS7p1f2LjE9tzRnv5HIPx2A1P7RLYBGVjEEE7doQ\nfXXk+KtM1o2+Cst6fvkWScwayexQfwGNZOP/U3WrE9+zTKarQxJefxOl9QQC\nOlfGLzm0JC8fvzSumKtoX3/TbmvS+9etsfMaIVLtktvs4uMzA2Ez2W57mrGJ\nX+3R\r\n=4Rja\r\n-----END PGP SIGNATURE-----\r\n", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIA14wrMHQjEHpkNFxTmfEbOKpd4p6PLxssQPjzdLE370AiEAtMyQE2ufeBm8oF2LMBjDHfgpzAwHv8uFqjYkMIO5XRE=" + } + ] + }, + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "directories": {}, + "maintainers": [ + { + "name": "typescript-bot", + "email": "typescript@microsoft.com" + }, + { + "name": "weswigham", + "email": "wwigham@gmail.com" + }, + { + "name": "sanders_n", + "email": "ncsander@indiana.edu" + }, + { + "name": "andrewbranch", + "email": "andrew@wheream.io" + }, + { + "name": "minestarks", + "email": "mineyalc@microsoft.com" + }, + { + "name": "rbuckton", + "email": "rbuckton@chronicles.org" + }, + { + "name": "sheetalkamat", + "email": "shkamat@microsoft.com" + }, + { + "name": "orta", + "email": "orta.therox@gmail.com" + }, + { + "name": "typescript-deploys", + "email": "ortam@microsoft.com" + }, + { + "name": "types", + "email": "ts-npm-types@microsoft.com" + } + ], + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/types-registry_0.1.548_1625207589396_0.2994120542199532" + }, + "_hasShrinkwrap": false, + "contributors": [] + }, + "0.1.549": { + "name": "types-registry", + "version": "0.1.549", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/Microsoft/types-publisher.git" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "MIT", + "typesPublisherContentHash": "b15a71d3490852fd5d6cef4e6e3d69dd95b515a37201d576145fb73aa1f54ee9", + "_id": "types-registry@0.1.549", + "dist": { + "integrity": "sha512-FiRkiDTv1zbxGJrGY8L8piE+8wn4fpmumJPkDpdAXxaF5qRzKWXCqh9P2XXAVUEFUh+tWAsGZ6aj0pET3rRDyw==", + "shasum": "f45fc5059d434d256347b45b3bffa7b4848fd371", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.549.tgz", + "fileCount": 3, + "unpackedSize": 1291849, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJg5/z0CRA9TVsSAnZWagAAMRIP+wdXa2uWYgXhnSLQ3gLn\n82OVH7qKCI0v5NLb9GCEeccKBBx2bSBdkAKd/OKIZdEFdIBh//3vnOXfYzc9\n5YxFfduJ/sWTF8gNfMiBJhLYtset8Ga20Cz7djRAHTw9FXoJs0eiEIG89izO\nJt2rUii7/HtSKANSdfxCF/l2B3ltOEYty7qJJMHlHxTl9fJrB4MmmXn6PHNl\n9Y9jRnWwcamNPv2MCCBan9r2p/9GPBU+LKHk439087IKkLyzqvTPUil731Lt\nMSZtdVn9kRl2mMCj3XHUT5Qic/zP1Dzf9N5M2ETehAXJ+F3P6YMDVEJXKsHe\ndAfvM82QIQhSx2537Wfk3RRXItl1L5W3txSXAfDUok+dg1zDx3jagGaKVGQd\noaOHpcJOy+vOrv9nCr73nriHE9Out1CUQYCceCZntHGo9J/03lGcFzdlD/ev\n9YdlX6M5chvDQ7QjzOAI4I4D4OqRlqYlvI2CVP0IOt9hWK6OuDuPRZjB2xJi\nqKv8rStx75ucL9h67rEw2j3kbPGuAp0rd5wsqjXiaPOQXtd8DZcWHV5HeDBW\nJqSmrABd+iFY+NayYzA/NA2+2wqmsUOgjBloiM/q/ygUWlc6o5IA32sfh5mK\nYuoW4yKKN8tJkZxeLS754YzyI6KKlsmegOIpqVFBvLN5rFUMWKe2DOdgIGZH\nh0xi\r\n=tY4i\r\n-----END PGP SIGNATURE-----\r\n", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIQCeOIK9v1pLhw22sEbFgvIbz0z0pP/8ueQ0O0Vpijj3xgIgHG9ocMBPoVL0MyygVllDNHjCdvx4d3r/tDyAFC9/TL4=" + } + ] + }, + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "directories": {}, + "maintainers": [ + { + "name": "typescript-bot", + "email": "typescript@microsoft.com" + }, + { + "name": "weswigham", + "email": "wwigham@gmail.com" + }, + { + "name": "sanders_n", + "email": "ncsander@indiana.edu" + }, + { + "name": "andrewbranch", + "email": "andrew@wheream.io" + }, + { + "name": "minestarks", + "email": "mineyalc@microsoft.com" + }, + { + "name": "rbuckton", + "email": "rbuckton@chronicles.org" + }, + { + "name": "sheetalkamat", + "email": "shkamat@microsoft.com" + }, + { + "name": "orta", + "email": "orta.therox@gmail.com" + }, + { + "name": "typescript-deploys", + "email": "ortam@microsoft.com" + }, + { + "name": "types", + "email": "ts-npm-types@microsoft.com" + } + ], + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/types-registry_0.1.549_1625816308459_0.20401138221083337" + }, + "_hasShrinkwrap": false, + "contributors": [] + }, + "0.1.550": { + "name": "types-registry", + "version": "0.1.550", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/Microsoft/types-publisher.git" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "MIT", + "typesPublisherContentHash": "db24c1eebd181545707fb9a9322b4c3ee06127ffdc0db104d7e61364508bcaa0", + "_id": "types-registry@0.1.550", + "dist": { + "integrity": "sha512-l35n1m2iBbGoW0mVEjg1vP+Bmgp91zvzVLn/13KUbzgVYVY7WNtkrEw2SsG68dbE5X+02maGohohsMU4980o1g==", + "shasum": "45f91150bd00432d52ecd17d1cec0803fb87922c", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.550.tgz", + "fileCount": 3, + "unpackedSize": 1294498, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJg8T00CRA9TVsSAnZWagAADpMP/1QoT2KVIaYyK+QbZMP0\nBofP4a6JSauwFXbStNORCPLfuXK4S5jrHLX0HRNgzCFA34HIWmnHjPsajdQq\nlYomosJ92CxwaW6TbAjdWGaDwGMvwkZeJftCpdnZfe9SKVm+H4Ld0V/eXYQD\nDFsNxhG87ijtSr244xBzEgfkRN0v+HN1/16hqfchIzKBSsSj5mMzjKBAHXc7\nQv2yAHwZNRckyu5VU+cPYYi2n1fOwg9LTuUxycdz0NASKbtktsaAs/dJcjZQ\nNgXTAhSUxsModjHF8uuMAKKcCa0DZMsuHKDR0lyvUPaGyumHSaG6gTiSH5Ne\nqCA7iUt+PCBESkflCaGTGHreVn1D+B/jnA4yVpi7HutLFXAJSpeIBh/HIIjC\ngxsFbpvW4mrOnKF0OOsYDJ/BFRKODh6iQkT/Cb8XZb415iS3Qmmf6ImAm8uq\nTVk/lsqT7aPvDvbI6bdZnUOyfDp6CAeoShCbWABoD26SL+4GbImwyHCevLou\nqWrn4U4Z5YveElx7gC+4tJxX5G3TIHa5Kn84uffZHpf6PdQt5ZPvBmoA5CnT\nNPq6QwXYzeDoibb9RZcbb0KRhTxrUPEXtcueHXZNA19yt2dre0nHg1RkZL5X\nT0hppVRYnftqkLWWbXJcdR2GLLL/KhYuOwzQYAPlnxRRPVs4nzhm59thCHxi\nMUbi\r\n=BjF7\r\n-----END PGP SIGNATURE-----\r\n", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIEv7DFiU3Sx5J4j5KAkWmsolsD3UtDeaRzLDUv5uS4ADAiEA4ScLRlAaOxI+ioI+sD25fjh9+H5VQ+qBBQaG7bmjW1Q=" + } + ] + }, + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "directories": {}, + "maintainers": [ + { + "name": "typescript-bot", + "email": "typescript@microsoft.com" + }, + { + "name": "weswigham", + "email": "wwigham@gmail.com" + }, + { + "name": "sanders_n", + "email": "ncsander@indiana.edu" + }, + { + "name": "andrewbranch", + "email": "andrew@wheream.io" + }, + { + "name": "minestarks", + "email": "mineyalc@microsoft.com" + }, + { + "name": "rbuckton", + "email": "rbuckton@chronicles.org" + }, + { + "name": "sheetalkamat", + "email": "shkamat@microsoft.com" + }, + { + "name": "orta", + "email": "orta.therox@gmail.com" + }, + { + "name": "typescript-deploys", + "email": "ortam@microsoft.com" + }, + { + "name": "types", + "email": "ts-npm-types@microsoft.com" + } + ], + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/types-registry_0.1.550_1626422580751_0.7325313190578944" + }, + "_hasShrinkwrap": false, + "contributors": [] + }, + "0.1.551": { + "name": "types-registry", + "version": "0.1.551", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/Microsoft/types-publisher.git" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "MIT", + "typesPublisherContentHash": "2840863f6467936fcc6ca716e76afff19bbd6ffaf8d89414ed475dac74aa1b39", + "_id": "types-registry@0.1.551", + "dist": { + "integrity": "sha512-OVx0bliw/l3ZE0IGztGtsRS5GwT9nDKh8EX5L7fdvewhF5sWorkbzkP2K+h0dA8cDa1HY9bwJTZUPut+zxFnPg==", + "shasum": "ebc5b5813958df20748d2d1ccbc760164c5cd032", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.551.tgz", + "fileCount": 3, + "unpackedSize": 1295797, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJg+n6qCRA9TVsSAnZWagAAmzIQAJBXUCv4hFBKC1xaTT5h\np6u9gRwSfu2vFQj9/0G2a7KRkYIwl65EFd/BXlWFbvz70b3Cxdz6QfvKx4ZU\nAg/KBg1dDQSgGGL8559nUiHRJEpXYh4Ct7NEGioP52ooJ9cRx5BFvxa/ERZe\nnNNI6UeTUsnbk6ege117FkGo4JM0naphfZE1t4kTI10RcOTGSUtJKs4rIrsv\n01zRAEKvtjVmy1H7IPU7LeBtbDT5SLafQPc7k28n4pCBwntq1hB4uVt0eyym\nnm7KtVSRYNj7DpnFh4mTkInLFaSuLwP2VrNCrN1D9VK7oOyL6sskRUGwns4k\nBUF58yTygrwhtYrBMTIEYJNYmtWUY9Qhs2YwlqkvhmXlRvbrbZqys+ywsuWG\nZ+v3X6Mf7Hk8vmvgP027eCKyi5ivs3xbIrQi4E/kjp0vmO1q+CGXvZFfyhxu\n83cTcFX4thUheVsOtwoccWCL7MGS3TFnkemGgPysA7HwahgkI/D9rf/uA22l\nCUC/YVVjJlMszmxJWamPEKtJjU0u98VkFzoPQDqKfI/VZrSrppvrlfASml9k\nXLoKMI2FAhPiMZyOGmzZbKlBf2h0VUeid44xiSshvCOpnZmma0hPmRf6WS1Q\npt67JrrbBO7nhg7g0gQskq6efXjsIUsuJNvLRCX7mVRwXI4lshCn55ZUMnSz\nKV94\r\n=XxDF\r\n-----END PGP SIGNATURE-----\r\n", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIQCLdVTw0oq6Ct6F2IQaOx4foBuEE7e75dAEJJ8aFlzi7QIgCVaqQ2ydJ6n2e44/0pWsQaCbUJ7KX5xZN6e+15yH6tQ=" + } + ] + }, + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "directories": {}, + "maintainers": [ + { + "name": "typescript-bot", + "email": "typescript@microsoft.com" + }, + { + "name": "weswigham", + "email": "wwigham@gmail.com" + }, + { + "name": "sanders_n", + "email": "ncsander@indiana.edu" + }, + { + "name": "andrewbranch", + "email": "andrew@wheream.io" + }, + { + "name": "minestarks", + "email": "mineyalc@microsoft.com" + }, + { + "name": "rbuckton", + "email": "rbuckton@chronicles.org" + }, + { + "name": "sheetalkamat", + "email": "shkamat@microsoft.com" + }, + { + "name": "orta", + "email": "orta.therox@gmail.com" + }, + { + "name": "typescript-deploys", + "email": "ortam@microsoft.com" + }, + { + "name": "types", + "email": "ts-npm-types@microsoft.com" + } + ], + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/types-registry_0.1.551_1627029162312_0.9401579367391388" + }, + "_hasShrinkwrap": false, + "contributors": [] + }, + "0.1.552": { + "name": "types-registry", + "version": "0.1.552", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/Microsoft/types-publisher.git" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "MIT", + "typesPublisherContentHash": "1513bf29e0c3bebe80e4c0f24c92700e5563777f97ac5214d72ebfbf08725c9f", + "_id": "types-registry@0.1.552", + "dist": { + "integrity": "sha512-ixkjub0r9mwudOaZcb0CPnH2I3/rnWHbN4udbFTbJv1ZEpAV6L1m2CBFWcHv3YV47oS240FfKNuGp0JJCeUuYg==", + "shasum": "1ed44931c21e7e369378573916785055a4d2d90e", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.552.tgz", + "fileCount": 3, + "unpackedSize": 1297977, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJhBGkACRA9TVsSAnZWagAA4+YQAJOXCQ800OkMVna2afRt\nAvAnErjTewFUC9Cddf4oM4MtV4fm3B/4CWm/fL+SeZt3n9WhmMNCy/ftc23N\nFNY7JdI4v60EwxwJZ0mLLoAnOG3n0dBnxfTjLYDYWs7iTux5X5Pnv8nWHG1m\n+L0iKRZQCi3mKGBLWLFiXWyYXjdIShlgyCDzUIAMGMz/Eyx3ZwMSwU/T4W5X\nvmh4+SlFEopC4ib8p251O5Av13rmL/9wvx5iaPF2mwNAh8yvRBgWBTEUef+I\n8qzfqXQl3x/BIHxZdXexSJ63wRVuYbIoHvwRH4RxYYt13+L2yvCtkcSLOFhz\n1hbUA6Ep9TdH0V7BGEz+USu3UX8zKBToPKQRw3Ks+v5vOj/Tf1egqkJBbsrH\nBOtEiLPSCnxxeOZw02s2v4VbpP19EngEeZUobvdYLhkaD7o2+pnHG0LTMs0n\npZltELgrDka7Qg4jiUjZeDMxAX3WFU6mVdD/h7uvgTJWdE3PIswjodjv2gUO\nu5SGOE4O4+X5KsFeij5eb8FAoSypDR7Bm+YgGY2tgV0AeQeT6eO1gvy4WVWD\n3JK9bwyMx2ixkIXCKQjad1UezJrkZ3LD7GdSRCg49Gu5b/GWjboBDX/uAXl5\ndc4sJroBV8n7i5e9hqqDdrZC1zLpPKlSVA0vW/5nIguqtBac0PGPAtaZIqHT\nwQyZ\r\n=vvHS\r\n-----END PGP SIGNATURE-----\r\n", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEQCICMBrL/0bHnaRxdIq00LvcBa+f5882y1W5IU4FDbL2eEAiBiLKS8UwDAbGEa2QSxC9iHMSaA0g3zdjYh4Rl9BIGe0w==" + } + ] + }, + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "directories": {}, + "maintainers": [ + { + "name": "typescript-bot", + "email": "typescript@microsoft.com" + }, + { + "name": "weswigham", + "email": "wwigham@gmail.com" + }, + { + "name": "sanders_n", + "email": "ncsander@indiana.edu" + }, + { + "name": "andrewbranch", + "email": "andrew@wheream.io" + }, + { + "name": "minestarks", + "email": "mineyalc@microsoft.com" + }, + { + "name": "rbuckton", + "email": "rbuckton@chronicles.org" + }, + { + "name": "sheetalkamat", + "email": "shkamat@microsoft.com" + }, + { + "name": "orta", + "email": "orta.therox@gmail.com" + }, + { + "name": "typescript-deploys", + "email": "ortam@microsoft.com" + }, + { + "name": "types", + "email": "ts-npm-types@microsoft.com" + } + ], + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/types-registry_0.1.552_1627678976281_0.5897202477014851" + }, + "_hasShrinkwrap": false, + "contributors": [] + }, + "0.1.553": { + "name": "types-registry", + "version": "0.1.553", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/Microsoft/types-publisher.git" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "MIT", + "typesPublisherContentHash": "5570fb9c0819e80c47d0df512e87329de4e5234981c9ddfe5949d14984b365e4", + "_id": "types-registry@0.1.553", + "dist": { + "integrity": "sha512-1/Sngz1smpOPzW5XNe+G3HweLS1mbRcge0m8za9PDmznO1eMjTbuiiMl1/89ldicLKhvYNom+aHo1RZE3AvSwA==", + "shasum": "a1f6cb137b798d4a2f44dddfacc7aca323385b06", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.553.tgz", + "fileCount": 3, + "unpackedSize": 1299131, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJhDaqSCRA9TVsSAnZWagAAJQIP/35ehEhj94SH1Z6AbstA\nUjqKvqKpdsAMp4Mcs5+dxdADh7LGgWVwiR14Dd22Gx6cqzGSfKMInk2hne2o\nAQ4PCttjt9w2r/qxUI6+wVwPtph2b75tUUphR0LvhrQZHxT9rQJepJGp8Y0m\n8MBvpLS7ibLlnTjPT3NAc3nzBZyF2+hZJMfZlGzX9RKxoE0hoNGTC9nlI4jj\nOWIHPEg+S3pUCuP4qcexeBG5mCK8kNMPpZT7DuqdZWYbZh6IDrN9Q8TbDXjb\nF4O6ssodhGKfuYfjiJiRCKdi1XxhGxL+XD50KE/gTvlH+VlM2YnXUKQQksnd\naoeqgoWvklstpAQMGvzQ0rXhXQ4RmJRT8zZWzGJQyNZbiNlBo9OQwIlLuJZw\nPJmZIORFXXsGkquJSgnefBQkQCuKlrpPadAHNqEP5z7Ah6Lwhmjn5eJ4iTim\nqDnvV/H5ga3v8a7/1jj+SPYDa0lVKEs5JPSdrdIplBT3pSGByftHlHEKmfoX\nJw4nzs9w2f7JTrn6iDonNlmLOVou/6AvqfaZcGrXyY+NHn5AIoJu9i78uEC3\nZnW4sZC4rv0JeZKTMQw0wqUp4ues4VmRtHjp6+zbbtzlkYcSaJ7uuoA5Gxn6\nKsTTtPMiSm9wn+inqxdwlTCa9tTuP1Cs0XFHVtK4sWGTvofGJDcc15SdVI0w\nCdEE\r\n=SkfM\r\n-----END PGP SIGNATURE-----\r\n", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIEsndXGppMXv1Z2V22o/g5vimUn9rjxRUxO+eaok91bIAiEAwwCL36ZVYf20rQrGtXBDxxmj/YOX1ESYKCSYFF4jslc=" + } + ] + }, + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "directories": {}, + "maintainers": [ + { + "name": "typescript-bot", + "email": "typescript@microsoft.com" + }, + { + "name": "weswigham", + "email": "wwigham@gmail.com" + }, + { + "name": "sanders_n", + "email": "ncsander@indiana.edu" + }, + { + "name": "andrewbranch", + "email": "andrew@wheream.io" + }, + { + "name": "minestarks", + "email": "mineyalc@microsoft.com" + }, + { + "name": "rbuckton", + "email": "rbuckton@chronicles.org" + }, + { + "name": "sheetalkamat", + "email": "shkamat@microsoft.com" + }, + { + "name": "orta", + "email": "orta.therox@gmail.com" + }, + { + "name": "typescript-deploys", + "email": "ortam@microsoft.com" + }, + { + "name": "types", + "email": "ts-npm-types@microsoft.com" + } + ], + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/types-registry_0.1.553_1628285586280_0.3531205682710359" + }, + "_hasShrinkwrap": false, + "contributors": [] + }, + "0.1.554": { + "name": "types-registry", + "version": "0.1.554", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/Microsoft/types-publisher.git" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "MIT", + "typesPublisherContentHash": "63765e39b3002eb5bdabf7fe2eb42011dd8b7aba503d5ca9ad32c0a3ae2354dc", + "_id": "types-registry@0.1.554", + "dist": { + "integrity": "sha512-7pN084l+AWo+tsabd0IGXgYx1lG9uekn5lGMDgZ4uV2KanAWEkznsJpuSeS/it8aS/uEa52IFWIuwgDXQVCdpQ==", + "shasum": "8c8e2900fdf8b692ab17e599d2e6a3a95f520ea5", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.554.tgz", + "fileCount": 3, + "unpackedSize": 1301741, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJhFuwYCRA9TVsSAnZWagAAHUoP/RUX5c9paHnj8+pRqUXa\n6Pqqx/ng5ByyuZsmd1McOlc/C0N8fJMX+/n76EIQOZvqBKKKzFirMmP2Dvus\nsX5zdTIKC4Ffz0gevE2ZDWZlrlyXHSPBQ2F56OACJ+jKOCuNnYoQfKVS3pc+\nm+60qz02MtjJ8fRkTqHv1fmnvXbtNbYXiAHLGhiZrhKvVCvXayOUHaVD+3iu\n2XcWbbXPI0yAYLdI4G4ZXVnh1kyJ09gA+sso0im/oGIuTpk/v2Z63IJJ17YC\nNhpZKBcK+OzWzgnbW5r+ZC5xDuGuGoR+SUKlwkto/rWOJvOJq9enMaNjA1MZ\nhST0DMxcOWYLwwjWd5/QKMa3Y5GIscEubfHn9Qxhra6lVuIOjRCVMh3Vprfi\nbtSxctSsPk8HLkZ5CYzNbK769Ucas7LJofxV/m5ksGiWQaSaawDn1fOxly6v\nlyPvP5YBr6kanX18yRPyzpw5ol0ri3OIwJ8Q9KEU0HYw+l6jN1YnIKQuQeE0\nzsGPk4CBZKv1SFXPX9NPduaQev2GYlKSmHmv7SrjwFjcQ/wjYbOUYZuNIdZJ\nKDRwwUCoZGrAX+6J1n2+n4kvtJysWEIeDMKgaENLU2NXKUn0lwob62XVI3yo\nXDHLrvRqcA8igZlMPUOgXXWMu7a9N+BG5zl32a9ypSSXngcH4GQEq7vvWxpb\nSlQk\r\n=HkH0\r\n-----END PGP SIGNATURE-----\r\n", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIQDLGHGLwMhr5SKQsTm/0eFdFQJSFP+qUs/zbE5tKOU9jQIgDP84KzWZE5r4QPByXFJK0XL7iLmvg7Z47Qgsi0V3ulI=" + } + ] + }, + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "directories": {}, + "maintainers": [ + { + "name": "typescript-bot", + "email": "typescript@microsoft.com" + }, + { + "name": "weswigham", + "email": "wwigham@gmail.com" + }, + { + "name": "sanders_n", + "email": "ncsander@indiana.edu" + }, + { + "name": "andrewbranch", + "email": "andrew@wheream.io" + }, + { + "name": "minestarks", + "email": "mineyalc@microsoft.com" + }, + { + "name": "rbuckton", + "email": "rbuckton@chronicles.org" + }, + { + "name": "sheetalkamat", + "email": "shkamat@microsoft.com" + }, + { + "name": "orta", + "email": "orta.therox@gmail.com" + }, + { + "name": "typescript-deploys", + "email": "ortam@microsoft.com" + }, + { + "name": "types", + "email": "ts-npm-types@microsoft.com" + } + ], + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/types-registry_0.1.554_1628892184400_0.4749455040122823" + }, + "_hasShrinkwrap": false, + "contributors": [] + }, + "0.1.555": { + "name": "types-registry", + "version": "0.1.555", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/Microsoft/types-publisher.git" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "MIT", + "typesPublisherContentHash": "2cb53b4fe33311860715d23544a167f4a0553d0fb2d76501cdf75c2d9e52b0ec", + "_id": "types-registry@0.1.555", + "dist": { + "integrity": "sha512-WriUC4DG25FB2+R28a0uxH0Ohhofx7zRirrXgHPFUZubsbzS43ut4uRGfMnGewRpSPPskWdMVEl2iFqQ9iW4wQ==", + "shasum": "f1ec729cfd626f7b15a45bba848cb760ee153f15", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.555.tgz", + "fileCount": 3, + "unpackedSize": 1303340, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJhIC2vCRA9TVsSAnZWagAAAW4P/1Yhqya/sW2yEilkGxHz\nX8x2K3Yuq4oMB+4UG94jfXrHGCjDaPiaXMD2UuVKpsIr8gtCId0UdWFrMg/M\nQTtnTdbscRoN3F5n8G3BQkZv/TdVAsf3KG6qmIChn5YHhQ4vUUxU12PV6p+l\nVTTRkRWmsw/VUpo0P9Od/LQNLq5WbA2MRgJnIzya5UnV4QTUOxn4+ikaXrkC\niNOdWLGI/54XJMyMqqYCGI1dD/o2wl60UYYY+AM674+kU4V8KrkvP89DnnRB\nvCRFu3QaUvkaj1kV9r9KqtBM59au0jKt1X0N6rRDjTgpHtN+xXDpk5N7/l1b\nGqjgNUxyYdpDKtb0/iyQ+Y+qd6jORZTHLMiuCVlDHMBR7100dKDOr6EmEKUt\nU7KVj/z/xbR8bs4NMztfhCIQ5oOVDU93dQ6xji+ptL2eJfqaBmf/sTUR7t+8\nFHWQKQ99ppJ6TtiraE1bHG+qEI6JgheOd6qf42nfN7xQ4dAeLarUnMNymj08\n3FKAI+McM4AEJVMP5uNU4NpR1fc1DTNoVvcnnEGmfx4HOWj2wEFQb2/NkvJ4\niWP3rdb+lyr7fsNxbpWoDTDdq4R/jDRAbSjSkfcIXypHgoDYpaovIgT2tp2W\nt2oGHLRaic2rGNhrhHXAOP01UiESyWbppcLwo+WZLTzJNhp7J4NqwjcUXkgJ\n25co\r\n=OiW4\r\n-----END PGP SIGNATURE-----\r\n", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIGuYm9N08hYqSFG+bQz6bl0c1j20t8Esdzv4wWi/Kb3ZAiEA5fRLaIQtLJd3pxUEZofP7ekeE5I7xDjwq+fmIGxeCnc=" + } + ] + }, + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "directories": {}, + "maintainers": [ + { + "name": "typescript-bot", + "email": "typescript@microsoft.com" + }, + { + "name": "weswigham", + "email": "wwigham@gmail.com" + }, + { + "name": "sanders_n", + "email": "ncsander@indiana.edu" + }, + { + "name": "andrewbranch", + "email": "andrew@wheream.io" + }, + { + "name": "minestarks", + "email": "mineyalc@microsoft.com" + }, + { + "name": "rbuckton", + "email": "rbuckton@chronicles.org" + }, + { + "name": "sheetalkamat", + "email": "shkamat@microsoft.com" + }, + { + "name": "orta", + "email": "orta.therox@gmail.com" + }, + { + "name": "typescript-deploys", + "email": "ortam@microsoft.com" + }, + { + "name": "types", + "email": "ts-npm-types@microsoft.com" + } + ], + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/types-registry_0.1.555_1629498799254_0.34657466625408895" + }, + "_hasShrinkwrap": false, + "contributors": [] + }, + "0.1.556": { + "name": "types-registry", + "version": "0.1.556", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/Microsoft/types-publisher.git" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "MIT", + "typesPublisherContentHash": "8f26302776fc594a1087786a033a9b0d82be4f260d8d1ceb3ffeed29f227ad88", + "_id": "types-registry@0.1.556", + "dist": { + "integrity": "sha512-itVFzeVrmfA86Ii8k3ouZaiUh2ANlVgrzVqiKdTmzvQ2FWi6Yi+nVpE+5QzldKL1nnT4Nr+9yGGW4AksBCv7hw==", + "shasum": "9b99bec28bb22908d90c0be537ff535c1d2bdf30", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.556.tgz", + "fileCount": 3, + "unpackedSize": 1308639, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJhKW8RCRA9TVsSAnZWagAAic0P/jajL2L/SUvd0OHb+09c\nxd+YYh7sV48exgvHzZD+w5FsE0hw916iYiONE9N4Es22AWL5pYeLBBWwmdbu\nfn+NTQYyGbB5BhiMsGgtH/DVBzJgqEhN8XFr3HLUSxCQNu/ZojTc3S+oc03h\nNHC6pzPL8B60SX9HYYGCuQsicjRrMjA5pX1Xmvl4B8wHvQGR+Nk7QXVOCl1a\ncIgzUa/p5jY1xHm29AmoMfJ+eVqzVHod9TjgDaM+85B+1/hMYGt+TlFzyuYx\nAa9Vir9krQ17c0x2ipYnej5X21YulSCU1EoodNAnZWImg5n/w6qJEnOGbW3G\nkt/3e3B3Ns3aBE7NI99OM05LIvsFHTCYr34IHPl9cMKLgj3idxUTWxJlWv/x\naY5WDPtyCKDGgB5etNvoUzAs8NiJIeEClRoAXtmmcatLuQnLLlVUGf2Y5fWJ\nVBu8xoWDBUQ5NdBv7iNOQQiI0Fyoz08JfeAtoEHd0FKgkKF2OmFq19h/tOVb\npOAetrGOyASejhHhrZRVbqj4+f1ac6oYE8rgEl8dbqujgwuZsW7NqIFjiVfP\nNTCico860YZ5I6mQgt4y9CtA8Y6dpbqiBkLcG/VKTUNy/4TsfEG3ZddAjKwB\niva6razLUmBCzTyRLCBkLFaAXixJr2ZmjGW5X6AOCzd1RCi0Yr0SGIyERDYN\nblnJ\r\n=k+gE\r\n-----END PGP SIGNATURE-----\r\n", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEYCIQCvTY+fxipxyKpn/vRwfyodR8/9MU+YRwqqDQrrNhJFrgIhAJOqj4GTuk0JM8JtJtH/0s5Gv9pzdLRQ7jScrFE2OV4+" + } + ] + }, + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "directories": {}, + "maintainers": [ + { + "name": "typescript-bot", + "email": "typescript@microsoft.com" + }, + { + "name": "weswigham", + "email": "wwigham@gmail.com" + }, + { + "name": "sanders_n", + "email": "ncsander@indiana.edu" + }, + { + "name": "andrewbranch", + "email": "andrew@wheream.io" + }, + { + "name": "minestarks", + "email": "mineyalc@microsoft.com" + }, + { + "name": "rbuckton", + "email": "rbuckton@chronicles.org" + }, + { + "name": "sheetalkamat", + "email": "shkamat@microsoft.com" + }, + { + "name": "orta", + "email": "orta.therox@gmail.com" + }, + { + "name": "typescript-deploys", + "email": "ortam@microsoft.com" + }, + { + "name": "types", + "email": "ts-npm-types@microsoft.com" + } + ], + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/types-registry_0.1.556_1630105361249_0.48227921315335553" + }, + "_hasShrinkwrap": false, + "contributors": [] + }, + "0.1.557": { + "name": "types-registry", + "version": "0.1.557", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/Microsoft/types-publisher.git" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "MIT", + "typesPublisherContentHash": "5a55d2dadbdb4584a06fe2fc8ec503f533e2d6de29453e92a682f8272c71ca8d", + "_id": "types-registry@0.1.557", + "dist": { + "integrity": "sha512-bdOVf/60vK6X+4YQ2T8wQ6jqa00lMXhny9ESDI1Uxb9L6Bd78CcujhYLjuk5wtVQLbJyfpi+0qh7MiVy0J7e2A==", + "shasum": "9d9371b78a4cbe89d41e4a7b79ed34d4f15c7766", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.557.tgz", + "fileCount": 3, + "unpackedSize": 1308932, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJhMrCdCRA9TVsSAnZWagAAhbsP/Ap1GV6FmegQa9iFNI9q\n6Flxl3aZ1LTnarFS2hFvpIqsYv70a7UoFJ1ojhp/koJndjtld1JNEivAsEB8\nNiu2zRpnAIzIFF89wLo7emxD1tAW13xIgc6+WCWEcWbB24/k0CGeniVq80Ct\nodz+SL8DlN29ENQKcNNyxOW/JHwmJ8+3KYgafuFcRObzT5FYsDDxaYxXLXLQ\nuMsJIcMU2H1j1lIpRnViFr8LgU2AopXPl2mIbefWSRHm/QI3YblMwWtuvrBS\ncSkDMxi+p76JTKU2k9ZRPc2CYlNwGdWi1l+K6kumKslot9e0Dx1aMjzacaXn\no+dltAIoUbUu1dO5wnfhAliVk/fKyGBPjVeWwgzVm+n6oEM7H0tsfq/HilAi\nR/iucc2hRR2o2ZmbUrqqCjHWEcQHlJz4W/NcT89O/IsUfpXbAS1+9DlMr433\nvJ67rn61EA+36HPSYMI2hDZIraOZscDUdG8rLq1L/nCq7K2TW/plzKBHI5Ok\nHEmsrny6TRfmNIxo5qVVOgnXr1N1Tv8RL+XUuqAZ47hMIQb7xFiElv4CLf9E\nCUOkGZKzpD8+JQnO8vbge3DV2HQxykMMvvBtIgCXeFfNM7dw/XsrdFJQ94IO\nfgwveQb12ZpfbhR1jSUTp/lApEj47MFWQi0IfVgwuv2Yyi+7K9uBhZsE8OCq\nMNfu\r\n=PLB4\r\n-----END PGP SIGNATURE-----\r\n", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEQCIG18pQsc+h7r1cSLtGdKuLtD7HowmLWzQcGe0RsT66e5AiA2ZSZfW4St/NuZzTZKuj2maope3KMOfyp7bzYipxEJCA==" + } + ] + }, + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "directories": {}, + "maintainers": [ + { + "name": "typescript-bot", + "email": "typescript@microsoft.com" + }, + { + "name": "weswigham", + "email": "wwigham@gmail.com" + }, + { + "name": "sanders_n", + "email": "ncsander@indiana.edu" + }, + { + "name": "andrewbranch", + "email": "andrew@wheream.io" + }, + { + "name": "minestarks", + "email": "mineyalc@microsoft.com" + }, + { + "name": "rbuckton", + "email": "rbuckton@chronicles.org" + }, + { + "name": "sheetalkamat", + "email": "shkamat@microsoft.com" + }, + { + "name": "orta", + "email": "orta.therox@gmail.com" + }, + { + "name": "typescript-deploys", + "email": "ortam@microsoft.com" + }, + { + "name": "types", + "email": "ts-npm-types@microsoft.com" + } + ], + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/types-registry_0.1.557_1630711965212_0.6399035419503489" + }, + "_hasShrinkwrap": false, + "contributors": [] + }, + "0.1.558": { + "name": "types-registry", + "version": "0.1.558", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/Microsoft/types-publisher.git" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "MIT", + "typesPublisherContentHash": "e4691353b6f4856306f0921428cf222374225c267cec734b8ecfc0f2bace724a", + "_id": "types-registry@0.1.558", + "dist": { + "integrity": "sha512-4eAwY+l6TTbJ93XqaRbMte9WXwSi+YObfZs6DfWmNtsx4fXQdkoC6bUz4ktpGd5XIvT5NTlPCt8DtpDrmocO1Q==", + "shasum": "8cd583e10f36da671d2059208c167bd34189c4cc", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.558.tgz", + "fileCount": 3, + "unpackedSize": 1312697, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJhO/I3CRA9TVsSAnZWagAAqUIP/1ti/rvuMkcsDGUNeZE+\n2aYyRxTfW1O/Yv61H4NChwmx+uXiomJIagQBYF8YhshH2rz8PpZt/wMY/sJD\ndjiHz00yehoxJWm0kk3VTWTk1vKR/U0gT1rdW1tq6x4/TvHAflr/wY2CrDzB\nRQcX6K1jMJERgfEVQVIDZ3NGgK59fmPTSpuE72BaY/2aD5Iq3jad/b6TFWTK\nThsMSZFOcDZXHowf1rYiMJ1IZ65MT3ikIBkwx/SbPtXJs9QQQgqqAT05FrJD\nwjr/cXFIpla7vva7Sgr0bJo+JP2ExErjoa/8Fp2DiqjkqVGOTAJHzyNeYZ0K\nOMQJZWZIwSTVON2ShdfzUBr3SLOB4JHaV7VTg+DqKETj551od/UmjagaZAEU\niAYxWdPHhunOCKd4IinLLat9ai+qeX14ug3F5dJpY9DnDNJ3Pn3Sn9QfuHNw\n1lUSu5Ckuh2y0Rlv7um0Y6j83IrqpCuHbZZyVFPsoLD3q9x1PHeOjZpH3ig5\n+11Lg63bVTmXUYn19yytytlfuXFg876u62kZc+XcWB+ty044RExYtHSw8CNB\nw3TcQxoh8zXtHn2hQXOIa1QJ1mi+zMTuMmw6y1qiqrO8TWWM0ULg+PO6SV/N\nXe8jcNi+sGyPBpsc8o3SotQe/VLTxbleuMYhEFvUP84OGLcFn/YOq3UE3Znp\nWQSa\r\n=BFIl\r\n-----END PGP SIGNATURE-----\r\n", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIQCJds5ZiWpB9vcBgqYGclxOIihi0ouwbCA7XgxmsPdMhwIgCzdOrvi/hl2NIgxlvHyHYnDNfu1yPTPIPq7RaV+MNXY=" + } + ] + }, + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "directories": {}, + "maintainers": [ + { + "name": "typescript-bot", + "email": "typescript@microsoft.com" + }, + { + "name": "weswigham", + "email": "wwigham@gmail.com" + }, + { + "name": "sanders_n", + "email": "ncsander@indiana.edu" + }, + { + "name": "andrewbranch", + "email": "andrew@wheream.io" + }, + { + "name": "minestarks", + "email": "mineyalc@microsoft.com" + }, + { + "name": "rbuckton", + "email": "rbuckton@chronicles.org" + }, + { + "name": "sheetalkamat", + "email": "shkamat@microsoft.com" + }, + { + "name": "orta", + "email": "orta.therox@gmail.com" + }, + { + "name": "typescript-deploys", + "email": "ortam@microsoft.com" + }, + { + "name": "types", + "email": "ts-npm-types@microsoft.com" + } + ], + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/types-registry_0.1.558_1631318583697_0.4942207651189736" + }, + "_hasShrinkwrap": false, + "contributors": [] + }, + "0.1.559": { + "name": "types-registry", + "version": "0.1.559", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/Microsoft/types-publisher.git" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "MIT", + "typesPublisherContentHash": "ad8de212cd7184bbf4f1da23775333ad05bd62276243d3128efe1315ff7b8e5e", + "_id": "types-registry@0.1.559", + "dist": { + "integrity": "sha512-wwXaawFLyC+eh3xmasL2VHTbxzYVjbaopTqDknXIaw8zhgdI+sOmDIWY+dkuopXsHa9CFweAnjhZhz7UjtQtPQ==", + "shasum": "5657bcead86ea1de4e6c46d319fb04e3c3b805ee", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.559.tgz", + "fileCount": 3, + "unpackedSize": 1317627, + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIQC1KQr98lOcIW7eF3GhCXtfiNrVCXomNUvhwgF5G+4oaAIgcu8Ja4NXIzlWF6aC+HqYtp2X3U71nPaDdFaC0oVkFMM=" + } + ] + }, + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "directories": {}, + "maintainers": [ + { + "name": "typescript-bot", + "email": "typescript@microsoft.com" + }, + { + "name": "weswigham", + "email": "wwigham@gmail.com" + }, + { + "name": "sanders_n", + "email": "ncsander@indiana.edu" + }, + { + "name": "andrewbranch", + "email": "andrew@wheream.io" + }, + { + "name": "minestarks", + "email": "mineyalc@microsoft.com" + }, + { + "name": "rbuckton", + "email": "rbuckton@chronicles.org" + }, + { + "name": "sheetalkamat", + "email": "shkamat@microsoft.com" + }, + { + "name": "orta", + "email": "orta.therox@gmail.com" + }, + { + "name": "typescript-deploys", + "email": "ortam@microsoft.com" + }, + { + "name": "types", + "email": "ts-npm-types@microsoft.com" + } + ], + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/types-registry_0.1.559_1631925164050_0.8353157357072734" + }, + "_hasShrinkwrap": false, + "contributors": [] + }, + "0.1.560": { + "name": "types-registry", + "version": "0.1.560", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/Microsoft/types-publisher.git" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "MIT", + "typesPublisherContentHash": "a7eb8495a2c1202eedb6eea7e3d017dd35947323a9f22322425b7be82cb9278f", + "_id": "types-registry@0.1.560", + "dist": { + "integrity": "sha512-0Y3RQADuvZni6kXZl1TY1vnfpOmW138snXK6dnJoWNmHy6zkd6RT92Vt2i4HPzqRWVl2YZNBktD0bWBKshAKzA==", + "shasum": "f8ab4b9e690df57e28e0f986bf60edcba6f2410b", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.560.tgz", + "fileCount": 3, + "unpackedSize": 1320126, + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIA/P8IPQbugTmslxqDEDyOmkWL2GEIUmSQh986sy5ojPAiEAhqAWTZaYM2XGYvg033zFx7fcYveQ9cDUAApg3xzVHP4=" + } + ] + }, + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "directories": {}, + "maintainers": [ + { + "name": "typescript-bot", + "email": "typescript@microsoft.com" + }, + { + "name": "weswigham", + "email": "wwigham@gmail.com" + }, + { + "name": "sanders_n", + "email": "ncsander@indiana.edu" + }, + { + "name": "andrewbranch", + "email": "andrew@wheream.io" + }, + { + "name": "minestarks", + "email": "mineyalc@microsoft.com" + }, + { + "name": "rbuckton", + "email": "rbuckton@chronicles.org" + }, + { + "name": "sheetalkamat", + "email": "shkamat@microsoft.com" + }, + { + "name": "orta", + "email": "orta.therox@gmail.com" + }, + { + "name": "typescript-deploys", + "email": "ortam@microsoft.com" + }, + { + "name": "types", + "email": "ts-npm-types@microsoft.com" + } + ], + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/types-registry_0.1.560_1632533747070_0.952128959449726" + }, + "_hasShrinkwrap": false, + "contributors": [] + }, + "0.1.561": { + "name": "types-registry", + "version": "0.1.561", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/Microsoft/types-publisher.git" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "MIT", + "typesPublisherContentHash": "e6acffe1ac74ccc8d4c84aa42ef55daa81c6ed2231ddf0ba023cf318fd8fee3d", + "_id": "types-registry@0.1.561", + "dist": { + "integrity": "sha512-+yUzMxaozjwsXOEY/SoUZ8RwJwbZopMdEa0GW3L8JPffrVM2Z+Xl6oDGJjYbJWtzPRYDAf5BvyJcEmriHSO2/w==", + "shasum": "cfd9c099dde9f442bb98730ff9d3aaf5ec48ef94", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.561.tgz", + "fileCount": 3, + "unpackedSize": 1322639, + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIQDaxfEvJLRLF4anxMdueAyn/XwgoyEgMhFoewKmD1jgvgIgJh/uf0AM64TIRdGI8gw++oNpw0+68vmOy1Oa/kw91B0=" + } + ] + }, + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "directories": {}, + "maintainers": [ + { + "name": "typescript-bot", + "email": "typescript@microsoft.com" + }, + { + "name": "weswigham", + "email": "wwigham@gmail.com" + }, + { + "name": "sanders_n", + "email": "ncsander@indiana.edu" + }, + { + "name": "andrewbranch", + "email": "andrew@wheream.io" + }, + { + "name": "minestarks", + "email": "mineyalc@microsoft.com" + }, + { + "name": "rbuckton", + "email": "rbuckton@chronicles.org" + }, + { + "name": "sheetalkamat", + "email": "shkamat@microsoft.com" + }, + { + "name": "orta", + "email": "orta.therox@gmail.com" + }, + { + "name": "typescript-deploys", + "email": "ortam@microsoft.com" + }, + { + "name": "types", + "email": "ts-npm-types@microsoft.com" + } + ], + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/types-registry_0.1.561_1633140178735_0.27239538445892997" + }, + "_hasShrinkwrap": false, + "contributors": [] + }, + "0.1.562": { + "name": "types-registry", + "version": "0.1.562", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/Microsoft/types-publisher.git" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "MIT", + "typesPublisherContentHash": "ded5ec907740229411733f68ffc334cbafd91c3d806c49de2d07dd1f3bdab7c2", + "_id": "types-registry@0.1.562", + "dist": { + "integrity": "sha512-t/k2hc/jM40/lZ+Ac+XCLHywn5znjkWbibUrNy4Gf2TDP9E8/s7WvHGAas1FV/uynx0w8Nj7YYQpTY1j8jJHDg==", + "shasum": "3da7f50cab97775b1c4be793bdaea9366943b614", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.562.tgz", + "fileCount": 3, + "unpackedSize": 1324003, + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEYCIQDQckcwrSUFfV3eIe9UsWCTXvs7Dm29Wrk+TD8/nLzK0gIhANEsHmIULbkDEaambFew63fE4T+tbNzXtEHZY6t3dxDT" + } + ] + }, + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "directories": {}, + "maintainers": [ + { + "name": "typescript-bot", + "email": "typescript@microsoft.com" + }, + { + "name": "weswigham", + "email": "wwigham@gmail.com" + }, + { + "name": "sanders_n", + "email": "ncsander@indiana.edu" + }, + { + "name": "andrewbranch", + "email": "andrew@wheream.io" + }, + { + "name": "minestarks", + "email": "mineyalc@microsoft.com" + }, + { + "name": "rbuckton", + "email": "rbuckton@chronicles.org" + }, + { + "name": "sheetalkamat", + "email": "shkamat@microsoft.com" + }, + { + "name": "orta", + "email": "orta.therox@gmail.com" + }, + { + "name": "typescript-deploys", + "email": "ortam@microsoft.com" + }, + { + "name": "types", + "email": "ts-npm-types@microsoft.com" + } + ], + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/types-registry_0.1.562_1633746761850_0.7858815331113964" + }, + "_hasShrinkwrap": false, + "contributors": [] + }, + "0.1.563": { + "name": "types-registry", + "version": "0.1.563", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/Microsoft/types-publisher.git" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "MIT", + "typesPublisherContentHash": "b0eb40c364a90df7f3a69b4bf95ea8c4c5112fe3dbdc59433a3e16b50570872e", + "_id": "types-registry@0.1.563", + "dist": { + "integrity": "sha512-5hvecmyHlfuHzOYon2o5KU3P+hPq/ecLD61mCNxOs9RJ9RjZEn/jG8iJ8N6PA3zTTWsIXFOqK2HqyU6qj+k9kA==", + "shasum": "5fa97f75c5725dcddcb108213300c709a04f2df1", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.563.tgz", + "fileCount": 3, + "unpackedSize": 1325773, + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEYCIQDbKLKq5RTERqQrgJS10eceJGqP4yko/qEJYArhC1nWmwIhANXpSXeB/nsGA/0U4WYQUWxQCz6mkth8TV2fzfYLG2JT" + } + ] + }, + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "directories": {}, + "maintainers": [ + { + "name": "typescript-bot", + "email": "typescript@microsoft.com" + }, + { + "name": "weswigham", + "email": "wwigham@gmail.com" + }, + { + "name": "sanders_n", + "email": "ncsander@indiana.edu" + }, + { + "name": "andrewbranch", + "email": "andrew@wheream.io" + }, + { + "name": "minestarks", + "email": "mineyalc@microsoft.com" + }, + { + "name": "rbuckton", + "email": "rbuckton@chronicles.org" + }, + { + "name": "sheetalkamat", + "email": "shkamat@microsoft.com" + }, + { + "name": "orta", + "email": "orta.therox@gmail.com" + }, + { + "name": "typescript-deploys", + "email": "ortam@microsoft.com" + }, + { + "name": "types", + "email": "ts-npm-types@microsoft.com" + } + ], + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/types-registry_0.1.563_1634353365216_0.945572719818877" + }, + "_hasShrinkwrap": false, + "contributors": [] + }, + "0.1.564": { + "name": "types-registry", + "version": "0.1.564", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/Microsoft/types-publisher.git" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "MIT", + "typesPublisherContentHash": "d61f98d20821f7cbd03597bbce95d54df3d955d693ea85beb7adca230a209fb2", + "_id": "types-registry@0.1.564", + "dist": { + "integrity": "sha512-5xjRgPQoOxjCuHr9QEDyQDPKH1DLsIB/2yBcK7YMEDvJwL3i2vH+qFdkfASBXjYyAZ2PLXonbHcphkZnuHimjg==", + "shasum": "133ec0897295300d012e9d2fba936aa8c722cb04", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.564.tgz", + "fileCount": 3, + "unpackedSize": 1328799, + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEYCIQCsSsYabH/rdgSOcXbmhnG0/ThxVJumY0cbaABeFBAtzgIhAKvxyVVOrwQUJ/fAqMEV1FxMC4Bqp/9HWuNtZPE1bdzm" + } + ] + }, + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "directories": {}, + "maintainers": [ + { + "name": "typescript-bot", + "email": "typescript@microsoft.com" + }, + { + "name": "weswigham", + "email": "wwigham@gmail.com" + }, + { + "name": "sanders_n", + "email": "ncsander@indiana.edu" + }, + { + "name": "andrewbranch", + "email": "andrew@wheream.io" + }, + { + "name": "minestarks", + "email": "mineyalc@microsoft.com" + }, + { + "name": "rbuckton", + "email": "rbuckton@chronicles.org" + }, + { + "name": "sheetalkamat", + "email": "shkamat@microsoft.com" + }, + { + "name": "orta", + "email": "orta.therox@gmail.com" + }, + { + "name": "typescript-deploys", + "email": "ortam@microsoft.com" + }, + { + "name": "types", + "email": "ts-npm-types@microsoft.com" + } + ], + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/types-registry_0.1.564_1634959974690_0.11960954657059064" + }, + "_hasShrinkwrap": false, + "contributors": [] + }, + "0.1.565": { + "name": "types-registry", + "version": "0.1.565", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/Microsoft/types-publisher.git" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "MIT", + "typesPublisherContentHash": "45b30336b1f17da0c4f6d8b71b6f9f634c759bf3644880aff0019ee928505b8a", + "_id": "types-registry@0.1.565", + "dist": { + "integrity": "sha512-ZveSdz/h+17ml6/SjgcFU4bK1J3U9RZitE5h0aNQsBQbpZowahdDjBjKIl04N5vAFFNhp/AXbqmsCgwu+ZQsjg==", + "shasum": "1c2596da76401c3ba37d2c27bcb514796f8e4fbf", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.565.tgz", + "fileCount": 3, + "unpackedSize": 1330087, + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEQCIA3GazIMalAHip1u0fo8xTGhFpMkHD42npW2Jyyvgz2VAiBOzk/tfUCWd4EgCNFuzIY9xI02uCDLKThjdZ29HdFNoA==" + } + ] + }, + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "directories": {}, + "maintainers": [ + { + "name": "typescript-bot", + "email": "typescript@microsoft.com" + }, + { + "name": "weswigham", + "email": "wwigham@gmail.com" + }, + { + "name": "sanders_n", + "email": "ncsander@indiana.edu" + }, + { + "name": "andrewbranch", + "email": "andrew@wheream.io" + }, + { + "name": "minestarks", + "email": "mineyalc@microsoft.com" + }, + { + "name": "rbuckton", + "email": "rbuckton@chronicles.org" + }, + { + "name": "sheetalkamat", + "email": "shkamat@microsoft.com" + }, + { + "name": "orta", + "email": "orta.therox@gmail.com" + }, + { + "name": "typescript-deploys", + "email": "ortam@microsoft.com" + }, + { + "name": "types", + "email": "ts-npm-types@microsoft.com" + } + ], + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/types-registry_0.1.565_1635566578174_0.42516091488127294" + }, + "_hasShrinkwrap": false, + "contributors": [] + }, + "0.1.566": { + "name": "types-registry", + "version": "0.1.566", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/Microsoft/types-publisher.git" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "MIT", + "typesPublisherContentHash": "e49bbd08dd51839869ef74791dab4f8fb7721684afdf84fac0b4df9e30348cbd", + "_id": "types-registry@0.1.566", + "dist": { + "integrity": "sha512-3JWEeeot7G3+/KFHCKzWODkieJe0x8o9tdEriEC/7sXe+MGk02y9MYEiD6C56NhPQ4CMuQMH1VQZ6yroHKTzEA==", + "shasum": "b0e93219f27ff9a2a72bcfbcbffcbd9338f978c0", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.566.tgz", + "fileCount": 3, + "unpackedSize": 1331487, + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIQDTEvReeuZuxPOVE/v6xssdB4bmP0piGEKMiQlny06eNAIgawJYAt+T8mkxN5qIka/gmPfZD7/J0+LzZWVeMCz6eGE=" + } + ] + }, + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "directories": {}, + "maintainers": [ + { + "name": "typescript-bot", + "email": "typescript@microsoft.com" + }, + { + "name": "weswigham", + "email": "wwigham@gmail.com" + }, + { + "name": "sanders_n", + "email": "ncsander@indiana.edu" + }, + { + "name": "andrewbranch", + "email": "andrew@wheream.io" + }, + { + "name": "minestarks", + "email": "mineyalc@microsoft.com" + }, + { + "name": "rbuckton", + "email": "rbuckton@chronicles.org" + }, + { + "name": "sheetalkamat", + "email": "shkamat@microsoft.com" + }, + { + "name": "orta", + "email": "orta.therox@gmail.com" + }, + { + "name": "typescript-deploys", + "email": "ortam@microsoft.com" + }, + { + "name": "types", + "email": "ts-npm-types@microsoft.com" + } + ], + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/types-registry_0.1.566_1636173171532_0.5424217538078426" + }, + "_hasShrinkwrap": false, + "contributors": [] + }, + "0.1.567": { + "name": "types-registry", + "version": "0.1.567", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/Microsoft/types-publisher.git" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "MIT", + "typesPublisherContentHash": "3950e35f3e64e1c9dd7e1670dc4d351aad127e0fe5dfce8b2aafe98aef8097e3", + "_id": "types-registry@0.1.567", + "dist": { + "integrity": "sha512-h+eVz+m7VyPisbjpYJBXkoomCEDrOoiYSLwEhqoGqX07IMjYrY/NoxX+RWteKek8/PsLOAjWpPatpXZbuUpCKg==", + "shasum": "6f14c954847e62522e0e8eb3032973c29b93b90f", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.567.tgz", + "fileCount": 3, + "unpackedSize": 1333246, + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIHzrm5KIbUdv6mCuXh1Ynj9YlOJWNoS4GVUs3LoiPA37AiEA7KIDQuf1EBBtUKjDu+C6cS3qcakFlD06J4bloxdVGag=" + } + ] + }, + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "directories": {}, + "maintainers": [ + { + "name": "typescript-bot", + "email": "typescript@microsoft.com" + }, + { + "name": "weswigham", + "email": "wwigham@gmail.com" + }, + { + "name": "sanders_n", + "email": "ncsander@indiana.edu" + }, + { + "name": "andrewbranch", + "email": "andrew@wheream.io" + }, + { + "name": "minestarks", + "email": "mineyalc@microsoft.com" + }, + { + "name": "rbuckton", + "email": "rbuckton@chronicles.org" + }, + { + "name": "sheetalkamat", + "email": "shkamat@microsoft.com" + }, + { + "name": "orta", + "email": "orta.therox@gmail.com" + }, + { + "name": "typescript-deploys", + "email": "ortam@microsoft.com" + }, + { + "name": "types", + "email": "ts-npm-types@microsoft.com" + } + ], + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/types-registry_0.1.567_1636779765520_0.026529880467931033" + }, + "_hasShrinkwrap": false, + "contributors": [] + }, + "0.1.568": { + "name": "types-registry", + "version": "0.1.568", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/Microsoft/types-publisher.git" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "MIT", + "typesPublisherContentHash": "1adfbcde7f93c8d48a2297d9d6d5520016a47881fd8e2de87675a372a0717a0f", + "_id": "types-registry@0.1.568", + "dist": { + "integrity": "sha512-wVdYeTXyuvQvu+gHkwyx770ZM/ckYTEOpjjyEfPggGSITwACyslSSoyybiv/p+b2tklWjCG3VpdVwlebgBLkjg==", + "shasum": "9638eb8eb8517e7b60d89b20e0295ce4214ee872", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.568.tgz", + "fileCount": 3, + "unpackedSize": 1335632, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJhmIiFCRA9TVsSAnZWagAA5u4QAJrA5vTkvbXlEQtPl+R9\nk0726561qGuGd7jft4jJccF40kwuwxf9J+uKED66Iw9vjCYlPm+aG9Mt6z5R\nkIR7cGyvu5k9/hQVCrWgFJhJ21V/JLON7lEC5sTm0VdOGJSv4u2IJftjSLzN\nfQNUUuHh7KGTgxULTOR1XUC4kVobfwViMCY4E55boSsIPy5QYCodas84YEck\nB+4/y8auw3AbrJsp2CItXEl545SoDQj+nq6jLkmrvsEuDx6NY+ICimOOLEAU\nixJBjtDQrtSpqveUIGPerg15I4pxVZUFCrS5frqqTBqPsMS7lOHS05t9WHXx\nDdykZPiX9bdFZXnIxOhvVW05WxRbf7R6JEPsxdRfdDK7NkTSoW7rPjoFFdag\nCtL6ChCNVxchB+dqY2ibncvinXfhV+hVyaEiJHCACVTt2CdyB1h7boXQxF7Z\nhEr2j2Ck8CGbWl3ycplNZOgc+Yyg6yiMqQ3T18kOvqZ8CzE7iDyVFhPkQsh6\nOqt3eM+VUiEf06jU8JUG6EwM3KablVBFk7iP+znx13G1DAlEJO07f1qPEpTB\nbg1kNtU1LE65gj/Yx/8OYg99kiQK7j+R2QHdR5tHkWDGre3rBpkfmsFnjHJ8\nB9RPSlKg/AOh7ElL8wgC+8KCT923U2i6taHGOlhQ5iIHhaEX1bUOKQi9tbBl\nd7Cm\r\n=xz+C\r\n-----END PGP SIGNATURE-----\r\n", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIFaa3E++InwdfglHlzwM/g3fFw0iY9nWtYkPpxrMONu7AiEAuLf9m9ZAKbAZn2lN0u/TZaq6+dnQwWTLPHru9lRY8H8=" + } + ] + }, + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "directories": {}, + "maintainers": [ + { + "name": "typescript-bot", + "email": "typescript@microsoft.com" + }, + { + "name": "weswigham", + "email": "wwigham@gmail.com" + }, + { + "name": "sanders_n", + "email": "ncsander@indiana.edu" + }, + { + "name": "andrewbranch", + "email": "andrew@wheream.io" + }, + { + "name": "minestarks", + "email": "mineyalc@microsoft.com" + }, + { + "name": "rbuckton", + "email": "rbuckton@chronicles.org" + }, + { + "name": "sheetalkamat", + "email": "shkamat@microsoft.com" + }, + { + "name": "orta", + "email": "orta.therox@gmail.com" + }, + { + "name": "typescript-deploys", + "email": "ortam@microsoft.com" + }, + { + "name": "types", + "email": "ts-npm-types@microsoft.com" + } + ], + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/types-registry_0.1.568_1637386373556_0.5917933120635233" + }, + "_hasShrinkwrap": false, + "contributors": [] + }, + "0.1.569": { + "name": "types-registry", + "version": "0.1.569", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/Microsoft/types-publisher.git" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "MIT", + "typesPublisherContentHash": "c606c9090447c004ee22a5e02fb0a2c810baa427a6aed2992ad835e045f8ecfc", + "_id": "types-registry@0.1.569", + "dist": { + "integrity": "sha512-q3zMDfpHs+iFAQ4yg7L/WeUyhSdSkdLQDo+T8Q1+JcM5ct/mY3Y3EWrnY9Ktid8TA5hCyVjhLd0pmSvQiqK7mA==", + "shasum": "a77f39589cbda12835a4d2d2024f33ce717a8fd4", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.569.tgz", + "fileCount": 3, + "unpackedSize": 1337555, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJhocoBCRA9TVsSAnZWagAAJ7sP/0gifKOGwvV4978ebYTW\nhMMphrYcPxZPFd9yWkmfmUOLPam+WraEWYDKuhHZpcOJBBcJd3LBpSsCFRF9\nfXN71V9ZCHwhOAVYgbPKRwRdGvipOWmX54ZaSwf6QMZpULESLVy3Gfm1GwhJ\nA5CyexarMyhqXZYP/IpgFLKfMYq4CkpjGZLkTmugtV/8l73e/oPho44/HehT\nJyBfP/rj2IrRRU3RM2WdkiVIqlWNp3rPK/tEESmwMSeqmAShUF969pLySglV\n5FSGLCzcC4ucI5hxypRLn1z1sve8X2RjoHfF20oKxzjBNQ2phVQxRWv2K6pT\nC3f5b/C8DQiYWlvB8R3Xjprt9aybQcl2+g1WFmMdyZuz8eS0mMgfDa+tn85d\nKia/ZPab+91xNRVdKRC1vnWONXezM/iNdECmuZybYGoN+XrRVAM0/Y4LV/ht\nRrzSG63Dqg50PttlsEpVK91O4RG15bJ5xpsgjEleWGASaV5zA254BxWxMpax\n2dEJz45wBeLfVbp2t/Ij2euKVXpJXvZV1VB+u3OcpzYCoqnrkuUzUJA+rjAW\n7I6Y4MDJbb0thdASTRGuZrgepwACwh74yRUakKVCHbIsDG0xaoXvRjgjYEJp\nEsqmkoaYPhF+g/6ZatDZkuPQ24jCadkOCr1yn0keRae5UvAq8SAnP1el+CJi\nOSDV\r\n=dTf2\r\n-----END PGP SIGNATURE-----\r\n", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIHs5cx7V2LiDs6gCxWqIQz8fyeyJ3QjeAqSDLXdO7gqsAiEA/lR5qrin43/IxDvxXfVDggK5jqcxrquO2TYbT7UCl34=" + } + ] + }, + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "directories": {}, + "maintainers": [ + { + "name": "typescript-bot", + "email": "typescript@microsoft.com" + }, + { + "name": "weswigham", + "email": "wwigham@gmail.com" + }, + { + "name": "sanders_n", + "email": "ncsander@indiana.edu" + }, + { + "name": "andrewbranch", + "email": "andrew@wheream.io" + }, + { + "name": "minestarks", + "email": "mineyalc@microsoft.com" + }, + { + "name": "rbuckton", + "email": "rbuckton@chronicles.org" + }, + { + "name": "sheetalkamat", + "email": "shkamat@microsoft.com" + }, + { + "name": "orta", + "email": "orta.therox@gmail.com" + }, + { + "name": "typescript-deploys", + "email": "ortam@microsoft.com" + }, + { + "name": "types", + "email": "ts-npm-types@microsoft.com" + } + ], + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/types-registry_0.1.569_1637992961528_0.5790455053874939" + }, + "_hasShrinkwrap": false, + "contributors": [] + }, + "0.1.570": { + "name": "types-registry", + "version": "0.1.570", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/Microsoft/types-publisher.git" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "MIT", + "typesPublisherContentHash": "5f7eb1e0d58020e1d1e5553d6ccea0a34f5f039d425da199e5b1b476b2ff2196", + "_id": "types-registry@0.1.570", + "dist": { + "integrity": "sha512-1j/P+Vq4czEKsvVl1h83jLB2oBiCO/z09Jluu//8XWQBfewubJHuWBS7tNSHEOwiIW6xtP99LgnwtlS7afLn4w==", + "shasum": "492dafef2e719aeb32e93b07755d3c1b640012b1", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.570.tgz", + "fileCount": 3, + "unpackedSize": 1340508, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJhqwt2CRA9TVsSAnZWagAAj8oP/0Tksekky1co7P6xXTDk\ngTr68NNm42eID967cBnSh+VGORyfNuESNvz80FsyIkz+YYkI460FqL37tmTJ\nYwCmgUqYZ4vo2GsVyHpPc7hN5T/65mU7g8iL7rpgVuq5mUvmxWJR6lPdEBcI\nbs7kqQ9y8xGSK57VIri7NgXSbZh4f6JhHu1yPhOnKK1JqKp5cQXtRbenfjcZ\nASke11J4MHCkhZBS45xFqOhms/D5XWIPkWXEXh/yIuf0BiMoXdTwXJjQo2gU\n6CNlVnfJuT5CLelcDftNIghGVfkF6AQ+xgjWWsWPHP1sekKZK6ptyf8nHmMz\nhhllSa9chdfOTHUSHgQ3oanwaN3CjDY39/YJWM+yHaPHuPyJ2w8ft1ZOd60X\nTzl4X4XSgtX5gL3N4iZYV6on5eixdOvVJ27HAbwCnp8MGXXX5TewEs8nGyB/\nhgAfopzzyXaWIotev6iKJe3RELFrCkhEADa2/v8BvdNoVsA+zVIrzbZEb2/n\n7Ss//MJjVgIbvDSxa5bWwh8cT7Jh1OPQAGTUM75WNQowQiamPIInCE1+9/s2\nhcjZWl5iJDPx8tG0JXZ54dfkNqa1Zsdf0PT7Von/DS6YIFSjnBl+LYyMr2wL\nEJxv52wuPBdzN++667rhnK3lWQpmztomFVnqkJlFSZYvGZNbygzk/05x4JEb\nkiLL\r\n=IpKV\r\n-----END PGP SIGNATURE-----\r\n", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIQCuuZeza973+drzxPS84YIN/sVWUlY899nkPBDxF5vE8QIgQflm5Ex3s3oEb7Bttgvbc7mjPgjUmjm8x2fw90ro5wY=" + } + ] + }, + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "directories": {}, + "maintainers": [ + { + "name": "typescript-bot", + "email": "typescript@microsoft.com" + }, + { + "name": "weswigham", + "email": "wwigham@gmail.com" + }, + { + "name": "sanders_n", + "email": "ncsander@indiana.edu" + }, + { + "name": "andrewbranch", + "email": "andrew@wheream.io" + }, + { + "name": "minestarks", + "email": "mineyalc@microsoft.com" + }, + { + "name": "rbuckton", + "email": "rbuckton@chronicles.org" + }, + { + "name": "sheetalkamat", + "email": "shkamat@microsoft.com" + }, + { + "name": "orta", + "email": "orta.therox@gmail.com" + }, + { + "name": "typescript-deploys", + "email": "ortam@microsoft.com" + }, + { + "name": "types", + "email": "ts-npm-types@microsoft.com" + } + ], + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/types-registry_0.1.570_1638599541887_0.008971864672454144" + }, + "_hasShrinkwrap": false, + "contributors": [] + }, + "0.1.571": { + "name": "types-registry", + "version": "0.1.571", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/Microsoft/types-publisher.git" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "MIT", + "typesPublisherContentHash": "662ef27d52a8691516bda4fe93dd95a39d291ac4ac560234abf43579756f474e", + "_id": "types-registry@0.1.571", + "dist": { + "integrity": "sha512-yieOEwYlqXXg6qUFAxYWDUL7KmeaQokplY758NfBIAhRBE3vwp7xdZH6peaRxNJcGGK5QnLoSSVpj/B+U9V+OQ==", + "shasum": "63d9a7ed65f2223691a38c69fa5c1f22e5212ac5", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.571.tgz", + "fileCount": 3, + "unpackedSize": 1342960, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJhtE0ZCRA9TVsSAnZWagAAHgYP/0lvHxPvf4q+NVen4O39\n+gzQ/G8dzxHcCfOzApoNqY8H8cnrh5ydqFSb/mah0/w5S2tI0cxY28WOxEPe\nFXegAhPsqWte8ILgW3JJ85rA3z16iPDCknvJudfjwP7lI7bR4y/RRIshMjNJ\n7+ha2zSzmO+pgGJnBMbNYgI5xr0ZRKzsIh+e59zRT6jhMgCXOiW5oJlGHrfA\nhCdALh5o21mX60rd1tc7hkUKFuvyDfRB+byK63mg8p8h+tb8xrafA1fbg5qH\n+R5mgUQljvoc35q7Kmr1TGWAFq9UVfhYfPTJVpCF8Zpw3In6wifLj0MJ1Hx+\n1PjBPbMqWACN4RlnWfIU5HNvXO1brqkwDoB9MIIRnzuGNvcDa0qJ5CZRQYbh\nD6yPJv87+uloWFcxr0ALLZAoLv1sMv9RRTszp+yVpMFmyWLmEd0e5Rkm/xRf\nUEfXRgsia0BZF1cryP9980rdcd0536/c6PoziMNGkCLxPEIiTK+jl9xDZMmu\nwWvn2V0krSMMRfv3dLs18xE4fteEEAemi7fjiwZNnK49WmUR08Q44CGQ7Jkr\n4hKb7pm2i5dDUeHF0dpl4z28ZweC1xjl+toNIrSjk5dNYEkECa9k96n8socT\neRyMNqI8s2uKAc2DCKlGGlCzaM7mc3yrrdXwYg/Xo2n69MwfBYNbiBD+0ub5\nOApz\r\n=cU14\r\n-----END PGP SIGNATURE-----\r\n", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEYCIQCM6cV1wyoM9sVxTcLR7/mBLywEVajZ2RB285Kwv95LwQIhAJRDl6EYCVaoLrFw7eqtG5bLmD9lipARLGVYSbUyK9oM" + } + ] + }, + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "directories": {}, + "maintainers": [ + { + "name": "typescript-bot", + "email": "typescript@microsoft.com" + }, + { + "name": "weswigham", + "email": "wwigham@gmail.com" + }, + { + "name": "sanders_n", + "email": "ncsander@indiana.edu" + }, + { + "name": "andrewbranch", + "email": "andrew@wheream.io" + }, + { + "name": "minestarks", + "email": "mineyalc@microsoft.com" + }, + { + "name": "rbuckton", + "email": "rbuckton@chronicles.org" + }, + { + "name": "sheetalkamat", + "email": "shkamat@microsoft.com" + }, + { + "name": "orta", + "email": "orta.therox@gmail.com" + }, + { + "name": "typescript-deploys", + "email": "ortam@microsoft.com" + }, + { + "name": "types", + "email": "ts-npm-types@microsoft.com" + } + ], + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/types-registry_0.1.571_1639206169279_0.5935626863435133" + }, + "_hasShrinkwrap": false, + "contributors": [] + }, + "0.1.572": { + "name": "types-registry", + "version": "0.1.572", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/Microsoft/types-publisher.git" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "MIT", + "typesPublisherContentHash": "88f5eb5d43b127914ead8df4a3d23acf3e40ed9410e9d5d9affe70ba061a097a", + "_id": "types-registry@0.1.572", + "dist": { + "integrity": "sha512-S3Ij2W+eA1NEptvniwsZEWUcscLJF3XlWqtEAn0PRy2lvujUQ+Yjn5ChmK+AzMAlDYFsYamxFSGoNYCdIVILBA==", + "shasum": "362cb54332745aedd9701444cbd88fb0e1810333", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.572.tgz", + "fileCount": 3, + "unpackedSize": 1348450, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJhvY6QCRA9TVsSAnZWagAAv9AP/1AESA2ljF4elGl4pQrQ\nudxsfszOEV4W/97GgWhFv03+Pqvc58UYT+DwrRwCL4fz71llETz2zaQ2sxIP\n+TM6FE4ZbuzcqV+QxTD4lH54RvRD3wp8/+px4LOjmd8cnL50U75bGaiRnG4q\nJFicYa+dPMEcPCfhejcB4ILl0M/IIheDfFQPqcplaFFwtEDC8Y88oU/SJpgR\n8IdqT1/fmdOh8cBxAwApHrlPE+RQdtrZrdTYj0NYZbEdqagT1A9X68fIxWCh\n5B7q9OvkUT7URi1kM6h3pfhBHXbV2WMidGOug4ZhzvlNrNNjveTxC0vHOISy\nbjpOec9hUxxkxsR23KwZBKRDA7Ij9ICRr9pebpKq20aEj/bDft2Ra/7cJrKW\nNyoht3J68nRwpAK8fMa2aQCURSmLNkiezJzuh0zmjnXHb0wJutopR20BPbmB\nIQcTOouoI4nigOvUhx3vV5IIQh4jXgTXfykxR4gilL5PJ7WQhUyocm0KqVFb\nrhAisOE+WSQH/R6pPdYqGWvUi/C11PvKax5UENNXawlAGza0EGWtbMXlm2xq\nHMCh1XjtDhJs0TV+ixULpsN/Gxw4CC3hZDV2tdFQgJZWpmNSi4CKpuAGe1Kc\nJwlT2XIpKVq6g8pSEDpY69ZtahJrvMIvBQ8nDtB+MTSOxc7HBSFHQ44TsSus\nsSsu\r\n=5jeI\r\n-----END PGP SIGNATURE-----\r\n", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEQCIHScrfjUlDvbW6XPKO5TUsSOswuFniHBr4fzOSLDvK3AAiAOhq1xzD5DJ+Dkh0/9qFEFzMwZiUtmKUxIbfYyI4oVtg==" + } + ] + }, + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "directories": {}, + "maintainers": [ + { + "name": "typescript-bot", + "email": "typescript@microsoft.com" + }, + { + "name": "weswigham", + "email": "wwigham@gmail.com" + }, + { + "name": "sanders_n", + "email": "ncsander@indiana.edu" + }, + { + "name": "andrewbranch", + "email": "andrew@wheream.io" + }, + { + "name": "minestarks", + "email": "mineyalc@microsoft.com" + }, + { + "name": "rbuckton", + "email": "rbuckton@chronicles.org" + }, + { + "name": "sheetalkamat", + "email": "shkamat@microsoft.com" + }, + { + "name": "orta", + "email": "orta.therox@gmail.com" + }, + { + "name": "typescript-deploys", + "email": "ortam@microsoft.com" + }, + { + "name": "types", + "email": "ts-npm-types@microsoft.com" + } + ], + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/types-registry_0.1.572_1639812752772_0.8105694962369137" + }, + "_hasShrinkwrap": false, + "contributors": [] + }, + "0.1.573": { + "name": "types-registry", + "version": "0.1.573", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/Microsoft/types-publisher.git" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "MIT", + "typesPublisherContentHash": "64d49bea14f273d4902657ebc093e04edd6e043929a1777e35196c0061a2af93", + "_id": "types-registry@0.1.573", + "dist": { + "integrity": "sha512-lnz6dgOMRSf8yp5Y7LMIl9zQwYATFo9V/CozxDJBgRGOAN+Xd7adCHtI2VdeTJ5fEN9jF6nXrDKRE6V+Vf8I5Q==", + "shasum": "c690a51ef14f1480d0ce46cd1b282b11b03d2159", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.573.tgz", + "fileCount": 3, + "unpackedSize": 1375970, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJhxtA2CRA9TVsSAnZWagAAobIP/RIF9seDC96fexdbuLs0\nccsKTh91TBYWmormpKvimEpUduMXMYqBtWeHtLo1JLW7P1P6nx/+RUaqn4oj\nD2CKuZzGPn3/7s9zlYfwHUrMBnaqJUaD3Vp8EmPoUmz1aF4F3dqQYdaOPbbb\nkPPXWKpmmEggzrm21tmPwobj2mjKjTvrt6cMokBl/OuMVuXizhXE3XjRf8YP\nCd+IPj6x8OOtQBIA4W7jBplc2yOh3cFnr63qMycFhsQylNByCzUrsI0TG9fG\nsJiW4sOiYNwGoaBpgQlB7Gtdhyjl1wgU4aBgLPtE6I4HkfaRiujM6SKhY00S\nMz6OsIBvxKAEJ3Gr+7zoKz/NsT5Y0DCnhe2iwJoW9jZM76JBtccs5jTEoQ/s\nMf+3BVsNPwH8ANGbQ+DWVVYoZBaJ+Q3T5zJRRajXaUnpCQwtuoxw7ScUwTF0\nWAWuF6AlpgRcox6P7pRtV6EefeMoPieDvG24h7GbOFV4dnvRT/Uo7tD8GTV5\nGYESaI8tEFpxZa4CjGBYkz5TJezUe0TcQFnb8gVjEg9RYInxCVTbpYaApbRY\n3fSTHThYurPgdPZ77VHk66abe/TiQ/xW4rRqdRbSJ5/sKRMqgCvUsigD/zmC\nBkCxVZZJ7+7bychJ6QaucixHrrmMunNi1P9F5pi7kOpNMPI9D0w8Sp6lW9w9\nEBfq\r\n=29tu\r\n-----END PGP SIGNATURE-----\r\n", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEYCIQCWdHb3Q01xkN6s0MbsT/ThTGuq15YnZM1qorphmMgtAAIhANxEeT4tmrWrkcUUlKKLpw0D7C6k2oKHHQpjP04ykj1K" + } + ] + }, + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "directories": {}, + "maintainers": [ + { + "name": "typescript-bot", + "email": "typescript@microsoft.com" + }, + { + "name": "weswigham", + "email": "wwigham@gmail.com" + }, + { + "name": "sanders_n", + "email": "ncsander@indiana.edu" + }, + { + "name": "andrewbranch", + "email": "andrew@wheream.io" + }, + { + "name": "minestarks", + "email": "mineyalc@microsoft.com" + }, + { + "name": "rbuckton", + "email": "rbuckton@chronicles.org" + }, + { + "name": "sheetalkamat", + "email": "shkamat@microsoft.com" + }, + { + "name": "orta", + "email": "orta.therox@gmail.com" + }, + { + "name": "typescript-deploys", + "email": "ortam@microsoft.com" + }, + { + "name": "types", + "email": "ts-npm-types@microsoft.com" + } + ], + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/types-registry_0.1.573_1640419382360_0.6657677661131056" + }, + "_hasShrinkwrap": false, + "contributors": [] + }, + "0.1.574": { + "name": "types-registry", + "version": "0.1.574", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/Microsoft/types-publisher.git" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "MIT", + "typesPublisherContentHash": "de6ef6625dfd2fcac8b9eb70e1238121bfe8f2546c7589ef7251ad668055411d", + "_id": "types-registry@0.1.574", + "dist": { + "integrity": "sha512-HUTcYlem/9iZlSL1V48ur5TUZvgWQ1FWVmPh63U3ltt6WLfRrcI3eHTRMGMx6M2Ma3ZxaF/ym1HY7hCRilO2tA==", + "shasum": "545990623cfdf5959fe02c1b357f765580d78dab", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.574.tgz", + "fileCount": 3, + "unpackedSize": 1376828, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJh0BG/CRA9TVsSAnZWagAATqUP/1+74blYGZkey3uJ2kX3\nuYj4XjRA3y9junGlppXFurVzhfc5QbLhylhxXJkKJbFjZM62TTODWR/i2SgA\n5F8e3o8FcrK8yw53htR5NEwCSb+5TyujCD0FZvc6CmUc5b8mcE+XV9f0/U/T\ncFuqaodozocCvI9xbkVekvQlm19wcDnMOiFedQ91o6w6n+HG10w215E0GfFt\nKSBgjJjM763eJAyLsC08S9HvX/2Zc8daeqHiXgoeWg9c0CSW8pRDETNx5wZp\nP1vjSnshOJxCwYz6rnFc5fhwb6FCugYmucuKEFA/tLj3MPaIICFhW0K5EEGq\nmi8IumyeW3dvLdEDu9q4w53yCjh99B3NiRTijXRbrLiW1OPTgR3csqpYqXEf\n43d4acAze/IT+G++1yd4z8O0/Oo0+EpuAe7ucKx8291u9LeZW5wXw+9vgACy\n6Akbg3J+9ezUIvhRgzM3q6gM2RMxWx5nvYRh7FwfEU1cOApyftV36AbAMIax\nIAIwh8hlCEHDqQKglzvg4rXMzHvPiz3QB6El4TjQBppC2uCbhUJOv+yIkylz\nQo4BaFVXUbTFFzr1smUmdn7lD3mTjjNfbnLWM/S7LWNh2ElBde7HI5my4LcB\n+Y1LtIbezAUQf5rBtB+Ls73eGqkM33SezEDTu7VI+27UDIC/ZNuC2cOHjaG6\nNKNU\r\n=porM\r\n-----END PGP SIGNATURE-----\r\n", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIBJ2jANa0rPj/uLKT6vXh0KNA20LWWlqfXbYsmoneW5RAiEA8A3wRLtKWaxLfuS6tfa0k9TdGSmzTYZsPpgANt+gwmc=" + } + ] + }, + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "directories": {}, + "maintainers": [ + { + "name": "typescript-bot", + "email": "typescript@microsoft.com" + }, + { + "name": "weswigham", + "email": "wwigham@gmail.com" + }, + { + "name": "sanders_n", + "email": "ncsander@indiana.edu" + }, + { + "name": "andrewbranch", + "email": "andrew@wheream.io" + }, + { + "name": "minestarks", + "email": "mineyalc@microsoft.com" + }, + { + "name": "rbuckton", + "email": "rbuckton@chronicles.org" + }, + { + "name": "sheetalkamat", + "email": "shkamat@microsoft.com" + }, + { + "name": "orta", + "email": "orta.therox@gmail.com" + }, + { + "name": "typescript-deploys", + "email": "ortam@microsoft.com" + }, + { + "name": "types", + "email": "ts-npm-types@microsoft.com" + } + ], + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/types-registry_0.1.574_1641025983103_0.3264814443932007" + }, + "_hasShrinkwrap": false, + "contributors": [] + }, + "0.1.575": { + "name": "types-registry", + "version": "0.1.575", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/Microsoft/types-publisher.git" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "MIT", + "typesPublisherContentHash": "abba850bb48616123f1f28011847724dbc03c8df30ad241493dd23fc560208b5", + "_id": "types-registry@0.1.575", + "dist": { + "integrity": "sha512-EPLlvAw/nDrGkW8UhdUthzQ/amsWWnvD5wi0mucriMUhpeSoyNdurqjq7N/+yxwOnVsvhzFc3IW1KETAI8+Fvg==", + "shasum": "a2608e9cbdda231274668a2ba68c356f7e97e091", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.575.tgz", + "fileCount": 3, + "unpackedSize": 1378948, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJh2VNDCRA9TVsSAnZWagAAUmEP/i5cEV9itCut+B8YOmfV\nZxVB0TQlXRE+tP5y0hqGZdiSWIenc4Zm107IfsXn8fRlLeKjljpCQo1YQB78\n5GkMiGloXb8s4e0dpKS4a02uCC59n7KRXPno7aLkEL4at0EVGDZc0kkeHeeK\nqlcMX42niefBhL/yFYqUO6avuLye8sWPsUBlOcmRvcvWMeA3h6amlP/aE/sG\nRqs4/nMWTqFA8QwJqQe/hbI07wlRzAJg/6Kfyl9p0pXYKn0xpOQ6dTikjd8m\nal084TTvYanPH/SgUN6ngeRX8sOcGgYTyF6u3pWZspENreuvcyaSjLWe2diV\nUMubUDDyshpkVqUMofbHtv32co9xNLlx6yi7oYfC2PXNsvfVbDKHwH8b1rdC\nhhMh+CpNBEP5LAnF+H9/YvDDgitxtAoBgbg6EBBtkc2jXQsG0ZILkD6wzog+\n8CMm3L+lWmlCTxxCUBjcWhOD4gRmE3JmCiIdG7pqYE/ptiIN8Iy+c4aCAVOd\n/vRpY/0fwsyXgjy2Yy68nqBXYbzfcAaIxv57iqCLW13K+sP7bkda4tNfmnKI\nXHn86JOL/eX+W76d3bvNioY+ERmXLuTWkndjCdqD3dA9spJyDA3ABX4NjzeG\nSIOO3To51W52upFt8BfQIrXXNfwOPgn6TQyXjd9Uz0xsN8O7HPdTs1SwLRFb\nyK7F\r\n=SG7S\r\n-----END PGP SIGNATURE-----\r\n", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCICUI6lUS6a5POlikwJsxk374R7SGkbSI87r+j81c1tCbAiEAwooifiKaatGVXOwG7OcKyTvjpFWAJUSPftPs0p3ZkH8=" + } + ] + }, + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "directories": {}, + "maintainers": [ + { + "name": "typescript-bot", + "email": "typescript@microsoft.com" + }, + { + "name": "weswigham", + "email": "wwigham@gmail.com" + }, + { + "name": "sanders_n", + "email": "ncsander@indiana.edu" + }, + { + "name": "andrewbranch", + "email": "andrew@wheream.io" + }, + { + "name": "minestarks", + "email": "mineyalc@microsoft.com" + }, + { + "name": "rbuckton", + "email": "rbuckton@chronicles.org" + }, + { + "name": "sheetalkamat", + "email": "shkamat@microsoft.com" + }, + { + "name": "orta", + "email": "orta.therox@gmail.com" + }, + { + "name": "typescript-deploys", + "email": "ortam@microsoft.com" + }, + { + "name": "types", + "email": "ts-npm-types@microsoft.com" + } + ], + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/types-registry_0.1.575_1641632579689_0.9529156859661483" + }, + "_hasShrinkwrap": false, + "contributors": [] + }, + "0.1.576": { + "name": "types-registry", + "version": "0.1.576", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/Microsoft/types-publisher.git" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "MIT", + "typesPublisherContentHash": "5eaffde600ba7128546aeeee9bbf82c526628fd00042ace1fcce8c0891c38193", + "_id": "types-registry@0.1.576", + "dist": { + "integrity": "sha512-sJSUOKiDv6dJFeIvmhSYgVhhJOwRPCGywtvy4Oi21Lp7KGRMCnTzEjRYGB4CzaEFwnlqtMQViqBYV60R89P5MA==", + "shasum": "e272d70c2fe5250f598cb8139720c2fe4b0eb9a4", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.576.tgz", + "fileCount": 3, + "unpackedSize": 1380070, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJh4pTHCRA9TVsSAnZWagAAxg8QAIDhvHNUDSXN7Wk6d1Rc\nD0z3qW+1r/DDyI2lCiuu0HjmwFHpInYpv1cAorQXNRzwMBqGx6omNTtMYyUS\n8TxcBJq3s4IQeYlxAcwI5WbFfNDRnbajbOpcSdvKEc8D8jFg0amzFKZXxW3N\nvLV/eDHkP6KpyAQq3iIV+tuqXmNGf2NpEH42TKlLlAnLYrqCMLH9pjKo5V0J\nKpM5EdcG0IBfPGdpOaPdZhvYhFp34L8i1XVUQPIu4lr6EYNqg4ipCqV3RJsA\nKUoqdb5lbDiQpJXxPXSGV1PV0+DBwzQfYpueRr+t+vLNtAb7Weu20YSrmUdD\nfBlVAClcN26ndf7BeemkEfLEGaXQKn/dz/XdY1DwcAqMee2gimE1cd4SMUL5\n4uWswY6odZvUmisPZAASWbeDKWVrKPIl7vMe8HGPzPb9ZNGl83rVqKl9W7uz\nhoFfedOwU1dDh4SfSkNXMk80eNWy5VOP9sxrgMcJsBBdr+tM1gCR9VP2GkT/\naMeVfFiWn/ZEKCunwaIfztyBzuRYgBdEvM/Rww1saCKfSgqcFPgULWVqdfXs\nu9qQd2HN2FGUxEoQrqpYGbIxjjAqFqprBYNeqBJqLBYzbH4mGZcHne6g8orh\nXS6cw/lcqfKlf7tm8uD1D6Sodg4AkOvjDj0apLb8V/VaA8L8FRR/jAYE2LGf\naOMt\r\n=haSU\r\n-----END PGP SIGNATURE-----\r\n", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIDFIad98XZibUWizxDigF+e7DPFrwm3UFXxu0TSayho/AiEAgj1Eo9nrDTFGKvNULoqWoRf6h9y8xxZeOiFvzGybmBo=" + } + ] + }, + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "directories": {}, + "maintainers": [ + { + "name": "typescript-bot", + "email": "typescript@microsoft.com" + }, + { + "name": "weswigham", + "email": "wwigham@gmail.com" + }, + { + "name": "sanders_n", + "email": "ncsander@indiana.edu" + }, + { + "name": "andrewbranch", + "email": "andrew@wheream.io" + }, + { + "name": "minestarks", + "email": "mineyalc@microsoft.com" + }, + { + "name": "rbuckton", + "email": "rbuckton@chronicles.org" + }, + { + "name": "sheetalkamat", + "email": "shkamat@microsoft.com" + }, + { + "name": "orta", + "email": "orta.therox@gmail.com" + }, + { + "name": "typescript-deploys", + "email": "ortam@microsoft.com" + }, + { + "name": "types", + "email": "ts-npm-types@microsoft.com" + } + ], + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/types-registry_0.1.576_1642239174836_0.9122084904930825" + }, + "_hasShrinkwrap": false, + "contributors": [] + }, + "0.1.577": { + "name": "types-registry", + "version": "0.1.577", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/Microsoft/types-publisher.git" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "MIT", + "typesPublisherContentHash": "177c43c498ce8297aeb307fc8b6f4cf1387f09b3c853093420bc16be38dfda51", + "_id": "types-registry@0.1.577", + "dist": { + "integrity": "sha512-vU3aYnA+FUeQnC7GX6LbXLM5aHOxmN02XLONWs7MJ2Nzkh2FUCCmEBrCtJHQx+bQ8/Zvs8a4jehn7m6Vfn1KAg==", + "shasum": "a66eb38d90a1e8ca4d8afaf0579d1e8e244d1214", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.577.tgz", + "fileCount": 3, + "unpackedSize": 1385267, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJh691xCRA9TVsSAnZWagAAeGYP/iz9srKKaGdb1VxZFpbr\nwPxmbUr6IknDruofR3WX3+AWpDoILDBDfVIoO6UFb+hE1CLzyBGRb3d1gv5Q\nC/nQxY4SLNXu8qOSFQRDvP39qYh7hbiCOBjbAFvr83symSguiVCXYubJqOSv\nUUrU5qZkE0wgDPHRTpgruqzR+CsfZhiPYTHTSJuZfJtjaJusrc6hlIR9feKD\nxToGUfVfijqX2SNNUoqpPSsrLgAiAW6M4aCdYslyIdfAn6YX1QKT9gDolB/5\nHCQu6VvhjBq+r/jJxrYeErgavrVCZ3ee7kcAfcBq/beEMgCJ5FstvMJ9fZix\nRvdAfaaoLlVVuA4Hx1himyGzVXur6JIkByFY43eyeo44iQ6zuOquBiR4LMTs\nKpdXmFBOzdoCMK2zTYTVnQ6QKYRr1wdA+S1yxNUqDCExvVHlKkHhoIxMByHx\nXLX3FJckSQFdPFeL2X3POij+4AYeSzDTk0ibjm4YYawV3UgDWie6XqgQO11R\nqUFm0xlIKvbzLCqZMxEc1uxlBWxfr7Kzlkp0yeAJ5mgWdOA/1cduy2fQK840\nwO+oYPRQNEarGBoJzo6OrP9l7eD4Eqc50PkxH8xk4pTS26ErmKu7aWcdO5Be\nY4BoHVfg2XSembo24vIRWQD01PsNjFSEis0DePcV6ghCXE82pSO6uvZgVMc5\nNalL\r\n=VsAB\r\n-----END PGP SIGNATURE-----\r\n", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEYCIQDG0hBbl/kDHZ1efz2qOmPYQJ2bwQE4GSdaJqgDmw9SswIhAKYDRDVrLZKH8PYYokX/S/G4yHvhZZZnBVhxg3Kga+qt" + } + ] + }, + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "directories": {}, + "maintainers": [ + { + "name": "typescript-bot", + "email": "typescript@microsoft.com" + }, + { + "name": "weswigham", + "email": "wwigham@gmail.com" + }, + { + "name": "sanders_n", + "email": "ncsander@indiana.edu" + }, + { + "name": "andrewbranch", + "email": "andrew@wheream.io" + }, + { + "name": "minestarks", + "email": "mineyalc@microsoft.com" + }, + { + "name": "rbuckton", + "email": "rbuckton@chronicles.org" + }, + { + "name": "sheetalkamat", + "email": "shkamat@microsoft.com" + }, + { + "name": "orta", + "email": "orta.therox@gmail.com" + }, + { + "name": "typescript-deploys", + "email": "typescript-design@microsoft.com" + }, + { + "name": "types", + "email": "ts-npm-types@microsoft.com" + } + ], + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/types-registry_0.1.577_1642847601273_0.671410798302339" + }, + "_hasShrinkwrap": false, + "contributors": [] + }, + "0.1.578": { + "name": "types-registry", + "version": "0.1.578", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/Microsoft/types-publisher.git" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "MIT", + "typesPublisherContentHash": "812e0f68a716211d1e77497c41c88068e6f0a07b7872e6bf060ffa0c53a9f1b4", + "_id": "types-registry@0.1.578", + "dist": { + "integrity": "sha512-roQudLL1gZlOIXVaf0NbZ9sB75yXp+eDFPLXxCx28Wxb4BEsrWvckfOc1Tr7bbrR3+DrDPDD/zxL2WK0mZ2ELg==", + "shasum": "7bb9c33c01b35d9062e8b08997a039bad180c4f1", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.578.tgz", + "fileCount": 3, + "unpackedSize": 1386352, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJh9SYLCRA9TVsSAnZWagAAdhwP/A1OkMprhYOC/8zzNzNq\n9q39XTnXvsuRA0B/btHAr48YAZ8c7zVnRdpgZijDVVSI4KPGvozA3w8+EtUy\nji26xx3KPfkkDxocYxYBoAGugrvmW3z1CvCvXq3XSDXrm1KxK1E6Oe15ntqT\naVtg0cWMX6J7FMpf7+6qnNZ5/ztF9DLzgjjNRwNRdXCn3nT4utGFtF9t75+q\ncY52TEnCcBQ+gVU5LaMzS+B2S8YFnmWA5RPl37gl2NfnB4BS1fNpjv1ST/Xr\npz4SAvcE9Vov1wwP56LiC+yULeRZ0a9uXZi6BnyVzfHGIVuuuhzpSL8GM+pL\nTgHYvg3Tk1Dn2tA1oYGQ9fQCPAXZcC3u+EGUNtR9/PNNcgIG/xrxs721asoC\nQezo4CG9o7DMEbK8A/AKQzMdUUkHbz19OuVPUANGWwsGnPcO9DmtlezZ/xm9\nsdG+bPNTPOs1glJq/vF4Wc7BqDZW2TqPSY7OkY3jITSEjLAsPmleld779I+B\nAShJmiyjao3PFt1NlG+46BgrYS2GtcPL7N/DWidHWAj89OwZwDOE37TV1QZv\nRa1W4PhX5woeMuguD4DxH5yNrJ/z+93PE3xKH12lVQrNaRrpbqKYSPNxmcKh\n28Y24n2ldnhoDRHi5xJwp5mzCytpYh8lEFPB+AiGAyNZ0HsAD5j3Ndri/9HL\n5a+l\r\n=8qDv\r\n-----END PGP SIGNATURE-----\r\n", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEYCIQC6TgLHeFLXnnceEhO27RQfyzZ3zouExlc8fLxRjLrqNwIhAP1S+EBZ2x44G2n6YYrXE1vHZOtxLq4smJNuE5GsyNCS" + } + ] + }, + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "directories": {}, + "maintainers": [ + { + "name": "typescript-bot", + "email": "typescript@microsoft.com" + }, + { + "name": "weswigham", + "email": "wwigham@gmail.com" + }, + { + "name": "sanders_n", + "email": "ncsander@indiana.edu" + }, + { + "name": "andrewbranch", + "email": "andrew@wheream.io" + }, + { + "name": "minestarks", + "email": "mineyalc@microsoft.com" + }, + { + "name": "rbuckton", + "email": "rbuckton@chronicles.org" + }, + { + "name": "sheetalkamat", + "email": "shkamat@microsoft.com" + }, + { + "name": "orta", + "email": "orta.therox@gmail.com" + }, + { + "name": "typescript-deploys", + "email": "typescript-design@microsoft.com" + }, + { + "name": "types", + "email": "ts-npm-types@microsoft.com" + } + ], + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/types-registry_0.1.578_1643456011260_0.7130145741446281" + }, + "_hasShrinkwrap": false, + "contributors": [] + }, + "0.1.579": { + "name": "types-registry", + "version": "0.1.579", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/Microsoft/types-publisher.git" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "MIT", + "typesPublisherContentHash": "ece4713ac1c6e8cef0d5850536955a0d5c4feae21c905e68a08be75b9cd58b9a", + "_id": "types-registry@0.1.579", + "dist": { + "integrity": "sha512-WDwOzB8U+fgb1hgoHdtRhqiFNVuPMqCRAP0T2AK7+feAyBz3J4fndIlOYsVN9+5ooqhYpiGihayqVty5Noz2gA==", + "shasum": "bea48db49b4e9050102006e04a7863665bcdaf16", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.579.tgz", + "fileCount": 3, + "unpackedSize": 1387583, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJh/mdoCRA9TVsSAnZWagAAsnQP/2X9sjEsC33tTbhPmQh7\nyY8wZmDS6iRIjGf5CzAN3iVdooGbmQ4oJNyFP3WDTRRMLShGHTlqeKyVJPID\nARSAtv6YkM3oZo5XcvzpJf2R0jvNO/unCq9Q9Jp/5Lmwh4HqLG3FLS5eOC4w\n1TaApJs/BsMBAdsbzTgdrAsJIXT5TRTtGGmNMHzZSqUxXlT6cqq+0X6Llc5n\nvQLpP+4v4ApS7aaYIrbydSnvoalzWeb1jxvW7LPNho+QlEDuvMu6hOTnQNSi\n7krCJt2d3xz7ZtF4lX+Qu/c2T9oP+K3vqActT/agDpYuFh3MjpDbXQ2BjM1X\n1el1w1Qrpx58zd0aF77EPZAD4yFttOTIjXIqY2HZvZ1q5AC/TMRWqMtSy28C\nu26lmxn/om1/X9XMFvUW3R236+GzWIg7RDN+GuU6+NN1FsL6sUuyoyLUxsUA\nzZJrsZs6LNC3lPFAoLIryauOrZslueUtCgx50keHWTaDCedhevMSQhiQXY/L\nyEwOeUtETpd/k1doLfeU9bMDQM3WUuU5gbqlIP6G680IRNk4m75V7tVaI/ha\nPDyylrSnsXwQzMtnCRWmk5h/vNDfCJ5fg7X8dA3wUOuFrvGkBPBaSFkdbnON\nrgl2HtfywB8KPDqqJm+ZzrOyOLUeiCywsX5kd6/49XIPkM5PS0Z2tce6EES6\nOs5o\r\n=snD7\r\n-----END PGP SIGNATURE-----\r\n", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEYCIQDmyctaQ+ONY3N60VFVSFvlY6PZxGOWvIKU/bwp1NoAGQIhAOAidZsiKqnwf63z676by0LTWkftXDWkzXzLsOA35Mf7" + } + ] + }, + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "directories": {}, + "maintainers": [ + { + "name": "typescript-bot", + "email": "typescript@microsoft.com" + }, + { + "name": "weswigham", + "email": "wwigham@gmail.com" + }, + { + "name": "sanders_n", + "email": "ncsander@indiana.edu" + }, + { + "name": "andrewbranch", + "email": "andrew@wheream.io" + }, + { + "name": "minestarks", + "email": "mineyalc@microsoft.com" + }, + { + "name": "rbuckton", + "email": "rbuckton@chronicles.org" + }, + { + "name": "sheetalkamat", + "email": "shkamat@microsoft.com" + }, + { + "name": "orta", + "email": "orta.therox@gmail.com" + }, + { + "name": "typescript-deploys", + "email": "typescript-design@microsoft.com" + }, + { + "name": "types", + "email": "ts-npm-types@microsoft.com" + } + ], + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/types-registry_0.1.579_1644062567939_0.05348232433579314" + }, + "_hasShrinkwrap": false, + "contributors": [] + }, + "0.1.580": { + "name": "types-registry", + "version": "0.1.580", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/Microsoft/types-publisher.git" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "MIT", + "typesPublisherContentHash": "dbd1e4e77036bf04828b569c99a829ce30dfd3735f39e049bbca572c3c77deab", + "_id": "types-registry@0.1.580", + "dist": { + "integrity": "sha512-xUwYbGUCnyCi5ihRc5X4t0QCEkYc+svhedDhmGkqs84SMnnuEZUMOLGrhg8ZxT7Ur+e3Hy+b/cHr46uogAe2IA==", + "shasum": "51c223ae15ddbc0e23c078230a3ac7f40e6128e9", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.580.tgz", + "fileCount": 3, + "unpackedSize": 1388169, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJiB6j5CRA9TVsSAnZWagAA1EwP/2ADcBo1iDUMwRbrirPW\n3crMOM89tKpFxRiWwCyXviPYBn7RbWROZVchVeoJiSPwTQedNm4FN91c6tAW\ndQa+3Phea6syNaKHk+rPVThDUzdmikkH9EPaHlUK8nKJf6Ol4F69GIM0tsWm\n1qy+/a+BfkbNkv94dKvw/Cqj7MdfYAp7JVqrpkZNL0BbH3zC12ZTE5dcrkS+\nPJdcdVfYexjtbHgIke8dg7MgBGwpsuFBTc5huqqkzZF1PuDz/0TK9c82dZSI\n97BJQ6oqPDVgAeT5x3qLgC2qRhveXFJ4X4ynFTR43bUlclwZiNUUBpEkhMq1\nA8P6TfnR8af9Q7+uJN9WatOiCBuD92He0ZVqWAR1x/e2dyYgdndrCoK9Lx3V\nEQ6L8HREWSRoBGv/5EO2QnD3gSyJe54HEJrtoR9J7R1ZN646ZYxC9WnGjrd2\nUpdNONi52s4FYYWiMd24FVaU3RSs31KjSS4Zw3XZ9zT53KemT2RdDNkEWciY\nNeidFdxMvcybHZLHVxvqWz7ZcmJVcCnpGTSVVolAYRuVfbJraonuHP8EgiyX\ncoM+ymis23E2M8igm7NsYmY1W2qVAOpFkyJu+QaEs8KCy+eSaGQduxfqPDp2\nWKuPJ1RGV0rFOWZUHC+OUFrQoKOEGTvhu47b+qYhpqkK2tteJoVsAxj1dW6r\nFBp5\r\n=FQAw\r\n-----END PGP SIGNATURE-----\r\n", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEQCIFt5jn2OK4/rGXanlPF8/NyNepyzwRUKoqGY5oyEJyeAAiBuaHHwINBb1K9SkANLG9JEdRrQ1qBo73Q+94C4cFwaFA==" + } + ] + }, + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "directories": {}, + "maintainers": [ + { + "name": "typescript-bot", + "email": "typescript@microsoft.com" + }, + { + "name": "weswigham", + "email": "wwigham@gmail.com" + }, + { + "name": "sanders_n", + "email": "ncsander@indiana.edu" + }, + { + "name": "andrewbranch", + "email": "andrew@wheream.io" + }, + { + "name": "minestarks", + "email": "mineyalc@microsoft.com" + }, + { + "name": "rbuckton", + "email": "rbuckton@chronicles.org" + }, + { + "name": "sheetalkamat", + "email": "shkamat@microsoft.com" + }, + { + "name": "orta", + "email": "orta.therox@gmail.com" + }, + { + "name": "typescript-deploys", + "email": "typescript-design@microsoft.com" + }, + { + "name": "types", + "email": "ts-npm-types@microsoft.com" + } + ], + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/types-registry_0.1.580_1644669177171_0.1397190099289347" + }, + "_hasShrinkwrap": false, + "contributors": [] + }, + "0.1.581": { + "name": "types-registry", + "version": "0.1.581", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/Microsoft/types-publisher.git" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "MIT", + "typesPublisherContentHash": "ef1128b147098bf30242d16609f8c4b7b19cb8f4fa63809b627dd6c3e7c3b7b0", + "_id": "types-registry@0.1.581", + "dist": { + "integrity": "sha512-kMr8IjAoAhZqrLWFd/RV2bRUFamYwUqJKqw53oGaHHi/lUTcxbj9d7ZYxb87Jl11jMCaRnxViuPCuBVOIvz/rA==", + "shasum": "d1a4c2df17614bff0583c1e50d771a119c5d8ce6", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.581.tgz", + "fileCount": 3, + "unpackedSize": 1390691, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJiFSU6ACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2Vmrglw/5ABLLQEhQl6tYkjg9eXq3USkF7vGQQVYL7XkRzGndGhwlNL/q\r\n8HJboYVqd4jsmodxQu1gqrN8F2GtXX01jb3C9NeocN0CCFIYQbWAMzWty+qi\r\nZUskKWD0cnlqEhOfvnsUhKTTKXDv/RDYNQohRaP/+jnUjvqfZQPFwqhm2wR+\r\nZCa0HKgxeyidt+6MkVUgQaEL4vWKMvwm5yePCcArTJSiPixX2n28eDEY3bkI\r\nT9W0BNOsrPzzVdC0yqRzb91npPeGccYoQV1+luVk4ituC75HtG1OVOtIz478\r\nzhW/damzIquH+zDUHhV3IfOAzEnjS4HhZCIOTA/4BLnqlipeI3gExPR4v49e\r\nOtEuFu4SiW/qniIXelBx9Yo/+jDkYaoHCELyv8jcjynS0M5hRT+FxGjniKFD\r\nvuYSeaWM7aR8+kj12eTICM4SAdLVIq8yQrUQfYI2VL/m48QPqfILGJh7B++u\r\nPcJORyulVbfKca4w45jm6UJg339aeHXMCRGQcoOJHT/S3JuqxorrikQgrJom\r\nIB2hiWJgdgooCkI1YodFQT1beeK/HVqoZX3e0cXLIVhwmE5MzphqJ4c1u6d8\r\nEOJI3erM/MiR2y3PJxsdvkZ+yLY0p0gsaSJA03wFO150zPaA2XsKo5d24v4h\r\nL8UZZ9AwNjGFXNfeWXSjyP+FB13CQxsXWo0=\r\n=TgI1\r\n-----END PGP SIGNATURE-----\r\n", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEYCIQDuzBaprzrPHn+IpDYWp6BWJO4VMRFL13FlTzFTnWGZrwIhAL5wtnd97awuJCqo25Rh6nlMiwVPU46ytPM6tS/flvuS" + } + ] + }, + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "directories": {}, + "maintainers": [ + { + "name": "typescript-bot", + "email": "typescript@microsoft.com" + }, + { + "name": "weswigham", + "email": "wwigham@gmail.com" + }, + { + "name": "sanders_n", + "email": "ncsander@indiana.edu" + }, + { + "name": "andrewbranch", + "email": "andrew@wheream.io" + }, + { + "name": "minestarks", + "email": "mineyalc@microsoft.com" + }, + { + "name": "rbuckton", + "email": "rbuckton@chronicles.org" + }, + { + "name": "sheetalkamat", + "email": "shkamat@microsoft.com" + }, + { + "name": "typescript-deploys", + "email": "typescript-design@microsoft.com" + }, + { + "name": "types", + "email": "ts-npm-types@microsoft.com" + } + ], + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/types-registry_0.1.581_1645552954349_0.0023605011548468724" + }, + "_hasShrinkwrap": false, + "contributors": [] + }, + "0.1.582": { + "name": "types-registry", + "version": "0.1.582", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/Microsoft/types-publisher.git" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "MIT", + "typesPublisherContentHash": "2609dbfff2369f93b97bdd693b2dc08bd73d26c16d1471f08f849321f3ad4c54", + "_id": "types-registry@0.1.582", + "dist": { + "integrity": "sha512-ZcFuEPwEuifbe1P2/ER/3wpJ0QogEnszp2JhcfsbAtOSi0r1fKy82RnVT2nnRX2VUe5wk3NB2D8LHYkcKI4MMw==", + "shasum": "598817621ea70579aec8e2c943fd07f3583619b8", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.582.tgz", + "fileCount": 3, + "unpackedSize": 1392269, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJiHmaeACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmpiXw/8Ds8XV/12NkSALabO6JNCB7+0LerLZ6DMhxTrTbDfsZEzDAMU\r\n1loSOyyceWCntzz23wtA8urHiXy88LT3qc+ETUxGqIoqXgIUh3AxSndi2kxf\r\nEhI1KBSCoufLk93lW47966KnmQnfEjqI5pM+gkvjSWk6fQBCC3O4SSvqKbzS\r\nNVGgl6ooXvwlggimqyjJz34Vg4SFqBVbCX/2l7cOk6yf0M20As4dLihutIIM\r\nAzI1n9HeM4Zfxe9Y6bkMh/DwYxm7BJDZs6pm9GcugJOMat11nRBNv9tiF97o\r\nE61rQns4BkbQPjF5mmM7/Khxt0Rj5GdUMjrYggM0J+/PV7sU/myJ1Xc7VOsf\r\n6m6rVYR/eQGGutCA/A0tZw/LbLhOFMe5ZaqKT7lIOLVphB6m9mbV3Ga6Swlc\r\ndOoFGByp8SDv45mSUPwQZPcuzgfwp2iGkAUeMQ5qC91qPoVQpdPereP1jAne\r\nStKa1m085hICTWeGds7a8YjEfFQisdRUx7NmStG/w1m4YUiK7rCXYOURBwkJ\r\nqkBvIXR3X4lwa87bDZ+ACKlKX30u4/Uswx6Y2Kx4XdE1PUky1Q5MwW6CJbSY\r\n+XAfgGd+obOG+V8Ls4xXcohXRkMg6KsLyfiic8PwrqWvn36fHbkzGIwryHQk\r\nv1ZRNuKZKsV8BzneizoukVachYRmIJr5BlI=\r\n=yl2X\r\n-----END PGP SIGNATURE-----\r\n", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEYCIQDYFxXmepmW0CrxQoXCZo0+BOw3to8bE+9oiY3a/lHmZwIhAP25W8Imyw5GaBSr4XVDtB9TMYunsSS3qsuKGN2B5aX8" + } + ] + }, + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "directories": {}, + "maintainers": [ + { + "name": "typescript-bot", + "email": "typescript@microsoft.com" + }, + { + "name": "weswigham", + "email": "wwigham@gmail.com" + }, + { + "name": "sanders_n", + "email": "ncsander@indiana.edu" + }, + { + "name": "andrewbranch", + "email": "andrew@wheream.io" + }, + { + "name": "minestarks", + "email": "mineyalc@microsoft.com" + }, + { + "name": "rbuckton", + "email": "rbuckton@chronicles.org" + }, + { + "name": "sheetalkamat", + "email": "shkamat@microsoft.com" + }, + { + "name": "typescript-deploys", + "email": "typescript-design@microsoft.com" + }, + { + "name": "types", + "email": "ts-npm-types@microsoft.com" + } + ], + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/types-registry_0.1.582_1646159518026_0.44288099287136284" + }, + "_hasShrinkwrap": false, + "contributors": [] + }, + "0.1.583": { + "name": "types-registry", + "version": "0.1.583", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/Microsoft/types-publisher.git" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "MIT", + "typesPublisherContentHash": "46ce17b42c76d163be7b6172a6f86e4897751d42bf57aa9bfd361ce43c4f20f4", + "_id": "types-registry@0.1.583", + "dist": { + "integrity": "sha512-73kmLv9447u3M9kGqO/GF0wX7IRINvEfNnHI/7ndCoPqAMP4Q9lzWUp21a3mkbRrvVq9qF0hcDytTrbDnc/t2g==", + "shasum": "309f2a12a054a3f6475e35c2adb905d1f1d81476", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.583.tgz", + "fileCount": 3, + "unpackedSize": 1393705, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJiJ6g0ACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmrRdg//SxzdWVFcwdjVBGGRH89GpB3r/JzoFFT/un36ExB09F0G9ur3\r\nPRUBW3cfmQ0ur5V+g7n94ik14BVuCVOg3DrQIT2JKmfWqqj5BWd2nDJEdyH+\r\nWZG6J8es8kw9J4KF6WyxOp1kVYCnVD6as2n9logXRUkbV+eMdNYjeafDovL1\r\neA2F7UEj1Spj0C1IAIHWPk3R0MttTLYah4ctKs054vgMgJ9cATrz6bkAFe5/\r\ncT0lNvf1IUYe3bCtWHgxlJ+TEB+CnfjJAYrHEuNfBDlwUxz2UkZRlhhumok4\r\nbkGAEOea15IRAIlJLyoygbfvTalhYALvarjwjhfrJiFdCa6bzSsHC9CkGfEI\r\nK5gzkINk0j0eAzfsk0JeufxeJUIbnxdlP54QC3XE5NBuASHdyfW9Q/7qJ9p/\r\na94XVRS2HS1EGOOlr5CO3htT4bdmKpnN5xSLCZLGyVtjCzOlJ73Y8mkacVUZ\r\nSZ2kb/IwIXUFfSUOEluWCaX+XNjWgHT7WgsH7LgshUIx5oXQAcSsfwn4kJXU\r\nDpNpVuDib3DMws+gdmHFAf+CwbUa2bt4H2FaK3Dg6OA1Kl6iCSE3URPFlRmV\r\nW+bEFfMeHtWdJ+o7cUppdeNx+CKFOJnFWIK+ApAY0WiJvFmJSMkD9jJHG92V\r\nlHCldsYz+VhKhlfLfBsvXYG62NFCWNv10jw=\r\n=5Gjy\r\n-----END PGP SIGNATURE-----\r\n", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIG+hhWxAJq/9q/u6Cn2Z/1097uTEdDzLM39ytopVDq8sAiEAwUqIhVXoi6QTVouICMxwC0SZmOKslcAPyumAwhHJdhQ=" + } + ] + }, + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "directories": {}, + "maintainers": [ + { + "name": "typescript-bot", + "email": "typescript@microsoft.com" + }, + { + "name": "weswigham", + "email": "wwigham@gmail.com" + }, + { + "name": "sanders_n", + "email": "ncsander@indiana.edu" + }, + { + "name": "andrewbranch", + "email": "andrew@wheream.io" + }, + { + "name": "minestarks", + "email": "mineyalc@microsoft.com" + }, + { + "name": "rbuckton", + "email": "rbuckton@chronicles.org" + }, + { + "name": "sheetalkamat", + "email": "shkamat@microsoft.com" + }, + { + "name": "typescript-deploys", + "email": "typescript-design@microsoft.com" + }, + { + "name": "types", + "email": "ts-npm-types@microsoft.com" + } + ], + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/types-registry_0.1.583_1646766132277_0.048819712169487994" + }, + "_hasShrinkwrap": false, + "contributors": [] + }, + "0.1.584": { + "name": "types-registry", + "version": "0.1.584", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/Microsoft/types-publisher.git" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "MIT", + "typesPublisherContentHash": "63966471b1a69f860236e5617d310379ea55c8b11514d377b197261a75d0bd09", + "_id": "types-registry@0.1.584", + "dist": { + "integrity": "sha512-eIeIJABHBvtZFf7LVCiNDS2Uejmhs5iMq0RFG7u2rfn/eHnqKAlNrmU84dSL82KLOyR8Vk6qg3PV+Z0sCaNHUQ==", + "shasum": "814008e651dc004e19292ed15e2b863e8edd82ce", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.584.tgz", + "fileCount": 3, + "unpackedSize": 1396143, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJiMOnPACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmqcZxAAg64m34CLE0CQgEiI+PlEVupavkSEgGcsAcnOQtRH2BitKJZx\r\nG5LYhxfosIfdfYs+0xZPed0ARVL03qroaFgwDC4kSj/Pa3Zx8aonGxwizRe9\r\nocqzb6UqQIBlZEC9sKlA9ej50ukAJoh/wGrqfk1Onwgbhk6Mz83VOe3bwue2\r\nJlNp+ShywsB91qx27ktG3tAdgtOwyA40glgc5/PDAoY9C0Wce+YQW9fnvRhL\r\n/W7v92o7QjL7vEkQf3SFh7JHan1Y/LTjqVLbp3Dy/pwoWDgJ/8PPzegYKlTW\r\nQEL2wJ+kE6ghI6FRZ27IJ03l+UW8XpyAr8zN0Ub08Jz4Xj0XHhiIeNIeo5JX\r\n3SWat1/1UQh5OWxmGUDL18+KESTpkpB0EowfFzK7+xENU5ojyLgmuInDykGm\r\ngnygh03MIsk3uZcnR7B3OtJtKhItgBnH53RUOztABubKkZW8Xz1qIuL8VP0p\r\n1SL9FnsVAVvuEhvjjcUNatQOoQb6WI/7JlrLlSVGu4rlZtz6BSTynABburKh\r\nstt6wwRpGSEP4imahdIuNwNZve2lEuEoH/3N7KhVl0fCXCd/mPqm626Gkamv\r\nE8Y/L5wUyLwmGn4fmI89QBfrfOMwJW52WR+qJchjTTzv/u8fUssBpfV/26zk\r\nkxZxBn5yRGz0BbENhoLbMYciIHN3mi32pDQ=\r\n=SecE\r\n-----END PGP SIGNATURE-----\r\n", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEYCIQDWl+c+ctkn4wueXTD8pz21CD9LmyPBTtlByCRau/NNOQIhAN4F7gypEPq7gumArp9+WWl65u9HDdLtJreD3fiU8pDd" + } + ] + }, + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "directories": {}, + "maintainers": [ + { + "name": "typescript-bot", + "email": "typescript@microsoft.com" + }, + { + "name": "weswigham", + "email": "wwigham@gmail.com" + }, + { + "name": "sanders_n", + "email": "ncsander@indiana.edu" + }, + { + "name": "andrewbranch", + "email": "andrew@wheream.io" + }, + { + "name": "minestarks", + "email": "mineyalc@microsoft.com" + }, + { + "name": "rbuckton", + "email": "rbuckton@chronicles.org" + }, + { + "name": "sheetalkamat", + "email": "shkamat@microsoft.com" + }, + { + "name": "typescript-deploys", + "email": "typescript-design@microsoft.com" + }, + { + "name": "types", + "email": "ts-npm-types@microsoft.com" + } + ], + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/types-registry_0.1.584_1647372750954_0.776003336136331" + }, + "_hasShrinkwrap": false, + "contributors": [] + }, + "0.1.585": { + "name": "types-registry", + "version": "0.1.585", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/Microsoft/types-publisher.git" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "MIT", + "typesPublisherContentHash": "a16b6ceb510357584518203a2a324011b427a99c20996882d369986502756185", + "_id": "types-registry@0.1.585", + "dist": { + "integrity": "sha512-ea8RAQakbAvQh/LBOmpeFN4EycBYNASX4V/GUQ86/r9iACUOO+4pWeoOz3kxjEsotlFa+ki7dtmnPpdDNrdzjQ==", + "shasum": "ee1aa08e944f7d218333863d66372bb405edd596", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.585.tgz", + "fileCount": 3, + "unpackedSize": 1398354, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJiOis5ACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2Vmo52RAAnPcvYySmQwqh2BbqSmjtSYNWohOvZc5HPXwtAg8Az9wY2ddd\r\nty9eWO6y6fwZfn0subXg36ImAbK4Ag3cTc7Dslo5V9S/9/EaWaOuMkJ7AbiP\r\nkUzfR9dI2LM3nGAtfSWFMoSm6pQegrlThb9XC1gUa/qMsB7mIbrplCphfNl3\r\n7cU345YLa1IBPenLYeCSZ/5+MQY3UYziur2xTNEPOp4A2D9JWUsgBlDYbfxh\r\nyDz/ESjxrmhlfpXDTtdRHxunsSq9+UMO4Zh2IrOONcy5BSJLz8BAslf7v7Go\r\neumCY1vUOHLShGgNdpEY3pEjeZlupa/qHijTqxdhV4odgBHjGUcAF0XJmBWa\r\nVE89oOSKv1bX9gmBrr+fH/lm6idredbPbaApUoZj8PVsprvqAWOGU6TxDBcq\r\nfDOIr0JnNg3b+0bMF8TwoHLMWPU6A9PiWVM4kzw3XP6h41EaW2k8H7GYMnu/\r\nNPtdOwxf70t1C+ZAQeJjSOLwilpDFc91R14REcaoMpdqru++OQSMAN9dZMHQ\r\nsRJo5ppBAYG+EI3cPuUNPgdcqhqI5vcSMjr3hlLGRtS8MRtjMRisP8dqnO2i\r\n6K6Sr0QNqC5esdJl5d6JaEhMEgLQiEgYcBLihyGpCrs8CzVbJNg9nnOiy9f/\r\nfowPZJw5AKZnXVCZpuZ8+jMCeK5DixVKRzo=\r\n=R+J/\r\n-----END PGP SIGNATURE-----\r\n", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEQCIAQw7zLfHbXSpANi1Ho8ph9bSGHE3HNf0WoYsWj86wrVAiAkiBcl/HxLdMFJ5DW+1ij8MHjGgxsC+QAM5FzSAF87cA==" + } + ] + }, + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "directories": {}, + "maintainers": [ + { + "name": "typescript-bot", + "email": "typescript@microsoft.com" + }, + { + "name": "weswigham", + "email": "wwigham@gmail.com" + }, + { + "name": "sanders_n", + "email": "ncsander@indiana.edu" + }, + { + "name": "andrewbranch", + "email": "andrew@wheream.io" + }, + { + "name": "minestarks", + "email": "mineyalc@microsoft.com" + }, + { + "name": "rbuckton", + "email": "rbuckton@chronicles.org" + }, + { + "name": "sheetalkamat", + "email": "shkamat@microsoft.com" + }, + { + "name": "typescript-deploys", + "email": "typescript-design@microsoft.com" + }, + { + "name": "types", + "email": "ts-npm-types@microsoft.com" + } + ], + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/types-registry_0.1.585_1647979321398_0.0953006667256493" + }, + "_hasShrinkwrap": false, + "contributors": [] + }, + "0.1.586": { + "name": "types-registry", + "version": "0.1.586", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/Microsoft/types-publisher.git" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "MIT", + "typesPublisherContentHash": "24eae6570030d0e74ed642ef4d811ffff2b667515ccb0506e8fdf9225b15eae7", + "_id": "types-registry@0.1.586", + "dist": { + "integrity": "sha512-iO9SS+9jntTgtXSvRk922Qaw5l4dTdEA0LGKTO5OqnUUbyI1xNhxVZzILXibdSA41NaSXkGZXZlAeDYW2a3jsQ==", + "shasum": "7f548bc9682b5854581b39f913a569c71988c864", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.586.tgz", + "fileCount": 3, + "unpackedSize": 1400246, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJiQ3PfACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmoGTQ//b3LCuee7xhkWF9MQCKwG0oyEWum88Yt4hRVn/PXuM1wYhZGk\r\n+4NGgEjV19+++e2QVpI3JUNoeB7+KItbsg1JzCpEQiNmGfL7UQo1yxP6xab7\r\nOPh85Tw0e1T2HwqLHfEiBt32JHOLewA9n4gnLUhXoHXJBEu21aIcaEaOHHvB\r\nWPsMZw/nUNSlDuk1Yh+cBVsI/29/euZmMK11x481AwtatTlNwJu4hsIL3DvD\r\nhTWSuW13uhSyfXZqzvo87fSdzmeGEePww0nGQy01cpSrRrGAQR4rSVCH+n+2\r\nzkPI5gTLVP/qDSO1J1En0lwBMYWA5pcdzs4YNINw/kfmuwo+H4CaTHqoeycJ\r\nPMkVnS1TunSVuPXFu6jGPp0cmbPygkXXkmM880G+xrjk3GE/nrtbdZA/drc9\r\nYZ9A5s1Qxl4Bb0/eCcqPMHPf2TXa3RSqh5VazLFYnTc7LjyxHT7+FdeacyhA\r\nSSsgliDr0XnJrQDM3mo6wI5J23xphcXBQyEJLM5z6v7fAR6NKjRV1KjzGDRP\r\nZxesqHelsDBK9KOmPOdDOgAZ5rZs+g4CC4u+a7rzCNR3pXJrdhqEgluBvLIW\r\nADpAJym5wl7qarCK+TDQh/rquYIzQVnPDDW+CK5Z7UXO1f8BZ9Gg/NG265jL\r\nbXhkY7it9WOrjxfVxryGzp+gErWUT43rP9c=\r\n=iVHI\r\n-----END PGP SIGNATURE-----\r\n", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIQCqvF2d7NjqRCfJ3oUSWMLledA8DIIknngQ9fVY0m1b8AIgK+UlpkVFHZpCmxMYWsKfsKI/jkHsEa9RSfIL47ypWLg=" + } + ] + }, + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "directories": {}, + "maintainers": [ + { + "name": "typescript-bot", + "email": "typescript@microsoft.com" + }, + { + "name": "weswigham", + "email": "wwigham@gmail.com" + }, + { + "name": "sanders_n", + "email": "ncsander@indiana.edu" + }, + { + "name": "andrewbranch", + "email": "andrew@wheream.io" + }, + { + "name": "minestarks", + "email": "mineyalc@microsoft.com" + }, + { + "name": "rbuckton", + "email": "rbuckton@chronicles.org" + }, + { + "name": "sheetalkamat", + "email": "shkamat@microsoft.com" + }, + { + "name": "typescript-deploys", + "email": "typescript-design@microsoft.com" + }, + { + "name": "types", + "email": "ts-npm-types@microsoft.com" + } + ], + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/types-registry_0.1.586_1648587742800_0.9005693394204219" + }, + "_hasShrinkwrap": false, + "contributors": [] + }, + "0.1.587": { + "name": "types-registry", + "version": "0.1.587", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/Microsoft/types-publisher.git" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "MIT", + "typesPublisherContentHash": "e16f2e59099aa99d0e5c6580f864f3f5c14c15677cd34d1b5d4ebd0a3c85b635", + "_id": "types-registry@0.1.587", + "dist": { + "integrity": "sha512-7hFa2o7yY3MGHFG04mXdSQ/wtyb49OcTOoZn1c6SfNYuRaAx9JHsivAbOsR4IzpEIOWmE1kWPEurP316wPF3cA==", + "shasum": "0a630bac6e42d39c7fd9bf16161d8664b373ddd3", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.587.tgz", + "fileCount": 3, + "unpackedSize": 1401469, + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIHUlyCTpr328/zofD5AWuze7pvujTEepVVaxUEA7Pev3AiEArWS/dpw4hoL/mrj0lzWqxD1CfdFsicjJYjLxzGJ3En4=" + } + ], + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJiTLxfACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmolCxAAlTV1Rj8gBsANEmvOWcy1lsTj6NLz0v7vpa4PHBHfvrNUNAhk\r\njmd6GKaL876s+GlAiZgnmD4BjXaOcsRsp/hmFG23k+X4dIxOXIK6Dl+wLKLN\r\ns2sNnpt5NxJIWKXS9TGiSrEPxfCqYDilIvNopGld2O6S9H+ofXGZdUeDP6ec\r\naPJhfIvIGszWHiBYvuNp30fjxm2619CsT9Og+W8qdd48JjAMfgCOed4zr6/1\r\nEOSk0WTe1MB9S726UZHF45aYPp+qbnZoiNmXrl99RFX6escgehXkr7gw1s53\r\n511DW3vycx830l6jG7tAKJyAZGjhI42V8svj7dWcX87sR8yjAlPjwcMTBOjU\r\nXBRuisROyKyZJTlg5NHdXL8upz8tN1C9TVoNmWDuURlZY/lYe11Uk/J0zqwo\r\n5p1F7NrBz30CaelZpnbsZqU63uly1HsamSkdF4OV/trqFYZZyKHVdAwN7OLf\r\nVPIlTOWgB2RqLX5AFHBv7nyoHx4iT5aDTILkalmUfBsjL1wFyShIlh7+9+6D\r\nw8yqNlq6nyEMBTf6oeq0LGNSf3nd6Ls+bbcRvkcWUJorYVqksNuhk19XKd6h\r\nwsDaiN9JCQJIgH6kRImN4Hs+ccaNxV9hfsdWf6hm2+caNCSiHmUaJcDJg5Uc\r\nNQCpjXhaJ0LMLRq9Pc68w6YBJ456vJUNKws=\r\n=HAfs\r\n-----END PGP SIGNATURE-----\r\n" + }, + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "directories": {}, + "maintainers": [ + { + "name": "typescript-bot", + "email": "typescript@microsoft.com" + }, + { + "name": "weswigham", + "email": "wwigham@gmail.com" + }, + { + "name": "sanders_n", + "email": "ncsander@indiana.edu" + }, + { + "name": "andrewbranch", + "email": "andrew@wheream.io" + }, + { + "name": "minestarks", + "email": "mineyalc@microsoft.com" + }, + { + "name": "rbuckton", + "email": "rbuckton@chronicles.org" + }, + { + "name": "sheetalkamat", + "email": "shkamat@microsoft.com" + }, + { + "name": "typescript-deploys", + "email": "typescript-design@microsoft.com" + }, + { + "name": "types", + "email": "ts-npm-types@microsoft.com" + } + ], + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/types-registry_0.1.587_1649196127751_0.005071011457581598" + }, + "_hasShrinkwrap": false, + "contributors": [] + }, + "0.1.588": { + "name": "types-registry", + "version": "0.1.588", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/Microsoft/types-publisher.git" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "MIT", + "typesPublisherContentHash": "e11193c09d31ab1b534d0dc4e287f63759b6fe8d131d234b432557d9688f0f4e", + "_id": "types-registry@0.1.588", + "dist": { + "integrity": "sha512-9QDkgS2gZZJ+o1jhJGQHshUgl6RUiK3hmrFTdhx8aXmx1d4gf71XY825J3Kl3A59W3uC4TufziRiDoEyfXHwKQ==", + "shasum": "05ea39a087ea1a1d0bb9ba7a6b4e5a762dbb3414", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.588.tgz", + "fileCount": 3, + "unpackedSize": 1403146, + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCICY+QBGWP7QXY1jYZqKUhakYCn2GZehepqJngRz8FGKoAiEA714qPgBLxlrxCNnnkaIkB3UC6pMggTN8Ik4lJl79zxY=" + } + ], + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJiVf3UACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2Vmokig//X6hrNB7UbweDBJaSTAcmvzXZ0ypZ+4fHUbf5N9qTcWoSfLXo\r\nGs8HJEPQuQTh3A4FmRKQ5KYinFPJS3N5IHCTKqD0QGfWw8u0kvHut5OT7Vgo\r\nh7Do7MfdqmcNONpTHeYQn1WwpOSpVFcUOM1blfxh+k2TQ1mqK2zSM7qYykij\r\nhyuvB8GFVIzFF478ZMJlD8/3pnG3wlb5A1V6QWrIPrUop9QaAvfVB/GgL95j\r\n2RgJ8iwhOg1ZXTF1+uX3Oxzdx7m5SSOxj8toYlCNGBVcgcMGFm35EKsgZ4td\r\nBQCRKDYJGSHrdQNGCfl+ZRSnMddyhKT5nSiUdZgqnORCk9QKYvTnfrORn5rS\r\n9BgJTFk8JEt2t6eAOnYOniCoxENX5J7Cs5hKJdY9yQaHKwvFNAm/7YeliRVU\r\nyOimR2oDE0qBNXTNw6XqS/egKSuHB66mF8hGQS54P0DjdeCj/WPO/JawZLBv\r\nL75Z8/Zthux8N4eyWYBByref5z+uW02/wJ2a3VYhMEq9oD/hAnizDBoimct1\r\nyffI6uNe8OCS5jXPAtq1ZSGXVcti5wjRm4Rz/O5RDHWUZpCHAlHfg93DVkCE\r\n5Ejq8L2yGrFjUqwcH51g+ERYeW/hGDSPxPZyLHvAjMMvMvgbOdRjt5oV/i+V\r\n+4diMwovMVUxJ08A1lPPhvjAtLihZ3gRTBU=\r\n=ALLO\r\n-----END PGP SIGNATURE-----\r\n" + }, + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "directories": {}, + "maintainers": [ + { + "name": "typescript-bot", + "email": "typescript@microsoft.com" + }, + { + "name": "weswigham", + "email": "wwigham@gmail.com" + }, + { + "name": "sanders_n", + "email": "ncsander@indiana.edu" + }, + { + "name": "andrewbranch", + "email": "andrew@wheream.io" + }, + { + "name": "minestarks", + "email": "mineyalc@microsoft.com" + }, + { + "name": "rbuckton", + "email": "rbuckton@chronicles.org" + }, + { + "name": "sheetalkamat", + "email": "shkamat@microsoft.com" + }, + { + "name": "typescript-deploys", + "email": "typescript-design@microsoft.com" + }, + { + "name": "types", + "email": "ts-npm-types@microsoft.com" + } + ], + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/types-registry_0.1.588_1649802708616_0.6994575018467215" + }, + "_hasShrinkwrap": false, + "contributors": [] + }, + "0.1.589": { + "name": "types-registry", + "version": "0.1.589", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/Microsoft/types-publisher.git" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "MIT", + "typesPublisherContentHash": "e447a43e78fafd5304be1b8c1af3bbbba2334990f1f5d4b871a2037849159da5", + "_id": "types-registry@0.1.589", + "dist": { + "integrity": "sha512-M4Rl6vVNgqlifmDPJqIeiEyRPRRk5IrfBZxNDgleMC4WaUXavtSPCZAM3zPLfNklSh6zlUCvL9oip+fT+pOyxw==", + "shasum": "4c14e5a0d98bcd460fbf8e7c9b0c321369277c4c", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.589.tgz", + "fileCount": 3, + "unpackedSize": 1457512, + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEYCIQDR3jfZp7aXQ2g/Dor0boIcGkX4IXG6Nm0FvDnVUvHkYwIhAIlvGb/CcPve57dPU6nmFc7rgrIsBg/1WGka+RvI16Zc" + } + ], + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJiXz9hACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmpLzBAAoPrsr7k/rIFQihwyZJL3xALFspyRBKTGglgRO5uia5Y6oHHZ\r\nSCRVgKmP1ap0jsyR0YG/8f7dgwpzkzg1AnJzEIh+rXOzOKTMS6eJR/s0MWm+\r\nt/UHferUaEJ1wb/YWrpPpJbtywSqgLdd/jzQbrdbpPX4fMVrKnPC5c+m+pu1\r\nw4H/gITe+z9gdAPmkKM3CVL6uc2B+exe7KbXckClPauDczRbOqX82kyqKDDm\r\nmkl8ctH6lCb0SMNZemLBcVg1tP6YIMP8BgQW76QpQOsX5FzDOQaI3TOI4ZLC\r\n2OqwfT1hm+DD1ZJ7SBKN9cZQddgJYrreEoY3NxKBdy75MY+c631gtVG0k8/g\r\nVUijZzBagjUaLRguj1iU0ypuRe0qiYpMNb9DOLMSRVftcrkMhuO1GKAM/9ID\r\nTtkb+IUip4m9sgYikenPYE2b93TNUs8d4LEVzOpTzm+gF260zeVkOiELrmiZ\r\nMOSZB1vZtj+6xM4dWLy4vdluRDS0IvJ3g7kIvz8be/Rrvd9YMouyHApmsQp/\r\nXIknSht0vRqBBVjE5T2sxwpnB06rc5XS/IK/wqR4b4Q8r9SOYrZq2fo8u28X\r\nPum7Mf/sU84ZxBcq27BkaEPEzQiQYpG0UVAPNTIulSj3UiDW4eF0SYyJn03q\r\nRHKmPqkJRPqgCYfaQ6ehfjM481s4l8tiD6Q=\r\n=Uw1S\r\n-----END PGP SIGNATURE-----\r\n" + }, + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "directories": {}, + "maintainers": [ + { + "name": "typescript-bot", + "email": "typescript@microsoft.com" + }, + { + "name": "weswigham", + "email": "wwigham@gmail.com" + }, + { + "name": "sanders_n", + "email": "ncsander@indiana.edu" + }, + { + "name": "andrewbranch", + "email": "andrew@wheream.io" + }, + { + "name": "minestarks", + "email": "mineyalc@microsoft.com" + }, + { + "name": "rbuckton", + "email": "rbuckton@chronicles.org" + }, + { + "name": "sheetalkamat", + "email": "shkamat@microsoft.com" + }, + { + "name": "typescript-deploys", + "email": "typescript-design@microsoft.com" + }, + { + "name": "types", + "email": "ts-npm-types@microsoft.com" + } + ], + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/types-registry_0.1.589_1650409312989_0.2272723717472802" + }, + "_hasShrinkwrap": false, + "contributors": [] + }, + "0.1.590": { + "name": "types-registry", + "version": "0.1.590", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/Microsoft/types-publisher.git" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "MIT", + "typesPublisherContentHash": "a2b07feb664b3f64a818eeb507abffe569672fe082b2693964e14998831ed38a", + "_id": "types-registry@0.1.590", + "dist": { + "integrity": "sha512-15CVQCk6lMfolrGLepxOBwkxl/LwtnTusbpMFUUspejz3dkUHsQi5eUIiWitp2P9pcGNrpOqX4hy5KgaGpu1bA==", + "shasum": "ff719e3d18ae6d5799d18838499ee7bcb2aebf1c", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.590.tgz", + "fileCount": 3, + "unpackedSize": 1461712, + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEYCIQDLpxOjUVtTfwKv9lr5Khwdj//hPHGfXhqmFchdT+iaNAIhAMFnXj+8luBo3+fJmogzNGBQMvQukjoUQ7OiNaqZl+5z" + } + ], + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJiaIDuACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmpkMQ/+JkjTE9rs6HNevCkn0lcb+U3XQeJLgsqK/fmfd1vi+9q9k/Qi\r\nbrj3sPhs0uu9ddrEXHNSg3ommdaYBzm5suEqrGS62yk3dg2LqGi9zDekc4L4\r\nuqyvJS7u3Tjj4LaqVFSymGPtLGsOSRwWlfUmE3N0+JHXqWTRtn0r+yrjmKL8\r\n0rRxT5NDrpPxp2LcnPdeMdjbOlvDZgfvqfN9TNyv3Bg05qb44kJ7ckv4Q4cf\r\nbZxFAQY7L3If/M8XMth6QTg9muXZULeLkrLEn3UyZYQU7icBzfKJNIX7MM4W\r\n9hIlsqn4LvYwvSMOkt8kWTlBtdpyBFxcC5ixNRB1Dd6S4wm+fuSiwMl+2aHx\r\nb1Peow5ndxchMGj1KzLMbK1rbuia9RhoxszrPPoNlbAL3XqdZlVId0PuW8sE\r\nq4xeD5qcokRwpWozOxApmXkET5hvWz8UCGib8pkZbiUTvFpuc053uxcvcrgB\r\n6zeLF6j8fW6oK+Vs9nuyGZnl3bNPYb0/sg7xUyTnTr0C1S/HgpZeG2Z+/vLI\r\nj4AbsdFLylcJavAXcbTuuUy0TGX+N/pt51VG6JgNBrJZiqWziG+iIMjozNF3\r\n1o7ObXeO3q7++Pq6hi5LFntDbd35Zl9qV2xkeerjkV674fFYVwXA/WRkD73a\r\n7DsiQ8BsUxLjSRNgw0fdcId6PLaez8g/G3M=\r\n=DU6f\r\n-----END PGP SIGNATURE-----\r\n" + }, + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "directories": {}, + "maintainers": [ + { + "name": "typescript-bot", + "email": "typescript@microsoft.com" + }, + { + "name": "weswigham", + "email": "wwigham@gmail.com" + }, + { + "name": "sanders_n", + "email": "ncsander@indiana.edu" + }, + { + "name": "andrewbranch", + "email": "andrew@wheream.io" + }, + { + "name": "minestarks", + "email": "mineyalc@microsoft.com" + }, + { + "name": "rbuckton", + "email": "rbuckton@chronicles.org" + }, + { + "name": "sheetalkamat", + "email": "shkamat@microsoft.com" + }, + { + "name": "typescript-deploys", + "email": "typescript-design@microsoft.com" + }, + { + "name": "types", + "email": "ts-npm-types@microsoft.com" + } + ], + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/types-registry_0.1.590_1651015918283_0.7039589193752689" + }, + "_hasShrinkwrap": false, + "contributors": [] + }, + "0.1.591": { + "name": "types-registry", + "version": "0.1.591", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/Microsoft/types-publisher.git" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "MIT", + "typesPublisherContentHash": "bcf666aaf6166290492269e8e444693cc5531fa440f0357a171640f7f7a97696", + "_id": "types-registry@0.1.591", + "dist": { + "integrity": "sha512-7PHremameV3sy9F4Qti+6q15e8Q6qA/wDc4MMCsbwZGzYPoQPp5PSsY/eSq9mnwcYXa1qk84u9bU7eCVJtngKQ==", + "shasum": "0327bb20cda8eaaa040b2f8a3064671a63c5d4e4", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.591.tgz", + "fileCount": 3, + "unpackedSize": 1462349, + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIQC2cZu39k9ZP8pwXrjaRE3qiB4lsIgalT6XWdis/LjphgIgdXf2/vpktpo37WvSdICYOlToEEVOgA6kzJ81ipY2zqw=" + } + ], + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJiccKXACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmqLDA//YtMTEKPjXWJp6LoJfY3xjK+uRDSb5c7wRcGDsO3mEXVbgIaz\r\ntzNjXsR4cE3dqDmYg4kfYjIrzRR468G5I+T8abEHdddz+cdQmxOl+DJ3ogKn\r\nuo4Fv7CxFfTvQrosH367vUBlqqLuhgMJ37tpgTlAHyri+rJhrXiACsnIZP4g\r\n49A5ApJG7d18X0+M7Jv0bDZiPhRxk8UkmzRkOqDHtQF4MJ1jPxG27ZDG5z+T\r\n2om7R45USRe0blHyTG2OvBiccjxXEAgB+xijpeskEWlpZK1u39pyS81PJxqa\r\nEVdHMXSlf5XvDuOu1V89SAefktuUyTvj3M3yl6ss7JUtKiJ6NWovKpouEHLS\r\ngunvmit8oM+nLMpnfaG74XUDID0Gi1mdIGV3sFCHEA/tE0gHyQBkmV0ufcgW\r\n0dHrej36dLhBR5tBGy2BpLP1xIwW9jq3OdxePxuSfQZUzoXHDOfp6SDOGb04\r\neT3LrgOHHwZUISYZj8fLJb3G8jupNSNVN/HQULNBlwdgxCQM2z+JRiMWPzlM\r\nUqYA5XUzN4bgu1K2Zr2p25eIK44Yq2uiLqAQvMKHUrIryjwAIyrIundMUE/3\r\nLcsAEmZO9WlY92M5RTxDfAJLCSmBXjZRwx/9mfNNzyYRiFcjxFbJN0m+WzZU\r\nS+wvQp6KhDcOpvtohayGCEsOgwNAKUSeQ+o=\r\n=6NnE\r\n-----END PGP SIGNATURE-----\r\n" + }, + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "directories": {}, + "maintainers": [ + { + "name": "typescript-bot", + "email": "typescript@microsoft.com" + }, + { + "name": "weswigham", + "email": "wwigham@gmail.com" + }, + { + "name": "sanders_n", + "email": "ncsander@indiana.edu" + }, + { + "name": "andrewbranch", + "email": "andrew@wheream.io" + }, + { + "name": "minestarks", + "email": "mineyalc@microsoft.com" + }, + { + "name": "rbuckton", + "email": "rbuckton@chronicles.org" + }, + { + "name": "sheetalkamat", + "email": "shkamat@microsoft.com" + }, + { + "name": "typescript-deploys", + "email": "typescript-design@microsoft.com" + }, + { + "name": "types", + "email": "ts-npm-types@microsoft.com" + } + ], + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/types-registry_0.1.591_1651622551370_0.3126014203278584" + }, + "_hasShrinkwrap": false, + "contributors": [] + }, + "0.1.592": { + "name": "types-registry", + "version": "0.1.592", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/Microsoft/types-publisher.git" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "MIT", + "typesPublisherContentHash": "8c5a1184ea4f7d0460c3753f5c0b3c130f6e6273e211ad7171cf8c667214f7f5", + "_id": "types-registry@0.1.592", + "dist": { + "integrity": "sha512-AnwNUs17ojv0W93pOnxrGOUD9GYUS+mHbNejG02cA/dmODosYy3gEreWv/cAfN+Dh6fn4chWguoG+hvu9GscGA==", + "shasum": "45a11e54aa0df311c72cb8d946e325028aaa8389", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.592.tgz", + "fileCount": 3, + "unpackedSize": 1463293, + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIQD3xlGwWBBUHF6ihJsFcI9iqmbByd1DNiExkayzSl0regIgW8mfc4r64u85OXzBWUrGdrjdU4fO1tj6bm7F5deHWL8=" + } + ], + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJiewP5ACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmoFUg/+JCLPsiIVwKypiQl+wfClDJCizr9FvdOAw0wFbCm+tNz09NXD\r\nHlZCdul/tw+dFPgBi9pAkY830Q5ctFKrBHZEPd6Kf5KgraYv+d+WtXZwTIfa\r\nR8IO6pQf252SPJauyCMKMYSPgBnP50etoAbit0vUGVXIPVCnBZuhZ2mIAiJz\r\n2krNQMvNtNymIU723fXjqrBU9oaGEP9bK6IdVsFl1QZc64XLYCu8ecTs01sp\r\nYlGHlCnakFnQmcNA/553OHnV+fnGj1xdkpfTZbQLrfn41iTjdh0Ts8v2/7yv\r\nsWhDSau6dHlDPyKXEjrlmwliGZYTss4713o1sn7iZULO0YFjels4ublvnTlj\r\nYATUzsURhytA8ztrWtUVH6polYO2JuLsEdfJXwa8PBOfo04T5QRz/pvkx/pC\r\naZR5kL8Q19mcPIrPnX/dsuigbtrD6fiLL00+2nfwyB23a5sWN6NMcxKYt/mX\r\niEv9pHIGKyUJ8aPJN4hlWZJpUABjJPH4QoM6/w+hIsYY3FjiFGRKgxCj4ngU\r\nGMAQ+CWIf+kxgknTfzoXlZo4UV/ugevlinZdypBbvJZP9h16Vpcenfyv7pw3\r\n1MUKxpgsxcBhNo1U/bbnbwrcyQ9dsB4ca/Qp+cA6zOWlI9OtdQ/H3NNrOII3\r\nbuOtVcIu4b4Ev8o3EHP3BHcezrQ8cEwgBcA=\r\n=BEOr\r\n-----END PGP SIGNATURE-----\r\n" + }, + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "directories": {}, + "maintainers": [ + { + "name": "typescript-bot", + "email": "typescript@microsoft.com" + }, + { + "name": "weswigham", + "email": "wwigham@gmail.com" + }, + { + "name": "sanders_n", + "email": "ncsander@indiana.edu" + }, + { + "name": "andrewbranch", + "email": "andrew@wheream.io" + }, + { + "name": "minestarks", + "email": "mineyalc@microsoft.com" + }, + { + "name": "rbuckton", + "email": "rbuckton@chronicles.org" + }, + { + "name": "sheetalkamat", + "email": "shkamat@microsoft.com" + }, + { + "name": "typescript-deploys", + "email": "typescript-design@microsoft.com" + }, + { + "name": "types", + "email": "ts-npm-types@microsoft.com" + } + ], + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/types-registry_0.1.592_1652229112825_0.08229483256886438" + }, + "_hasShrinkwrap": false, + "contributors": [] + }, + "0.1.593": { + "name": "types-registry", + "version": "0.1.593", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/Microsoft/types-publisher.git" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "MIT", + "typesPublisherContentHash": "02a9569d481fc54a6ed1ea255d80a5e8a21513e65799bd94d633f437ad4dc74b", + "_id": "types-registry@0.1.593", + "dist": { + "integrity": "sha512-oGYgDZsL/NhwZ7DTd+qMR8jpCL8kbO1q/9PDMBW7DXI7QI5N0/socenBj8+tTMJ2c38ZVzyUZaYif3AYR2oC9Q==", + "shasum": "64c7c6d600bdea6ae44870554e29c3b6dd47d262", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.593.tgz", + "fileCount": 3, + "unpackedSize": 1465199, + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIQDqSlfZ17vDVRVtohs7wDiHxGRIeasXMcv9YzzpKAxoXwIgbA2JrwodIswqvKY+9j4l5P82otrakvfITbAEq8gSHWQ=" + } + ], + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJihEWaACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2Vmq6oxAAgjPOMCsOCCFcWAlOUvV9QTYgbc8UDiiDlrfYEVGtdy0O7gTA\r\nKYyMFcmSFXg2yvVRRe2jZKM7UfrgVXFKS17jgDEmTGYmnS0LRjyrYgAgjaks\r\nI5KJ6wZmppOSv7MJOwDuqO4ycgPa077YugBWpHzbulXjiNl3CWlOk8SlKV7z\r\nE/1nAL7wpmYcOG10dVaURaIqQxk82P58gfGe42S6QQbu+MGxIou1X0HyCGEY\r\nZzdxKoXUrmDAnVLCdZ3lyogC1e8fOd255NBPxJhEZk9PawcrjrCxMZ59GeHg\r\nRAio32GU+ep7kitJrYUGKO9A5mUUT5FgkCJYxpVOgEHdd8/WBSZHHEkUlbDY\r\ntebCUnOb/nJvKBdDQT7aS+TtMObQkkb6ZNclEUISuLXCsEyC3eDn5KBi4ftb\r\ni6sfhz4Jx1ocoNO++pci1ANayvHxUM9kwGxHz0U4DVKLEgeNfdX5Nv5SV4Aw\r\nC8timpaeib7uT65Rxn4PYCR0Th9KuLijvXYFaEhG5D0xOQ3nQpaHlyjO7MGL\r\nZ/pv/7UKvogFVXnPY/JQ9yc9J8YnUuOk154UDHpPFX19B8VjZ2f6h4tEZSbY\r\nyvl2/CBhud6CYrNweSLnuXpsipQF/mAcosHRnuBgjNN5tIjjsccZmK1Vk/o5\r\nEacEbz1RMGOwidboKnRzvpF/E4cgbk++1oA=\r\n=ENNZ\r\n-----END PGP SIGNATURE-----\r\n" + }, + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "directories": {}, + "maintainers": [ + { + "name": "typescript-bot", + "email": "typescript@microsoft.com" + }, + { + "name": "weswigham", + "email": "wwigham@gmail.com" + }, + { + "name": "sanders_n", + "email": "ncsander@indiana.edu" + }, + { + "name": "andrewbranch", + "email": "andrew@wheream.io" + }, + { + "name": "minestarks", + "email": "mineyalc@microsoft.com" + }, + { + "name": "rbuckton", + "email": "rbuckton@chronicles.org" + }, + { + "name": "sheetalkamat", + "email": "shkamat@microsoft.com" + }, + { + "name": "typescript-deploys", + "email": "typescript-design@microsoft.com" + }, + { + "name": "types", + "email": "ts-npm-types@microsoft.com" + } + ], + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/types-registry_0.1.593_1652835738335_0.9647483903734009" + }, + "_hasShrinkwrap": false, + "contributors": [] + }, + "0.1.594": { + "name": "types-registry", + "version": "0.1.594", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/Microsoft/types-publisher.git" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "MIT", + "typesPublisherContentHash": "2d15aa770b3225fdf621725d64551dc85b329802ed193a049da90678b3ccc0b6", + "_id": "types-registry@0.1.594", + "dist": { + "integrity": "sha512-TmnFX3WdDWrC1UXj0Mq8J4dBkoyAnFqswWQSXYNT6tXVVJD8rB44A6GIeFWeAa0K3JHepwb0gOEYXkXlSM1XVw==", + "shasum": "ee5d6a148af8f83d9380ea2f8b6ed198649fbdf1", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.594.tgz", + "fileCount": 3, + "unpackedSize": 1469669, + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEYCIQDP8w7J+IqecVUN6yg/lHDFzA8kzo6fJOyiD3wM2OFdXQIhAOy+7kZFCOxC1F45xpFWWRcuDPPa7vWKlTQfyikUamFY" + } + ], + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJik3XCACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2Vmq0/g/9F78xqAanU0tJkHhkZ4UsdvAGAsK2oPVGi3xjMI91PKpb6L18\r\noQgh+bl7CIFKNnmqk/b3naqohx1WivsmmsH9qCV/eIjQzoqpT/ghxo3JBvxV\r\nJIlueLVk3gduH7juVSYq7VhQnnPjIBVr9Phx8PFOqHWTEA/YztR17pMC68Vu\r\n/TmC0M4o4/lVP+Erl+HM+iJ1jvh8c1BoRjgk3XHk+kYq62E8dNJZaZdl23ol\r\n8T4GSp8Z5g17/IfsSLefUFoYU2lIDMrq0n5FgajYt+1RynltsaaGrh4cqo5X\r\nxeEbqTpXriJ2jfV6NDryv43XRAUlsDJwRCDVrqIAZ3hZXDNtpE3jPrWlk6GN\r\ngKjH61OnWWm+1ZOzBgypDmPyKFAfmMP5yepTNOpo6eAkSwjrPJW9U6YvM9JV\r\nn7NGFwRANAnZ2By76FnSRJvLL0fzUCDt76so+O1xl6gRCPAaMIBfUpprgsJT\r\njqZg0fxl/K4mqhR//8kj4zsMIrgj+Da4E8SntPzQw3Zafw3SKtafjSE9MvA4\r\nYcFbEeaDztQsrVzItEWATpimt1/LLwPsStTVCqqiNC5ZKnW8Y8I0s/pz7Cf9\r\nyJFr3N5iUWywcNhPhb52AkbWwQC0Z3nvI3hSjv9xiXz47h/pZLKZrObeBf35\r\nW/CYnKNWJL+7b1fAGm4KqfXENJ+h89FQTI0=\r\n=L4tY\r\n-----END PGP SIGNATURE-----\r\n" + }, + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "directories": {}, + "maintainers": [ + { + "name": "typescript-bot", + "email": "typescript@microsoft.com" + }, + { + "name": "weswigham", + "email": "wwigham@gmail.com" + }, + { + "name": "sanders_n", + "email": "ncsander@indiana.edu" + }, + { + "name": "andrewbranch", + "email": "andrew@wheream.io" + }, + { + "name": "minestarks", + "email": "mineyalc@microsoft.com" + }, + { + "name": "rbuckton", + "email": "rbuckton@chronicles.org" + }, + { + "name": "sheetalkamat", + "email": "shkamat@microsoft.com" + }, + { + "name": "typescript-deploys", + "email": "typescript-design@microsoft.com" + }, + { + "name": "types", + "email": "ts-npm-types@microsoft.com" + } + ], + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/types-registry_0.1.594_1653831105920_0.16487756569532253" + }, + "_hasShrinkwrap": false, + "contributors": [] + }, + "0.1.595": { + "name": "types-registry", + "version": "0.1.595", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/Microsoft/types-publisher.git" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "MIT", + "typesPublisherContentHash": "3609f324c3d4b0296a89efc3e82058d0bcabdd0fcb2416c880d9abec24684fef", + "_id": "types-registry@0.1.595", + "dist": { + "integrity": "sha512-mJCqEdJ1qwU2Ao9lj9sd/6Ip/6BxqsNyHcbNdXepAvPp9cgTYiNAfv8LiD4oOZla7Gq5kkaVsd0dRogx/0GcqA==", + "shasum": "37daeb58bdf54c6db55e85cf329fba0d38cd0625", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.595.tgz", + "fileCount": 3, + "unpackedSize": 1471663, + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEQCIB5IwxZzsH2iw3INxwLeA4YQSVINMJafV1vgoBiZ2nciAiBnBRsVI4Vhz/Hitm0xOqoUA2RvsO55ISJ6GxIChRr8Eg==" + } + ], + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJinLdKACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmoubBAAlDxG69Q7g/h0xBpOpFQrRcq+ZSGWLrb5SEmhDT+xkJnI0F3K\r\nyKYj5uEEDLFRm4e7aF/Xk5hp5lkDIT+9yn83eoYMcATbjb+fTQQvTCkbKO8V\r\nuFrx59Bz56d6ppUeAGos8zRrzadMl4+N22aukjd1sZHQL+F+GPMH8PAhEGyS\r\nrbKNU8mUoVLWx3sKRO0IwDfwE9cS/D7Rq4imKW5g04cAfI3sUUcEaEmfQxTm\r\nE/TeAaADAKwR9Ri9SUdGmTes6Xz/U1k79WEkVMQMTTDS6UO/OKGgIJsjDtY6\r\nzb/vQSNGKW+lCPzPYdmgidJVv2BJ1M2KIDye/ELpwEuDlf4ghhW6iZ4mUsld\r\nzkjn6DAlo29jq7B/Lrb9GaMPcrHB7QdEfEvIlHjFaPbGY8LizI518GkBjfNZ\r\nYsFwvfwmzT1yK/ratuQGAzjYEm6XqSi+jTpHrLQNvXBjejY7if/iPfl8hvG0\r\nmcsV9IgHfaGvHlFpKJcJHoMRhVF/uHBKP1X54yIxu36gKhHV1Uo0PgKtWU/P\r\nr2stv61l+WcAR2j/59v7AVtoQVRoVzmKoV5sN4vHAmxUcEifPD3dIkwzZiQl\r\nNXTgVES9eTl+AOq55QR0+loYu6VIl3XjI/F4acfObtq7N8C3d7R89yNzRHyy\r\nU5VCbVkwu3qceDlLx8K8ErUzPgJv6+EpFHw=\r\n=kZsG\r\n-----END PGP SIGNATURE-----\r\n" + }, + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "directories": {}, + "maintainers": [ + { + "name": "typescript-bot", + "email": "typescript@microsoft.com" + }, + { + "name": "weswigham", + "email": "wwigham@gmail.com" + }, + { + "name": "sanders_n", + "email": "ncsander@indiana.edu" + }, + { + "name": "andrewbranch", + "email": "andrew@wheream.io" + }, + { + "name": "minestarks", + "email": "mineyalc@microsoft.com" + }, + { + "name": "rbuckton", + "email": "rbuckton@chronicles.org" + }, + { + "name": "sheetalkamat", + "email": "shkamat@microsoft.com" + }, + { + "name": "typescript-deploys", + "email": "typescript-design@microsoft.com" + }, + { + "name": "types", + "email": "ts-npm-types@microsoft.com" + } + ], + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/types-registry_0.1.595_1654437706678_0.5452552875040941" + }, + "_hasShrinkwrap": false, + "contributors": [] + }, + "0.1.596": { + "name": "types-registry", + "version": "0.1.596", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/microsoft/DefinitelyTyped-tools.git", + "directory": "packages/publisher" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "MIT", + "typesPublisherContentHash": "e2a0e6d714d166ac82edb74656f7dfb5c3e42e94c12d59f862cf9b578755812d", + "_id": "types-registry@0.1.596", + "dist": { + "integrity": "sha512-sq0ncUdWNQMyEjGTOgzyimiDwIHprmSMSJkUNBqGPWS4PQlFZoJMuxjYi2M9Fngx3nq+znvv/PLF5MJyaOG6iQ==", + "shasum": "b60cab1a8a169a1d5eba59ce9e5ac09b91eb20aa", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.596.tgz", + "fileCount": 4, + "unpackedSize": 1475482, + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEYCIQCIUaq6eewp7X/xkm5pDAz7JtJujrdSSeW+KmiLht1dxgIhAOj7TF9JVxQr2zDZE/wsVHLP2oSefeivtEr9qylpvTK6" + } + ], + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJirVw7ACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmqaYw//eBqh4GUxOHTZouzXcOuTJD/rOtKL6sBtmT0PnSbToHT42xYD\r\nfo8zwZ4fFOIWC4YGtIVFvmgp6rskRa6RQat1HJBJBbrIPhiaMyTgXbp+V9ZU\r\nbmn2KoimP8WAt7Dh0yuvLMd/BRV+U+vRvj8Cm3+dJRILI/y6hLF+Xb39nlRV\r\n0Zo4msZDO3E4og9+2fZ5Ue4ti4fKo5JFyrpGUC4DOMTvBX2ybQxMo3MYS9iy\r\nbl+HWDnKR8Ek6NexlxE/1R+hSv2OuT7zUDYnUbAVVlqBdL44xQQnJpHvyw5g\r\nkMJKS5mtkwgTnsMFfxxUdbhCbY1TGt1FhMtK+wbgg6nwq+TDSPRpPNBzv0f7\r\n2zFHUq4oJiJcy3vaYHjjedHCXSpCx5qLOx8Cz2EMfSPx1pokS/9VinHTyY8o\r\ntQt8FQXEIXMJeEBYzlYyZ9INuGzkubgfaZuk8VYSoWmZ/eod3lhRHzxLmaPa\r\nwyTAy19AcAKRVkiIOJcCN3f/T/GfddQtebi/PaSifFBE/Hdk9owX9SqphtCD\r\n4xS94/Xw34Lz0ZP1e/gK0WC/SFTqW1/hdpvqBJV1igyLdBZj3FqnEvmUsalE\r\nxXbDQ02n+y+jOmnRexTHNsP8YtNc0fW1mC2l3ItjkJ7peLo2tn+6RNI55goY\r\nr8dBj3CmllqGiKd7jJFjdvjYP4cFx9M55cc=\r\n=3dPL\r\n-----END PGP SIGNATURE-----\r\n" + }, + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "directories": {}, + "maintainers": [ + { + "name": "typescript-bot", + "email": "typescript@microsoft.com" + }, + { + "name": "weswigham", + "email": "wwigham@gmail.com" + }, + { + "name": "sanders_n", + "email": "ncsander@indiana.edu" + }, + { + "name": "andrewbranch", + "email": "andrew@wheream.io" + }, + { + "name": "minestarks", + "email": "mineyalc@microsoft.com" + }, + { + "name": "rbuckton", + "email": "rbuckton@chronicles.org" + }, + { + "name": "sheetalkamat", + "email": "shkamat@microsoft.com" + }, + { + "name": "typescript-deploys", + "email": "typescript-design@microsoft.com" + }, + { + "name": "types", + "email": "ts-npm-types@microsoft.com" + } + ], + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/types-registry_0.1.596_1655528507197_0.7426563385607694" + }, + "_hasShrinkwrap": false, + "contributors": [] + }, + "0.1.597": { + "name": "types-registry", + "version": "0.1.597", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/microsoft/DefinitelyTyped-tools.git", + "directory": "packages/publisher" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "MIT", + "typesPublisherContentHash": "39ae654918b8366ce832c08bba7ea3f7705118f334d4f395d2550c24ec2f4af9", + "_id": "types-registry@0.1.597", + "dist": { + "integrity": "sha512-OZSkQmnCroma5/jIE936TgOJdwVxiH+an8yDz25prkOuoI0pdtg0ac0+v/WOsCWAK16dtnF5ShPYqJnEVDDHUw==", + "shasum": "8742d998572bfb11eab2abc4d2fce3733f3bc660", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.597.tgz", + "fileCount": 4, + "unpackedSize": 1474989, + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIQC08N4tIA8FFuqimHBdO6j67JJGth3p1fYEiipexAb2twIgOhaLvYEaBakllssx+lEDkZPVG5Ecj8noQRkWuYkxmBk=" + } + ], + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJitfDWACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmriMBAAgdPhFFQNMkuY9sCYoLeMkQq7IHMDUMMWNJMU/NYJjk+txZYB\r\n7l9oVL9pErs2R2YviIhUBaOhyWR6O+f1z+wK//rO5c5kDlxsa1YD3OeMtBul\r\nn5Krg1+rY9HtPHnVRGF75R6QjLRCeCtfjySoOYa9mrhHTHPxqFYARk0c+BY4\r\nOjWpjnPirYLgOHLi3wsKQrWeNV/bFfVOoeWyqySFN/Hnz+SyIvxxm6o18tgv\r\n+s0C92dL/ovpLORu0APE0gxuIkM5d8AgKl+Lp1jNAx+ue3yJXQAYyTW7NpWb\r\nLlnYc2LTOpvzZV+T0MzTyFv0kxE84PODiAMKfq/ggo19RbntMwhVhOmDNny4\r\ngiept2N+ow4k6o7D4uO6yZkCiwCZomqGcPPMpubclOhbDN3FgJLFJ0Vsqq2W\r\npTFdK2Fly+B7Tvaifc/MlHzDChCtgk8pJjRaQ7Ra9cF9YI1zg4Vb9VaP6rtT\r\nr4Bj7L1pmg8nmWD0vaayqBmOqoaLnM2tTAmuNM7wXT54xXl5JLrAdfJ76f0I\r\n1p8/o6dTeMI2SX6jsNaHYzWGfDftyF6+5DGNT0V5R/7td7QjDDHhRNLzwflJ\r\nIUglwOKrJTcykn9KGxcFRKWPa1MI32S/ZdDhxuDooPEVvl3mZHcH4+nRSCEe\r\nkrnFZHwCKXtE107+kyeTiev6P288bf1LloA=\r\n=Bq8A\r\n-----END PGP SIGNATURE-----\r\n" + }, + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "directories": {}, + "maintainers": [ + { + "name": "typescript-bot", + "email": "typescript@microsoft.com" + }, + { + "name": "weswigham", + "email": "wwigham@gmail.com" + }, + { + "name": "sanders_n", + "email": "ncsander@indiana.edu" + }, + { + "name": "andrewbranch", + "email": "andrew@wheream.io" + }, + { + "name": "minestarks", + "email": "mineyalc@microsoft.com" + }, + { + "name": "rbuckton", + "email": "rbuckton@chronicles.org" + }, + { + "name": "sheetalkamat", + "email": "shkamat@microsoft.com" + }, + { + "name": "typescript-deploys", + "email": "typescript-design@microsoft.com" + }, + { + "name": "types", + "email": "ts-npm-types@microsoft.com" + } + ], + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/types-registry_0.1.597_1656090837745_0.23711370502281426" + }, + "_hasShrinkwrap": false, + "contributors": [] + }, + "0.1.598": { + "name": "types-registry", + "version": "0.1.598", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/microsoft/DefinitelyTyped-tools.git", + "directory": "packages/publisher" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "MIT", + "typesPublisherContentHash": "15fa6606115d99fb9ceb2aa9790ce1daf5a19e8d7d11cb21240ebde8a2760e3f", + "_id": "types-registry@0.1.598", + "dist": { + "integrity": "sha512-yiVKJEOFLJBF87qqc8KvQEvBnGIoH/5usCYozuY85qHx+TVoDssJbVfoUV0Z+1ppiKYEOaQIWVJIW4IH6zDvmw==", + "shasum": "0a38bf7af9448a383b1e40954f63f55b6a616a8f", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.598.tgz", + "fileCount": 4, + "unpackedSize": 1475363, + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEYCIQDtj+9LEsE7xU26O25/KqEK4r2u1Wk6qmmoOsrlKc9avAIhALQMKOpKPCD4d0JYXAeD06Zi+/nhv4jNOXgG6hbme1ZP" + } + ], + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJit6QUACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2Vmp93RAAmGeOS9U0tgpgp1uQ7hnoh0edWC4Y8v383B1B7sO743AG+o39\r\naR2NGuiLf/xqHP2K322dPjLZtsIcIZk+sHDkcTeteRal6Z8lWE1Ze4gvpDmS\r\nUoYY631gmMFjjQ3JtecKuTJ8C/6MxFfK4rQBT0OEGRj6eLVV1FQVT7Tc8otw\r\nfieC8lyMi9V3L24+waKxRfRtjujZFkNeT6xZTevpDo5jog3EtTBrV/VPg5be\r\nt6TUDrRucOvcIcGifhoeUQMQiQY+YNvEPk75caPVw/SZHU93Xb9ykB8tjYGn\r\nSOYwlzQQgVOUjIn/KyVjAYga40NydSpdglxeYCtmTqv9wi+5T1IXWPYWFJDF\r\nU2PAoxBK6KqRFU1Y/XX3Trx+Yllbf68jRo5/wxradrVzKEOUcMrUqQsmeY4a\r\n5A1AGiJj4ruWVpxW9UgISgT4FOcXTvrnFuiQ89i+TurPMVb+/T6C6yJbzNxb\r\ndF7SHqe0sU6rFNFF06/3tKaB1eWdGepdjnRsD1q8FVSHG+kqMnzUQY8LgDOd\r\nRPv3d4F8K8h81Z1LZ1xsc9cN+ff5TEoUDa9aZaJoHhC96Ctx15rWtuoN3s/A\r\nWDgQk/RkEcqnD88vMqQ5gg1GBfRoDxtoGCz0ZmLpKklP3Ea2/aIl/7INwG2G\r\nqIiRZpXo5oFPXc+29cQSy6EktIK20PcBllE=\r\n=sM8u\r\n-----END PGP SIGNATURE-----\r\n" + }, + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "directories": {}, + "maintainers": [ + { + "name": "typescript-bot", + "email": "typescript@microsoft.com" + }, + { + "name": "weswigham", + "email": "wwigham@gmail.com" + }, + { + "name": "sanders_n", + "email": "ncsander@indiana.edu" + }, + { + "name": "andrewbranch", + "email": "andrew@wheream.io" + }, + { + "name": "minestarks", + "email": "mineyalc@microsoft.com" + }, + { + "name": "rbuckton", + "email": "rbuckton@chronicles.org" + }, + { + "name": "sheetalkamat", + "email": "shkamat@microsoft.com" + }, + { + "name": "typescript-deploys", + "email": "typescript-design@microsoft.com" + }, + { + "name": "types", + "email": "ts-npm-types@microsoft.com" + } + ], + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/types-registry_0.1.598_1656202259833_0.9092082586763843" + }, + "_hasShrinkwrap": false, + "contributors": [] + }, + "0.1.599": { + "name": "types-registry", + "version": "0.1.599", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/microsoft/DefinitelyTyped-tools.git", + "directory": "packages/publisher" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "MIT", + "typesPublisherContentHash": "4c3e8e9d6c2f76f99350dfe1836caa0746b6a86e2bc1757a8d82a5d2b40b8ae0", + "_id": "types-registry@0.1.599", + "dist": { + "integrity": "sha512-UVKIGYmLDNsLLxPd3xqPDeMfUV9sqSWInibMTpSPiRvaC6vZLfjNmkSw8YUPlSh1Cz61wEN3oJY2J7lq+xMTDQ==", + "shasum": "c50ae548b8806b1fcb0dd6e077569ab8fb132a3f", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.599.tgz", + "fileCount": 4, + "unpackedSize": 1477854, + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEQCIHzxM92UGvj1p/LaM69Eiy6qe/bynsiGf7p/h6zziM0iAiA2acKdF/ZmdDl8s2ZWdvRe6N8tcRvgH1ijq00OfAfEIA==" + } + ], + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJiwN8XACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmpdXRAAhGh5W8KDr00obf4CPWiVex5Ps92hR7GBvJswLjw9p+XYQIgw\r\n3kjxfFxzX2S4V0iF205dzQ+8NkOwtlLeMFUvdnOCYbIdmCHiZSFIIpJ5RgS7\r\n/fwtxgadMcNaZRSepD+bVN+M5wW4mrgRRC+rJfrzvDpxDh9JFax8fqdkqYBc\r\nR44xhFhNsY3Apw5+Bbf215tJ0IQnv9zTfuUpBRezKLkl6+ctQ//fMu6U6qxF\r\nvVTGfgos1xnP/44ZBjFBs7Oqb4DsxM9dqg1UlRFsPvM1zfzaybL1pFY/tLEI\r\n/U89rUzqslVzG4/7DoycRI0vvDG9F5/TXrZ6NH4c/Y5w3o6a0URwg9nuTvlI\r\nHfw5EMwaPg1oankTo3X4aSOmUxkLAn1x9dYgHIkYX42NTAmTGYRJdD2fd8In\r\nGlwh9yPgCgv0JiXLXmQosOx9f/gColNBM0ufO82xhVWvUOM4uAt2jcmSNypt\r\nXRgSK1k3h3Zse6xxm1TU1v1B2OTpKovZOXQ3J2+xBHrn8Sx5os4WjLjpP7hh\r\nFHSvs0ZhWTp+7g+JTSZlJRh51VdX6IB/YDg4J+IL4qfHa+yWog93CmMNpmDk\r\n9f/YSise6XlnIKc3+Cp5+ROjlk/6mmjLFnnZg5Emi8VOZx6J0ZsSeQBtURpp\r\nqvAr8OiwO6z0FPsWcsVse/j515vKZIMkOjA=\r\n=CwsQ\r\n-----END PGP SIGNATURE-----\r\n" + }, + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "directories": {}, + "maintainers": [ + { + "name": "typescript-bot", + "email": "typescript@microsoft.com" + }, + { + "name": "weswigham", + "email": "wwigham@gmail.com" + }, + { + "name": "sanders_n", + "email": "ncsander@indiana.edu" + }, + { + "name": "andrewbranch", + "email": "andrew@wheream.io" + }, + { + "name": "minestarks", + "email": "mineyalc@microsoft.com" + }, + { + "name": "rbuckton", + "email": "rbuckton@chronicles.org" + }, + { + "name": "sheetalkamat", + "email": "shkamat@microsoft.com" + }, + { + "name": "typescript-deploys", + "email": "typescript-design@microsoft.com" + }, + { + "name": "types", + "email": "ts-npm-types@microsoft.com" + } + ], + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/types-registry_0.1.599_1656807191128_0.178823775447555" + }, + "_hasShrinkwrap": false, + "contributors": [] + }, + "0.1.600": { + "name": "types-registry", + "version": "0.1.600", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/microsoft/DefinitelyTyped-tools.git", + "directory": "packages/publisher" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "MIT", + "typesPublisherContentHash": "6a8f611c1790cc34785d0b07dc434080c796fc34e9002e17145e84c3431e6d2a", + "_id": "types-registry@0.1.600", + "dist": { + "integrity": "sha512-OQla79KcPmXvHjntQW9L0VFzNESetu3ap20s9hfQzPuJEK2YbA8s6PA44Hb6qzZxFUbt6dJvuvmSO089fxD0aA==", + "shasum": "dd3b61b4bda3f42eb125ca74158b3747d97858e9", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.600.tgz", + "fileCount": 4, + "unpackedSize": 1480619, + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIQCMbXsY/E91RIrgCmVC0r2BdQ9vb79q2rSJMSZeFKCO0QIgSra9fZix3R6YZzbalG9gZc7KidwW7cpNt0Ukf97w9uY=" + } + ], + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJiyhpEACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmrtdQ/9FvdYs0ibTa7vcpdSlxXkzNhEGAgvLELrQ6L+PFbEFeRx918z\r\n/FPyEkaSCg1jrp7DuP+fIRFdYxPkBFGVaIQCmI4Ir/3f0F9xUmOW2O2qfzE1\r\n5zUGU94WzBsi2Lx0ValDOmy0o6r/dy0h2JnuZnRfFGZUZC18vdr2fuER+bP5\r\nGidYVwKuT88oYE3FM2cfwQaxtA+C95Unx5qwxHT7aBM09/dWbJ+QnKH5XR+w\r\nSoAWnUc653V+96q9HBBFDUv0VFzTwtEwZ4M9LSdZVrqRGUXhhKpBohJzXiaE\r\nE5/MEPWbNnUOLtk7Z30gsCqdX50f7I8RYqjTpee0rQg2Nc1gLqqjSkcbeTY0\r\nCn0ZYaNZ+2tZpfnkG2MaxzGuYlZN9tm7FAtfcm83HMctdhH9tkivu2klbnGr\r\nRDMqScIHPNJpKfNQ5koSbJemtiJN8zVF36gE0gEYvoJAwaMP4AtuWSRxorXu\r\ncCvz43hz35uXyeQqwNQbji9sdEBoD2pORcKDeCx3eA1H/HWOet2vfCBKWPd7\r\nRNmlxabGdaD68jRpWOdaN3WexJz9QkTZpYcKJmZn9vk1nCCpiSZbD2CVXuWy\r\nljVCv0y1KSIRMCdK6oBj5yW0zyY7la2SuF6s6b4Dv0rSCHt+b/BUZYKfb7g7\r\nykvz8opaXqhmhI2FaqH9hVSAYYEhNJwJx3A=\r\n=Rn45\r\n-----END PGP SIGNATURE-----\r\n" + }, + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "directories": {}, + "maintainers": [ + { + "name": "typescript-bot", + "email": "typescript@microsoft.com" + }, + { + "name": "weswigham", + "email": "wwigham@gmail.com" + }, + { + "name": "sanders_n", + "email": "ncsander@indiana.edu" + }, + { + "name": "andrewbranch", + "email": "andrew@wheream.io" + }, + { + "name": "minestarks", + "email": "mineyalc@microsoft.com" + }, + { + "name": "rbuckton", + "email": "rbuckton@chronicles.org" + }, + { + "name": "sheetalkamat", + "email": "shkamat@microsoft.com" + }, + { + "name": "typescript-deploys", + "email": "typescript-design@microsoft.com" + }, + { + "name": "types", + "email": "ts-npm-types@microsoft.com" + } + ], + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/types-registry_0.1.600_1657412164684_0.7824206043632991" + }, + "_hasShrinkwrap": false, + "contributors": [] + }, + "0.1.601": { + "name": "types-registry", + "version": "0.1.601", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/microsoft/DefinitelyTyped-tools.git", + "directory": "packages/publisher" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "MIT", + "typesPublisherContentHash": "e31fbfa69ff8454df01770878334bf68b7dfeeeb2bd25c098ca842e1a33c029b", + "_id": "types-registry@0.1.601", + "dist": { + "integrity": "sha512-3s8bO82X8DyQANkFEiw1Ibpf8Zo1TAobu1lzepMB0tiWCX29dNV5C42eA6ZtBUsA628hhnYIs/ZoUWgrduj/Pw==", + "shasum": "45960dfc91c3a4438bccf5b67dac86cce5171f06", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.601.tgz", + "fileCount": 4, + "unpackedSize": 1483793, + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIQDWTM3eVaaKs8Jb0D9Ua76y/AsjB0QiDPWXNrGkJ4J6pgIgBta3QrJog/LE1ReUfQKnXYidYo2GAkdFOO2qk8PZLBw=" + } + ], + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJi01QEACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmoKoQ/+OVLx7sgSG+3DUa7jAzNXWnj9phKzxDSmel1f7kX/CMAA8si/\r\nb4GeP90izTZ0mmNLd+p90dqN7OdmeZm0PiJqGVzFK8ynm+VEKkPJh90DDCI0\r\n/G763widXXHudteavbaHZXBPns1lcj8LDmzOJ7MGZ8zr2J6rKmGYEgNBoBgU\r\n7wV/9VieqzXO8wAHG/I/BT3TCVVWBaq8DMmhiTSe29sOZhHNTUAm7fSWrMl3\r\nexFiBsApmKepo1wG3etbx7cs4aLvYAvlYmEIw7I2wADX2zGOz6fKnW43wZZH\r\nZ7WsfVNjzpbPb0hAQd74J39WY0r0/6fZI4TJkPrekeiirxioxmMpdXtlxsHa\r\nkscZkWqWuq3Wc501kiw7GaMrtoZ1jEe96Y/eaLuOrM/HKeld6kfZTSn0Brlx\r\n9hgHCXnfl2FtbMt8y3zGHo2WYo8mnOyco7QEdkO8pr5qbde5u1aPjapc4zhj\r\nPT0lfmm5bmS+pJ8EBerEkc9OdJRDWwSGQAFnzfFAuem1+NV0++hWoxkQX4A/\r\nvdSN02WDjsNoqLDIU1PqFhoJLjo9JnJcUWQUwPsH8yxZHS29tdsGKEhikufu\r\n7TifgRlvyNXVJKQiJGe9yBKt8TCnifDEMgyCjZrj8Zbzoc1NyQmU/EwUswbd\r\nHthJPVc/EcuQBCdAsEct72qsM2bvd/zK+Kc=\r\n=Iel5\r\n-----END PGP SIGNATURE-----\r\n" + }, + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "directories": {}, + "maintainers": [ + { + "name": "typescript-bot", + "email": "typescript@microsoft.com" + }, + { + "name": "weswigham", + "email": "wwigham@gmail.com" + }, + { + "name": "sanders_n", + "email": "ncsander@indiana.edu" + }, + { + "name": "andrewbranch", + "email": "andrew@wheream.io" + }, + { + "name": "minestarks", + "email": "mineyalc@microsoft.com" + }, + { + "name": "rbuckton", + "email": "rbuckton@chronicles.org" + }, + { + "name": "sheetalkamat", + "email": "shkamat@microsoft.com" + }, + { + "name": "typescript-deploys", + "email": "typescript-design@microsoft.com" + }, + { + "name": "types", + "email": "ts-npm-types@microsoft.com" + } + ], + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/types-registry_0.1.601_1658016772398_0.7166451363488178" + }, + "_hasShrinkwrap": false, + "contributors": [] + }, + "0.1.602": { + "name": "types-registry", + "version": "0.1.602", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/microsoft/DefinitelyTyped-tools.git", + "directory": "packages/publisher" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "MIT", + "typesPublisherContentHash": "0d457c525c4a78b0810c02310ae7d8b8e8435c709c1fc7f1b17f13e34d220e5c", + "_id": "types-registry@0.1.602", + "dist": { + "integrity": "sha512-STlMRX1g5pWAjwjQhBVoDhyZFCnTsINpMWYacVSLDTl87AQr8+SHaIb6pSFLnCfuvlJ1l3KzFMHBhyN1D2mpTQ==", + "shasum": "785903c9b638d3266df9e1d6485a39beeb39a348", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.602.tgz", + "fileCount": 4, + "unpackedSize": 1485783, + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEQCIFox86Q5gXP1SggzTa/Yd7jNU4Ti9dyKREncczFY55jKAiAZ26LPx65RJK72MIz9lx8nDZ8Drq+LxL5kGEbJTd9ceA==" + } + ], + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJi3I7CACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2Vmq2ZA/9HLWt62/+GMP7/MChPTlSIgYE6q+/gAIzmmMCdg8CMZM0YzeH\r\nErCW+0uivIbL8gJxgjKX6+7ZmeAty42NydEhaWnjwWmiikrsboAPRdGWtC1s\r\nt4ls2UpE3/f6UABJWz3QtYS8+mtzR5Tn2HKVtTfyh+b7bk1GaPwYF/u6YV5M\r\nIMNseb1LBh5WRt0RK5V98zFa5B4vf63Dn8Q71LnnSJkrDO1bASQ+vzm1pEgW\r\n5h+lcbyNu/LHkKUu+G3MSY6KzIf0v1O5NlRhG6xXsPR4HOO4yEiDrGwm0VP1\r\nxeYRo1SI5h+U1eTqpGRwAM9GAsvIBHEsxoaEMc3n3OqWutq89p7f6QtYz0TJ\r\nFZlGZpMTZRwpayuOqCFdj9asYJqEbN8LedOka2yRgpNFVE8XZI6pg5HLGn6U\r\ngtqc4lQB768PQdA+qHllzbPOUoJwtNge8DIVW6o9mXAhgUC9/5vWgGlKdUBV\r\nKTFM80RLpp5EJM1u8iYOSXhUvKQXjsggHB57LlssFFQcPqExsGBSX43BlwlT\r\nlZ2kk643GeURc+Fv9+m9pC1+kePFpwM9kPDFjb9yD18XL9JffowztzMuTi+6\r\n+Z5Phun1Pe+QIEhoRaKlGsI2kBA2WT4lWYFgLTnqwDprTINTSfbOAfrkUhCy\r\n/LawP57TlVFNI325DOpuVqyxgc4jnhahF+w=\r\n=vpIb\r\n-----END PGP SIGNATURE-----\r\n" + }, + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "directories": {}, + "maintainers": [ + { + "name": "typescript-bot", + "email": "typescript@microsoft.com" + }, + { + "name": "weswigham", + "email": "wwigham@gmail.com" + }, + { + "name": "sanders_n", + "email": "ncsander@indiana.edu" + }, + { + "name": "andrewbranch", + "email": "andrew@wheream.io" + }, + { + "name": "minestarks", + "email": "mineyalc@microsoft.com" + }, + { + "name": "rbuckton", + "email": "rbuckton@chronicles.org" + }, + { + "name": "sheetalkamat", + "email": "shkamat@microsoft.com" + }, + { + "name": "typescript-deploys", + "email": "typescript-design@microsoft.com" + }, + { + "name": "types", + "email": "ts-npm-types@microsoft.com" + } + ], + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/types-registry_0.1.602_1658621634634_0.08293358457466482" + }, + "_hasShrinkwrap": false, + "contributors": [] + }, + "0.1.603": { + "name": "types-registry", + "version": "0.1.603", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/microsoft/DefinitelyTyped-tools.git", + "directory": "packages/publisher" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "MIT", + "typesPublisherContentHash": "73a44da592bded2e9a41df15f3ff4896eb338cc923ebd2b3865da5b89698d64d", + "_id": "types-registry@0.1.603", + "dist": { + "integrity": "sha512-ksQ3oT7OT2GB4V4N8LNlwGIXtNoqTH7DUVJcewAUPbdr/cBOKVkYx7CR6pBuheAOkxu1l9gxhaGKV7NIcrmLIg==", + "shasum": "d263f98975f7b698d13987f611602c7d5fc6f5fc", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.603.tgz", + "fileCount": 4, + "unpackedSize": 1487513, + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEQCICNpVFh2zfBJul2OVVqbljkB3POgt/3fLeiPPTWwjYRjAiBi7qA/dVTOhJ3/LilDrhWUt2ILUmwVE+IqBHh0IIP7sA==" + } + ], + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJi5cmwACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmoeTRAAmpVQ5MXaCoHGgQpvGDu1Maqcca1Jdu+TGPVE69j7rCtSigBD\r\nZtL6P79nO+dK3y2rDP/UkxSVSLhmLPbpc8g33ojOqr2IrmcVdxLpWvbRFbxH\r\nl2N9ojZ2zP1qmjr4OoZtGtA2q0q++RUee8J6MfBmDEXTplgWaR3LaWFolmg9\r\nuTEDd2kypdodnqV+LX5F8s7u6sJdupJ8Ryna4v0IvKAzAyFMJLe0tTPxYQi+\r\n+bPvYJRN2q7aDXKUPMpW+1rtBa+Z02HAORZq1nepTFWy9GknMhxspjWKLy68\r\nYy21lKmVw29JKVpxOdH7QTHEEDYxOGOWcHPul8GG+mOipMuxofsjxrou1Hff\r\n91sh6iMI5GsO1H4ZkbKV9fg++cPQVl9pvhepwcspXpXs5Ps1tQLYESNZh/P/\r\nGTH2OIJvXxfZLXRGN1m8TvfEn/qhsU4LiyOuOqUqjtPHPOxZu+dd0wYrxLxv\r\naQ4l1rvfcB0MVNHIpw06W0+RceLtc4OTAjykel3U38gdZNunF6vHFMrhiKRO\r\nAmHHP1RLUGUxl3xt0dnvO8TUe2RGcuNUZ1W5hfbMv9TG9IXH0Mm4izKC9bwA\r\nJIbvBL2IqDaSU3HYyJIIW65ERrkdeh2OL1UVQ949aD5nOc5E2iriykfLEKyL\r\nIfR/viN4AhKp7JWUN7gXwyzDWnVEJyJWF4o=\r\n=rQme\r\n-----END PGP SIGNATURE-----\r\n" + }, + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "directories": {}, + "maintainers": [ + { + "name": "typescript-bot", + "email": "typescript@microsoft.com" + }, + { + "name": "weswigham", + "email": "wwigham@gmail.com" + }, + { + "name": "sanders_n", + "email": "ncsander@indiana.edu" + }, + { + "name": "andrewbranch", + "email": "andrew@wheream.io" + }, + { + "name": "minestarks", + "email": "mineyalc@microsoft.com" + }, + { + "name": "rbuckton", + "email": "rbuckton@chronicles.org" + }, + { + "name": "sheetalkamat", + "email": "shkamat@microsoft.com" + }, + { + "name": "typescript-deploys", + "email": "typescript-design@microsoft.com" + }, + { + "name": "types", + "email": "ts-npm-types@microsoft.com" + } + ], + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/types-registry_0.1.603_1659226544357_0.23110693650412184" + }, + "_hasShrinkwrap": false, + "contributors": [] + }, + "0.1.604": { + "name": "types-registry", + "version": "0.1.604", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/microsoft/DefinitelyTyped-tools.git", + "directory": "packages/publisher" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "MIT", + "typesPublisherContentHash": "ecfbb19a163730c7dd0c586b8e4dbd200ce548ce1704124e65394589f8ae531b", + "_id": "types-registry@0.1.604", + "dist": { + "integrity": "sha512-1yaVDdrvc2VqEKqKNoMxVdCqYLhnX61UlEZsG/UFTftAO1/MAawPKF+kgGpiHacp7ZPlqgwvQ//2c0/JIKyf3g==", + "shasum": "e3bfa99c86eec5488a45c704ae3da8e6c050ac17", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.604.tgz", + "fileCount": 4, + "unpackedSize": 1488483, + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEYCIQC0S5TNGabFf+K02LiFimNUmZAOmPjqsuehWgg9wGqNCAIhAPYruhLPP6j93LID9dTUyT9g6VbUzT87H9FnuLAl4sRs" + } + ], + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJi7wRTACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmrFng/+KQn4oSp7L8c+Tbmgjbajgp3tGXhXcZd6cz9oU8is1iVnfiq6\r\nWYXDXxm9UtjdoTTXQZFdNC2U5MxUCzPVpSZNCDUmZ9eM0bY/URAxmP/D3FvS\r\n1AdBB+gtP4WIiQfNWvkx5LiIGaoUlNHml3sFiCBMdkMWtBZG71vSb5JdoOJl\r\ncXX6OWfAtewP0i54PZjn61h/Py0CAM0Kq3GoG0YUB6tHZK26kQt0ZKNHqM16\r\n9FZTZ+MUVWWX213GP+BZcBSw5LW8Nh1k0kgGC+g+Qac9+pKJQBBpShi3W1My\r\nshlKz8U3RdEr3KPVxDzN6If4V/He5mFuh3tQ12sMI6eBcmvwUCWrrwMcubde\r\nNbv0aKp0aHUdcJ6v4l3i6BY3w7YrICF559B2r6BmoHFao/FuP/oQBfvJ53k2\r\nt98qmpKMbRI7G9seOXTOXCeQzxHEbsInyCSxZqHoCzeENYcIOs8htjFugD3B\r\n+yhUpH7J63uHbHBqOgOw/Xn549vbIq0HD+PlHfRhuDiJ5eUU3LakuETa1tXL\r\nI2yINP+s4SFLaVomopJ73rqkPdKRC/s4awHSqlxDpepFSW9t4wpBwq8ZsbJx\r\nUvlDMjgn6i1TJSy2zMtO1gI4k/+4Dq2aiaw15fXfuyAdtQR5KMLv3+zJ6Ia0\r\nTx7X9HQ6AMeFTD55lgsnUL8PRM2puW9OoCM=\r\n=VvsZ\r\n-----END PGP SIGNATURE-----\r\n" + }, + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "directories": {}, + "maintainers": [ + { + "name": "typescript-bot", + "email": "typescript@microsoft.com" + }, + { + "name": "weswigham", + "email": "wwigham@gmail.com" + }, + { + "name": "sanders_n", + "email": "ncsander@indiana.edu" + }, + { + "name": "andrewbranch", + "email": "andrew@wheream.io" + }, + { + "name": "minestarks", + "email": "mineyalc@microsoft.com" + }, + { + "name": "rbuckton", + "email": "rbuckton@chronicles.org" + }, + { + "name": "sheetalkamat", + "email": "shkamat@microsoft.com" + }, + { + "name": "typescript-deploys", + "email": "typescript-design@microsoft.com" + }, + { + "name": "types", + "email": "ts-npm-types@microsoft.com" + } + ], + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/types-registry_0.1.604_1659831379568_0.8330896394815306" + }, + "_hasShrinkwrap": false, + "contributors": [] + }, + "0.1.605": { + "name": "types-registry", + "version": "0.1.605", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/microsoft/DefinitelyTyped-tools.git", + "directory": "packages/publisher" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "MIT", + "typesPublisherContentHash": "a7524c2fc2a30336f9f2ee6872a281baced81a893fb3b41e5b45d87b0a4a50e0", + "_id": "types-registry@0.1.605", + "dist": { + "integrity": "sha512-ZsEowfA+766FE00Q2hn/GrIeS12+Usl+s6Bv5Rb9hqeFmbUzN1Hy7Roeno9yadW4jeBISYHIeNYYrEAE0izAcg==", + "shasum": "6bb2d20b516430db2213821de5749e82c3b8daa9", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.605.tgz", + "fileCount": 4, + "unpackedSize": 1489581, + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIQCL8S8MiyK/ZOiNsVATD7vCjLoqBScCf+9CNPG5wFukkwIgPZfG2priKdZSK2X6Da18eFRqQOzwwpRZHA7YOqgePY0=" + } + ], + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJi+D33ACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmpAQw//dl+B1hOKNEvdI/8DJeJjMZgJJUB4K8zUJVv5RLf6Kr9JyYQ8\r\nORzp9kmn53tjTSYPwuwIDsWp13K5slFi1JIJNL46q+aS2hT2nu3p+PwQllr8\r\n5Bq18cWoODSiQKbxs0MMVqOq63/ondTv6yIGJYjZLVCmvrOSe4f+G4Vs2NiH\r\ninWCouDPgm+rACw+j0Y5iya6TDnS2Vlb4e2srRqyFAvHnnzNuapnH80lMEKy\r\nOZP2UjAn1JiAtPiyXbvdDhY0RpyWbypd0skQODogK1J0aC8WKTuSD1NMKcvw\r\nhb0WIo6cxTRWuVKj2zT4qNDukcT+G7aePb29itmIFGs4LaONKPo/IwUku/NX\r\nAjDAbymiruQHqSkdKSIGQjtG1LxzTulaIbBtVsex7XLHx/01JC+yUyhYVvsQ\r\n6dgAA7gvGixrxbiiIJphQIQkBDBH9u246DvQHrOJ4hg2Tb9Q6tsa/FO7wUCS\r\nnZUPp7OBIFxvZz2q4/5VV+ypfKVjJhvw6Y0tjsZ63WI4dTYp+2LIWxnvHxbU\r\nYaul8sLB1SgPxJvZxKDlYnnCxO/Dsx76cxHJSzXDiC/Q74ZpLQAp/UwuflEO\r\nSANctnStzs5BGYdiS2TeU40NNntNbD9t0tDO+JqfnrmrAaPsJ7wXFUP8uUsN\r\nFtoPIbXd273cCNYWulgFHJDwIQoHD7+8FFA=\r\n=w3Aj\r\n-----END PGP SIGNATURE-----\r\n" + }, + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "directories": {}, + "maintainers": [ + { + "name": "typescript-bot", + "email": "typescript@microsoft.com" + }, + { + "name": "weswigham", + "email": "wwigham@gmail.com" + }, + { + "name": "sanders_n", + "email": "ncsander@indiana.edu" + }, + { + "name": "andrewbranch", + "email": "andrew@wheream.io" + }, + { + "name": "minestarks", + "email": "mineyalc@microsoft.com" + }, + { + "name": "rbuckton", + "email": "rbuckton@chronicles.org" + }, + { + "name": "sheetalkamat", + "email": "shkamat@microsoft.com" + }, + { + "name": "typescript-deploys", + "email": "typescript-design@microsoft.com" + }, + { + "name": "types", + "email": "ts-npm-types@microsoft.com" + } + ], + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/types-registry_0.1.605_1660435959113_0.9020995827107401" + }, + "_hasShrinkwrap": false, + "contributors": [] + }, + "0.1.606": { + "name": "types-registry", + "version": "0.1.606", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/microsoft/DefinitelyTyped-tools.git", + "directory": "packages/publisher" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "MIT", + "typesPublisherContentHash": "e2bf34ac306f776722b79d1f66835ffe463089bfb695397ef9eeaaaec83ca5e6", + "_id": "types-registry@0.1.606", + "dist": { + "integrity": "sha512-INI0PTChOJ1zeEEFjwn/8K6bppp/yXVAWEB5I8X1cP+l1IiMuD5poNhZdDx6rv3Mc/y3ps3I2PRMrKA6W/CBPA==", + "shasum": "d6f0c26699114f7fd6520d4e6640dbd2914c0736", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.606.tgz", + "fileCount": 4, + "unpackedSize": 1490619, + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEYCIQDqmO59MztlqIEdjXKUdzLPYybuPzd8eypC/5h08aNAoQIhAP3waHQ4dJ9sOWWLb+PmWeScesdTNkrpgSAdF61SuV0L" + } + ], + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjAXlbACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmqAaA/8CVlTUSDriJ8G/wuT2rBD2KULkMFW7gpog/xhUFuW3N6OULKl\r\ninxfJrjAjad9pDKYv/qnQ9jyAbpX5r0daBlu0TgdrYFdZeRMantBzTUBekEd\r\nyHBcsy0tYcal6cFy/C4vI8mLfJV+IKemb1B5PgV7NkP+jvXjv9qWFcHq04TP\r\n2jEdoAdriw1pEe4/yV7jpmuNZUOccPeBnh4lpfOpB/zfSg74k5Vh4xxMrs/r\r\nEofzBRv42ZbkWgSLUZGC47+dtfobgp3xiKWFC8Xd2Gpf1hw27fNzPo1nm/C1\r\n1HesZKUNnnCP8k/8sLC4zqDnGF6T5GE2VZkQvRWCB1BS3vwcndIJxWWtvYiR\r\nNZq3WV5vSx5UPkZ/zu6UgUSbWpX++qArGHI0YISDEoBrMLsQetj9e136xeg7\r\n9wLXZ/LchdFpEcPsZASbi3/cJM3GCKmS9ShadkoLWAYhbtOIl5pn6g3bEVpP\r\n7FiA82Gu6yBVaAAHBItO/3RJqrdE5MdrS1ckhx1+FBpadsTJNBqItnTO898Y\r\nEYpaNl0hL47ePjOmBeruQHyTnleH37dU+AZc9O8PD4Y42ob+tj3wBQQt5bPy\r\nks4q+OPKW+oPp52vhhXbg8q7IuPX9amAiLlb6qkxWuhUjfkTeQQojQenbGL0\r\n6rDFQgT3/o1H4TifUH+bXjJj7Yu5aiX5nDA=\r\n=gfLR\r\n-----END PGP SIGNATURE-----\r\n" + }, + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "directories": {}, + "maintainers": [ + { + "name": "typescript-bot", + "email": "typescript@microsoft.com" + }, + { + "name": "weswigham", + "email": "wwigham@gmail.com" + }, + { + "name": "sanders_n", + "email": "ncsander@indiana.edu" + }, + { + "name": "andrewbranch", + "email": "andrew@wheream.io" + }, + { + "name": "minestarks", + "email": "mineyalc@microsoft.com" + }, + { + "name": "rbuckton", + "email": "rbuckton@chronicles.org" + }, + { + "name": "sheetalkamat", + "email": "shkamat@microsoft.com" + }, + { + "name": "typescript-deploys", + "email": "typescript-design@microsoft.com" + }, + { + "name": "types", + "email": "ts-npm-types@microsoft.com" + } + ], + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/types-registry_0.1.606_1661040987201_0.8358301443095366" + }, + "_hasShrinkwrap": false, + "contributors": [] + }, + "0.1.607": { + "name": "types-registry", + "version": "0.1.607", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/microsoft/DefinitelyTyped-tools.git", + "directory": "packages/publisher" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "MIT", + "typesPublisherContentHash": "7a872dad77e944e9a17c4af73045087795776caba8f4562bb4fa7c67c0b2ec7a", + "_id": "types-registry@0.1.607", + "dist": { + "integrity": "sha512-zs1N1S+NQJv47mTJtjf2dHkMoOODgYWPmSPs6VfaQs7Xmuiw7SH0adUIg2BKcs6l2Gh3gaGvWXVMlkhLKELgwQ==", + "shasum": "65ed677fa5472e5ca694b22dc9791154c5472b8a", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.607.tgz", + "fileCount": 4, + "unpackedSize": 1493474, + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIElZv494V220qx1lkleFf/PpIKesWvSftBusYs7gQUe6AiEAv6WKM9bjTwNKT+q6ZxGgb7tM1K/hmtxkwJTo+gKIBhI=" + } + ], + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjCrQmACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmqnzQ//cfeZL4RxK6tOg1onmMaxObNiIsZXCRI8+mU/04u6ApPRRnU9\r\n/ZKcWAztpovDm1w0itHkXQQbJ3HWPNMCexTQ4eJq2hnaxcQI1kb13b+H/kRo\r\nMd9MTPrqzrzky1M0xx+nheuz88gyk8Ka2i9r6/VmfnXanVtTXrXlF0pEeFdn\r\nhUu2b0oFgE3leyw7AmIjW0Kfn3c+lkM3jm+lgXAwg9abjnefJzF5MA3voyxD\r\n2Fl/OauE5S1fudKIpFejQaeasO0RyOVTxoGKdzNpuHa47e7JoWfP00ZVPF+7\r\naF59oKY27CUoUd0oyFVIy8bQwxvozCwaY6eaiZAmZqFcRayaZ6Q3iR573RbQ\r\ndeMS9Kuu2VCql8jkLs6V39rydjelQE6jEg4JqmSLlJNaTOuj+1bIzB1qgLjK\r\n9Mrl/GulrcGg0Uzo8ZsqlYayu14dhAOPTXFwIB7KffkVqQhY+HSCaBTEOi4v\r\nnh0Bj/85sMDL7g6A4kXVjMAbPD38NgxfUn1+YThyQ8xK1d4HjN00iMfeVwIj\r\nrTkJ+CI86a+nXL8yuLsPWGdZEGOEzFUaJPOodaAlryU5+kUHWvB2h3jofHl0\r\nU0DuJOB2FhscsmRv1faKDkHlpvtpLfwHebutiKpfdb94lIfhFUAVCResh2/e\r\nzp46xKV8oEghhYq+QUmbwnfLBPeTiIbIY5c=\r\n=NDDV\r\n-----END PGP SIGNATURE-----\r\n" + }, + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "directories": {}, + "maintainers": [ + { + "name": "typescript-bot", + "email": "typescript@microsoft.com" + }, + { + "name": "weswigham", + "email": "wwigham@gmail.com" + }, + { + "name": "sanders_n", + "email": "ncsander@indiana.edu" + }, + { + "name": "andrewbranch", + "email": "andrew@wheream.io" + }, + { + "name": "minestarks", + "email": "mineyalc@microsoft.com" + }, + { + "name": "rbuckton", + "email": "rbuckton@chronicles.org" + }, + { + "name": "sheetalkamat", + "email": "shkamat@microsoft.com" + }, + { + "name": "typescript-deploys", + "email": "typescript-design@microsoft.com" + }, + { + "name": "types", + "email": "ts-npm-types@microsoft.com" + } + ], + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/types-registry_0.1.607_1661645861811_0.3899152443090632" + }, + "_hasShrinkwrap": false, + "contributors": [] + }, + "0.1.608": { + "name": "types-registry", + "version": "0.1.608", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/microsoft/DefinitelyTyped-tools.git", + "directory": "packages/publisher" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "MIT", + "typesPublisherContentHash": "bfde026ea9f5ee451f6f3a16485e1bede2b504644692b5412dd435fdbddc081b", + "_id": "types-registry@0.1.608", + "dist": { + "integrity": "sha512-ihUsyRlbkIdmPh24cTuYTpI6sa+9BYx0f7WpdQFxmSJbh5VetH8HC4CNk/lHvKmS/Hkb+I+5x2MFcG9Tfrkc1A==", + "shasum": "589c6de7d3e321afada9a81c6142dda33ebbe709", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.608.tgz", + "fileCount": 4, + "unpackedSize": 1496258, + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEYCIQDARn4VI6mvZxYvIIlx36rV8g2Yg+uyvbzfH81YyWGS7AIhANFQj1K5l3w8lCTDvlW7yrvP/7ZlnWieIyECNaZkzSO4" + } + ], + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjE+2rACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmolqhAAgyvUuR9389xFem9aMIjyHwVoevFOnps20nLZA71bUv5OvN8C\r\nMeNG7x+aRCFmlGWQv+EUyjL4iCcohIUvYPVv7f6L5advxS6ZSl3D+OOJpI/B\r\nTIZQDoFOw9EcG2sRTjS806vtkESNw9PZbZp1heymomWLZ6mZVUx7fD+S4pjU\r\ns5+dbpQeowqcDzmDESLS+tYeGkc84Grx009JM4YKzRRQ/qgsv/d/lUbn+r9S\r\n1p2XJGme3pUJK9cKLB+kkJIsr5R2yMfvEFnYkIUI/6vrk2ZoyAOLKh2UMNiu\r\nwxFoy7+hltNyOCROEgh/38B1++T+qY08DWV778/AESbJmeGRTPsQq5aaCJQa\r\n0w+Nd2coN8Ic6x225LmhqvuyIFtndJRzLAtGhoRl98tehdDcCLIckf179Kql\r\nlbqGJct6flsqbtdx+bhZZ3/EFbMU2GAt6L7xMvH1ssR0j5DkmXCmxZVwBNUd\r\ngq+lVhq4M7H7rK2C/sA6AgNE/kM0BX/8egZgxbVkz7gCtfFllas1xv0NmkXC\r\nsHJW0YsJI3Qhc4s4hQ8Wnxc26IiAOWa8K68j0/C8Br4TcLWj4mc8hrcGoP+5\r\n0WisP9BpQPQv3RFxfi6zY8yES4xUiclpGYk0Mswhd/raAbIxrHUC6W2TAi8z\r\nPYZnBp+Xb5qlefqo3kCa6psZotaTNzEZzIU=\r\n=5GbQ\r\n-----END PGP SIGNATURE-----\r\n" + }, + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "directories": {}, + "maintainers": [ + { + "name": "typescript-bot", + "email": "typescript@microsoft.com" + }, + { + "name": "weswigham", + "email": "wwigham@gmail.com" + }, + { + "name": "sanders_n", + "email": "ncsander@indiana.edu" + }, + { + "name": "andrewbranch", + "email": "andrew@wheream.io" + }, + { + "name": "minestarks", + "email": "mineyalc@microsoft.com" + }, + { + "name": "rbuckton", + "email": "rbuckton@chronicles.org" + }, + { + "name": "sheetalkamat", + "email": "shkamat@microsoft.com" + }, + { + "name": "typescript-deploys", + "email": "typescript-design@microsoft.com" + }, + { + "name": "types", + "email": "ts-npm-types@microsoft.com" + } + ], + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/types-registry_0.1.608_1662250411526_0.3591392576844974" + }, + "_hasShrinkwrap": false, + "contributors": [] + }, + "0.1.609": { + "name": "types-registry", + "version": "0.1.609", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/microsoft/DefinitelyTyped-tools.git", + "directory": "packages/publisher" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "MIT", + "typesPublisherContentHash": "870a75e38fd87a5c97097391b03ccc6058f514165e32b26ec8fba3ef09e5ece8", + "_id": "types-registry@0.1.609", + "dist": { + "integrity": "sha512-K1Nn0FspjarARVer7ZgUytEZ9K682h9gcoSMWAFoRqZJcT5EsScayME5HTobm4yz5awdPAbG2Bs9penHvcxmAw==", + "shasum": "9e35f519786fe6ddbf50eb8b4f261d8f12a3c839", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.609.tgz", + "fileCount": 4, + "unpackedSize": 1496772, + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIFuUtr+2r5bJX3lbesA2KyH18Loh+cP5HQVXhVyHL5+MAiEA/MwKu9m+1PexyvKseilIYCbmJ1WyKTlqMz9YFtHj7nc=" + } + ], + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjHShzACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2Vmr5AQ//ZrbLCcVoSWC5PNY5EyNOJBBkLJkJFl3uQJ3ZdPlOC2HA5k4m\r\nUvxT+9ii153jYJTq++4J5BJNvHE6S7yfr//AL87Sr4bf4pnlL2ZYLvNuNnaX\r\nGeiJcbgKwy7zQLVWCY/wVTUuzBJmsmJ9znhpGOwFLWpHsGogiA4SlmAjOHPl\r\nfR0crUqc3i+cQiPJmnie5KLRc1CqbSAgvnlf2iGldv3pcmbcmvhwWyffDImk\r\nlrlZ0uAjovcsJOYMhhuCVwUriVzNARpM/c9hSwyhq0pASYY/k3PXej3FJZGU\r\nGQxFZw6xAKT/ssVcl9Y3SgFD6bhBTDV4XbPXFPhthrYo4gHWPxU8js8SurOZ\r\numvfFRkV0ypgWJonqjSmfhU8w/w4a+k3eA5SmDe2mgsmczXlcM7UfOFhI/S9\r\n/JSxHgYf6N3TKZqvI5ORYDCp6mEyqKflcXEHQ2k/ueNa8u1GN4AE5WxqF6o2\r\nvmrRqTpFvt96fP3e8oCeqSw3h8OEerw0DVeIi9YNCZikFL1yyjNMaFirw2Dx\r\nRIhtWi815emqEr0q0XbuDtlwBAiewhbdaioI5htVmYEGUaWcJZ7LoZU24zID\r\norPEka8N4m7jj4umNzmZlElTFc+n6xDFY7t368I6br8ZzGX4kt3CFMi0+HyW\r\nfMQaAq1Qe6A23+0ZkuuO8x75jthYvtudLOM=\r\n=Mxre\r\n-----END PGP SIGNATURE-----\r\n" + }, + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "directories": {}, + "maintainers": [ + { + "name": "typescript-bot", + "email": "typescript@microsoft.com" + }, + { + "name": "weswigham", + "email": "wwigham@gmail.com" + }, + { + "name": "sanders_n", + "email": "ncsander@indiana.edu" + }, + { + "name": "andrewbranch", + "email": "andrew@wheream.io" + }, + { + "name": "minestarks", + "email": "mineyalc@microsoft.com" + }, + { + "name": "rbuckton", + "email": "rbuckton@chronicles.org" + }, + { + "name": "sheetalkamat", + "email": "shkamat@microsoft.com" + }, + { + "name": "typescript-deploys", + "email": "typescript-design@microsoft.com" + }, + { + "name": "types", + "email": "ts-npm-types@microsoft.com" + } + ], + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/types-registry_0.1.609_1662855282941_0.9629344200317584" + }, + "_hasShrinkwrap": false, + "contributors": [] + }, + "0.1.610": { + "name": "types-registry", + "version": "0.1.610", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/microsoft/DefinitelyTyped-tools.git", + "directory": "packages/publisher" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "MIT", + "typesPublisherContentHash": "f5fafde16658c81d6268195f2486a37cf7cc8bd97c4f2f699c7080ad2a835617", + "_id": "types-registry@0.1.610", + "dist": { + "integrity": "sha512-ZSR+qBBKCsknwNqAnh4pBvmhu+TjtoXVUg/NEetdRvP68KKkn7ww57Frcbo2GM2lG5O12cw4IPu9Zogpgq5Yqw==", + "shasum": "5a0e36ab2a8bde0bc02aea9f39f9fb20422b1727", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.610.tgz", + "fileCount": 4, + "unpackedSize": 1547527, + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEYCIQDa7I8aTVfKhsJPfo/jb4sUazx8t508eYzOaOzg5BvB1QIhAPVoSzh2JDUJDgTgL9UaG8JCEn7a7uJfiKZBmOMz/Yc1" + } + ], + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjJmMXACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmoseQ/8DAJRa2InKDIO/N5nys9CDUZjm59FNHSGV6G++lwsAPeZtSGX\r\nbdRH6IvLrD3UV1EVETA6GTluTkwtZx6RiySNIU7S+WX3mU0bT8Ez7xlPRoN8\r\nzvQYQf5NJnV00KMAn2a1ZB6UucNwUE6WAlli9R9N6fus+C7O65jPjFSB50yS\r\nHaHmLoL5KhV7rQqvB7d9dZpXSnPXc2YJznv2X3bqb9w3qdJbcTqtD5LQk2wy\r\n1nMfI/Smerk1ZRUKFkA9kN5OnQK7vA4+Q3ARSiRZcjXKDzmZZQx0T7Wx1uMu\r\nUebpTBPYkCl/gSvVfG+mIWIvYC+1cLCOjO0cWcBQLBTV7cVq3jy9qgEU+5Hv\r\n/7IvHMtfIgpCO+8jcZvNi/G1wAOC0VyQXNyw4qV3EcmmFNS1aExknH0y3IZz\r\nShGgov1ojmOaLdWiFVyIB0WHyQU/fI1ZbrsPkTMLkiGv4gqMQJG1g/iuGYXS\r\nQ2oqNOJL4hENQGGP1z1+aAvdY23limajhxX0ABOG25Lws4bR3HnxEa94Fojb\r\n1rHGtPQLdkWNu9gz3Bfr3YroZwUv2TtOu6P4MqYYJH0zkgtxbl0oy8TKt41t\r\nQLUqTORkfbU+ACBiq1RtVOQyL7p9o8sp10GX4WxlQv6H3jtn0Teu94kfKOGe\r\nizarDRwGihykPIS3ax23JQ+UMvCNGA7UxZA=\r\n=BhOm\r\n-----END PGP SIGNATURE-----\r\n" + }, + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "directories": {}, + "maintainers": [ + { + "name": "typescript-bot", + "email": "typescript@microsoft.com" + }, + { + "name": "weswigham", + "email": "wwigham@gmail.com" + }, + { + "name": "sanders_n", + "email": "ncsander@indiana.edu" + }, + { + "name": "andrewbranch", + "email": "andrew@wheream.io" + }, + { + "name": "minestarks", + "email": "mineyalc@microsoft.com" + }, + { + "name": "rbuckton", + "email": "rbuckton@chronicles.org" + }, + { + "name": "sheetalkamat", + "email": "shkamat@microsoft.com" + }, + { + "name": "typescript-deploys", + "email": "typescript-design@microsoft.com" + }, + { + "name": "types", + "email": "ts-npm-types@microsoft.com" + } + ], + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/types-registry_0.1.610_1663460119243_0.26682829729791036" + }, + "_hasShrinkwrap": false, + "contributors": [] + }, + "0.1.611": { + "name": "types-registry", + "version": "0.1.611", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/microsoft/DefinitelyTyped-tools.git", + "directory": "packages/publisher" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "MIT", + "typesPublisherContentHash": "3396095d9756cc27131a7348cef881c6e06fb42e33de688eb6e757995a3c47f5", + "_id": "types-registry@0.1.611", + "dist": { + "integrity": "sha512-ogXSpfbJ5GY9PIRLjdtGBWgoCJAUx1Do4trokrnoaDsP4guT7VzDUHC4b1jGL6xLDR72kCRcbbK5JHiDsetmTA==", + "shasum": "dcaab6cd610407431106302e886e6833fcdaf436", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.611.tgz", + "fileCount": 4, + "unpackedSize": 1549507, + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCID+JoMr4cw+Y022gnlVVGiUtzn6JKwFEF9+LOZwl/2g3AiEAxlzHdZU7ixC6/jjjz7H1J1kKireAJailWRiTqW4IwJ0=" + } + ], + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjL54LACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmqO2A/8DvBE4iuqMnt0f8VsR39d7RALbuLf62NCMBXDd9iFrVJSVzjG\r\nIBi0VXZCJiQP6kNO/aA5K0OwtUF4Bv212X5IvERAwN6bGT36QSPxzf1gTqyE\r\n910tC4C1Xq6LP+liuNDOhUcMskdPgvQzD66+Ev6Ssl8CVrQKn1BXInROyeWh\r\n9DkMnja5UOu6UEj75ezkUUUENKhLlIPf2KkANQB0u3vJd4Ofs6p6X3SeoWkN\r\n2Kh/HYqt7Tr/cleLgNZz335WR69rSn81SQ8bXaTgCt8vdKGimAx4qpHgboE4\r\nuGMGrr7yPewtfgG7US9jXdPhTQCqLUQZDD5eGQ3o45Vzr2nD3VsiDt530Cz0\r\nsa9N/oqmaacZJ5gS6/H//aClulRgE1jd5IYUMESg5MeBCSUrNWSr20mNG5WL\r\nYBv0MCl1GmqthNl0I765S8mbgdGePN9e4fhCDIhKpDJ7sdBGdVsjaebNcU9W\r\n0y5EJAzjMGxVbeVhnYceYW85crY42VpQ+N6scdueLIYHBR0sRm1zXHA2MNGa\r\nX/rHl78KXVvT14Y3VlnWmPsHY4iG+2+O4iXVCQXICTxlLJX/0hyob601ZEr3\r\nyRRmQVbJQaNrHEn8+VtMSm054fpC0Jb+vi/0Bt35XRFXe/dmddZXspStXlmj\r\nk/bSWuFBEUaf0Tt2C0IvgCiVg5c6K5DweHI=\r\n=QWAX\r\n-----END PGP SIGNATURE-----\r\n" + }, + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "directories": {}, + "maintainers": [ + { + "name": "typescript-bot", + "email": "typescript@microsoft.com" + }, + { + "name": "weswigham", + "email": "wwigham@gmail.com" + }, + { + "name": "sanders_n", + "email": "ncsander@indiana.edu" + }, + { + "name": "andrewbranch", + "email": "andrew@wheream.io" + }, + { + "name": "minestarks", + "email": "mineyalc@microsoft.com" + }, + { + "name": "rbuckton", + "email": "rbuckton@chronicles.org" + }, + { + "name": "sheetalkamat", + "email": "shkamat@microsoft.com" + }, + { + "name": "typescript-deploys", + "email": "typescript-design@microsoft.com" + }, + { + "name": "types", + "email": "ts-npm-types@microsoft.com" + } + ], + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/types-registry_0.1.611_1664065035533_0.4620255943358589" + }, + "_hasShrinkwrap": false, + "contributors": [] + }, + "0.1.612": { + "name": "types-registry", + "version": "0.1.612", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/microsoft/DefinitelyTyped-tools.git", + "directory": "packages/publisher" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "MIT", + "typesPublisherContentHash": "c38d11c12a94f71fb5fdc5651fa04c7204dd27a4563cdf70f9d01962deb330e6", + "_id": "types-registry@0.1.612", + "dist": { + "integrity": "sha512-6zR/5TwrVhWzTB5QvahknIugYS8FTMwb60JKkzFpEaZviRE7D71tllpPoSsGoLk6ERM8uTqxr2GCuctruvydZw==", + "shasum": "47a19108d8e75cddd55ae18971835aeb4395e11a", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.612.tgz", + "fileCount": 4, + "unpackedSize": 1551185, + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEYCIQDgJEEmzGzsRSiEl+QUTN6F196sGzFg9g+0yyTe1yYm7AIhANdVaBBwNKuLGjMqMVwHRyhIQfBgLhPPJBwZj4FmYusr" + } + ], + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjONleACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmpyFw/+PQGbqyLfQeZQLH+H1Pzu9rwXJx9iwMurVDZtnG+JS6ZfpwVB\r\n+AImjw6he9NEuhrMpPLSDJoI1WG4ksr67al0Dblq5ZaRudASrTAXB/RVgnS9\r\nv0W9pZOljsZ+k6Ob1bjj071SeTG/fJ2+2OddAV0OKW/u8cbpxkAFv50UYxvW\r\n2eIdO9Jg16DvblqSWtbrDKIdvn1xHdGEbQBY8c4bBK9xsJX56EBFFYx/LE/n\r\nCRhK28zn1Eol/yjnoYpHwfJo0vwqcecBsFhtTGtqVkIfjkogVG9QCnGUYcf2\r\naGgV9lfkYwBXY/0qYWJsk58N40+qxGjzB9bfgWeg9CEKYm+TSdmvjmU/u4oU\r\nfUAiAwd7FsozOlwMrKnTgXFcF+wQAZtTTwmP61ckl2CoKV9v8k48QgD63pvL\r\n/qjHc2ibixFC4qCcegjoFJjPQ9qGOE9ltiZLQX6T0SgzVcWbNzTvyVtVjUJx\r\nd4CZ49UD1sldww5wTmflW/UpkTt45ssnENXi7VWIGOxzx2ZpJVNdKWqxBF2z\r\nuImqC/zdvhfcCVA9a2UgsSnifN0H9QZImbS5RNtOirsHaRdvlbuMeztjBMdI\r\n3KMkYU/niryDDrC3zdo4AqNH1AgsrRJqIFfuWe8GjqcARAlIm78EVrq4HsOD\r\nNHp7+9Jf0eocEjSH2sxfYOJwsyZXjI+9xz4=\r\n=V8ht\r\n-----END PGP SIGNATURE-----\r\n" + }, + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "directories": {}, + "maintainers": [ + { + "name": "typescript-bot", + "email": "typescript@microsoft.com" + }, + { + "name": "weswigham", + "email": "wwigham@gmail.com" + }, + { + "name": "sanders_n", + "email": "ncsander@indiana.edu" + }, + { + "name": "andrewbranch", + "email": "andrew@wheream.io" + }, + { + "name": "minestarks", + "email": "mineyalc@microsoft.com" + }, + { + "name": "rbuckton", + "email": "rbuckton@chronicles.org" + }, + { + "name": "sheetalkamat", + "email": "shkamat@microsoft.com" + }, + { + "name": "typescript-deploys", + "email": "typescript-design@microsoft.com" + }, + { + "name": "types", + "email": "ts-npm-types@microsoft.com" + } + ], + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/types-registry_0.1.612_1664670046264_0.8972142507601106" + }, + "_hasShrinkwrap": false, + "contributors": [] + }, + "0.1.613": { + "name": "types-registry", + "version": "0.1.613", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/microsoft/DefinitelyTyped-tools.git", + "directory": "packages/publisher" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "MIT", + "typesPublisherContentHash": "ae26874a1295c9efdccbd9ed09fcecedb706049d5927500e657b31abf3a3a7b5", + "_id": "types-registry@0.1.613", + "dist": { + "integrity": "sha512-idZs0o/tkZ0nfQCKNd8gGogGB83r+Fs6YY2FuoY4UviAmDUi7T8mET1zCeVItbd/ywfMeFJY98S/+F3IBDDXSg==", + "shasum": "8f82ee79d7e5efbba88e0b4dc839b886c60a1aa0", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.613.tgz", + "fileCount": 4, + "unpackedSize": 1553614, + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEYCIQC1y+dHTc2Ej4e6Ohn5elHIDLIpBCPY6ZiB//ZLju02ZQIhAPV0zwdzxaCob1Fkrlz5ISwIVW1eLBCsLx+PG5Ljdsw3" + } + ], + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjQhMoACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmrDjA/6Az+kVSryuEICXaoYYsFY8Ode9gdF2wcTPMmlnH/avrnKYrRT\r\nmkQIj1op+FNCyTVPLfgZfhuMh1V9+Pkwc7YBvSvHrCelxr84tGKypQ+jbkz2\r\n6hDNdWJgIvwtvMTV0WW0uwRd7BTgAh5sxNblp8a1KpOyxdnvyRsdFTEhJkYb\r\n4Grq4ZI7Jzu4Z9GDqp87uKSQGQnsME/Ynfyxzp10wWer+gmM8spqlVmiACyx\r\n51kI/8z1KSi7b/IiauVvVtVHlGf12U8IFTtCuu5ganxoMOB6ddE75j0R7rFi\r\n/aRQH/AseYK4C3c0VhnZQH3gaMed/XfVgJFAoDwj2CBjpXuTf9DxVT1q6Ig0\r\nSzgEUq2vrbTJZmaUi6okyG8KBzICeaY6xTyZvQX0CyW8rPC45zpl+QZ9wG0d\r\nVcRNZ7OaYMgxIerOe9yz9Bwr8KVu/hOKPAqIPDLCGTQvfTWtwvuzFhnZVlUA\r\n/T7gBpmzxkqUM7oH8UBx/ntDfSbUg6jTPW7wAEEfQUzmy75vjEuEL5Ps6DZY\r\nAV2Bcfb5YIsIZqJnml+IN8KP2nQaAJ1XSGorPD7KxLM+FUC91IrSEkJ4fv4F\r\n5KJOPLkTV8AOirznFpLMbVnS9JUY7YB5aoNMhzTJffAtLBosdHX9FFPFxamm\r\nWJ6I3E2SIeNTlW+o5D86XQAWWcqUQuIkYXU=\r\n=mhND\r\n-----END PGP SIGNATURE-----\r\n" + }, + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "directories": {}, + "maintainers": [ + { + "name": "typescript-bot", + "email": "typescript@microsoft.com" + }, + { + "name": "weswigham", + "email": "wwigham@gmail.com" + }, + { + "name": "sanders_n", + "email": "ncsander@indiana.edu" + }, + { + "name": "andrewbranch", + "email": "andrew@wheream.io" + }, + { + "name": "minestarks", + "email": "mineyalc@microsoft.com" + }, + { + "name": "rbuckton", + "email": "rbuckton@chronicles.org" + }, + { + "name": "sheetalkamat", + "email": "shkamat@microsoft.com" + }, + { + "name": "typescript-deploys", + "email": "typescript-design@microsoft.com" + }, + { + "name": "types", + "email": "ts-npm-types@microsoft.com" + } + ], + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/types-registry_0.1.613_1665274664093_0.9237098501401775" + }, + "_hasShrinkwrap": false, + "contributors": [] + }, + "0.1.614": { + "name": "types-registry", + "version": "0.1.614", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/microsoft/DefinitelyTyped-tools.git", + "directory": "packages/publisher" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "MIT", + "typesPublisherContentHash": "f452ec75b49ae782505ffe4549163ca4cdd644517f35234cd632e356cd49e3a2", + "_id": "types-registry@0.1.614", + "dist": { + "integrity": "sha512-FvpNTP2+m6KQtwBtqUAbEhmi8iaogTKn6UTJwa62Od+Qh7SAKgIDxKb7Gn3OtA0by596B56j6Bk5ghl1mgBB/A==", + "shasum": "f24071fb7e0e8ff9124df0e112a94ed07dec10fa", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.614.tgz", + "fileCount": 4, + "unpackedSize": 1555407, + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEMCIA41kd0RKUx+u86W1C2CdkSThfk/2ZiUCMntk0cZk5HUAh90J0GtLvNMnufxcjM1EE/ZKXhsZQrnPmUmFi/iwz6r" + } + ], + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjS02JACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2Vmqa0RAAoScG0Il+4qrSHnBOY2O/3wruPCOqGP0vltYyjokiyRAU/gKM\r\nQQCP5/89qJ32MDTbuaqaQIAO6x7LkoKqyGW2aeOBIsaB+RkQV6ErDEEVzqet\r\nhpqQKcLyws3FIX0S9wuBdGU4DueJYzDQOAtHDt7HtQFqdcbQsZSwyj/jhG2S\r\nbErqjjRSGHd/Km1/osvjmg5Lw/nN02S2rB6sHhMNp/nYqkJ5a2auS6VY8ufh\r\nw2d0MEKskxKLK3gIsAHI8InQRq5/5vQuVll4ojkjsKOs+jHqJndM5YEWxdGj\r\nqxr8w903G2NJGKKOXmcibsscbq7TI1q67zwUahDt+KPw7u086NOFFdd4QtSh\r\n26ROQYSqirkoJofP6F0bAq/RllzeaW7IEg9v5X3usi+u4geUyOUtQ54NHSHj\r\nyYXZP9OslFiCLoi7WVekd3gCIo+BLAq/COx9NoHLbwWoJn3RXvOSwcGJF7ts\r\nXA0c/0uwDvEsNg8c6xCHOjwk7kIpR9oN4kmj9rCNsxLCp+jOCZg9rUbnArZ5\r\naEO1hfAwqaouDO/rED+h8enkG9hyLwMtYrzN5CkR6Y4wJEUPq+SMObFwwXL3\r\nAu/6jTsBe/tZ3ZMWYOql5Sc+dJSDIdeens2CVreCeSB/iKQOYso+aMC0zb2i\r\n8+3k7RqlO+hst/Pycm6EwlqZ8+cfcmrwrOU=\r\n=TIr7\r\n-----END PGP SIGNATURE-----\r\n" + }, + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "directories": {}, + "maintainers": [ + { + "name": "typescript-bot", + "email": "typescript@microsoft.com" + }, + { + "name": "weswigham", + "email": "wwigham@gmail.com" + }, + { + "name": "sanders_n", + "email": "ncsander@indiana.edu" + }, + { + "name": "andrewbranch", + "email": "andrew@wheream.io" + }, + { + "name": "minestarks", + "email": "mineyalc@microsoft.com" + }, + { + "name": "rbuckton", + "email": "rbuckton@chronicles.org" + }, + { + "name": "sheetalkamat", + "email": "shkamat@microsoft.com" + }, + { + "name": "typescript-deploys", + "email": "typescript-design@microsoft.com" + }, + { + "name": "types", + "email": "ts-npm-types@microsoft.com" + } + ], + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/types-registry_0.1.614_1665879433050_0.498221292680594" + }, + "_hasShrinkwrap": false, + "contributors": [] + }, + "0.1.615": { + "name": "types-registry", + "version": "0.1.615", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/microsoft/DefinitelyTyped-tools.git", + "directory": "packages/publisher" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "MIT", + "typesPublisherContentHash": "2b452c23b106c234d5264ed2dfbe305e7636034fe017e4d5e1b920d03268c731", + "_id": "types-registry@0.1.615", + "dist": { + "integrity": "sha512-6b2egEvA4NmmXnOYMJKsvfZ/6iWgO4Kl/boukDLVhkRFVel2LJxBZHhQnQay1hxNOa74ax0caJPupXI5cD+QEA==", + "shasum": "51810edcf08c6acf09bad208637386f7ccad159a", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.615.tgz", + "fileCount": 4, + "unpackedSize": 1553961, + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEYCIQCXeGa4oKg3DtRY1m7Ro/BsN3F7rMGx7uoHE8X2c9IDVgIhAM9PVCCNhm/V4Ysz6k1+mlts5GngOzwf/M4QWThTr9Rd" + } + ], + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjVIh6ACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2Vmr2gA/+NWno1cwDFQJ3W0b5G26RwnYsGxn8Vh+tCfvn9lvHpoG2geai\r\nc1E7C2sIaRQy5q5f8karye7N7Jcpou4CgdljFsRGgqpYeRLictOUxEfr8tNX\r\nJpEQZEr3nKCWtT1kUa4wTQBr9ABPInoDZt4VGSfuXgZiFmSUlNdN8KNzcHjj\r\nsjvrheHG9GlpqkZ2vLO6965pl4QDmuX6z4LhDkLY/aN2A8AjZPXfTPTAKNgL\r\nzTqHKrn9miVl7joJC6oTURaq9XlmiUsh4B5X4ZfKC9oYa1toRyx+ORGGf4bH\r\ngIaEGvHjAoCHoAYN5YUcgcl64JEpFW6ziwuat7KcWBISxqtKEE91vI0/m9vm\r\nL8f6C7syxma+ytmj7EsfTkF6R0LWCc5NeZDtMa9fUx+cTAbOCFi9CiI/+N/n\r\n3HCHUNyKFElRDISB0h9GUjbJcIyD0PwlSpM4VJUswX9IxeFlY2jfLJZsE1eR\r\n7YsrsQ5f+AwYU/PSyOzNzUJxgyguzGpcZSZ6dmdNytDqIwqv8xWBCEQl3H25\r\n/0U5/e96vsi14KnMBU7mBNkn9JA6973xuurbvtMeKaahtqvrIcIPE3bI/+4D\r\nH9sCZby0Fee3AAUB6tuQnQyLoN0scaMrPfPejncxwTGCEE4f7R6CDkipZp0W\r\nkA8MslNTmRnHvq36rpN5U817Wxv7JlcSVOI=\r\n=G0C7\r\n-----END PGP SIGNATURE-----\r\n" + }, + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "directories": {}, + "maintainers": [ + { + "name": "typescript-bot", + "email": "typescript@microsoft.com" + }, + { + "name": "weswigham", + "email": "wwigham@gmail.com" + }, + { + "name": "sanders_n", + "email": "ncsander@indiana.edu" + }, + { + "name": "andrewbranch", + "email": "andrew@wheream.io" + }, + { + "name": "minestarks", + "email": "mineyalc@microsoft.com" + }, + { + "name": "rbuckton", + "email": "rbuckton@chronicles.org" + }, + { + "name": "sheetalkamat", + "email": "shkamat@microsoft.com" + }, + { + "name": "typescript-deploys", + "email": "typescript-design@microsoft.com" + }, + { + "name": "types", + "email": "ts-npm-types@microsoft.com" + } + ], + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/types-registry_0.1.615_1666484346173_0.14560204989449366" + }, + "_hasShrinkwrap": false, + "contributors": [] + }, + "0.1.616": { + "name": "types-registry", + "version": "0.1.616", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/microsoft/DefinitelyTyped-tools.git", + "directory": "packages/publisher" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "MIT", + "typesPublisherContentHash": "472e3929a4be2761d010987cb06a9a614262170b01846d6918531b3ef4562c99", + "_id": "types-registry@0.1.616", + "dist": { + "integrity": "sha512-Rae6vPvwmcmczZ1dBJPNSKe04jOnkX509jncwGYwXM7+V6722Q/2gdYenAJA16tmUW/Pd+ZLbhAZBcNw8+uBBA==", + "shasum": "9c45fe85036d137be32cbee5cc0d28389effa85a", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.616.tgz", + "fileCount": 4, + "unpackedSize": 1549718, + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIAm3AFpTgSbVFxChxlMmnCWiY4ZOObpremS5XWUB5V9IAiEA2plt8HiDK64ycWjjSpakDyhwY7F7uPkUu7z0EFZLnzE=" + } + ], + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjXcHQACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmrzPw/8CYyRLwkd75YkXyIcNCIpEWYHvac9KfPuBw8SLCZP1vJqybkK\r\nPljTI2GbW5dIu47xsGzs178+2JrHWjNGF+w37SoofA7wD9dqHERSYFFxKG53\r\nQghekKvw1vOfEK/5h4Od83rlvWJ3BKo5jmxKC/b5Cvbaw7JuJJMhkFP9ijGY\r\niQprr2/m3FkMHzQZRMQaHueF65aWhTujqbAL/GkPvcnHePraqx7CzQTGTGQS\r\nukmOxadXpLidmykMV5WgY5XqFyfKx5MtSa8MhRiAz1PkjwQ1DJ/J6NmHONNy\r\na6XhTMHx8YiPT5u+mkDOnq92yQmH0G646NckGK5pFvG8AOHI0FohUxIkrLzw\r\n6pedWW0WvR2BXLcMAPA0PhDwp8L9QvGQOkQ6rYqp+C/CYIOEFA8lqA61auAs\r\nbvLHTqZyXd+GJcXW1wDdW5aiXnnoDVFF6Wo/P6PnZLVWXIDm+Wk+Ifo8+nxz\r\njupbiEGRMnExcJuITfMppKfuehtgrqaTNBUUtieDINTfyDdfy+MZPzmBNb4P\r\nRbl4rm/KqRNVWioWJeAysxUINFcrf73edy/G+KXOaDmeqTqUucHN1MgWmJcl\r\nK8vyveAae7aAStOe94hEJXfk9fghpF1x7tdWB2yrxJjlBhI7jlHhQCRwOSMw\r\nSMbOP0K07EYnv1zpi28CiOjv6JpDOwvW76c=\r\n=LxG3\r\n-----END PGP SIGNATURE-----\r\n" + }, + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "directories": {}, + "maintainers": [ + { + "name": "typescript-bot", + "email": "typescript@microsoft.com" + }, + { + "name": "weswigham", + "email": "wwigham@gmail.com" + }, + { + "name": "sanders_n", + "email": "ncsander@indiana.edu" + }, + { + "name": "andrewbranch", + "email": "andrew@wheream.io" + }, + { + "name": "minestarks", + "email": "mineyalc@microsoft.com" + }, + { + "name": "rbuckton", + "email": "rbuckton@chronicles.org" + }, + { + "name": "sheetalkamat", + "email": "shkamat@microsoft.com" + }, + { + "name": "typescript-deploys", + "email": "typescript-design@microsoft.com" + }, + { + "name": "types", + "email": "ts-npm-types@microsoft.com" + } + ], + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/types-registry_0.1.616_1667088847780_0.5725696881870741" + }, + "_hasShrinkwrap": false, + "contributors": [] + }, + "0.1.617": { + "name": "types-registry", + "version": "0.1.617", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/microsoft/DefinitelyTyped-tools.git", + "directory": "packages/publisher" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "MIT", + "typesPublisherContentHash": "5bfe2479799092ff6c053a174ab687a0648a53809d6fa481b6f410760039f37d", + "_id": "types-registry@0.1.617", + "dist": { + "integrity": "sha512-kA/keUOAdZHmo9ILjrHkQt8S9hUQPKD+vOCbsYstodWjAhPjVHA+VaIXZVMbU6/KIxcvHVK1mEKaGuXsllfyAg==", + "shasum": "3ed51040a64ec9c18ffd791118b1dbcad039c3fc", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.617.tgz", + "fileCount": 4, + "unpackedSize": 1552252, + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIFRtWFoITC9brYXnCUTXEF2Nuw867N7eO3ycF00uPRK6AiEAm5gMwekXmiyrASCuldmo0RdYLoMy0We0gHeMboZtMBM=" + } + ], + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjZvyRACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2Vmo2lA//bnfKjcuzgqZZT10DWGwbTNeSIqGogi9As9nWAwfH/OFforfx\r\nV2nK8Gw/GnhqUpC6yp9c0F3TkDmDVA8Mte7xC1cM5IjQLg3oVBl3/umK6mdI\r\nZbKXTcdZtESAvm+f2hCLLPfdP51tSXxw41Gr5C4A0tKidIdu8B+cjqy4wmWD\r\nxthVZzGB/AQ44TUshLYSZDYlgfRQ6ufjaW3aTQKabuSA/vPKywsJuRYMZq1U\r\nwotzyMzlL7cMpfhhMoHjVTv1fyTlEIMTBtKDQocQAgdWKU3DhfscRj6/wyFi\r\nynRUl6MwWGrJczjpmSH2bbLqotLqr2T5HmfnDoLmsf+x6e0eXwGHgRdVg/+J\r\nYgUzTbWxUPQKgmqT+dsviU9bxyMewMNWP9AiE2f/p1nVLfmPyNKLbu3SRgIN\r\n/ZFVurQdbZzrzQshoXc4srTFT8pr+7feER+GSwqbpZN9eU20KnOqv9BkUOdl\r\ndkEKk06h9ojq6DFlDixUI0xoNTSx/muwsYoMkhEBlT9TlmcgSDLeo0brpadb\r\nAu3WDf/h7FNlg6YTk0UXBUDsx3RKc793dcFj+EwjI2vFBqVhvY93p4qcXKA8\r\nuTwVTBSX7Vm+2dlBOyWrAI/iW6QJt13Ad9Z6LBUdXo144ojRfnE1FcsflCw2\r\n8v/OAGGbuenVTMOLLc8shDRxCJ2zBfZj6Zs=\r\n=f+sU\r\n-----END PGP SIGNATURE-----\r\n" + }, + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "directories": {}, + "maintainers": [ + { + "name": "typescript-bot", + "email": "typescript@microsoft.com" + }, + { + "name": "weswigham", + "email": "wwigham@gmail.com" + }, + { + "name": "sanders_n", + "email": "ncsander@indiana.edu" + }, + { + "name": "andrewbranch", + "email": "andrew@wheream.io" + }, + { + "name": "minestarks", + "email": "mineyalc@microsoft.com" + }, + { + "name": "rbuckton", + "email": "rbuckton@chronicles.org" + }, + { + "name": "sheetalkamat", + "email": "shkamat@microsoft.com" + }, + { + "name": "typescript-deploys", + "email": "typescript-design@microsoft.com" + }, + { + "name": "types", + "email": "ts-npm-types@microsoft.com" + } + ], + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/types-registry_0.1.617_1667693712786_0.7663860584103492" + }, + "_hasShrinkwrap": false, + "contributors": [] + }, + "0.1.618": { + "name": "types-registry", + "version": "0.1.618", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/microsoft/DefinitelyTyped-tools.git", + "directory": "packages/publisher" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "MIT", + "typesPublisherContentHash": "d70123992e1229bf679c10e209479b9e2c5fa526c62eca0d9279cf9336b7f3bc", + "_id": "types-registry@0.1.618", + "dist": { + "integrity": "sha512-rQtZ10AtfBLzAod3akJO8ZoEMqzcf5GtOBFZFWoempevbfJx8P058qSk1EKeLggbdcUP/xrLvq4mjR61DCz5Yw==", + "shasum": "48b9051d08eba932742f9a11e7d23aabfdfacc07", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.618.tgz", + "fileCount": 4, + "unpackedSize": 1555483, + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIByHcLIHtpM9XzO9p/J31XqPWR5nbEyo1FM7N7Ks2jZRAiEAi88HXlyKAwGp8jh0RptVL+7qNROEvABb8Z5Amym2Zzw=" + } + ], + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjcDaqACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmqLQw/+N2NuTdBiL6l25HwtMNdo9f389u46EZqgfvOUOgyK39sNJdAj\r\ni1qtrW62s/QrZhmWlxh0s5fNuEAlKG2NNUXIcsBcI129v6+D0KAHLoFQ0OYi\r\nAO8mkdXP+2b4cMTbv/SRKSoLB0NfpMXgPOoEAf5I1q/qikHL9IOlG0YnvB5f\r\nPtgzEJ8HBMGDU7HmHuqthALTK+lKEV57Nu2x6Ky9qIYFGLdlUIp/ee1jsorB\r\n+aplwVJelrr2vt/SGZWyE3FYJirh1ecKcHG0MyyzX8YmrCEje7scYe5mQQil\r\nvB2jK1WRw4giU80hvDlGYgoJHGuPbVnAjpLSYHzTt7w3U28TlUjPJf5uPEZt\r\nsqDCmAUhrHwotMo/96MvOSYcZ0vtYxntI6PAdYYdy5dmKxjUY4N51c56lE2j\r\ny/uqEga6Rtr5D1oUwAm2JzD+cx6iSWKKoo0nifCR9styVudQiv29SgL7dBFD\r\nl592Bclh1eiJh++N1WpcFjN08IezAR0561ueTHmVKTYVkv0WtKYWjD0SBDp2\r\nIxJzSf9W8snZy6smVwdSxme9W8qebFcMOms8ZqcOsh6xSAzfzN93+bzLVkS6\r\nzyjoQM3Jo+ohPGj6/CcE20kvtgJxdVsRvv0Lnq7kBLSSF7IU/NfevjzqClzV\r\nDArfx45/qstSoNiEN6LD+Tmetc1Ae4Bvkh4=\r\n=7XlP\r\n-----END PGP SIGNATURE-----\r\n" + }, + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "directories": {}, + "maintainers": [ + { + "name": "typescript-bot", + "email": "typescript@microsoft.com" + }, + { + "name": "weswigham", + "email": "wwigham@gmail.com" + }, + { + "name": "sanders_n", + "email": "ncsander@indiana.edu" + }, + { + "name": "andrewbranch", + "email": "andrew@wheream.io" + }, + { + "name": "minestarks", + "email": "mineyalc@microsoft.com" + }, + { + "name": "rbuckton", + "email": "rbuckton@chronicles.org" + }, + { + "name": "sheetalkamat", + "email": "shkamat@microsoft.com" + }, + { + "name": "typescript-deploys", + "email": "typescript-design@microsoft.com" + }, + { + "name": "types", + "email": "ts-npm-types@microsoft.com" + } + ], + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/types-registry_0.1.618_1668298409785_0.46667200124311603" + }, + "_hasShrinkwrap": false, + "contributors": [] + }, + "0.1.619": { + "name": "types-registry", + "version": "0.1.619", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/microsoft/DefinitelyTyped-tools.git", + "directory": "packages/publisher" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "MIT", + "typesPublisherContentHash": "5ff9a7d1a2fd7a0463eac659972d36ee0611ff6a25a4d5485254fc2e5a095780", + "_id": "types-registry@0.1.619", + "dist": { + "integrity": "sha512-gYudf2/94KILe5zTJXwkGZX0CH/PnScohDvpAZm5AUJiTDUjs6fcMDUHHEabwf9lrJJ25DTwPvXMMC2dV5YTTA==", + "shasum": "1d8d93e42001b5694aa6859ecb501288bc2ad3aa", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.619.tgz", + "fileCount": 4, + "unpackedSize": 1556913, + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEQCICgslWTXzVdfhTARnXU8go1Ce3+oW7svEBMDuBOW6WylAiAHUGttqJEfLpTywDATKnbWWrNPctr48m44eVVwjuXzgA==" + } + ], + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjeXFYACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2Vmos4w/9GJcfjt8KxYaCEEbwduU89v6F3J30l4DkLN/RTXUeJ3vlNZz5\r\nIdwG59WWK2Oz1vjYybZuv2W6s39PrUlTDy9n4P9QVAB01f9VPwhiq5VDG8nh\r\nHi6+LvexjkyAJ6dpx1fpKZbW8oDTVrCwaY6YuBmiL52UAYCqrFdgKgpgvotL\r\n5GxFWTV2iL5TK2zXdeExD86FkVAa4YnA8QgSeJNWeBxdhsC9YU7+cvaHcIlS\r\nfVSOGtTFNFrj+osNJZtpMIw9a+Pe02sqO6UXh/OEmI6Nxqsw2W1H2dPiqDjs\r\nJLN6Wy05SvhkpuMVr6Z5wQGWUfuCXlfTPGtMV9rX/C2WrEne+Ky+jPufVqAB\r\ns4ywXWalGO5uEJGByePQYPe6A8Z6Sh3lVKCCO5WFhW43ZIw+aB1H6RfWqgN7\r\n2O1rErzEjEblbch2eSGOe/lQ5MLZQaqs76RSEOhhZ7Ch1OzKONwJ3CEfshWr\r\n1syCNkrJP3W0Fc6d8Mef5rn9w/nAz0Nx6ZA3kBkTU8gEuHpFUii3jaZ+KPkH\r\nA4h8QsWklFOvLLR7h8xrBt8iuMmegc5HFpthYH7YqrdN6A5XFWxYdbfRj6zO\r\nQCpXhubWbkX4RdnbwBioCcGFxJAkOw8SGC4FIxc4UuFnAWKNbJSUePGrlccD\r\nUFZjk76ooUhGFx/khsYyKMpuk2k/m0re49s=\r\n=jLUf\r\n-----END PGP SIGNATURE-----\r\n" + }, + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "directories": {}, + "maintainers": [ + { + "name": "typescript-bot", + "email": "typescript@microsoft.com" + }, + { + "name": "weswigham", + "email": "wwigham@gmail.com" + }, + { + "name": "sanders_n", + "email": "ncsander@indiana.edu" + }, + { + "name": "andrewbranch", + "email": "andrew@wheream.io" + }, + { + "name": "minestarks", + "email": "mineyalc@microsoft.com" + }, + { + "name": "rbuckton", + "email": "rbuckton@chronicles.org" + }, + { + "name": "sheetalkamat", + "email": "shkamat@microsoft.com" + }, + { + "name": "typescript-deploys", + "email": "typescript-design@microsoft.com" + }, + { + "name": "types", + "email": "ts-npm-types@microsoft.com" + } + ], + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/types-registry_0.1.619_1668903256693_0.04437298085376873" + }, + "_hasShrinkwrap": false, + "contributors": [] + }, + "0.1.620": { + "name": "types-registry", + "version": "0.1.620", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/microsoft/DefinitelyTyped-tools.git", + "directory": "packages/publisher" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "MIT", + "typesPublisherContentHash": "0a109344aa1a881093083b9d3ab10529c2f8ccb29fe742301407824b9b6d55bb", + "_id": "types-registry@0.1.620", + "dist": { + "integrity": "sha512-TEIt1SuaoL4PsRb6xKW9ESgZRYG/jiM0/6wewXW/dfpSGkMr7GvD0EdefbJfsU2u3Os8i027f7iYj6JzGlmJ6Q==", + "shasum": "b5076e92452a530f545407fe3ce7d02f8c0d65b2", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.620.tgz", + "fileCount": 4, + "unpackedSize": 1557363, + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEYCIQCIiPg3xtpNeaBD2O6H/6tOhXOVpO2ysaz2cSJ5rvKbQQIhANq2d7VwWvOOBXQ9DU8OxwIkOgco7WvV2MefUxajq7n9" + } + ], + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjgqxNACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmpNXg/+JkztitUTFho32Xm6zLUrd5sS4JuIxH4+G9BKO8QgJuK/PjjM\r\nywSMSdJIq+jO1SyuoB1APS1Py46cY2BVgC600jsPRa9aNVvUKlrDL7IYQ9GR\r\njT3/IwJUR/EWyJSRvH0Wf3pfS2jc1JK4jZlO7akVBgzJ4Y7go5vcYmMKcYVv\r\n0ltoNnfd/AKvZo06YMbME897T47qHaWLxZo6P2mhr7oyVuwPnsOgppyCDH1v\r\nIfKD8yjZ5pSyr1cyy3EDFdmLhqPmb2f/aADll+V77wc2RvQWClXxWDrhWNxQ\r\nOFBZKys59WWScWCtdiZ23hSU5al6tOe5ULwqktDOOYeWmTsR+E5ZV/oWNaDF\r\nQwuVvFZuBBts7JB4+J7KVhwRewozTfYZM3miHx7+i26hCOvnuLNMreEHpVf5\r\nptciHi8AmlgUMCPZ5hhoqCYRGNY6JVxjLDQ4jdZ46t/B2w4sqBNanRngNYTb\r\nFZdoNhle7HIEF1dn/45WczefFpx9Bp8AHz2g+NibeUff5TNB8c8VX2Lvy/fy\r\nBat1m/k0JFArUEu+c30M8NZA6ITY5ev6GPXTnQVyCK+6hF3pjnD4Jjh/NnA6\r\nls08Jocj42RGmE1pNSIdj1DEMELX1/fQ4FL0La3VLZ7HJckvVRyB6Q6d+YwF\r\n7lPoBwQs62b0knTc+xpwBfALxobHDEd8sRU=\r\n=AepJ\r\n-----END PGP SIGNATURE-----\r\n" + }, + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "directories": {}, + "maintainers": [ + { + "name": "typescript-bot", + "email": "typescript@microsoft.com" + }, + { + "name": "weswigham", + "email": "wwigham@gmail.com" + }, + { + "name": "sanders_n", + "email": "ncsander@indiana.edu" + }, + { + "name": "andrewbranch", + "email": "andrew@wheream.io" + }, + { + "name": "minestarks", + "email": "mineyalc@microsoft.com" + }, + { + "name": "rbuckton", + "email": "rbuckton@chronicles.org" + }, + { + "name": "sheetalkamat", + "email": "shkamat@microsoft.com" + }, + { + "name": "typescript-deploys", + "email": "typescript-design@microsoft.com" + }, + { + "name": "types", + "email": "ts-npm-types@microsoft.com" + } + ], + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/types-registry_0.1.620_1669508172967_0.38160959618855794" + }, + "_hasShrinkwrap": false, + "contributors": [] + }, + "0.1.621": { + "name": "types-registry", + "version": "0.1.621", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/microsoft/DefinitelyTyped-tools.git", + "directory": "packages/publisher" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "MIT", + "typesPublisherContentHash": "a6d69ca4f785c1a41f99e782fd3320cf687b0ab89c0ba9d8f9a18f09077292ac", + "_id": "types-registry@0.1.621", + "dist": { + "integrity": "sha512-9/4idxcXkvB7zm4CgJQoLzrWPS9updmxBXslb22qq6lAb5r1nnFvebu0IIXs+RO5XQ8YVur9UGzTzNe4qjEtuQ==", + "shasum": "92fc10c68b55429a3716b75829f5151e809117b7", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.621.tgz", + "fileCount": 4, + "unpackedSize": 1558182, + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEYCIQD6D14dveKMRIpVor/nQ5vsxveBX3JhUfznO6gUKUoN5AIhAJf3oFF2qXaqnk015TbTtEcoUXfSeAvaQzISToxUrDbf" + } + ], + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJji+bDACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2Vmpc1Q//QdccE8r0kn1xi6dHsD9HXhbwVWr8XlDJTXqHWGoWrovYGxSj\r\nUJzLhJp5U3W+Wrm8WoxVtdrE+GAw1rIeVrZXsJIbZgHoKt7ucv85p8dYGmzr\r\ng+5SEy3BLXPkMQTezQgvcniNR5fPqWvVJ8qwhLJZF9nBKGRzCMCplj/m2tDr\r\nIQRTTn3ZvdQptEjPs+N5wVhpV3g3lUpvW4Cxqb5mhW9ceGkGv/zXqJ2tpEBg\r\nak2iTCWNmVURU4zmOrdye3favNMDu7rxo+QWJAhGKdbRp9kp4qBu8eDcipH6\r\n2d7ha0kz4si61OGMLpv3Gd99HWXkCFYt0mAisBeWS2Lj6dxqMuD4euBdFHoI\r\nmQW3LiJomQzkH4sV0HCUH2Oi8KWkTmZ97MaXa6N+Fgm/Oy13YbdfB2F0VF0U\r\nAbMTBHdDmrVhOPxA+9UZBpKtgDwz9aLaetA5YSSYgXHc6uDEIDoRZRp22ZiZ\r\nsA1hZfFiiRKA1zV5EHPJsnbKD6mKOO6CELYvrMKB1NOhINAN8y0lLE1o2XMg\r\ncNNnhQNWxbVYitXjbOrYcgpSmRu7GBec1FBvVThp/GgHeFiHePzjt6UDJNGd\r\nM2C7vH5/yiGnAInx6fHes8gSjLnp3fZ5hBql+RJs2b4P4c0vp4M7ohBnVDK5\r\nLlCcsSSYiSwlbjb5riLKrmz5937y3Mn/hD0=\r\n=qe3p\r\n-----END PGP SIGNATURE-----\r\n" + }, + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "directories": {}, + "maintainers": [ + { + "name": "typescript-bot", + "email": "typescript@microsoft.com" + }, + { + "name": "weswigham", + "email": "wwigham@gmail.com" + }, + { + "name": "sanders_n", + "email": "ncsander@indiana.edu" + }, + { + "name": "andrewbranch", + "email": "andrew@wheream.io" + }, + { + "name": "minestarks", + "email": "mineyalc@microsoft.com" + }, + { + "name": "rbuckton", + "email": "rbuckton@chronicles.org" + }, + { + "name": "sheetalkamat", + "email": "shkamat@microsoft.com" + }, + { + "name": "typescript-deploys", + "email": "typescript-design@microsoft.com" + }, + { + "name": "types", + "email": "ts-npm-types@microsoft.com" + } + ], + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/types-registry_0.1.621_1670112963489_0.5915497067070103" + }, + "_hasShrinkwrap": false, + "contributors": [] + }, + "0.1.622": { + "name": "types-registry", + "version": "0.1.622", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/microsoft/DefinitelyTyped-tools.git", + "directory": "packages/publisher" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "MIT", + "typesPublisherContentHash": "a4a10825068c779faa0a710f120698103d3660f2f53e1567592cebbd3c0dbca5", + "_id": "types-registry@0.1.622", + "dist": { + "integrity": "sha512-d/sU1piD/OJ00p5H6WP/ABpz02+1ix48bGvQW1LdpI/Ks+ro7MjOhosp4rEK6nEVtvhPTOvIyhp6kFVpZas5iQ==", + "shasum": "56a04232daa5fe68e4d4b088f0c6c239d3e0b72f", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.622.tgz", + "fileCount": 4, + "unpackedSize": 1561203, + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEQCIAVoLwRV7nf20ArCunNYwfYI+6NKhtCi8ffILGproReVAiA3SGCX/MCXdmOI+Ravat7YIF9MztbMYVDcRMd41/4OFQ==" + } + ], + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjlSEGACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmoZPA/+JWnv3a/exGZCbXEL6l9ouHzxx04gCHhRRGM5qft/ueVb/5ja\r\nuNKntRI8LCt95thEa7J0ndFtn5yDULVR8AKgUfXc9OGUBj+vJdTzsNYfUaqG\r\n/SLsHKxUjeXB8efp5GN4Pi3+tWi45gTAB8uN9C6HojQlIimqS9nwOSr3UbTG\r\n0XIrF1HHQoEITWOZxTiMy6eZ9NPz2Q2ObzFUt0Br38tMNfMcfHt9eVFnD1qH\r\nhLSAO419tUWr2hma8k3btGmpgpMCmIniTWzCBr2Usk6LJhT1k4VIUoOApju1\r\nUkyW9rktKRstetHceuUiipXQ2PAAvOnxDw0kkC6SlBfQuoDAHr8is2EPVxEa\r\n3sN8OSybon68s9OxWPDxymc0U4rn9/fjtjxFGQlxSotj2SnGKxDErGP4FZtB\r\nYJEVT6DgBqfAvmF5Qk/P8G1tvYwwp4pRP9GvFl2DFzMP1piLOaUSE4ZhVku9\r\nkBCp9fU+YXJztdvOPCZm4uPaSpRZZfh80sx3m/AUE5LF5niOaN05QU1kFuxE\r\nsDtGjQgapEd8nJ6yJtMLBr0IyW9pvktDNQm9+Zi1ti1V1H94SyyajMCOGN9E\r\nWoRKodadNmPd9BYwgrXN0TO5rYqbdce92bO9MPdjQbmVutf/fYWg/lZTvMGJ\r\noCM63IXvCWHErNrWV9UQziOIvFCbd/fc2Pc=\r\n=y/Iy\r\n-----END PGP SIGNATURE-----\r\n" + }, + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "directories": {}, + "maintainers": [ + { + "name": "typescript-bot", + "email": "typescript@microsoft.com" + }, + { + "name": "weswigham", + "email": "wwigham@gmail.com" + }, + { + "name": "sanders_n", + "email": "ncsander@indiana.edu" + }, + { + "name": "andrewbranch", + "email": "andrew@wheream.io" + }, + { + "name": "minestarks", + "email": "mineyalc@microsoft.com" + }, + { + "name": "rbuckton", + "email": "rbuckton@chronicles.org" + }, + { + "name": "sheetalkamat", + "email": "shkamat@microsoft.com" + }, + { + "name": "typescript-deploys", + "email": "typescript-design@microsoft.com" + }, + { + "name": "types", + "email": "ts-npm-types@microsoft.com" + } + ], + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/types-registry_0.1.622_1670717702444_0.1796127875791147" + }, + "_hasShrinkwrap": false, + "contributors": [] + }, + "0.1.623": { + "name": "types-registry", + "version": "0.1.623", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/microsoft/DefinitelyTyped-tools.git", + "directory": "packages/publisher" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "MIT", + "typesPublisherContentHash": "8dd76c0f8b565d3fadb9a73b82693cda385f27575d5cc0d4aaeb083edc86e34c", + "_id": "types-registry@0.1.623", + "dist": { + "integrity": "sha512-xs6ysBBlK39ExuYMvkmyrTGmsJUtTiE/swLg8o3ZhJF41lCF7vDBAZ+bn2nCR+12iV5Xge6MGu+v9q7nHvi1IQ==", + "shasum": "85ceab609d29b0013c8a225ad32f3acbaa836307", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.623.tgz", + "fileCount": 4, + "unpackedSize": 1562482, + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIQCpNJBFie7q/jxhp4iOA634Gqv8a9/P6WQOc4m1useKjQIgeb7Qc1DBtotZA5DtBgH/XGYt2tufXmIehXznX8htz0I=" + } + ], + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjnlvPACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2Vmq+yw/8CU2s/GktiNh3yZM+pfkrHMvZEuYsZWC9w5/Vamr6KbPx7m0W\r\nETLsSOtVmbh0h5wYU+xJ7odZSjAEe4plJfd4O2q5ILl0jw0RPUY/NUFbeZdl\r\n/rGBZgCjv9ahIi7doXFMA74hPP3rf29uQ9Bitrg2riVs6AE3JxJZFYtCZOGv\r\ntVu7687l/ZBI6X8bkxQqePn7gCfbxqQ92XoVh6w6FtYl03J7c/23972E7rQW\r\nnU93j3+s0xMYhhdLOhIIhkbumMzDgNi97IrqxegueSF3BXO39cxdG+IdRJaz\r\nVK8lB0NbgDh9RSq9TcI1my5zqkatkgwvOu3GNM7dlz4ocCPRn3/GxbqJz+5G\r\nzqUh8Z0KNlvoM6d4IIQZeKIimpfRAqEsusrNbe4WayO8t7BFYI78C103//nf\r\nItr4gjIvfMsrkbs65AREsRZY3clxW6jqk5y0nYRXnmMDsB+p1zyhTnb/WLKY\r\nO4GhYaXhFc196HeQgim7xGJMAmN0u4R3l2lj+kx74uhyVQ4v3ieEMxnG6Gtu\r\n5ez987bHRqeFFLm6u30QX1QQF0d3ps4WU/9dXqTK3gsjpV2Miq2/PVinVAJu\r\n+EZfWfbqf6sbcI5jBvVFLU+MytvJ6bQHxRRimoadOTRyImbfQgpVXa+iPN1o\r\nbx9X9rQ1kgK7IZoG9yFIBaAk1IZ1HSYQugg=\r\n=Wjma\r\n-----END PGP SIGNATURE-----\r\n" + }, + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "directories": {}, + "maintainers": [ + { + "name": "typescript-bot", + "email": "typescript@microsoft.com" + }, + { + "name": "weswigham", + "email": "wwigham@gmail.com" + }, + { + "name": "sanders_n", + "email": "ncsander@indiana.edu" + }, + { + "name": "andrewbranch", + "email": "andrew@wheream.io" + }, + { + "name": "minestarks", + "email": "mineyalc@microsoft.com" + }, + { + "name": "rbuckton", + "email": "rbuckton@chronicles.org" + }, + { + "name": "sheetalkamat", + "email": "shkamat@microsoft.com" + }, + { + "name": "typescript-deploys", + "email": "typescript-design@microsoft.com" + }, + { + "name": "types", + "email": "ts-npm-types@microsoft.com" + } + ], + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/types-registry_0.1.623_1671322575352_0.17423139371269625" + }, + "_hasShrinkwrap": false, + "contributors": [] + }, + "0.1.624": { + "name": "types-registry", + "version": "0.1.624", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/microsoft/DefinitelyTyped-tools.git", + "directory": "packages/publisher" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "MIT", + "typesPublisherContentHash": "a559a52a2635e774760cbbebb5cd10504d2d9ee7a040c28cd118f250fc345add", + "_id": "types-registry@0.1.624", + "dist": { + "integrity": "sha512-qOpo9hh3Raa5RTkAe041bhYLYRNU3vbL8oa/JMdRqb01HnCnPdynJI/EjsBAvIjPEOZkv/KCNrcszROhlEgGeg==", + "shasum": "f5df0d23181606199389aea4418b577a5139fde4", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.624.tgz", + "fileCount": 4, + "unpackedSize": 1564214, + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIH3SnICTGwI7k4AdRC+vM92kZoO2RHS4suwREY+8qDpmAiEAuutJ3SHfsOn9Ms/gZyhOQyiwV8FyR7EBdKGvo8+T7G4=" + } + ], + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjp5WaACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2Vmp+sRAAhDeNR/F5IhVQMi9EvKDbeSL1U50Au/A2sexNGAxgvt4abfdR\r\nEsCXtcIghtk7/kMB0egLia0Ds86RqIRjGejJkmzIHKrIDxo07ZIG2+ceHGpP\r\nQLTbwFqaayV5rPiGsuVZKdKc84uGCvDUXxEVVURbIeXRfVKUVoLL1LFfwbzC\r\nuvTuHWcRv5oocaGcgszw2lxdNu09bGvGrkb4iFR/FC+7iJqVUlQDz+YAezNW\r\njdha+eClCStvuIjLxHSTdIr1z8HmXgC3l+lAzIsSf6StP4L8GjlbsFvEgDSm\r\nxKybPhi/GyUVsrboBEF8Rc5v2aXfgzOCB+0T9j/CQQRP5u2EqECKZV45BRyu\r\n1IZW0xxij/sjnEfvLP4zowaoY4u63kLSzf0TuP1SkCllRMCO72Qz1K3dhykx\r\nAAv2irb7fIKB1eEvxS0ALp5MpWAqi0K2frKqJNMfK71lVQ0j9IXhStMhnvrn\r\n7G9r49MN4cn5ZKWRPk0gaTPlbz4g4A7SAJCwng+aVMN48h9UGLFBzFKVYc6V\r\nJKfNmjlLru10hspJRESsgP0Dtq31aZa9rik8WUXG+93KDYCp398Ns5UNexsm\r\n4Sr/sP2JD+uly4EikIm59WnhUdFMBckuLrVTfEm6dPjcOGOxlI41PtTVAAiY\r\n/kM5cefcdiVNGHxAeIx4BIHuY/EMc334FCM=\r\n=c60C\r\n-----END PGP SIGNATURE-----\r\n" + }, + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "directories": {}, + "maintainers": [ + { + "name": "typescript-bot", + "email": "typescript@microsoft.com" + }, + { + "name": "weswigham", + "email": "wwigham@gmail.com" + }, + { + "name": "sanders_n", + "email": "ncsander@indiana.edu" + }, + { + "name": "andrewbranch", + "email": "andrew@wheream.io" + }, + { + "name": "minestarks", + "email": "mineyalc@microsoft.com" + }, + { + "name": "rbuckton", + "email": "rbuckton@chronicles.org" + }, + { + "name": "sheetalkamat", + "email": "shkamat@microsoft.com" + }, + { + "name": "typescript-deploys", + "email": "typescript-design@microsoft.com" + }, + { + "name": "types", + "email": "ts-npm-types@microsoft.com" + } + ], + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/types-registry_0.1.624_1671927194472_0.745968530131299" + }, + "_hasShrinkwrap": false, + "contributors": [] + }, + "0.1.625": { + "name": "types-registry", + "version": "0.1.625", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/microsoft/DefinitelyTyped-tools.git", + "directory": "packages/publisher" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "MIT", + "typesPublisherContentHash": "a3d4c20e3d9f11cd4f08cbbb450d799f0047578c965e85dac248e002f60bd759", + "_id": "types-registry@0.1.625", + "dist": { + "integrity": "sha512-cW4QCd+EYj+Fx7j7q/DdFpXR+jIN/JcpZFHLtXMjbtVuaq/q32HBB3X3dLUoH9LIvzzv2DUiPSLxczijXrfK0A==", + "shasum": "23451fa238ba34729f9ee5045c7d36776781a083", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.625.tgz", + "fileCount": 4, + "unpackedSize": 1576628, + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIA0NOMiS2k3T8mdUqr+cPQLsIqbuiLNH5x+jCCm6xltjAiEA+5PEjLI6WyQ30orayx3iXdSu2siyTKZXjVXgD0pxpNk=" + } + ], + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjsNDMACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmoPwQ/+KYKtuqowrDGpZg3vatJU42OlwPOXKcIAqrDuMXTcNL3tDF/U\r\nRABIHb8zzgplNX61+FiaKqYj6+utye6QDwOVMZ5GavnOwDkLSaUMg5FpxDRu\r\nklRx/bftYCjiCC/dqNtgBV+wGz3NJerQOYOIOo4T7hZAQKDeUj2YLgu9C28N\r\nICplYjfZAWFmVrUVGuIBU8FE2CbLMfCC/pwrvfuVknYUns6ti9sJ1EwqxA/e\r\nPVmTan7Pm8B7IBfczrep321ueuXqdOB2A02q1+yo0jeXPjqrhp1xUn9LIu62\r\nsEWP7LN7XAYiAbl/AxP4OlMVJ0SndOZav+azaRXHfue1NN0nHHkkBoBREHQE\r\nrRR3Q1Rgnzx+e3+xFNcPzkZLL5nGUqXW0WcjWFw23yNkawFUVvq8ZoxvpUxI\r\n5oGFJ6f8Sx5JOSWz9UWVj+dhPVkqeV7m0uA62qTN9htjBDT9LFhiI70I830u\r\n7rQ2gTlDroNBOvHk9stzfpaNA215r1pjGI8q+6EJOl6TjO3rPYS45aBjtbcT\r\nPIVc8PNCgF9+CwxgQiENbM8bhBB6DlOqBFm5fcn9sQKTklbGzyT2KpQld4cv\r\n8thzD2ZVKJbrihssjQbO+D6wxgbn13L+EF40qHIenfLJ4cOrU9WaCH0+MT7Y\r\nR4BYcvwZ/YgB7lxwFZJ2tvNXZxgD9bn5XOk=\r\n=kCYP\r\n-----END PGP SIGNATURE-----\r\n" + }, + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "directories": {}, + "maintainers": [ + { + "name": "typescript-bot", + "email": "typescript@microsoft.com" + }, + { + "name": "weswigham", + "email": "wwigham@gmail.com" + }, + { + "name": "sanders_n", + "email": "ncsander@indiana.edu" + }, + { + "name": "andrewbranch", + "email": "andrew@wheream.io" + }, + { + "name": "minestarks", + "email": "mineyalc@microsoft.com" + }, + { + "name": "rbuckton", + "email": "rbuckton@chronicles.org" + }, + { + "name": "sheetalkamat", + "email": "shkamat@microsoft.com" + }, + { + "name": "typescript-deploys", + "email": "typescript-design@microsoft.com" + }, + { + "name": "types", + "email": "ts-npm-types@microsoft.com" + } + ], + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/types-registry_0.1.625_1672532171994_0.7622021514754229" + }, + "_hasShrinkwrap": false, + "contributors": [] + }, + "0.1.626": { + "name": "types-registry", + "version": "0.1.626", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/microsoft/DefinitelyTyped-tools.git", + "directory": "packages/publisher" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "MIT", + "typesPublisherContentHash": "520adc4564787d6df25bf475235e91ce6c0c00bddd08b51384eddce82a8e2de2", + "_id": "types-registry@0.1.626", + "dist": { + "integrity": "sha512-DTaFLpXrkSWCAdEmHx+MGDcGF8eXp4MMAKFsPUVhIWKU1JPWvhOZHClf90hdLUwMl1IFlKioBpbcmfdEko5UCQ==", + "shasum": "1c15e6f39bb3616667dfc46c50b5789e7196bd00", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.626.tgz", + "fileCount": 4, + "unpackedSize": 1575232, + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEQCIDTQKUZd29pUYA9BHguTuJeyMwxGwgytibnS/D26XZaiAiAGKocvOuacoTLvetWaY3PoTEJ6cTKYx/LeYb6zStus+w==" + } + ], + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjugrzACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmqrLw//SpDE03Fk0730HvPBpNmoEfKrwTK02ZkcOcMn643C4gAu3wR1\r\nLCokBP0cWAeDKxOzLViXVHUCGjRr1gwh2LbS4OhSlC56etVG6CYSkQ+6Sn7b\r\nQoQk1Vecmb4v89RJ1lpPttq01krDmfKa8L1iFDTh+9MIcHQuOOMFJ+aeBQep\r\nxP6SPqZKIQND+gchFM14IALV8Sb8ZHSQdHlUsbme9esvigGa1dVZ4iRy8p09\r\n9W7B33zRtw9rcrhwP2qaTbYongB+TXutz/dELdd3RuMlsOhvOsL9+XpTn+V6\r\nDHpLHt6FYdZhoYYwmVUM64sOeNnGQw1f6838oXXtD5yRKB9OaEt4bdwMTeim\r\nDlQ5fRFngmGNqGkbgk8p7h+zopktGX5xpwyLiABPuv4xGx2vDkb7B0l958Wg\r\nlvgJxB2gC1JCupyDCdgZSEWquGRMR3liM4Gi2BNqbdYvgaBOKW4rRm8WsSTJ\r\n79EnkJYHw30xpUt+PxzF7wWxdydDJ1hM2IJHNwmjmg2/2FKu+QXeKPgcbpfG\r\ngFqWkdyF309cMJPK3nBEFG4ezOdc82CRRGHMPpMNNwnnFjL8rhwgPlC4+0VT\r\nAYTzBz6Rn0MDlfVw+mLm9P8ujVcFz5Gk4mm0Rrkm2Z7mLCWm2z55qLf/oouu\r\nx2Y9TbPHKFSqZXPgJYL9ACKDFa0YE0PK5fI=\r\n=ki+V\r\n-----END PGP SIGNATURE-----\r\n" + }, + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "directories": {}, + "maintainers": [ + { + "name": "typescript-bot", + "email": "typescript@microsoft.com" + }, + { + "name": "weswigham", + "email": "wwigham@gmail.com" + }, + { + "name": "sanders_n", + "email": "ncsander@indiana.edu" + }, + { + "name": "andrewbranch", + "email": "andrew@wheream.io" + }, + { + "name": "minestarks", + "email": "mineyalc@microsoft.com" + }, + { + "name": "rbuckton", + "email": "rbuckton@chronicles.org" + }, + { + "name": "sheetalkamat", + "email": "shkamat@microsoft.com" + }, + { + "name": "typescript-deploys", + "email": "typescript-design@microsoft.com" + }, + { + "name": "types", + "email": "ts-npm-types@microsoft.com" + } + ], + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/types-registry_0.1.626_1673136883265_0.5152132784574097" + }, + "_hasShrinkwrap": false, + "contributors": [] + }, + "0.1.627": { + "name": "types-registry", + "version": "0.1.627", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/microsoft/DefinitelyTyped-tools.git", + "directory": "packages/publisher" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "MIT", + "typesPublisherContentHash": "cc228968d85de20ad2ab6a1f16e1c3b5b2899546bce165bd8ea79c0468e4ea55", + "_id": "types-registry@0.1.627", + "dist": { + "integrity": "sha512-jYGMKg9qG8oUVG0eeFZ6pX1bckL16gfPz5xok+vxuS9TTw9yu8/CCCWSmz6eeNnvNfSD0pk8OMAIvmwrVjAi0g==", + "shasum": "fb1ac7681d865d0dc5f0a2ae5696a4a6b8aa7e05", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.627.tgz", + "fileCount": 4, + "unpackedSize": 1576582, + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEYCIQD/ZSsgCLS6t6p0Z0cj6Cp9y9wQQ75j31RQtNjJlfcOIQIhAM4wS2lFYru1abPf9vi7qhOiCVAmUTIEoVFeqJwCUbIA" + } + ], + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjw0WtACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2Vmp4Zg//Y51YqFy1wEvfLVTyBEuLGIyqa08ygDaKrmwMe0Xa8B+bRuRZ\r\nTj56ju5yaezs+tqd0Dhllp+KReIgq3HhxFfrqrJVFLYIZ8ZqowTGTS34W6V1\r\n5BFrzOcM158cP/BXSFK8m3yaAa2aeGyMv9skEhFNfTHlavs677DN8l3vU8fh\r\nyffmlMXzF8K3yIBGH6goQqjO3V6f+KxqfUq6+ccThiMvTvjgYUmkgc0DlRex\r\n84HxANMDy6xg0nsiWQ/taRuxIBcV0tJMZ4nUPOpLtcks3FopWtu3Cn+c4Xw6\r\nP54YH6jjwv+NSATegW67Gyh0oDASiw3eb2C1RNlsSU4Ic+adWvniKdzpauX0\r\nRLFo/09QZh96kpRB3Fpo9WrQNn34eNT6w0c/uUrUgKS1Xd9n6Ecu5CyFFNMf\r\nwgsC/ZIZfsqJtCmpXHeSAR95i+T+5mDt+w4+QbnYkJuqC24yV4l1yrJ2K4xx\r\nek0Tasw1RxQDz7gIHc6u6tQavzt6swHZqBjKOEH//p9cRaHbVzQ0kkHkBy//\r\nysOmGBYrbk0e6Zl7TXFrtQCyRg0sU+T3ye9L5xrWZF5h6cpeH0biH4WraGL7\r\nh4adeybP66Xx99QTvIJH1/SLGPnaDBnOxN62U/bo96R1E40wbeh7XPz1mhIO\r\nmrGS53tL2ZMjMQQ78akPdOn5fFuKKkEmGkk=\r\n=CeYI\r\n-----END PGP SIGNATURE-----\r\n" + }, + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "directories": {}, + "maintainers": [ + { + "name": "typescript-bot", + "email": "typescript@microsoft.com" + }, + { + "name": "weswigham", + "email": "wwigham@gmail.com" + }, + { + "name": "sanders_n", + "email": "ncsander@indiana.edu" + }, + { + "name": "andrewbranch", + "email": "andrew@wheream.io" + }, + { + "name": "minestarks", + "email": "mineyalc@microsoft.com" + }, + { + "name": "rbuckton", + "email": "rbuckton@chronicles.org" + }, + { + "name": "sheetalkamat", + "email": "shkamat@microsoft.com" + }, + { + "name": "typescript-deploys", + "email": "typescript-design@microsoft.com" + }, + { + "name": "types", + "email": "ts-npm-types@microsoft.com" + } + ], + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/types-registry_0.1.627_1673741741618_0.4255843687908927" + }, + "_hasShrinkwrap": false, + "contributors": [] + }, + "0.1.628": { + "name": "types-registry", + "version": "0.1.628", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/microsoft/DefinitelyTyped-tools.git", + "directory": "packages/publisher" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "MIT", + "typesPublisherContentHash": "a27c390a3c112745acce144c4a9c1c609b3111bad2a9442927ade97963721023", + "_id": "types-registry@0.1.628", + "dist": { + "integrity": "sha512-NMWVupPmfQRnmeU8KVIePbYvn/1MEOoDeDzBC+uuKTG4z8b6F9ehOdUK5A8Uy00Ui8yrLr/YsDheKE5X/bSWpQ==", + "shasum": "6e415ed3c61da3f5c58f84b8c4e5ca6259d6f4bb", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.628.tgz", + "fileCount": 4, + "unpackedSize": 1578345, + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEQCICIpdWGH9QukukXMThrUcERdGQX8h1+uRn+Og/p5vKYuAiAtfy1zLV9952qaSfTbfUgJrENDa4fSxeCxjOvUivVtDA==" + } + ], + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjzH9XACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmorIg/7BwMxpfYQtE7CZfkYMCt2+t13gXFHuezrQmxQbRmmpRS8SYjw\r\nWK7sSTV/kxNFuEDGPfChhxeeu7vG4qWOpjvZaf8SryU6xRtiqyh9Exg7b8bL\r\nkz2kXlAhWoxodVz/hg/bK6gkNY1C4zbZMogNV0y8gVpYW0P0Bm6uuDboSmy0\r\n0SQ7N0BSbwXWrxV4EjP7oa1UitiQ0y+0nWewSVptwIsyKy3X1bnnR9B4A3nd\r\n+k77bmeITh2ou6fjzhsIsqODmE0Iepp9/sP+5Sv9XM412HPOSaNfyyvsQaHW\r\nqof7ZYndurVki2Lnr5zZ1TSzimgABJ3RkCytV1CcPHZCd4zZvbAlLXXaWs3h\r\nBKBqRQFP08IFYuT6n/m3rtxU9l0lKzgzu8NA1mFIKNUObBLojd7Nl+fh9syf\r\ngp/2hjnu8pYWUGPUjQEb8F+YVGPaCZXsdKzAdeMQ7vfy+p0L/FP36TJmMVOb\r\nO2z6foNs5POUPMWMkEOjrFjs5c4JT3yBHFC6Vl/pmnLTwKzid/beCrRenJsn\r\nN1oeVxBKnaoptiqot7q8+1rfK0q8pTV9yccJ3aH8io28QUlKqjSc83iEPu9f\r\nXqpDTwckor4Er2Yv9oY+c4axEPXYZEnLNR5lh9DDK15QNQYOPIaYbUDM5Zsi\r\nq5D7XOZ4zJsgljXV+zqMXKY6HsdMdi456ac=\r\n=n08C\r\n-----END PGP SIGNATURE-----\r\n" + }, + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "directories": {}, + "maintainers": [ + { + "name": "typescript-bot", + "email": "typescript@microsoft.com" + }, + { + "name": "weswigham", + "email": "wwigham@gmail.com" + }, + { + "name": "sanders_n", + "email": "ncsander@indiana.edu" + }, + { + "name": "andrewbranch", + "email": "andrew@wheream.io" + }, + { + "name": "minestarks", + "email": "mineyalc@microsoft.com" + }, + { + "name": "rbuckton", + "email": "rbuckton@chronicles.org" + }, + { + "name": "sheetalkamat", + "email": "shkamat@microsoft.com" + }, + { + "name": "typescript-deploys", + "email": "typescript-design@microsoft.com" + }, + { + "name": "types", + "email": "ts-npm-types@microsoft.com" + } + ], + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/types-registry_0.1.628_1674346327777_0.7787119921519601" + }, + "_hasShrinkwrap": false, + "contributors": [] + }, + "0.1.629": { + "name": "types-registry", + "version": "0.1.629", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/microsoft/DefinitelyTyped-tools.git", + "directory": "packages/publisher" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "MIT", + "typesPublisherContentHash": "990606d4c46b725f382843e620f082d84d60ef3271bb6703325f8c309ce11bf2", + "_id": "types-registry@0.1.629", + "dist": { + "integrity": "sha512-EZL7s1fzw3r6y+kEIsQeNBZ70nifVRUOecxfql9qDybjJFEjygF56h3PeCc7F4nz3rGCAI3Kky2znBbE3QohyQ==", + "shasum": "d49938b8b96fc2b50ed9a471c1a83628b8f7e84a", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.629.tgz", + "fileCount": 4, + "unpackedSize": 1581249, + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIQCJclDhgisxIFhC6A19wpGF6xJu+YAYeENei0h9bf4MIQIge4mlIN2UFhPJp6ZpsZ2SdPH4I/rheO5xK7Vvqbuw1C0=" + } + ], + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJj1bq4ACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2Vmq/RhAAjUi0U3s1StZ+mDofLLnbOPwMvo9dwrSvWx4Bhka3v5MUSqlc\r\nRL5ij7OoOq3lXZr91n6hFTe4AayD0Z2I1xWN6TSTGiXlfDfo76sBQ71RO9mx\r\n/YYcN4sM3e0Rng8Gga2DHBzktUs7zC1gJ1Wd7fK2gZ9akyyrkCgm4zV8jzT3\r\nxEbSTv8um1FZTp/7ZpYtCkEINY7C5GsYl1eprSfR5NH+hSZ8C4ZSvDF+eiji\r\nO+BYj1f44aoXN+v0+E7C37G9LTWwTMvqlRsmXlRJFES4Q45JybBdL4krfXBl\r\nJf1gEF3JD+Yvnm4FX57uDsqLkJNNj01HDqvbPPCl69hzTSwY6plpJ2diaSqO\r\n2tJAkb/fqt5fxNj7GvS2/GSc8U1TTQ0cvOizDp5NOGPduWck68NwnzCSoqqd\r\noGM4veIduNclwZXhbcN9yKIXNOKpKMpv6PI/YIlcHeirudvxLmh9m3pt4JoM\r\nYlIj2o4POj+TvK8rhwnY4Yh/OElR0x4d8oapF+z1qOtGU9+xEDFtw5npniRt\r\nijXN7YuDCY9AEtvKFC1d0KPZ0BEFAKlBlLajew879RA7oQP/hEdVSiRLhjup\r\nL4d3rGdOKrRmd0Mx1/y02FjgGIQDyOtSYcs03BdRpnh8LBg0dLhmbm7fCstk\r\nGn5Um81TAUupGRncLyK0wpZgZu83g9NwAm0=\r\n=Dq+m\r\n-----END PGP SIGNATURE-----\r\n" + }, + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "directories": {}, + "maintainers": [ + { + "name": "typescript-bot", + "email": "typescript@microsoft.com" + }, + { + "name": "weswigham", + "email": "wwigham@gmail.com" + }, + { + "name": "sanders_n", + "email": "ncsander@indiana.edu" + }, + { + "name": "andrewbranch", + "email": "andrew@wheream.io" + }, + { + "name": "minestarks", + "email": "mineyalc@microsoft.com" + }, + { + "name": "rbuckton", + "email": "rbuckton@chronicles.org" + }, + { + "name": "sheetalkamat", + "email": "shkamat@microsoft.com" + }, + { + "name": "typescript-deploys", + "email": "typescript-design@microsoft.com" + }, + { + "name": "types", + "email": "ts-npm-types@microsoft.com" + } + ], + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/types-registry_0.1.629_1674951352198_0.026464716442336167" + }, + "_hasShrinkwrap": false, + "contributors": [] + }, + "0.1.630": { + "name": "types-registry", + "version": "0.1.630", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/microsoft/DefinitelyTyped-tools.git", + "directory": "packages/publisher" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "MIT", + "typesPublisherContentHash": "6bbbf70aec4932d599aca1d9b08e41a22883b52148f35a2f6a78ba24ea0dd76d", + "_id": "types-registry@0.1.630", + "dist": { + "integrity": "sha512-XCXLCjPtSsQR2ZpY/IbXr4Psyaq1c7vXXQtTtXkRwThAkUcc+MZ8FAh5XmrsK9NGtWqwMlM1DLVg1GG7nd4eyw==", + "shasum": "7c61e583a946749e4f2b7db86fdadf30214eee2a", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.630.tgz", + "fileCount": 4, + "unpackedSize": 1582843, + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEQCIFAWToc087MuWIqnwaHYfMj8PMkzmXZx7r84HbBFJ/bkAiAFI40UYO8V2dnQLlRT1IeTXNPCAuRr9+mZTVKpoN9Dxw==" + } + ], + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJj3vR2ACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2Vmohkw//cikQIXNrBw3ovsxiF4Ai9on9PFJFUxzfnuXrecFI5EfrZYAd\r\nD77RCvNvvuMkSpdg+f+R6mmnR+edpkJwIL8L6Bg3HfWa9/bN9gjc+b84ETgg\r\nLSNVq/yifnO7kQSsveDWDDqH8nDae7SwOl1+iD7dCd6SE2j/9JzVMcohLE9N\r\nmTUjTlCqm3UV+amMl/NZm262N021mtYe75A7/IyWCT+HrdPdVvyt1YopdHYZ\r\nlbcVjxK3smI3FG7Fv1Qaji8k+eL80W+G1od+bMvfCkRBEX+GfX1xO0bB1spB\r\nRQFo4mhzOm+tF3xPPlZU8uTYYh40eMZNe9CNZGhC8FBOQnrLbqzZYJzZFjkK\r\nqUbyK8ixvaHcZpjpob+4FRMPIgRwZS/2KDCiYKofvx/FfG9i8ctCq0VD3va9\r\nVg4Q51FOMKwPcAIb72UBVstiChq9uOUxIMXMkh3W87gtIiPJLU9B8og1bVMY\r\nymXGSghF4LCp0SXbokCOA81XDLLfJMkLgYqT9GRlOFtvrV1KY1e9De7JBSAW\r\nX9BLxXrXS17U0LwFUXHH1eHzOyYvkotndOIX1+4KnZf4byJIfGkspFgX43hS\r\nyevz1xlU6tF9mtcQHlMGWQeSSJtPJWhsCGDQruAY7QeEW6LpHgm7hK0hRuBo\r\nLQxTs9x5V1nnfwkvW42pwJEZkCzbhoHFhCI=\r\n=5dwp\r\n-----END PGP SIGNATURE-----\r\n" + }, + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "directories": {}, + "maintainers": [ + { + "name": "typescript-bot", + "email": "typescript@microsoft.com" + }, + { + "name": "weswigham", + "email": "wwigham@gmail.com" + }, + { + "name": "sanders_n", + "email": "ncsander@indiana.edu" + }, + { + "name": "andrewbranch", + "email": "andrew@wheream.io" + }, + { + "name": "minestarks", + "email": "mineyalc@microsoft.com" + }, + { + "name": "rbuckton", + "email": "rbuckton@chronicles.org" + }, + { + "name": "sheetalkamat", + "email": "shkamat@microsoft.com" + }, + { + "name": "typescript-deploys", + "email": "typescript-design@microsoft.com" + }, + { + "name": "types", + "email": "ts-npm-types@microsoft.com" + } + ], + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/types-registry_0.1.630_1675555958003_0.44368879149922735" + }, + "_hasShrinkwrap": false, + "contributors": [] + }, + "0.1.631": { + "name": "types-registry", + "version": "0.1.631", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/microsoft/DefinitelyTyped-tools.git", + "directory": "packages/publisher" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "MIT", + "typesPublisherContentHash": "a1e151c3c33a418e8b81d4b9c8cbeeb8cbc9c1fc575db7a2932a83f9d862e430", + "_id": "types-registry@0.1.631", + "dist": { + "integrity": "sha512-ngD25rzFR5ST85Mw3IkU3hJmYC8QqU9Zy/FDm/hxxRRrsz7QRoqffPKlU8sHBYydRcIaM8C1PlKJGPXew4SMJA==", + "shasum": "3979d1cb96ac186c9ed38c8b64fc107d4d78c6a2", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.631.tgz", + "fileCount": 4, + "unpackedSize": 1584090, + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIQCTafPD3p0c98yRLuWBbgxk/iYACMpd+VDiQ1tPj6GJPAIgSW6WG+ud+94JNbTAT4+AHjKrtgWtvD2easkbDR1puvI=" + } + ], + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJj6C8PACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmpRzA/8DFsjWEEKJ5L1yMLibw5WMQbiUcEoUgilWRSD7F8ov6/tWvvQ\r\nr6bBof8J8rRvfmCJc+5hCup4QU9kXYUBvKSqcOXedJ0JehJZokEDKMiBfqWL\r\nUCOnUhCEJ7yv5+KVvPtF9unKFtP/0bySRm9/IrzXJGNWm+WZJo3WrcInWLht\r\nI2sSPifUXMihvcqX4jA4KiCZwrssPtIZhAQ7RtUwIUCTADMIitHyC9N+lhwH\r\nG3lSv52/sZ+IGRUUX5K13ry/HeU6rPkwK5hO+vNyjOLHPIc1WrJYCcnFs6Rd\r\n8w1Q6+DbKynSUgUWK2KN60dGaGqHyy8GP6br8I8ohZ0au0dmHeoSDOWX5dGy\r\nnSntVyI/tG9L5q4koSTeFjKotJlwE8aS9JRilWeLW9bQFL07GSN6LNw/jmLv\r\nInkNMtLKfRiEkNVmEUPkM3iK0rD6OHK66PMSoue2y6xnIE46Hniq62s7jQu8\r\ndNzYPgdp/JmKOlhkSVTXM7aZJae4qc7ZF6R2IavIRBRAMPvu2CaEOTM1t0id\r\nIPRGptQpsDeEtR/cbM4y7eddhy0wAE/9o6Peh59d2fb388QQDTp70/IBqnRP\r\nga4pc5RlBvJTFF6ElhMBqzvgEQbZK0Uol3TsAdCAAVyiNyYWfXQJqMIMZC7e\r\n7xmtkZaf9968DMr3qbI4PYM6b67F9AEsxgA=\r\n=5PVf\r\n-----END PGP SIGNATURE-----\r\n" + }, + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "directories": {}, + "maintainers": [ + { + "name": "typescript-bot", + "email": "typescript@microsoft.com" + }, + { + "name": "weswigham", + "email": "wwigham@gmail.com" + }, + { + "name": "sanders_n", + "email": "ncsander@indiana.edu" + }, + { + "name": "andrewbranch", + "email": "andrew@wheream.io" + }, + { + "name": "minestarks", + "email": "mineyalc@microsoft.com" + }, + { + "name": "rbuckton", + "email": "rbuckton@chronicles.org" + }, + { + "name": "sheetalkamat", + "email": "shkamat@microsoft.com" + }, + { + "name": "typescript-deploys", + "email": "typescript-design@microsoft.com" + }, + { + "name": "types", + "email": "ts-npm-types@microsoft.com" + } + ], + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/types-registry_0.1.631_1676160782907_0.3060231274846543" + }, + "_hasShrinkwrap": false, + "contributors": [] + }, + "0.1.632": { + "name": "types-registry", + "version": "0.1.632", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/microsoft/DefinitelyTyped-tools.git", + "directory": "packages/publisher" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "MIT", + "typesPublisherContentHash": "54c861f7f7a809419f7fe85b6fe09ea4cfa2c4018ac32eed9f193949e7953953", + "_id": "types-registry@0.1.632", + "dist": { + "integrity": "sha512-AaFF7BOAzyCeCZQmPdl0HN3TVIw8WdMooMm86LsC+Sz3sFsxK/nUctDGFy0U9AlZMiZtIKiLU9w25IoF4n7dLw==", + "shasum": "39240c76b1652c318c7d38cfba9c77faaff29764", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.632.tgz", + "fileCount": 4, + "unpackedSize": 1600355, + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEYCIQC9x+pknhKX/4Sxab57ASVglknx8+eYpje7qbFPHQUTuAIhAJgoMeqBJNzQDOSeMiJNt0ZUfPyaG8RAnND5UhkLj81B" + } + ], + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJj8WoQACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2Vmr+vRAAjjahYQVKHegsYA+LUXVS+zbe+L6N3EmONYf1Xeoz/vov20LQ\r\n/jMySmGwCNWYpfg+P2pCd00eJqJx+oNY9Gp/PINn9FT5HLVVS+E4NWw3M6uI\r\nqx2FFczbKvYDrF2PauHbdTqpPR2WfsnbwDoceOaOeadUPnAF/Vt76GUyw+o3\r\ney3yQfkSxbT7ADi/MZJ8EcwKBbsCmtrx1drUJfk/7ZJ3nhY82j23MxyJxeCE\r\nHQPrBTlcA1m4TLs1B3q0q2xgLAzOeKLkUPInVwjNWxmhU3kurzECktE5swxe\r\nEx3nygJ8mmk2HRV/2NnGSqh1yPERe1ckrsjcXaQ+8wlnAdIJyIO2ffW3JEIi\r\n/CC2fdAJrKP3v8ZZOMSwRVq7p7zkWWiz7kEZfSdeaM0Zt4X7E2vk/9NZODfm\r\nSD7jjk6Gegm35xc8X6YMtiuPDS2zNXlhPdkmwMoMqRnxkD8X5gWdFiaSxAfW\r\n66l4ADKTuVAC00BzqfrLrVDgEQ+mSIPcjkqAoUlonrAt1pjh2qu3weMMxZqN\r\nM7JN8LDXpE7pp4l1CgXBhXf6iObpvk4SBnGgX0VjkIyItNzM2RSzqLuv1iie\r\nNBJ0mVVdD0IG6TccCe5eN4sZqdKJm7qWPAKMPsXBsu6sylqWJESgUcA5gMZX\r\n7OsdwxECxfrx1STjPl3SE6fmcWKyYNIQSzM=\r\n=EFC+\r\n-----END PGP SIGNATURE-----\r\n" + }, + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "directories": {}, + "maintainers": [ + { + "name": "typescript-bot", + "email": "typescript@microsoft.com" + }, + { + "name": "weswigham", + "email": "wwigham@gmail.com" + }, + { + "name": "sanders_n", + "email": "ncsander@indiana.edu" + }, + { + "name": "andrewbranch", + "email": "andrew@wheream.io" + }, + { + "name": "minestarks", + "email": "mineyalc@microsoft.com" + }, + { + "name": "rbuckton", + "email": "rbuckton@chronicles.org" + }, + { + "name": "sheetalkamat", + "email": "shkamat@microsoft.com" + }, + { + "name": "typescript-deploys", + "email": "typescript-design@microsoft.com" + }, + { + "name": "types", + "email": "ts-npm-types@microsoft.com" + } + ], + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/types-registry_0.1.632_1676765711974_0.5441412846674689" + }, + "_hasShrinkwrap": false, + "contributors": [] + }, + "0.1.633": { + "name": "types-registry", + "version": "0.1.633", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/microsoft/DefinitelyTyped-tools.git", + "directory": "packages/publisher" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "MIT", + "typesPublisherContentHash": "ab31a6867a4f5cb1f32399ed74fc34d28e019ac6d056253889dc52a2285f504c", + "_id": "types-registry@0.1.633", + "dist": { + "integrity": "sha512-9wJ35Z4MwyE5B9IqS0rPDTotLlXLk+qQRReFahw3v+iVB8HGR8V5/6YYNG2mpIz00nhauJKI3QESVKVVBJrHvA==", + "shasum": "91fd858ba204806d4ae7fc6f63ed28dbce5a3107", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.633.tgz", + "fileCount": 4, + "unpackedSize": 1601926, + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEQCIH1BbLKCjjy/Li9BDoVxdkl5yWYhvufZXuYfM/aTw323AiAIv1dhj9vpcqiXzOnLaC8tbPI3AUhQYoFu6MX5tLyz2Q==" + } + ], + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJj+qPhACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2Vmp+Qg/+KVX+biJIMfO0QeSF+yFlFbYlKoRW6CbYgTW2NGjAmMA4wY/t\r\nowYYi2SkZXZ6rSSXiP13w36Vomwc+HgnhYafbvd4nOzxoFFm55BTe+mJ2+tq\r\n7RyoMZj855ItCX0YIxFQbRX1PE1ia03PnMnRg+YTBow6ExSmm9+Kikc0p+9W\r\nZJkcdNHO2UTc5V4VCjJ0lW5BtnPYLWQ/pwvIMr5jR00lC1AUIWPDDuZwFzDD\r\ngZpsbkW9QkNiZKkLrpclsvwDHZM6glflC5TjWTqbOJ7JyRqXWzI8J74XH67x\r\ngBgFkfi1Nr5Nv5dPSP7BpDcq9BH8h3ofE26ZjicXQbMDrWPp1WuQYqHp3bcN\r\nqm6HdlsJ6HR8MVpn17Z659t2FE8D12oX/w4GgXmaWKCiceYR5P+fhBqRaRvr\r\niaqIij4+lNfG+Vs2Zjd7SAP8Z73XkEA6f5Dc2BxnZBK7cInECe4zRBA6aTIs\r\ntg+QPbMSjY7OXobGTsCAHOeR4/O3p7PqVJ170v37c6rfzjUZ/uk6ciCsB/RB\r\nrsasU6epdxMpNQsOLl2SAXp3+9vH2YdIh3wf5zwFcLlLvZ5eCR5lp5Eh6KYH\r\nhgD5+f7lEzfhiJcViisNdLB7zTcIlSuc8oO46TVlqrVEB0llOnCoeNVG47x/\r\nTrOJhfGcHiZlOaMmwZ04QF4NYQHtNtiufKk=\r\n=tRwb\r\n-----END PGP SIGNATURE-----\r\n" + }, + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "directories": {}, + "maintainers": [ + { + "name": "typescript-bot", + "email": "typescript@microsoft.com" + }, + { + "name": "weswigham", + "email": "wwigham@gmail.com" + }, + { + "name": "sanders_n", + "email": "ncsander@indiana.edu" + }, + { + "name": "andrewbranch", + "email": "andrew@wheream.io" + }, + { + "name": "minestarks", + "email": "mineyalc@microsoft.com" + }, + { + "name": "rbuckton", + "email": "rbuckton@chronicles.org" + }, + { + "name": "sheetalkamat", + "email": "shkamat@microsoft.com" + }, + { + "name": "typescript-deploys", + "email": "typescript-design@microsoft.com" + }, + { + "name": "types", + "email": "ts-npm-types@microsoft.com" + } + ], + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/types-registry_0.1.633_1677370336753_0.5717939296706984" + }, + "_hasShrinkwrap": false, + "contributors": [] + }, + "0.1.634": { + "name": "types-registry", + "version": "0.1.634", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/microsoft/DefinitelyTyped-tools.git", + "directory": "packages/publisher" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "MIT", + "typesPublisherContentHash": "247b64768177a5d1bb5caddc9ce00feccbc7911cd9aac50510b2e73e76b0171e", + "_id": "types-registry@0.1.634", + "dist": { + "integrity": "sha512-gg6ZQXRUJ7xhnwHGyWkvZMIHckD5TVk30VWfO/7szIqJ1xBWHews2YhwaEXBhcYebugfCE+o+JU/VTPJMdwymw==", + "shasum": "fce2192f6f21a30274f74f1c59c9cbe570d11295", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.634.tgz", + "fileCount": 4, + "unpackedSize": 1600778, + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEQCIBiJgComT2/4F5GhWDFDsqYho3khucXNZGSiQWUBEXbMAiBaQBk7i8ZpchFy/HeYBF1piWhVL1KviqCM1OOlBfeX/w==" + } + ], + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJkA98SACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmrpHw/9HKqc1LM+ycyksW8U1JK40bGgJf6rbgdqY21omfh7YTk902gU\r\nYPJf/xSSy/fB9rVfxyGSYGXtyxiyXDSWc730I4bP1R8v97C6LDlyPWQYwoYe\r\nHPt43/ed7aDn9DBHT9V/F9chdtPTDCt+hWhDLSA8kg0QrxsZaQE2Ao3M+tRV\r\nyEcFSTF51A8Y3OYM6biQ/fehAgnM1+h1nlaOSrbL+rbms+KDOym1ZPwYKpMw\r\nrzEh6FdKvragLrlYLvh0h5UT9WMMyV819vyVgorHNevVEMD9fvB2XD3N570C\r\neYGCoc+7DH+xv4PbVhTrj09HjzGwmUEj+40mMtS24k4NT/nd9Qp/pGcvUcxI\r\n/BZSusN8clInFm/OiMPAbEJSMR/84VZib1k4U7S3Y0f22Bprr5J2RxS6c2YF\r\nAESSqw4NimkVDTOc5PY2DBpLkzorI8llWfCi/ZvABFc6jtApF3Cej0XzlZFX\r\nP/8Vsu8B71ZonxpRFBJxwTOCi6LxTx935VXSrOibK4yTfVpWveBL50SvaS6p\r\nF9m0b3+T+JWhIdE4iXF/9oJGn3fHugtODxvddsyzO3CyW+JXt+IW2WpXpLJi\r\nnSxESi6mUKW5FOGAalTanlce7bhbk/RQNW7DJgSwHm2OM1Aqy2Siez4K3QTJ\r\nrXet5UcHmOy+o7tQAyxzL0+Iovp5emw/HL8=\r\n=HMhh\r\n-----END PGP SIGNATURE-----\r\n" + }, + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "directories": {}, + "maintainers": [ + { + "name": "typescript-bot", + "email": "typescript@microsoft.com" + }, + { + "name": "weswigham", + "email": "wwigham@gmail.com" + }, + { + "name": "sanders_n", + "email": "ncsander@indiana.edu" + }, + { + "name": "andrewbranch", + "email": "andrew@wheream.io" + }, + { + "name": "minestarks", + "email": "mineyalc@microsoft.com" + }, + { + "name": "rbuckton", + "email": "rbuckton@chronicles.org" + }, + { + "name": "sheetalkamat", + "email": "shkamat@microsoft.com" + }, + { + "name": "typescript-deploys", + "email": "typescript-design@microsoft.com" + }, + { + "name": "types", + "email": "ts-npm-types@microsoft.com" + } + ], + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/types-registry_0.1.634_1677975313842_0.6907828651619883" + }, + "_hasShrinkwrap": false, + "contributors": [] + }, + "0.1.635": { + "name": "types-registry", + "version": "0.1.635", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/microsoft/DefinitelyTyped-tools.git", + "directory": "packages/publisher" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "MIT", + "typesPublisherContentHash": "9258878b8a6f059abf0f41799e12dc7f4f573667f4043b9cc00f04de4bf1c3d0", + "_id": "types-registry@0.1.635", + "dist": { + "integrity": "sha512-pdqjMnmWwWa2THS13txJr51bnzJD70IPczulkyW+yB0xecCuudwRyb3/654pmSXn2SULkkuHEpJL8fsK7rASqQ==", + "shasum": "c8df00496f4785a39692512b996169f28e2f2364", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.635.tgz", + "fileCount": 4, + "unpackedSize": 1602378, + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIDk7fJp9yKuv3EQXDIlVlwqbvK55QOWLWYqDdvjukKimAiEA2HDlfgN+r07byGiD72zHbhboK+kDaupLNlgHxzpW4+Q=" + } + ], + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJkDRnOACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2Vmos0g//b+DTcDlmhwdmsKP4MKConAAE/rU97dXQ5tfrTq++5dICEjKh\r\n1rgp+waL1fTHbJDlAbLsIA3oqz6cx57t1STHmtOatsjFtbSX5Cozl/dvqA9w\r\nlOWoDzk6IL4QSTv5v6nGuBSCyYYHUWvNz6ZC73qysto8lIAR1PlTy20YfbG/\r\noBALVG4Pfnkjx4ggElxdIc7iyLonoG6kZCDP/FpFOCG2wey3+VWFL7gCtu3j\r\niqrv3M+TsvzgFV4gJhdDlOoM1LHeth4UodxGeAvzUkCiWrsYyAGSRhRs+qgS\r\n5UIrQdv2uFCcqtZNy2+YtZryfqE9dOA5z46al/7xibmVg5uIv5US67YG/FUA\r\nMzvqhthDaVWYSBlTdFGHmzA7fwroBCEzFe0IvlKFdvEoBEW6jAnHOCBeW9pC\r\nNW2ncAd5qTJ/7HA2FG2ZsA0Y+G0WQADaySolcV1b4MpyO8LhOLLrokyEHeFV\r\nGozJG95UxXENK96Icb8UVM6m7znxAe90flzFupirScze6D+y4L4yOUKjh1QL\r\nyzp7cBv5SxPw5oqg23i+C3IjPNc4qwVF26yYhfem6VNi0fyG+jZUzV7IpJxd\r\nH4TQcZJ2caKpiE6HBCt8HafBxhCcuh+RmpdEOoMO43uDnyMudosuusM5kGO8\r\n0AxCibBTGRs9fDKfxWrOuwO1NVx7xWp7tEA=\r\n=Su1g\r\n-----END PGP SIGNATURE-----\r\n" + }, + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "directories": {}, + "maintainers": [ + { + "name": "typescript-bot", + "email": "typescript@microsoft.com" + }, + { + "name": "weswigham", + "email": "wwigham@gmail.com" + }, + { + "name": "sanders_n", + "email": "ncsander@indiana.edu" + }, + { + "name": "andrewbranch", + "email": "andrew@wheream.io" + }, + { + "name": "minestarks", + "email": "mineyalc@microsoft.com" + }, + { + "name": "rbuckton", + "email": "rbuckton@chronicles.org" + }, + { + "name": "sheetalkamat", + "email": "shkamat@microsoft.com" + }, + { + "name": "typescript-deploys", + "email": "typescript-design@microsoft.com" + }, + { + "name": "types", + "email": "ts-npm-types@microsoft.com" + } + ], + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/types-registry_0.1.635_1678580174059_0.6723786891819414" + }, + "_hasShrinkwrap": false, + "contributors": [] + }, + "0.1.636": { + "name": "types-registry", + "version": "0.1.636", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/microsoft/DefinitelyTyped-tools.git", + "directory": "packages/publisher" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "MIT", + "typesPublisherContentHash": "23aa41e9ca7f1998c18abaa17c8747a59403e42654daf748aa4c7a612cd9919c", + "_id": "types-registry@0.1.636", + "dist": { + "integrity": "sha512-y42FN+eAjWARw7DNcigjjsMmh70lFLk5Ghb4AzZv4MymSuvqLMUjbz/iGz/xh6wSbSEKWkhxa57MHHJtxZ/Wnw==", + "shasum": "0b7e49d4b28aa219131a75ec3aa8b9cb74ab46ff", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.636.tgz", + "fileCount": 4, + "unpackedSize": 1545657, + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIH+48b1BCjvTcg/GTVWHg1ebVlZazOZwdOJtB1xLYgndAiEA/rEPrGCGbEeBzwQmaWnT64D9DWH8i33RFob236YKYo0=" + } + ], + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJkFlQJACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmrfjQ//VLTvpJGi5YziwOhO+tArF0PJiJP/wKR9RxXW+0qUmYGzwKZt\r\nyH/8PJQ5XZacbotKrdWXoxdHMcT8Uws5pyUMlGzGDoDrz+iSL3kz42craPQL\r\nopXslIp+oL72fxJXTeDIhoLjMK3xStnDo/ydA0DPjCq6LbhvgiTtkhSEKliE\r\nCcqqPHNO004o4jPV1sz0GmtuMABmaTN1dbKhho6RLD1xgz5d0VZb5HaLZBOx\r\nFG16UXaiSUjb7fzdAFacCv7bpN1MsXJ9H6Rs94qDsmJouFIcyrwI8O6Ypg/u\r\ncDDH1P5sSxM3IPGP6zgqWg6jTkbRb9qc7yheApB4g7y+f0UMYQeBg3ePu6VV\r\nuYfmyPEyvDquVLUPRV9/63FR9BjOL8qd8bnMCUk5LSU2RHicXKmxbhObSJfp\r\nPe848vZZKpCgufzZM+p2wdzM/PoIMlzLfIWmFzrit1LAUmQF0Y9HQJ4ODfas\r\nir8r7q79oV11q788wwpdqK1WLInZ7pkd1KWzdaFwzLRgheXHkaIjrblIF2QV\r\nwW+nxIIn30ZZiKZclqgTIu9qJBhI8h7I/9+6/gpm207QgLdMwl5J4QsZXqs8\r\nsRiwNoK9Km2/yag6DFIT5E9PlfE1ZGyWGakmXu9s5P+HtKgJq/waPuJf+mS4\r\nIednFibLnfhO+9oXafA4C5+wgNp1gCJnxrg=\r\n=ERgv\r\n-----END PGP SIGNATURE-----\r\n" + }, + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "directories": {}, + "maintainers": [ + { + "name": "typescript-bot", + "email": "typescript@microsoft.com" + }, + { + "name": "weswigham", + "email": "wwigham@gmail.com" + }, + { + "name": "sanders_n", + "email": "ncsander@indiana.edu" + }, + { + "name": "andrewbranch", + "email": "andrew@wheream.io" + }, + { + "name": "minestarks", + "email": "mineyalc@microsoft.com" + }, + { + "name": "rbuckton", + "email": "rbuckton@chronicles.org" + }, + { + "name": "sheetalkamat", + "email": "shkamat@microsoft.com" + }, + { + "name": "typescript-deploys", + "email": "typescript-design@microsoft.com" + }, + { + "name": "types", + "email": "ts-npm-types@microsoft.com" + } + ], + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/types-registry_0.1.636_1679184904888_0.7017564059067116" + }, + "_hasShrinkwrap": false, + "contributors": [] + }, + "0.1.637": { + "name": "types-registry", + "version": "0.1.637", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/microsoft/DefinitelyTyped-tools.git", + "directory": "packages/publisher" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "MIT", + "typesPublisherContentHash": "1b1df45949968349292dac2d864869d68476923720615cf6936f89b7e5b650ee", + "_id": "types-registry@0.1.637", + "dist": { + "integrity": "sha512-FvzTGHqyowUB2YC6/FgWF9LipiDDF9JD3TE2++a6pN/7m4O0EhLodKzafKWt1CiY1jYvWNe7hr6m+SZ2i1i3Bg==", + "shasum": "38378f4a2b6648538cea0bb94e8ff21e8a70fdaa", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.637.tgz", + "fileCount": 4, + "unpackedSize": 1551150, + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEQCIHn1f1urEtapRHdIFbOg6B4q9lpobaMVn3kfcEX6thB2AiBTvvlNjret6KDz+N53AbQgzrWeC1NL3h1n/I7+52Z2vA==" + } + ], + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJkH45XACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmpYSQ//TL0EZGvEbbDQjuIBONHbXNUri+tC2DCVUA5/uCjk+p6lf4jB\r\nAsH4p68WBTksB1ybXyi/o2j+PWFRht49Dsr1LPo/64vymxbGpco997N958aw\r\nfZPlSc73cq78hJINyL1+wafV0kgO38iNOM7ekcV7LDJbCbBh+upO5krLkvpG\r\nzXQqa0U8WaCAojljWYpM8OWnp8uUTLcZVBW0SGi130CXbP/ibC+8L/SHWOjn\r\nRkDOlJYriY7FVFU29lsITUPhoui2/GR6FuZQDbNVDKgKwIAgn3kS1ZTAIA3B\r\nVx7k7ve5a9siOE2ZQE9loCOeraHWTg1NdHX14aKS/ZDdjXR3cN10Y60xtLBP\r\nZOR6uQSem9E9so2xqcLdu4on8cKacQ7TOXJLF2elsbBomk0JbjJzZB5Bjl64\r\nPIl4hNDg2+3kD2ZOBN000qDkwC6Whh7sLJpyivDUi0KubJpu2ruaMiP2pIaW\r\nlWb70VUwrTwyhQDu7vn3s2d9bBrL3kLaJpMFKXbo+H0AQLOspnrVzTeOkJle\r\nBJkuQCjYZ7/Gm1TWxikRg165QlIgHAmcvvmOMlUTbj5+kmMWEbJIGwCzS+jz\r\nTrkTIBsw4CYDpkYY3ct8qx0cmn+nCgWIq+GWRjOHu/LhaX+snJ9tFVSSdrWp\r\neeJBb5fCtysjr4+Xgqq6dKYhqbYZq5TbPcI=\r\n=w99z\r\n-----END PGP SIGNATURE-----\r\n" + }, + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "directories": {}, + "maintainers": [ + { + "name": "typescript-bot", + "email": "typescript@microsoft.com" + }, + { + "name": "weswigham", + "email": "wwigham@gmail.com" + }, + { + "name": "sanders_n", + "email": "ncsander@indiana.edu" + }, + { + "name": "andrewbranch", + "email": "andrew@wheream.io" + }, + { + "name": "minestarks", + "email": "mineyalc@microsoft.com" + }, + { + "name": "rbuckton", + "email": "rbuckton@chronicles.org" + }, + { + "name": "sheetalkamat", + "email": "shkamat@microsoft.com" + }, + { + "name": "typescript-deploys", + "email": "typescript-design@microsoft.com" + }, + { + "name": "types", + "email": "ts-npm-types@microsoft.com" + } + ], + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/types-registry_0.1.637_1679789655626_0.7076890469269927" + }, + "_hasShrinkwrap": false, + "contributors": [] + }, + "0.1.638": { + "name": "types-registry", + "version": "0.1.638", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/microsoft/DefinitelyTyped-tools.git", + "directory": "packages/publisher" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "MIT", + "typesPublisherContentHash": "e27d564d14d44c99fee6a6619ef7cbed4f9046bfbc228ad2ea00492a91bc28a1", + "_id": "types-registry@0.1.638", + "dist": { + "integrity": "sha512-cHWMX6inuhJCnlXXno0VYCDwCSzrelqw6e/AbGAyF0W/rPM50+7Yk6WDcTKbodOh0IechNfr6qcKoioOzSFAUA==", + "shasum": "ae6365773ad38b544acd64a80f3bfef1b209467d", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.638.tgz", + "fileCount": 4, + "unpackedSize": 1553808, + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEYCIQCwKp7Y/YnuVCSfV6gVM7LwBCKuwEJ+yixjU32koHhZfwIhANtsvDExvCN+20romOCap0wOsssLEfCRKL2j/9pfZGQl" + } + ], + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJkKMhEACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmqxgA//T8wqgkaugM/s24poBGFriDyPh9IJl3JyLle4/Vi2ayL6egzV\r\ngqm92iQaV8kQC1iInjoRSXVNjk9e8w7GLW9LC57Vw11aGr9rYXguA3fwV0Jo\r\nCDb3fT+hOLBEhMkuMaVUBEt/hOz8TuTopSuqf/ebHvUMuoV+N1sXoaYvwsXj\r\nfqqWAw/EhavRMbTknp1IM16qi/N6f2TTTAry6Yx902JGvp+OJEVAdAI2zClw\r\ndaRwqJmlzWd3kyDCfGUwvJoilhg4A8v/A8nil7QhO6DWrW4+YYnZ2H5avq5e\r\no3RPcxVzi6EmyDC8oZiOBja95UfYRpCOFJLVq9Qjy1jJ9hhgTxrFY+y+8QVT\r\nhzXH4OWFp6Q7+0gSb42JAI26feJFqdX4eTGCjwXyz5D/bn7ZoKosCEjD20uD\r\nN7rMzjphYZmXtQT9RYXR8eLJmsu8pEM3Hk3mQzjH5l/11TLGCE7O8BMAGzVL\r\nK36uvypg0trje4uUc+llxTn3UR8m+bmioAXDsEdKTmPVu9pZHWEMRNFSEuqo\r\njM0Zyow4Rxpw9nAC/G/AgpQABifU8EY7Ekfy+2NzoFuIhwy8Vl1Zjm6tVWZU\r\nYfnovuHNdPHWRaniIDlKin2ZAyXZwOI9kct88ba0IFrITcFHZhze/wml0SH1\r\nvn1h8F2CUa2tBq/o63Mm/ld3sX5MNYkS/DQ=\r\n=0Ile\r\n-----END PGP SIGNATURE-----\r\n" + }, + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "directories": {}, + "maintainers": [ + { + "name": "typescript-bot", + "email": "typescript@microsoft.com" + }, + { + "name": "weswigham", + "email": "wwigham@gmail.com" + }, + { + "name": "sanders_n", + "email": "ncsander@indiana.edu" + }, + { + "name": "andrewbranch", + "email": "andrew@wheream.io" + }, + { + "name": "minestarks", + "email": "mineyalc@microsoft.com" + }, + { + "name": "rbuckton", + "email": "rbuckton@chronicles.org" + }, + { + "name": "sheetalkamat", + "email": "shkamat@microsoft.com" + }, + { + "name": "typescript-deploys", + "email": "typescript-design@microsoft.com" + }, + { + "name": "types", + "email": "ts-npm-types@microsoft.com" + } + ], + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/types-registry_0.1.638_1680394308225_0.5315098045791373" + }, + "_hasShrinkwrap": false, + "contributors": [] + }, + "0.1.639": { + "name": "types-registry", + "version": "0.1.639", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/microsoft/DefinitelyTyped-tools.git", + "directory": "packages/publisher" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "MIT", + "typesPublisherContentHash": "509eb5188770ffa3f49da02f95262c57890ef1aeebbf987757ddca5f90a84aa1", + "_id": "types-registry@0.1.639", + "dist": { + "integrity": "sha512-RxtDRPeMN5SAev+N1T9bWyzLiNML6JHivI0HuEgejXr6em8viBoTq6OZWW7eMAlxHlErByo9R/nK4OSTNeS8tQ==", + "shasum": "04ebb06fa9e10111299d38e37ce7195c762af6a4", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.639.tgz", + "fileCount": 4, + "unpackedSize": 1554800, + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCICnUjqN4sQBx5L8HtGiHfdZFjsVkpCIgy7wIClqeUvNbAiEAgwo9cSYKUmbFGc9V0knMVh2J0SUX6NjS1CiqvKIt8KE=" + } + ], + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJkMgOdACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2Vmolzg/8DZpcB3pU6mueShpGUJ9I8Ymn1feYVFtxkgQFFZey20roVPSc\r\nGbUWxyVXjY4uD/3EVo7hwTK4SOD9neZeFac2kWvyEVOx1zsiV956+XKu9ioQ\r\nMdkvUnE11nEa4pUpsWXQ4ylqvRk5+mKrmVTVOEMSy0bB6R6lMyJ9O46ugqTx\r\nEd6LFuHi7i8NFTqvV2q5ibTw5EeyO+aUASHIPhrQidaqtZxpTLFLM8jN4BBn\r\nLoCj9Csx1PQ+X/S1vsO7AQYUXUuPmJvQp/DbufFTdgHHD66yGuMCMKJfiVnm\r\njdellqKTkk0n3zjSUpqUeRGoiIbhe60GQbF8kgbW7tCw2rW2s3Uz6TcPKc5Z\r\nQNNJKocv3z5CXGhMUQHribDEDX6LRmttFvzEcEAtqJAON0gvmTXrhHMiqnGV\r\nkR+GCbt+mIit+k7Zuo2BBUZSX012kBdansf3QPrgUTxMWLXIqeBwqvYkpkJs\r\n12cBrgguoMU6UvSdk3KyZaz6LXzjQi6DVD7wDbVeQu4BqfzXohJjRzPTKRqT\r\nXtom84uSGu+6kTcMWlRe+XXVknAy/9SncrWZNJ5PCRyNluz/VRVCkjRSSM/g\r\n4+qqzckfcNPA7CiMpecWaD7EyGACDKtcMMisgaqLLGCurzVJRuKEBAq8kNco\r\nDShp5HKpPyg6i+yyJsG9SevGlmf6p03aMIA=\r\n=2gPm\r\n-----END PGP SIGNATURE-----\r\n" + }, + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "directories": {}, + "maintainers": [ + { + "name": "typescript-bot", + "email": "typescript@microsoft.com" + }, + { + "name": "weswigham", + "email": "wwigham@gmail.com" + }, + { + "name": "sanders_n", + "email": "ncsander@indiana.edu" + }, + { + "name": "andrewbranch", + "email": "andrew@wheream.io" + }, + { + "name": "minestarks", + "email": "mineyalc@microsoft.com" + }, + { + "name": "rbuckton", + "email": "rbuckton@chronicles.org" + }, + { + "name": "sheetalkamat", + "email": "shkamat@microsoft.com" + }, + { + "name": "typescript-deploys", + "email": "typescript-design@microsoft.com" + }, + { + "name": "types", + "email": "ts-npm-types@microsoft.com" + } + ], + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/types-registry_0.1.639_1680999324914_0.5505135361323856" + }, + "_hasShrinkwrap": false, + "contributors": [] + }, + "0.1.640": { + "name": "types-registry", + "version": "0.1.640", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/microsoft/DefinitelyTyped-tools.git", + "directory": "packages/publisher" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "MIT", + "typesPublisherContentHash": "a37d2f15d216519805a779f8142c10fe397c11159cc24220d3d183abcc605429", + "_id": "types-registry@0.1.640", + "dist": { + "integrity": "sha512-B2VcmJdW/SdvMzIpmkBXD5/awogX28tgNr94PWafUgb4nFZyvpngCp97hfkz2RUy39byxcQL5T3TzTsBR2yoEA==", + "shasum": "cd11765875f69c444d2625b5ea1c1fe0abb34c2b", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.640.tgz", + "fileCount": 4, + "unpackedSize": 1556670, + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEQCIGqXrNlq//v+TKTAwIqJcLekILMT71EDD19V5k+L9p1KAiAHRpN4O6JdUft4iGU3vi8cLEg/t8KuESGWsuq+7o2GtQ==" + } + ], + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJkOz1GACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmqTwxAAhvqfl0YtFI41rL2Di1XXgFvyvZwMzO0xz2riNQH/R7jjVlpl\r\n9VhPPTu0yNoUUx+gRXDxw3mT+1F2/1BOwfAxJHB4vBax/VOo5iwMtpiHnBuK\r\nZA57msZp5zgfW2NRZ2qoVbf2E622qQBn84Lc2dprz5NmhMYJiEaKe9Oy0J4Q\r\nLXhgnmkber1BBreLuV960Xq8Dkk0HcpEnuxslDo8U1GIunUkvT2tisSoj0ci\r\nffeNpf/kJz47Xth4pHG7KjRxcbnB1fBZA0+7p1ochmzr0cekyGem5S9mK4IA\r\nTRbk0v80Gd6VHAyHMk/z/mroFUfi/TvOeu2ecFiwMk39fTkDOxCkMNgOSlUw\r\n7d6V8NpGDJ2Hj7vj3hfcmWZOR8/SbDfcsmST+NhKsFDtgWVxJTrNPx4eYc/j\r\ngLUzetqs8jP4CEQExl5CrajYECt4FIV+kLb/rfJog5iE0I9kkw51kZysPnkE\r\nWIpNfXYDg28/0hlz9+8Cc5OE/sNjWa1tHl7GwyUUwTxE/ypR/7MVFP/bZgFB\r\nlHbF8oW2K7oemyNdLRt5mdFRjZ4Mcxe2gjvd6jtJUbNoMGwLm2l8i75EFMP1\r\nOK/TrO+/sujF+6857a56cF7dwVOlW+GLXl/gYJHCZGMV9xlxh50ZhrP086rx\r\nP21Etcm9h6WJCgYdfKX3hWVKx1fH4Zi0fQc=\r\n=0WWB\r\n-----END PGP SIGNATURE-----\r\n" + }, + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "directories": {}, + "maintainers": [ + { + "name": "typescript-bot", + "email": "typescript@microsoft.com" + }, + { + "name": "weswigham", + "email": "wwigham@gmail.com" + }, + { + "name": "sanders_n", + "email": "ncsander@indiana.edu" + }, + { + "name": "andrewbranch", + "email": "andrew@wheream.io" + }, + { + "name": "minestarks", + "email": "mineyalc@microsoft.com" + }, + { + "name": "rbuckton", + "email": "rbuckton@chronicles.org" + }, + { + "name": "sheetalkamat", + "email": "shkamat@microsoft.com" + }, + { + "name": "typescript-deploys", + "email": "typescript-design@microsoft.com" + }, + { + "name": "types", + "email": "ts-npm-types@microsoft.com" + } + ], + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/types-registry_0.1.640_1681603909921_0.7715123268329311" + }, + "_hasShrinkwrap": false, + "contributors": [] + }, + "0.1.641": { + "name": "types-registry", + "version": "0.1.641", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/microsoft/DefinitelyTyped-tools.git", + "directory": "packages/publisher" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "MIT", + "typesPublisherContentHash": "dc659ef8097f894d54157bb267f551dc52db77ab57ae014475b2e297dce7adab", + "_id": "types-registry@0.1.641", + "dist": { + "integrity": "sha512-pqRNjtZlD+7MtTvvUfgfsFEhqQ2utw6GY7fJbW/2ivAuG5zAYjnWIskUirlhQl48CoDBDewZ6TjVB8z80hQeVA==", + "shasum": "7bca8c8d55370db1e39acf0088829a07332d1384", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.641.tgz", + "fileCount": 4, + "unpackedSize": 1562528, + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEYCIQDnt2UODfLm+1+gw/OTLUUdF6m6FUuMykmrpLcOl5ulIgIhAPhILbIr/eg6MOlXSLyqOn2rzK/uYfqAffUMW/eWKbQR" + } + ], + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJkRHeyACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmrXMA/+LDxt4D9+0KFZEvvBynjc2oXL1Id/BqEu/a7r+RMpz6QaTsLi\r\nNzu+RjFvv1Bh34hEBjiyHvhk0K7FoQivtxzAuELwKXxRwF34cVRHfIupWbgA\r\nzNxyopbIyosI91/e1k6/mddshVVL6g9tD6Zd92vPWJQWaUWjCMBtX/zIeeGY\r\nCwFY5iwABF8TTglZRRJ8uYq8caQ73bxB2WwpVkhBWkngYviqcVCMZxTpG/9U\r\nb1PyPhfmoXODiBFzJ3Pk87yeCiGNVz62R3sYDEoXD4bgRcwCME71bmmD0183\r\nJD0pTh5oNPPU1BV9tZOBg+WkX4fcBMUm2cGg+ELgsDU6v6gJ1EFVM6QD/zN0\r\nDzpIhRw+pGXfLhI6U0BjifPp6HD9JiyYGvMaZe1ybPKxn9ynQRXWBDvE/eXV\r\nEVI9E2NfmHc81oRxCg6tvBTpNAyfqcFfRmN/Waml0owz6avGHoqszNUCtbIC\r\niWUZdx3OlkPMR3VO2IbXA0eNHNCJ35azA5ReunBj/s+4eE1E0cAR9BI4JPN5\r\n1PkZWP59wEiWWZ67tGI1n9vUr7CQsM7Nol3Bg/ikOCxjVFDebEGiTvPM3Dhr\r\nxHxY8nTfLvdV69X5CWRQA7g7Bq/BQ/1Kp6mcAHke2oIbRW79KpT/w2M9eoE7\r\nzdpF2FRAE2iETEKTJIcQ79Za/NhtFZGPolw=\r\n=kEDj\r\n-----END PGP SIGNATURE-----\r\n" + }, + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "directories": {}, + "maintainers": [ + { + "name": "typescript-bot", + "email": "typescript@microsoft.com" + }, + { + "name": "weswigham", + "email": "wwigham@gmail.com" + }, + { + "name": "sanders_n", + "email": "ncsander@indiana.edu" + }, + { + "name": "andrewbranch", + "email": "andrew@wheream.io" + }, + { + "name": "minestarks", + "email": "mineyalc@microsoft.com" + }, + { + "name": "rbuckton", + "email": "rbuckton@chronicles.org" + }, + { + "name": "sheetalkamat", + "email": "shkamat@microsoft.com" + }, + { + "name": "typescript-deploys", + "email": "typescript-design@microsoft.com" + }, + { + "name": "types", + "email": "ts-npm-types@microsoft.com" + } + ], + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/types-registry_0.1.641_1682208689978_0.9159436020526057" + }, + "_hasShrinkwrap": false, + "contributors": [] + }, + "0.1.642": { + "name": "types-registry", + "version": "0.1.642", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/microsoft/DefinitelyTyped-tools.git", + "directory": "packages/publisher" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "MIT", + "typesPublisherContentHash": "33ebcccb4f5b6a48a62762724aa5de08b535fc39d0d41b24f8f2734fb935c53c", + "_id": "types-registry@0.1.642", + "dist": { + "integrity": "sha512-ETbrzQY5bcblu7YZPjVp9iHNZAYKzm2THYnKiM1k1bo5zvyR6LqE1cZWSt4VcuTjCfsCsiW3M2dyEQdpXpG4AQ==", + "shasum": "1db98357fb135f331ff6ff8319287ac159d30fa2", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.642.tgz", + "fileCount": 4, + "unpackedSize": 1567408, + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIDVG0PKk8n33js4X17hfKLElwvgvJKi0eT3fGurIHPK9AiEAt1rrgnkqNy4haL8JqkawMGcjaslOfqrbRwq5ivSdVG8=" + } + ], + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJkTbLvACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2Vmpi7A//X22nPwUymo4Nms+2faUJaqNFLcI+uTqS3G0eT2J4TRzPUcQr\r\n2T7Xh18Xk9g7h63Gk05yEaudD1LwXfDN/qyFPPoQDI4EO0NI8HRtR/jTyYhL\r\nYZ7qoea7IhHfQTxcTeewDQ3J5D1R/12Oqvbm7XZe+hT4yJVmThseq6TrfHt3\r\nH8psW9qj0bZRhd6VBVPrx+R4cMsDAVBSm1YaawU2zFXZ07uAgXr7UR2y+Mb2\r\nz0VJNnQnx+7fxUE2UNp/UBD8s7IFrD5rhp6xYGKcOIsgfkyiSSUELa9JxUKe\r\nHY+6ujBM8McPTHoMpoMTMJ1ZCO/rZTR+DYMHH0fMPn3Nx5mNQmicQs/z/+vV\r\n+E1mV7dNQtiQTUONqVsH0BJgsEgexBS/kt0EKuCJwQDzRVObwXa2csnh5+1a\r\np99v6b9VUnfhAno5fli4/AUVaQIwZy7vXzXKAfswZGQiSqhGd3GeX6DF+cfc\r\nxaWrhK5HORfsnw+N+BjrbyK9yhpX2xf27Oeia0G0jSUpumQO8W9CBQhrjBEr\r\nkGH4dgZm0Ly6oeDC5jRD8HdgEK+9YMsv4mbNY1nRSD0ustoCBvhdGKA617NV\r\naFaDwkRVBmsyMlY6YCgT+UWZlAMYsHy/sUYd4ccESixu84y/lj8qDbwvSqZ8\r\nmn1Nw/oeILgbdHpclNlutv1jXTeZipJZR6w=\r\n=nbxc\r\n-----END PGP SIGNATURE-----\r\n" + }, + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "directories": {}, + "maintainers": [ + { + "name": "typescript-bot", + "email": "typescript@microsoft.com" + }, + { + "name": "weswigham", + "email": "wwigham@gmail.com" + }, + { + "name": "sanders_n", + "email": "ncsander@indiana.edu" + }, + { + "name": "andrewbranch", + "email": "andrew@wheream.io" + }, + { + "name": "minestarks", + "email": "mineyalc@microsoft.com" + }, + { + "name": "rbuckton", + "email": "rbuckton@chronicles.org" + }, + { + "name": "sheetalkamat", + "email": "shkamat@microsoft.com" + }, + { + "name": "typescript-deploys", + "email": "typescript-design@microsoft.com" + }, + { + "name": "types", + "email": "ts-npm-types@microsoft.com" + } + ], + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/types-registry_0.1.642_1682813678818_0.7973711981157057" + }, + "_hasShrinkwrap": false, + "contributors": [] + }, + "0.1.643": { + "name": "types-registry", + "version": "0.1.643", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/microsoft/DefinitelyTyped-tools.git", + "directory": "packages/publisher" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "MIT", + "typesPublisherContentHash": "55f8a46777d6eea3c8a2af879952831f8c517bba56271d67b4cb5d7d09f1fce1", + "_id": "types-registry@0.1.643", + "dist": { + "integrity": "sha512-3BXRlq6rU7GxmdrpDSHE27ECCoFz8nBXT38aEQkyTlYX90m0W0K038NwgYdbsVgslyQXZcytN/LRNzS5szMPdw==", + "shasum": "144d107cc855315206e0e3a588ece729a8e8b710", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.643.tgz", + "fileCount": 4, + "unpackedSize": 1568795, + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEQCIG/MHbDV7d1t8u2Qt4pbGJjnNsh5Z4tp0WWsvw8vTPzFAiB5KLsBAv7FuI+AxuZCbsCScLIu/w65GIHT0p1nV+5w+g==" + } + ] + }, + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "directories": {}, + "maintainers": [ + { + "name": "typescript-bot", + "email": "typescript@microsoft.com" + }, + { + "name": "weswigham", + "email": "wwigham@gmail.com" + }, + { + "name": "sanders_n", + "email": "ncsander@indiana.edu" + }, + { + "name": "andrewbranch", + "email": "andrew@wheream.io" + }, + { + "name": "minestarks", + "email": "mineyalc@microsoft.com" + }, + { + "name": "rbuckton", + "email": "rbuckton@chronicles.org" + }, + { + "name": "sheetalkamat", + "email": "shkamat@microsoft.com" + }, + { + "name": "typescript-deploys", + "email": "typescript-design@microsoft.com" + }, + { + "name": "types", + "email": "ts-npm-types@microsoft.com" + } + ], + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/types-registry_0.1.643_1683418496627_0.19211255309295483" + }, + "_hasShrinkwrap": false, + "contributors": [] + }, + "0.1.644": { + "name": "types-registry", + "version": "0.1.644", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/microsoft/DefinitelyTyped-tools.git", + "directory": "packages/publisher" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "MIT", + "typesPublisherContentHash": "d9b8bec266535da7582b35a9dfc2b22c7e46989ac2b8b64facb4e43169611264", + "_id": "types-registry@0.1.644", + "dist": { + "integrity": "sha512-c22VCZ0OmZdKRYxamXI/Am8KbD0pTE9BNSijMxGxomNFziC027bqUSwWYzzye7uKKzSQgtN4hptLDnvVCTuaUA==", + "shasum": "c3ba1bae3ccd0064369ea8249362fe8f3bb6e1dc", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.644.tgz", + "fileCount": 4, + "unpackedSize": 1584613, + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEQCIGVfhS+NmQ2+EowJxsifQSWiccwPPpoRF/qW/qGaYQHoAiAz3+E+YPk6V1vYMVfbMGkvpWrdF9hi0/BSIyjNcSyG6g==" + } + ] + }, + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "directories": {}, + "maintainers": [ + { + "name": "typescript-bot", + "email": "typescript@microsoft.com" + }, + { + "name": "weswigham", + "email": "wwigham@gmail.com" + }, + { + "name": "sanders_n", + "email": "ncsander@indiana.edu" + }, + { + "name": "andrewbranch", + "email": "andrew@wheream.io" + }, + { + "name": "minestarks", + "email": "mineyalc@microsoft.com" + }, + { + "name": "rbuckton", + "email": "rbuckton@chronicles.org" + }, + { + "name": "sheetalkamat", + "email": "shkamat@microsoft.com" + }, + { + "name": "typescript-deploys", + "email": "typescript-design@microsoft.com" + }, + { + "name": "types", + "email": "ts-npm-types@microsoft.com" + } + ], + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/types-registry_0.1.644_1684023172024_0.6967754001043844" + }, + "_hasShrinkwrap": false, + "contributors": [] + }, + "0.1.645": { + "name": "types-registry", + "version": "0.1.645", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/microsoft/DefinitelyTyped-tools.git", + "directory": "packages/publisher" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "MIT", + "typesPublisherContentHash": "9c355dfac42d80c3dee5f82f214587aaacbc0f3a71adf747f8c3cbe645d20cba", + "_id": "types-registry@0.1.645", + "dist": { + "integrity": "sha512-FDmEteNmUApyGZshaiclLcOJ8g+GxnQZsPo57nV4k2VvJTWDzAbBO5XVVxb6qUg+cHmsM8TBSL6KOGWD+0nZjA==", + "shasum": "bab596775b4ce7855b5c914b5f218acfb096ff30", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.645.tgz", + "fileCount": 4, + "unpackedSize": 1585407, + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEQCIEnVweOd0H+Obmi6KOJuT4GVBDLjd48AKw+atjrjgZghAiB4NmUB+WHF3UZuQ44wU7NE6ykLxcn89IRlv1jJEO6xSw==" + } + ] + }, + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "directories": {}, + "maintainers": [ + { + "name": "typescript-bot", + "email": "typescript@microsoft.com" + }, + { + "name": "weswigham", + "email": "wwigham@gmail.com" + }, + { + "name": "sanders_n", + "email": "ncsander@indiana.edu" + }, + { + "name": "andrewbranch", + "email": "andrew@wheream.io" + }, + { + "name": "minestarks", + "email": "mineyalc@microsoft.com" + }, + { + "name": "rbuckton", + "email": "rbuckton@chronicles.org" + }, + { + "name": "sheetalkamat", + "email": "shkamat@microsoft.com" + }, + { + "name": "typescript-deploys", + "email": "typescript-design@microsoft.com" + }, + { + "name": "types", + "email": "ts-npm-types@microsoft.com" + } + ], + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/types-registry_0.1.645_1684628106310_0.4815683912808806" + }, + "_hasShrinkwrap": false, + "contributors": [] + }, + "0.1.646": { + "name": "types-registry", + "version": "0.1.646", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/microsoft/DefinitelyTyped-tools.git", + "directory": "packages/publisher" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "MIT", + "typesPublisherContentHash": "c88797b53b1e84b6da1149916441eca4437d4d263793408d492e7c841198b75c", + "_id": "types-registry@0.1.646", + "dist": { + "integrity": "sha512-P4rlCt2MastvdbKVO1xEhenqxQRv6xFQKvyDczSV1HyPSy2478CRZcqGhbdQc1xrvDO+3SedMcX2Sr2CdPiS0A==", + "shasum": "b51056dfcc9db7d0a3ff6f32b8f6ef0789de5d58", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.646.tgz", + "fileCount": 4, + "unpackedSize": 1599821, + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEYCIQCUiC7dOHmqMubIi7/IJjGoDH/T1oSKmS9ippIPA3r6nQIhAILS+DSkbjUYvvtQaAmW0a8asD/UunSO17fbNAsNgf1M" + } + ] + }, + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "directories": {}, + "maintainers": [ + { + "name": "typescript-bot", + "email": "typescript@microsoft.com" + }, + { + "name": "weswigham", + "email": "wwigham@gmail.com" + }, + { + "name": "sanders_n", + "email": "ncsander@indiana.edu" + }, + { + "name": "andrewbranch", + "email": "andrew@wheream.io" + }, + { + "name": "minestarks", + "email": "mineyalc@microsoft.com" + }, + { + "name": "rbuckton", + "email": "rbuckton@chronicles.org" + }, + { + "name": "sheetalkamat", + "email": "shkamat@microsoft.com" + }, + { + "name": "typescript-deploys", + "email": "typescript-design@microsoft.com" + }, + { + "name": "types", + "email": "ts-npm-types@microsoft.com" + } + ], + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/types-registry_0.1.646_1685232986450_0.22972801882617278" + }, + "_hasShrinkwrap": false, + "contributors": [] + }, + "0.1.647": { + "name": "types-registry", + "version": "0.1.647", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/microsoft/DefinitelyTyped-tools.git", + "directory": "packages/publisher" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "MIT", + "typesPublisherContentHash": "fbdd6d8176fe2cf537ffc5006f4416a6e0f2cc1d0c0cefa362d1d592c914a743", + "_id": "types-registry@0.1.647", + "dist": { + "integrity": "sha512-AFiKtmXa3AaC1dhnwnQFPF11D8YCTm130WQhq6uuBCsoDK8sNhVjoCkaoU116Z3aCSeI4dllRs9spa5RcBz02w==", + "shasum": "d3d8e05750321a99c67ce7a7a97c44d0d3dd61df", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.647.tgz", + "fileCount": 4, + "unpackedSize": 1597797, + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEYCIQC8wHDcX4a5mt6YSBIYZUTyiEKZeuHECbPLe7By/k0VQgIhAJpDkuHWOke0zu9F+DUqS9zM4GtcQMnVd+PFRSmpdgfV" + } + ] + }, + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "directories": {}, + "maintainers": [ + { + "name": "typescript-bot", + "email": "typescript@microsoft.com" + }, + { + "name": "weswigham", + "email": "wwigham@gmail.com" + }, + { + "name": "sanders_n", + "email": "ncsander@indiana.edu" + }, + { + "name": "andrewbranch", + "email": "andrew@wheream.io" + }, + { + "name": "minestarks", + "email": "mineyalc@microsoft.com" + }, + { + "name": "rbuckton", + "email": "rbuckton@chronicles.org" + }, + { + "name": "sheetalkamat", + "email": "shkamat@microsoft.com" + }, + { + "name": "typescript-deploys", + "email": "typescript-design@microsoft.com" + }, + { + "name": "types", + "email": "ts-npm-types@microsoft.com" + } + ], + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/types-registry_0.1.647_1685837580091_0.19416040245561095" + }, + "_hasShrinkwrap": false, + "contributors": [] + }, + "0.1.648": { + "name": "types-registry", + "version": "0.1.648", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/microsoft/DefinitelyTyped-tools.git", + "directory": "packages/publisher" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "MIT", + "typesPublisherContentHash": "5da033ad533abfd6ea8339cf67537793f23e14944201ce7c362b0bf0b9111350", + "_id": "types-registry@0.1.648", + "dist": { + "integrity": "sha512-joy0WUfn9VRbCPJXukG4m3KjzbRDtOhLL/GzsIDTp1AixtDfl7b6GFG0U8KRVM7imeMreeg4qeViZP27PoP2hQ==", + "shasum": "2a37682209511fe761d109b962e67486968f372c", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.648.tgz", + "fileCount": 4, + "unpackedSize": 1599523, + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEQCIFAEY+GqVCJqyZt9rJySFj8py9WZiZdwlA9mM48IDV48AiBHHRyXSiBEChCaq/OnaR2oAzMpD7Mxc5xvBOf4XVfC6w==" + } + ] + }, + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "directories": {}, + "maintainers": [ + { + "name": "typescript-bot", + "email": "typescript@microsoft.com" + }, + { + "name": "weswigham", + "email": "wwigham@gmail.com" + }, + { + "name": "sanders_n", + "email": "ncsander@indiana.edu" + }, + { + "name": "andrewbranch", + "email": "andrew@wheream.io" + }, + { + "name": "minestarks", + "email": "mineyalc@microsoft.com" + }, + { + "name": "rbuckton", + "email": "rbuckton@chronicles.org" + }, + { + "name": "sheetalkamat", + "email": "shkamat@microsoft.com" + }, + { + "name": "typescript-deploys", + "email": "typescript-design@microsoft.com" + }, + { + "name": "types", + "email": "ts-npm-types@microsoft.com" + } + ], + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/types-registry_0.1.648_1686442324947_0.11329865979082987" + }, + "_hasShrinkwrap": false, + "contributors": [] + }, + "0.1.649": { + "name": "types-registry", + "version": "0.1.649", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/microsoft/DefinitelyTyped-tools.git", + "directory": "packages/publisher" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "MIT", + "typesPublisherContentHash": "a76ad6352f089142498f0cf42bd2bdefd3bd8e158e925ed128b532a0375761cb", + "_id": "types-registry@0.1.649", + "dist": { + "integrity": "sha512-UkXViIDCo+V6by+/d1PFDDxbGnyFD91GqqyusIQ3zYpshuxsU7Ibi/mDMQG1pBq2stiKC0Abkc7UjR2zB9ipWA==", + "shasum": "32c591cabc165cec71df0b52244e4ee6fa07eca9", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.649.tgz", + "fileCount": 4, + "unpackedSize": 1601278, + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEQCIE9hZ1KRa5/rpA+10bLlJK7veJsul6v639Z3TpG5nKXLAiBymz1w+bnfsPtvU6ORB8Vx2o7A48QhLdweaG6o+02aqA==" + } + ] + }, + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "directories": {}, + "maintainers": [ + { + "name": "typescript-bot", + "email": "typescript@microsoft.com" + }, + { + "name": "weswigham", + "email": "wwigham@gmail.com" + }, + { + "name": "sanders_n", + "email": "ncsander@indiana.edu" + }, + { + "name": "andrewbranch", + "email": "andrew@wheream.io" + }, + { + "name": "minestarks", + "email": "mineyalc@microsoft.com" + }, + { + "name": "rbuckton", + "email": "rbuckton@chronicles.org" + }, + { + "name": "sheetalkamat", + "email": "shkamat@microsoft.com" + }, + { + "name": "typescript-deploys", + "email": "typescript-design@microsoft.com" + }, + { + "name": "types", + "email": "ts-npm-types@microsoft.com" + } + ], + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/types-registry_0.1.649_1687047152480_0.3624619267203619" + }, + "_hasShrinkwrap": false, + "contributors": [] + }, + "0.1.650": { + "name": "types-registry", + "version": "0.1.650", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/microsoft/DefinitelyTyped-tools.git", + "directory": "packages/publisher" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "MIT", + "typesPublisherContentHash": "a405a69606854fde2bb76a75896b4df376731f411bd625bf87815ad27fd3314b", + "_id": "types-registry@0.1.650", + "dist": { + "integrity": "sha512-WwsoxJMbS3SD5A5KDuiYBCAWkZ8l2Mai1PMaPVW7UowB1GdrsIbCXDJSVXguBLNUsbBsfCAtyVXAp5J2Sf7wig==", + "shasum": "c6836c815b13745b8c1cba57f3577c680e3e9bcb", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.650.tgz", + "fileCount": 4, + "unpackedSize": 1600768, + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEYCIQDj7AXRXvZptU8z3UNHaFVvn+m9WjuUkNcN1gkT3Hh33QIhANufmQEybGqoKGPPe77cuodiysn53uK+J92RSej+L32P" + } + ] + }, + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "directories": {}, + "maintainers": [ + { + "name": "typescript-bot", + "email": "typescript@microsoft.com" + }, + { + "name": "weswigham", + "email": "wwigham@gmail.com" + }, + { + "name": "sanders_n", + "email": "ncsander@indiana.edu" + }, + { + "name": "andrewbranch", + "email": "andrew@wheream.io" + }, + { + "name": "minestarks", + "email": "mineyalc@microsoft.com" + }, + { + "name": "rbuckton", + "email": "rbuckton@chronicles.org" + }, + { + "name": "sheetalkamat", + "email": "shkamat@microsoft.com" + }, + { + "name": "typescript-deploys", + "email": "typescript-design@microsoft.com" + }, + { + "name": "types", + "email": "ts-npm-types@microsoft.com" + } + ], + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/types-registry_0.1.650_1687652247478_0.6550178084866254" + }, + "_hasShrinkwrap": false, + "contributors": [] + }, + "0.1.651": { + "name": "types-registry", + "version": "0.1.651", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/microsoft/DefinitelyTyped-tools.git", + "directory": "packages/publisher" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "MIT", + "typesPublisherContentHash": "5cb1b6cc0fea7339aff2ba7a54200cb84372946a05dfe4d95e455c603ba5433a", + "_id": "types-registry@0.1.651", + "dist": { + "integrity": "sha512-1iaEMFZHktQpRcbKpDdJ3JjNZdxYvVJ+xgTE4kAy2k+DljyxVX/Qm/rBkJ1rvrn8cBREbiJf5p2KKapVSskjzg==", + "shasum": "57d1b39836034030c57d9c91fcf528ec48aadf6f", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.651.tgz", + "fileCount": 4, + "unpackedSize": 1601361, + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEQCIEMiNcsv9YpkiphXieio4gm5V7mXb/E5MVn0pC0AX5WFAiBAbNyjsvMFvKw7Vl3SlwYwNUsSZlsOl826fNUOUtrxow==" + } + ] + }, + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "directories": {}, + "maintainers": [ + { + "name": "typescript-bot", + "email": "typescript@microsoft.com" + }, + { + "name": "weswigham", + "email": "wwigham@gmail.com" + }, + { + "name": "sanders_n", + "email": "ncsander@indiana.edu" + }, + { + "name": "andrewbranch", + "email": "andrew@wheream.io" + }, + { + "name": "minestarks", + "email": "mineyalc@microsoft.com" + }, + { + "name": "rbuckton", + "email": "rbuckton@chronicles.org" + }, + { + "name": "sheetalkamat", + "email": "shkamat@microsoft.com" + }, + { + "name": "typescript-deploys", + "email": "typescript-design@microsoft.com" + }, + { + "name": "types", + "email": "ts-npm-types@microsoft.com" + } + ], + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/types-registry_0.1.651_1688256911552_0.8022810203627264" + }, + "_hasShrinkwrap": false, + "contributors": [] + }, + "0.1.652": { + "name": "types-registry", + "version": "0.1.652", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/microsoft/DefinitelyTyped-tools.git", + "directory": "packages/publisher" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "MIT", + "typesPublisherContentHash": "b2b95ea59c2747e7816c9476107107cc275514dd5a9895c9b8e1c95c8c4ed1db", + "_id": "types-registry@0.1.652", + "dist": { + "integrity": "sha512-KNUJ+SjKEVAdknMXADOK2V/EmvzcCkmA5NBE0C8K2fjcHvYzrFdi7at3uICrCWHhE8Bi+BRB64UXeII8btS10A==", + "shasum": "bc278241d8e6e40c49850df0d2a2de5cfd186cf1", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.652.tgz", + "fileCount": 4, + "unpackedSize": 1604461, + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIG8UvxYygtkWmzCIW2UzVAv7mlx05HDwx9mSrP74u3xeAiEAi7IP1UjJOpk6nP7uCRolKhARCQF0m3UuMPdvKi73ew0=" + } + ] + }, + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "directories": {}, + "maintainers": [ + { + "name": "typescript-bot", + "email": "typescript@microsoft.com" + }, + { + "name": "weswigham", + "email": "wwigham@gmail.com" + }, + { + "name": "sanders_n", + "email": "ncsander@indiana.edu" + }, + { + "name": "andrewbranch", + "email": "andrew@wheream.io" + }, + { + "name": "minestarks", + "email": "mineyalc@microsoft.com" + }, + { + "name": "rbuckton", + "email": "rbuckton@chronicles.org" + }, + { + "name": "sheetalkamat", + "email": "shkamat@microsoft.com" + }, + { + "name": "typescript-deploys", + "email": "typescript-design@microsoft.com" + }, + { + "name": "types", + "email": "ts-npm-types@microsoft.com" + } + ], + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/types-registry_0.1.652_1689466607818_0.4684302813168404" + }, + "_hasShrinkwrap": false, + "contributors": [] + }, + "0.1.653": { + "name": "types-registry", + "version": "0.1.653", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/microsoft/DefinitelyTyped-tools.git", + "directory": "packages/publisher" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "MIT", + "typesPublisherContentHash": "c9916e43df80f2d49c3a0754fb8acd4e82ae51c19ee68eaaf14d23e1c30f27b5", + "_id": "types-registry@0.1.653", + "dist": { + "integrity": "sha512-F9X3b0PHC+rORMH8wMrBuhik2+PdFetrksORAeEfRnrVxGK56q768jTkkcP9VMrEHBF42s6ziJOUW4JXo8cfAQ==", + "shasum": "e8203a01aa9d815c6b5de6e79bc35193166cf0da", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.653.tgz", + "fileCount": 4, + "unpackedSize": 1604517, + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIEZo0ZlbgzVKS2SAqFZe+HGIcbdCts2VlV5gAgigEZXnAiEAhuJoOKSc7WO/5TC/F8oMsD2MRHTndBG18u+EG/VkNxQ=" + } + ] + }, + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "directories": {}, + "maintainers": [ + { + "name": "typescript-bot", + "email": "typescript@microsoft.com" + }, + { + "name": "weswigham", + "email": "wwigham@gmail.com" + }, + { + "name": "sanders_n", + "email": "ncsander@indiana.edu" + }, + { + "name": "andrewbranch", + "email": "andrew@wheream.io" + }, + { + "name": "minestarks", + "email": "mineyalc@microsoft.com" + }, + { + "name": "rbuckton", + "email": "rbuckton@chronicles.org" + }, + { + "name": "sheetalkamat", + "email": "shkamat@microsoft.com" + }, + { + "name": "typescript-deploys", + "email": "typescript-design@microsoft.com" + }, + { + "name": "types", + "email": "ts-npm-types@microsoft.com" + } + ], + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/types-registry_0.1.653_1690071361267_0.9028196686836409" + }, + "_hasShrinkwrap": false, + "contributors": [] + }, + "0.1.654": { + "name": "types-registry", + "version": "0.1.654", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/microsoft/DefinitelyTyped-tools.git", + "directory": "packages/publisher" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "MIT", + "typesPublisherContentHash": "8f55bbd9171b553759af148df4c2d0ef5b3bcd51297b0c5d2c835bbc89c322e4", + "_id": "types-registry@0.1.654", + "dist": { + "integrity": "sha512-VPUPAQ6EjJ+CUwY2uBrlg+jurIBh88q0b6k380U8jYyX0fmiMKYZ2qmiKsa91Wrr9La0F7lF/k2+YwU7xoP1Yg==", + "shasum": "ecc68e19fed0253f5aeabfe66734c1f2b0b33429", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.654.tgz", + "fileCount": 4, + "unpackedSize": 1606086, + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIQCAXUhY/RCB7LH6lVix6ILIISyIOtZHdbDQv2ezn9PHywIgQ69f5vauQVBVgsz2dtxIQ6AaRQ3lqNDKabo93O/El98=" + } + ] + }, + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "directories": {}, + "maintainers": [ + { + "name": "typescript-bot", + "email": "typescript@microsoft.com" + }, + { + "name": "weswigham", + "email": "wwigham@gmail.com" + }, + { + "name": "sanders_n", + "email": "ncsander@indiana.edu" + }, + { + "name": "andrewbranch", + "email": "andrew@wheream.io" + }, + { + "name": "minestarks", + "email": "mineyalc@microsoft.com" + }, + { + "name": "rbuckton", + "email": "rbuckton@chronicles.org" + }, + { + "name": "sheetalkamat", + "email": "shkamat@microsoft.com" + }, + { + "name": "typescript-deploys", + "email": "typescript-design@microsoft.com" + }, + { + "name": "types", + "email": "ts-npm-types@microsoft.com" + } + ], + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/types-registry_0.1.654_1690676103407_0.15696856901004086" + }, + "_hasShrinkwrap": false, + "contributors": [] + }, + "0.1.655": { + "name": "types-registry", + "version": "0.1.655", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/microsoft/DefinitelyTyped-tools.git", + "directory": "packages/publisher" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "MIT", + "typesPublisherContentHash": "dc7192fb9cd28cde51d04a6ef070a6c1905ad394c769444e3f9c761bc193679f", + "_id": "types-registry@0.1.655", + "dist": { + "integrity": "sha512-j0uhGO+4Sn+9ILj9o0H+/vwi2NOIJRvT55Cx+gSGYy2FhjN221LPP1o05Y3pVPvDjCge4bngaYQCstYBUQCCew==", + "shasum": "555e6136a53c736e2ddca9fd097f4c052ab6c80d", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.655.tgz", + "fileCount": 4, + "unpackedSize": 1607696, + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIDl6YQRhpvf6E4DmUPfv7NJWYlaVaFiA4eyTm/IS3az/AiEAtopb2HcD+fy08WUg54V0Y3Aj3pZROSao4k40h+VP3Xs=" + } + ] + }, + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "directories": {}, + "maintainers": [ + { + "name": "typescript-bot", + "email": "typescript@microsoft.com" + }, + { + "name": "weswigham", + "email": "wwigham@gmail.com" + }, + { + "name": "sanders_n", + "email": "ncsander@indiana.edu" + }, + { + "name": "andrewbranch", + "email": "andrew@wheream.io" + }, + { + "name": "minestarks", + "email": "mineyalc@microsoft.com" + }, + { + "name": "rbuckton", + "email": "rbuckton@chronicles.org" + }, + { + "name": "sheetalkamat", + "email": "shkamat@microsoft.com" + }, + { + "name": "typescript-deploys", + "email": "typescript-design@microsoft.com" + }, + { + "name": "types", + "email": "ts-npm-types@microsoft.com" + } + ], + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/types-registry_0.1.655_1691280922894_0.3852002310042628" + }, + "_hasShrinkwrap": false, + "contributors": [] + }, + "0.1.656": { + "name": "types-registry", + "version": "0.1.656", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/microsoft/DefinitelyTyped-tools.git", + "directory": "packages/publisher" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "MIT", + "typesPublisherContentHash": "3e8494ced91a62d1d25b87db30a53c49a05962f1b7b3d29b3bfb93329e6378ff", + "_id": "types-registry@0.1.656", + "dist": { + "integrity": "sha512-2BjD7j40cgeZX0hed/AHID444qdbs7k00lh4DFrTkQVlKi4HNNEpTKFfBCbrV2dwYMu4vn9/arombWBmaVQueg==", + "shasum": "5d026b6dde40e98deba167f4dfbb8f72d9a290ff", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.656.tgz", + "fileCount": 4, + "unpackedSize": 1608821, + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEYCIQD220k2HLtmJ9L8/YvvnYgTobjylARqZ/8R3u0ZVkas5QIhALskDOjXHCSA5/DZ+LgXvfR81gdiX6kDpTiocC65qw4c" + } + ] + }, + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "directories": {}, + "maintainers": [ + { + "name": "typescript-bot", + "email": "typescript@microsoft.com" + }, + { + "name": "weswigham", + "email": "wwigham@gmail.com" + }, + { + "name": "sanders_n", + "email": "nathan@shively-sanders.com" + }, + { + "name": "andrewbranch", + "email": "andrew@wheream.io" + }, + { + "name": "minestarks", + "email": "mineyalc@microsoft.com" + }, + { + "name": "rbuckton", + "email": "rbuckton@chronicles.org" + }, + { + "name": "sheetalkamat", + "email": "shkamat@microsoft.com" + }, + { + "name": "typescript-deploys", + "email": "typescript-design@microsoft.com" + }, + { + "name": "types", + "email": "ts-npm-types@microsoft.com" + } + ], + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/types-registry_0.1.656_1691885721465_0.5945364193073681" + }, + "_hasShrinkwrap": false, + "contributors": [] + }, + "0.1.657": { + "name": "types-registry", + "version": "0.1.657", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/microsoft/DefinitelyTyped-tools.git", + "directory": "packages/publisher" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "MIT", + "typesPublisherContentHash": "bc26fa2be394e107e423ddb7a68c7af4bad67789d124890dea1d7791c4b8dadc", + "_id": "types-registry@0.1.657", + "dist": { + "integrity": "sha512-qCcXVafBHIFPj5wDKCuWwTgocXxkHgshdQjrC2DhplG+u8e9rnpyfNaoNjNuGt6nMUbPvGBfAOCEOosxer4hgA==", + "shasum": "7b8452bf56d206a2ebb29d3944ce35b7d8eb56ae", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.657.tgz", + "fileCount": 4, + "unpackedSize": 1608385, + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEQCIG/1sVYA0SkxWsf8v6hX8CJT0q3ifn1n7olpuhM9OFBKAiBq8yPVHGSBdK1NIbkGcCr3sgV97yrPedoBq07qI1XXDQ==" + } + ] + }, + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "directories": {}, + "maintainers": [ + { + "name": "typescript-bot", + "email": "typescript@microsoft.com" + }, + { + "name": "weswigham", + "email": "wwigham@gmail.com" + }, + { + "name": "sanders_n", + "email": "nathan@shively-sanders.com" + }, + { + "name": "andrewbranch", + "email": "andrew@wheream.io" + }, + { + "name": "minestarks", + "email": "mineyalc@microsoft.com" + }, + { + "name": "rbuckton", + "email": "rbuckton@chronicles.org" + }, + { + "name": "sheetalkamat", + "email": "shkamat@microsoft.com" + }, + { + "name": "typescript-deploys", + "email": "typescript-design@microsoft.com" + }, + { + "name": "types", + "email": "ts-npm-types@microsoft.com" + } + ], + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/types-registry_0.1.657_1692490483003_0.7230389527372934" + }, + "_hasShrinkwrap": false, + "contributors": [] + }, + "0.1.658": { + "name": "types-registry", + "version": "0.1.658", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/microsoft/DefinitelyTyped-tools.git", + "directory": "packages/publisher" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "MIT", + "typesPublisherContentHash": "ef55c6895414c50cf3355497aacdb562aa62e5834ee1e2f539e4c0e75af8a812", + "_id": "types-registry@0.1.658", + "dist": { + "integrity": "sha512-BizewDy1MZ7dONMTE43yw5NmQsiJIF1XjivaIAKa74eQgxpIZXgzMX9GawuGbz8RoVO5u4CtYUSXBhjrAKLf4g==", + "shasum": "c21b22fb262d7be4fd1affbfb6dd88ca276c94e7", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.658.tgz", + "fileCount": 4, + "unpackedSize": 1621225, + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEYCIQD3GGjryz8CcmGna9/yuWfD9uewpvIPasidRDiiBXbqmwIhAMfLJvlF1ZVUtKGyraFQKVD8BOYCF0mFr3v+kqgoazLM" + } + ] + }, + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "directories": {}, + "maintainers": [ + { + "name": "typescript-bot", + "email": "typescript@microsoft.com" + }, + { + "name": "weswigham", + "email": "wwigham@gmail.com" + }, + { + "name": "sanders_n", + "email": "nathan@shively-sanders.com" + }, + { + "name": "andrewbranch", + "email": "andrew@wheream.io" + }, + { + "name": "minestarks", + "email": "mineyalc@microsoft.com" + }, + { + "name": "rbuckton", + "email": "rbuckton@chronicles.org" + }, + { + "name": "sheetalkamat", + "email": "shkamat@microsoft.com" + }, + { + "name": "typescript-deploys", + "email": "typescript-design@microsoft.com" + }, + { + "name": "types", + "email": "ts-npm-types@microsoft.com" + } + ], + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/types-registry_0.1.658_1693095277803_0.4171799712855335" + }, + "_hasShrinkwrap": false, + "contributors": [] + }, + "0.1.659": { + "name": "types-registry", + "version": "0.1.659", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/microsoft/DefinitelyTyped-tools.git", + "directory": "packages/publisher" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "MIT", + "typesPublisherContentHash": "d660a52c703fa985dfd185575ec4bfbb61a188ac7360982b7906935d69112077", + "_id": "types-registry@0.1.659", + "dist": { + "integrity": "sha512-aMKdZHVGhALzJBrNdLyVyhsYx3Ioeo25Anr6bHyxQkFMiRQQY+C8XxyNWJI0xbLZ2P4Yh3DMVkAM95DUkIBA0w==", + "shasum": "351a1a59353d280000a64426619156d281c8493c", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.659.tgz", + "fileCount": 4, + "unpackedSize": 1676372, + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIH0+7iq/QN+sdTgEifMiUxx2MZ9nBdpFWuu69EOTWJzdAiEAl2+vA+RzhvIEAZp7cP77fepka9p+7XKKhnmYG/76EPw=" + } + ] + }, + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "directories": {}, + "maintainers": [ + { + "name": "typescript-bot", + "email": "typescript@microsoft.com" + }, + { + "name": "weswigham", + "email": "wwigham@gmail.com" + }, + { + "name": "sanders_n", + "email": "nathan@shively-sanders.com" + }, + { + "name": "andrewbranch", + "email": "andrew@wheream.io" + }, + { + "name": "minestarks", + "email": "mineyalc@microsoft.com" + }, + { + "name": "rbuckton", + "email": "rbuckton@chronicles.org" + }, + { + "name": "sheetalkamat", + "email": "shkamat@microsoft.com" + }, + { + "name": "typescript-deploys", + "email": "typescript-design@microsoft.com" + }, + { + "name": "types", + "email": "ts-npm-types@microsoft.com" + } + ], + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/types-registry_0.1.659_1693700064629_0.772195191145745" + }, + "_hasShrinkwrap": false, + "contributors": [] + }, + "0.1.660": { + "name": "types-registry", + "version": "0.1.660", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/microsoft/DefinitelyTyped-tools.git", + "directory": "packages/publisher" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "MIT", + "typesPublisherContentHash": "e22d500b701ccf83d4868c4db6ad0831395e741253a119001ff783b4eb09358c", + "_id": "types-registry@0.1.660", + "dist": { + "integrity": "sha512-Ec8rwuwBKGY3htbew6z70KeT6V0D1H/dCF20qayFpqj97hXBfYGyWg1h4cO1aAS2Ii+uUS1dxv8fUbNnyKReZQ==", + "shasum": "dcac68eeb2bc99cff2fe818b5b06be2a5984dbdd", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.660.tgz", + "fileCount": 4, + "unpackedSize": 1733507, + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIQCnfyEJaS1q1HIdq5fUomkD04/YqGtJthngdjFz4tfwhwIgZVJwYTQN7VDCq+jcq6uq6z3iOf3bdL2mdzx0kaJpJGc=" + } + ] + }, + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "directories": {}, + "maintainers": [ + { + "name": "typescript-bot", + "email": "typescript@microsoft.com" + }, + { + "name": "weswigham", + "email": "wwigham@gmail.com" + }, + { + "name": "sanders_n", + "email": "nathan@shively-sanders.com" + }, + { + "name": "andrewbranch", + "email": "andrew@wheream.io" + }, + { + "name": "minestarks", + "email": "mineyalc@microsoft.com" + }, + { + "name": "rbuckton", + "email": "rbuckton@chronicles.org" + }, + { + "name": "sheetalkamat", + "email": "shkamat@microsoft.com" + }, + { + "name": "typescript-deploys", + "email": "typescript-design@microsoft.com" + }, + { + "name": "types", + "email": "ts-npm-types@microsoft.com" + } + ], + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/types-registry_0.1.660_1694304918120_0.6749558513455238" + }, + "_hasShrinkwrap": false, + "contributors": [] + }, + "0.1.661": { + "name": "types-registry", + "version": "0.1.661", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/microsoft/DefinitelyTyped-tools.git", + "directory": "packages/publisher" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "MIT", + "typesPublisherContentHash": "5824c31045619b55e8743e10fc7fd1e35120c903e28d02430bf237765d28cbc7", + "_id": "types-registry@0.1.661", + "dist": { + "integrity": "sha512-UzXv3Cb8v+Zw/eI+0M2p/gKsRh8G8pwFI/Dbyf6ZWZMllGLAb96Q1Gb/WoQkDOQUT11c9tVVuL0lO1x5NIxsiw==", + "shasum": "0ccee9350394bd5c01bc27de011ae9076bb33b3c", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.661.tgz", + "fileCount": 4, + "unpackedSize": 1895502, + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEQCIHopGLuGQDSzbeXZoV7Xg0Z/iq3pHG6vfuHtY163hpgYAiBBwGAIGBRtrorAoE5TDLcjiiMZ964AvdrAgAwHSyTkVg==" + } + ] + }, + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "directories": {}, + "maintainers": [ + { + "name": "typescript-bot", + "email": "typescript@microsoft.com" + }, + { + "name": "weswigham", + "email": "wwigham@gmail.com" + }, + { + "name": "sanders_n", + "email": "nathan@shively-sanders.com" + }, + { + "name": "andrewbranch", + "email": "andrew@wheream.io" + }, + { + "name": "minestarks", + "email": "mineyalc@microsoft.com" + }, + { + "name": "rbuckton", + "email": "rbuckton@chronicles.org" + }, + { + "name": "sheetalkamat", + "email": "shkamat@microsoft.com" + }, + { + "name": "typescript-deploys", + "email": "typescript-design@microsoft.com" + }, + { + "name": "types", + "email": "ts-npm-types@microsoft.com" + } + ], + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/types-registry_0.1.661_1694910846322_0.6651968506085582" + }, + "_hasShrinkwrap": false, + "contributors": [] + }, + "0.1.662": { + "name": "types-registry", + "version": "0.1.662", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/microsoft/DefinitelyTyped-tools.git", + "directory": "packages/publisher" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "MIT", + "typesPublisherContentHash": "ca0f7125e2e1d50cf2d368ac03502026d885fe5066cc4c18d89c58a70f6d6cc0", + "_id": "types-registry@0.1.662", + "dist": { + "integrity": "sha512-vTVVk85QhvORVuH4shNIBZNFjaijSVANgv0q+f5CkK6uX0MmdpdSGNY2xgPKUZBhrTM3qzArHg//FM1tVMrltA==", + "shasum": "99c63b2f8f05cb46118fed70b8a30d649fdf7ff4", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.662.tgz", + "fileCount": 4, + "unpackedSize": 2065910, + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIQDqFNnw1oSLgBL1BOdrlhvFSvBQ31gtJ9pSrIkEy3lItgIgE8YrX2hKr+xoLlu+6K5KSv8p+ini23jCrsyTZN3ToOo=" + } + ] + }, + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "directories": {}, + "maintainers": [ + { + "name": "typescript-bot", + "email": "typescript@microsoft.com" + }, + { + "name": "weswigham", + "email": "wwigham@gmail.com" + }, + { + "name": "sanders_n", + "email": "nathan@shively-sanders.com" + }, + { + "name": "andrewbranch", + "email": "andrew@wheream.io" + }, + { + "name": "minestarks", + "email": "mineyalc@microsoft.com" + }, + { + "name": "rbuckton", + "email": "rbuckton@chronicles.org" + }, + { + "name": "sheetalkamat", + "email": "shkamat@microsoft.com" + }, + { + "name": "typescript-deploys", + "email": "typescript-design@microsoft.com" + }, + { + "name": "types", + "email": "ts-npm-types@microsoft.com" + } + ], + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/types-registry_0.1.662_1695515048733_0.26760220711088323" + }, + "_hasShrinkwrap": false, + "contributors": [] + }, + "0.1.663": { + "name": "types-registry", + "version": "0.1.663", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/microsoft/DefinitelyTyped-tools.git", + "directory": "packages/publisher" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "MIT", + "typesPublisherContentHash": "44dc10e8a7d32f6ebd200e5bc3d1a6d2e06b616cc51fc76dcb8be0c8b8a1c57d", + "_id": "types-registry@0.1.663", + "dist": { + "integrity": "sha512-Lt9MM5ToagnmecLAMAJXTj6d/WBT3miRnQ9lGSmR9if4XVqd6WnO1OgMI+CCsDLYjTmOBlTcysZSCXVTNo6T/Q==", + "shasum": "a3f9d2d971bccf1ba6a7b40656f6f66e7c0cb9cd", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.663.tgz", + "fileCount": 4, + "unpackedSize": 2403504, + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIFAtsEtPRX5If2ogYwKrUfnB6+2vnO9hLrLG9bwIbEaSAiEAqKUlO//cJ6PMEmQ+Tu4wfC/EjJE5ySwqXSfZyvVRBqM=" + } + ] + }, + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "directories": {}, + "maintainers": [ + { + "name": "typescript-bot", + "email": "typescript@microsoft.com" + }, + { + "name": "weswigham", + "email": "wwigham@gmail.com" + }, + { + "name": "sanders_n", + "email": "nathan@shively-sanders.com" + }, + { + "name": "andrewbranch", + "email": "andrew@wheream.io" + }, + { + "name": "minestarks", + "email": "mineyalc@microsoft.com" + }, + { + "name": "rbuckton", + "email": "rbuckton@chronicles.org" + }, + { + "name": "sheetalkamat", + "email": "shkamat@microsoft.com" + }, + { + "name": "typescript-deploys", + "email": "typescript-design@microsoft.com" + }, + { + "name": "types", + "email": "ts-npm-types@microsoft.com" + } + ], + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/types-registry_0.1.663_1696119803398_0.48172113801990357" + }, + "_hasShrinkwrap": false, + "contributors": [] + }, + "0.1.664": { + "name": "types-registry", + "version": "0.1.664", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/microsoft/DefinitelyTyped-tools.git", + "directory": "packages/publisher" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "MIT", + "typesPublisherContentHash": "182d8325903dac698c63300da141b27091bf8efd9dc173ed618cf624428907b5", + "_id": "types-registry@0.1.664", + "dist": { + "integrity": "sha512-YyuB/AbLi20YDI3QPU7q/3jgYcbRtisOduYSSwn9N6/M1UFTs+2DpMM5pJzfFDYD7u16pBK9O4GxwDSIKC9/rQ==", + "shasum": "8305d3bccff59764030253ee5c1849be3efc3eea", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.664.tgz", + "fileCount": 4, + "unpackedSize": 2402686, + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEYCIQDvAOXcaDm6GRAWuR1dALhWA6Ia8yQhcKB9j5LmXe2PIQIhAKFY8EYTd++ner40ZPSIG8znOOR36IGm6XLqlDMJUPaR" + } + ] + }, + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "directories": {}, + "maintainers": [ + { + "name": "typescript-bot", + "email": "typescript@microsoft.com" + }, + { + "name": "weswigham", + "email": "wwigham@gmail.com" + }, + { + "name": "sanders_n", + "email": "nathan@shively-sanders.com" + }, + { + "name": "andrewbranch", + "email": "andrew@wheream.io" + }, + { + "name": "minestarks", + "email": "mineyalc@microsoft.com" + }, + { + "name": "rbuckton", + "email": "rbuckton@chronicles.org" + }, + { + "name": "sheetalkamat", + "email": "shkamat@microsoft.com" + }, + { + "name": "typescript-deploys", + "email": "typescript-design@microsoft.com" + }, + { + "name": "types", + "email": "ts-npm-types@microsoft.com" + } + ], + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/types-registry_0.1.664_1696724713915_0.35947690452429804" + }, + "_hasShrinkwrap": false, + "contributors": [] + }, + "0.1.665": { + "name": "types-registry", + "version": "0.1.665", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/microsoft/DefinitelyTyped-tools.git", + "directory": "packages/publisher" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "MIT", + "typesPublisherContentHash": "e5988ab9b0b5e30874be541ab3d245a25bedecacc2a11ba7a0de9bfeb4059049", + "_id": "types-registry@0.1.665", + "dist": { + "integrity": "sha512-+wpbd+gNRNaHeYdJESWL0dh0SbjitfegVUCpLavYUJ0NEc149r3+NYZz2Wv2ttB+80ZJXjLpLXKBNB/E87wyyA==", + "shasum": "5fc359893f553437de8bf4689081a6ab25fb04c8", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.665.tgz", + "fileCount": 4, + "unpackedSize": 2426640, + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIQDi9KnhGqVcxGA4fFBrC+QFb75Q8kfVrNJPfN4K0efu1wIgUl62KQ3HmPcSQcofpSC0LfbduJk7qaGpmAN7SQNsuOA=" + } + ] + }, + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "directories": {}, + "maintainers": [ + { + "name": "typescript-bot", + "email": "typescript@microsoft.com" + }, + { + "name": "weswigham", + "email": "wwigham@gmail.com" + }, + { + "name": "sanders_n", + "email": "nathan@shively-sanders.com" + }, + { + "name": "andrewbranch", + "email": "andrew@wheream.io" + }, + { + "name": "minestarks", + "email": "mineyalc@microsoft.com" + }, + { + "name": "rbuckton", + "email": "rbuckton@chronicles.org" + }, + { + "name": "sheetalkamat", + "email": "shkamat@microsoft.com" + }, + { + "name": "typescript-deploys", + "email": "typescript-design@microsoft.com" + }, + { + "name": "types", + "email": "ts-npm-types@microsoft.com" + } + ], + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/types-registry_0.1.665_1697329506139_0.9320810316841412" + }, + "_hasShrinkwrap": false, + "contributors": [] + }, + "0.1.666": { + "name": "types-registry", + "version": "0.1.666", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/microsoft/DefinitelyTyped-tools.git", + "directory": "packages/publisher" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "MIT", + "typesPublisherContentHash": "22e84057cac0614a520e6fac00c964996aacf5b4e3284c0a791b2899b68e3a08", + "_id": "types-registry@0.1.666", + "dist": { + "integrity": "sha512-40LMGsCS/0zVwlCcq9RTOPCK2/pxYYHkwnzVFSGH4wObUzuhf99t22TV02NwNzA+kL60ughZT3asvfUmtgVyPA==", + "shasum": "77ee934e34b5bad64551816c7469ff390aee31e0", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.666.tgz", + "fileCount": 4, + "unpackedSize": 2819850, + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEYCIQDyTw5BvNqQn+AY27E38izXbNlsCAVqkcHx4T7UmoV1igIhANLVIQf9I8yST1CiAVpHfG9u2cQ16bzpMlNHLy5Nqz+o" + } + ] + }, + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "directories": {}, + "maintainers": [ + { + "name": "typescript-bot", + "email": "typescript@microsoft.com" + }, + { + "name": "weswigham", + "email": "wwigham@gmail.com" + }, + { + "name": "sanders_n", + "email": "nathan@shively-sanders.com" + }, + { + "name": "andrewbranch", + "email": "andrew@wheream.io" + }, + { + "name": "minestarks", + "email": "mineyalc@microsoft.com" + }, + { + "name": "rbuckton", + "email": "rbuckton@chronicles.org" + }, + { + "name": "sheetalkamat", + "email": "shkamat@microsoft.com" + }, + { + "name": "typescript-deploys", + "email": "typescript-design@microsoft.com" + }, + { + "name": "types", + "email": "ts-npm-types@microsoft.com" + } + ], + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/types-registry_0.1.666_1697934319387_0.3112134291357267" + }, + "_hasShrinkwrap": false, + "contributors": [] + }, + "0.1.667": { + "name": "types-registry", + "version": "0.1.667", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/microsoft/DefinitelyTyped-tools.git", + "directory": "packages/publisher" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "MIT", + "typesPublisherContentHash": "f74bf6118a4a04e0a4fd2b2217f7281565d708bc427f756ae15ddab513a29a40", + "_id": "types-registry@0.1.667", + "dist": { + "integrity": "sha512-lFqdV6cavQ3nS2UzRw2HNxhG2qbVmTkQhZppxKoY4iRp+2R5k8CSbxNq32bcOD24HA3j2d5MdvwRrLc9x/u6Ew==", + "shasum": "1fcbd593b10a35ed35c9665730b5c51be8f44a57", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.667.tgz", + "fileCount": 4, + "unpackedSize": 2818992, + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEYCIQCPQfH8+QujYTEHDJ0j1AQF0wo7s06Kqt6LXv87pE56uwIhAKoGyj17OeGy25vwzgmV7xvG5kAbh65p/xSeK/Ipz/og" + } + ] + }, + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "directories": {}, + "maintainers": [ + { + "name": "typescript-bot", + "email": "typescript@microsoft.com" + }, + { + "name": "weswigham", + "email": "wwigham@gmail.com" + }, + { + "name": "sanders_n", + "email": "nathan@shively-sanders.com" + }, + { + "name": "andrewbranch", + "email": "andrew@wheream.io" + }, + { + "name": "minestarks", + "email": "mineyalc@microsoft.com" + }, + { + "name": "rbuckton", + "email": "rbuckton@chronicles.org" + }, + { + "name": "sheetalkamat", + "email": "shkamat@microsoft.com" + }, + { + "name": "typescript-deploys", + "email": "typescript-design@microsoft.com" + }, + { + "name": "types", + "email": "ts-npm-types@microsoft.com" + } + ], + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/types-registry_0.1.667_1698273214318_0.37826473577337016" + }, + "_hasShrinkwrap": false, + "contributors": [] + }, + "0.1.668": { + "name": "types-registry", + "version": "0.1.668", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/microsoft/DefinitelyTyped-tools.git", + "directory": "packages/publisher" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "MIT", + "typesPublisherContentHash": "d721559e47826f025a7e1774ac4501d51c249941aaac50d4d48f61ed5f6b6f6d", + "_id": "types-registry@0.1.668", + "dist": { + "integrity": "sha512-3vw7/TPEKbtsNws/0BLkDdj0Q9KCBjcH7RqK93Ferll2ymXqnbxtMjfauoKnlKa3zzQIBup+C/KQtBVdtazQrw==", + "shasum": "804d7f804a3ed01968be4eafd2e23eda98d6d5f1", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.668.tgz", + "fileCount": 4, + "unpackedSize": 2867837, + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIGAXwdpBA3Vwv0bCFYXC/kt6Nj9mxu8aSYlRkNkT8WzQAiEAwKAUa+7UZ6dVILvf1me6sJXrcR6GeRX25emN3y073uw=" + } + ] + }, + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "directories": {}, + "maintainers": [ + { + "name": "typescript-bot", + "email": "typescript@microsoft.com" + }, + { + "name": "weswigham", + "email": "wwigham@gmail.com" + }, + { + "name": "sanders_n", + "email": "nathan@shively-sanders.com" + }, + { + "name": "andrewbranch", + "email": "andrew@wheream.io" + }, + { + "name": "minestarks", + "email": "mineyalc@microsoft.com" + }, + { + "name": "rbuckton", + "email": "rbuckton@chronicles.org" + }, + { + "name": "sheetalkamat", + "email": "shkamat@microsoft.com" + }, + { + "name": "typescript-deploys", + "email": "typescript-design@microsoft.com" + }, + { + "name": "types", + "email": "ts-npm-types@microsoft.com" + } + ], + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/types-registry_0.1.668_1698339351157_0.9466358865168198" + }, + "_hasShrinkwrap": false, + "contributors": [] + }, + "0.1.669": { + "name": "types-registry", + "version": "0.1.669", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/microsoft/DefinitelyTyped-tools.git", + "directory": "packages/publisher" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "MIT", + "typesPublisherContentHash": "390bb83231dfa7cb624c84aacc6381a7c64368c258d200f7a34bed14fa5cc846", + "_id": "types-registry@0.1.669", + "dist": { + "integrity": "sha512-4WUKdllExuW7O31xehiLqG/orxdKMHyZSLQAqj4EZevvxNZBhIJ7D9ggkr4daT+rLXdDdAsh3dDrq7AypcifkQ==", + "shasum": "f0ae77325634c55c964b6395760f655a2b620b01", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.669.tgz", + "fileCount": 4, + "unpackedSize": 2867837, + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEQCIDb0f3JCOmWHPNiExDH+bkc2h3FAw+HFmR5per2saQIGAiAfWSRvQyNycsApZeuoZ7JTXiBMfJPm2Nrzgpdrp+klpw==" + } + ] + }, + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "directories": {}, + "maintainers": [ + { + "name": "typescript-bot", + "email": "typescript@microsoft.com" + }, + { + "name": "weswigham", + "email": "wwigham@gmail.com" + }, + { + "name": "sanders_n", + "email": "nathan@shively-sanders.com" + }, + { + "name": "andrewbranch", + "email": "andrew@wheream.io" + }, + { + "name": "minestarks", + "email": "mineyalc@microsoft.com" + }, + { + "name": "rbuckton", + "email": "rbuckton@chronicles.org" + }, + { + "name": "sheetalkamat", + "email": "shkamat@microsoft.com" + }, + { + "name": "typescript-deploys", + "email": "typescript-design@microsoft.com" + }, + { + "name": "types", + "email": "ts-npm-types@microsoft.com" + } + ], + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/types-registry_0.1.669_1698538980766_0.03027294729498209" + }, + "_hasShrinkwrap": false, + "contributors": [] + }, + "0.1.670": { + "name": "types-registry", + "version": "0.1.670", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/microsoft/DefinitelyTyped-tools.git", + "directory": "packages/publisher" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "MIT", + "typesPublisherContentHash": "183595c9a2fb12db96599da452180f4148e25a9943ab92c581c46d34a2b3b2f5", + "_id": "types-registry@0.1.670", + "dist": { + "integrity": "sha512-oWv0FeKlUc3vzvDxlCx+XrPDwzZa5dyJd6EwWqOcfaRfrgJkFC2zO68P3NtNM3OQjCXKw+ceYX30Bc6Etcas8A==", + "shasum": "fb1460b3fdc64a5baa41f5af276591e94f04c85b", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.670.tgz", + "fileCount": 4, + "unpackedSize": 2867578, + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEYCIQDz+ftUiJcK0/nzL3cjHaD7ym6cCK0+rhcoB0NgeYMdygIhAOkHV39jPqEu2DrcdWw83QJtJvHbq+BZXFnJgu0zIWhE" + } + ] + }, + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "directories": {}, + "maintainers": [ + { + "name": "typescript-bot", + "email": "typescript@microsoft.com" + }, + { + "name": "weswigham", + "email": "wwigham@gmail.com" + }, + { + "name": "sanders_n", + "email": "nathan@shively-sanders.com" + }, + { + "name": "andrewbranch", + "email": "andrew@wheream.io" + }, + { + "name": "minestarks", + "email": "mineyalc@microsoft.com" + }, + { + "name": "rbuckton", + "email": "rbuckton@chronicles.org" + }, + { + "name": "sheetalkamat", + "email": "shkamat@microsoft.com" + }, + { + "name": "typescript-deploys", + "email": "typescript-design@microsoft.com" + }, + { + "name": "types", + "email": "ts-npm-types@microsoft.com" + } + ], + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/types-registry_0.1.670_1699748593915_0.3256416427304134" + }, + "_hasShrinkwrap": false, + "contributors": [] + }, + "0.1.671": { + "name": "types-registry", + "version": "0.1.671", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/microsoft/DefinitelyTyped-tools.git", + "directory": "packages/publisher" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "MIT", + "typesPublisherContentHash": "54550fd9be96e9adcd00462a954ab5f8113af5e4ed60eda74b160ac2c1d054cf", + "_id": "types-registry@0.1.671", + "dist": { + "integrity": "sha512-JAFn7z/xXbs8geyZSpmt3nLVO60DvzzRiUJzbCVZEjBYe/sMMFYkKccU8oFVf/27habo2KlpH8ZAxAcYD9QyEQ==", + "shasum": "6ff2bb888836eec94dda7b1a592f81a94efbed2b", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.671.tgz", + "fileCount": 4, + "unpackedSize": 2867697, + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIQDaWV5HSt7KwW4BNQpVh7pYxG4K9PptKHDf411glvyNVQIgIZyWFazBJTWfyPYdt1yVektfvzDihMAKwgqSe08R0v0=" + } + ] + }, + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "directories": {}, + "maintainers": [ + { + "name": "typescript-bot", + "email": "typescript@microsoft.com" + }, + { + "name": "weswigham", + "email": "wwigham@gmail.com" + }, + { + "name": "sanders_n", + "email": "nathan@shively-sanders.com" + }, + { + "name": "andrewbranch", + "email": "andrew@wheream.io" + }, + { + "name": "minestarks", + "email": "mineyalc@microsoft.com" + }, + { + "name": "rbuckton", + "email": "rbuckton@chronicles.org" + }, + { + "name": "sheetalkamat", + "email": "shkamat@microsoft.com" + }, + { + "name": "typescript-deploys", + "email": "typescript-design@microsoft.com" + }, + { + "name": "types", + "email": "ts-npm-types@microsoft.com" + } + ], + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/types-registry_0.1.671_1700353182296_0.16084416158568304" + }, + "_hasShrinkwrap": false, + "contributors": [] + }, + "0.1.672": { + "name": "types-registry", + "version": "0.1.672", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/microsoft/DefinitelyTyped-tools.git", + "directory": "packages/publisher" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "MIT", + "typesPublisherContentHash": "13bd21b31c65398cb4fe1d5fdb97f1a9f0dc8c80623471d04348cde6aec12b31", + "_id": "types-registry@0.1.672", + "dist": { + "integrity": "sha512-eVqFoL+u4kJeS1zAg4Mn+ZznWT4gUNW9TjsdHjom5msz2Is5MhhcfkCTfMyvDXC/pH663+kDtLWujsO1JVMwwQ==", + "shasum": "e00c44a28a8037a12ab4a9dd2aec3d2f4f5e6dbb", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.672.tgz", + "fileCount": 4, + "unpackedSize": 2867669, + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIHVCVmR1jbIuHtk1Id4gMGkvN/BQSMV4BHsOMkSITifjAiEA2Gje984EBg5PHloSr9VgZeH6c0ULcM3JfwE1yh4uqzA=" + } + ] + }, + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "directories": {}, + "maintainers": [ + { + "name": "typescript-bot", + "email": "typescript@microsoft.com" + }, + { + "name": "weswigham", + "email": "wwigham@gmail.com" + }, + { + "name": "sanders_n", + "email": "nathan@shively-sanders.com" + }, + { + "name": "andrewbranch", + "email": "andrew@wheream.io" + }, + { + "name": "minestarks", + "email": "mineyalc@microsoft.com" + }, + { + "name": "rbuckton", + "email": "rbuckton@chronicles.org" + }, + { + "name": "sheetalkamat", + "email": "shkamat@microsoft.com" + }, + { + "name": "typescript-deploys", + "email": "typescript-design@microsoft.com" + }, + { + "name": "types", + "email": "ts-npm-types@microsoft.com" + } + ], + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/types-registry_0.1.672_1700958067284_0.7114380543443934" + }, + "_hasShrinkwrap": false, + "contributors": [] + }, + "0.1.673": { + "name": "types-registry", + "version": "0.1.673", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/microsoft/DefinitelyTyped-tools.git", + "directory": "packages/publisher" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "MIT", + "typesPublisherContentHash": "5fd4d93797f0622e8fbefcb34dd873ccc638404b8fd7845a8faade70f67758b0", + "_id": "types-registry@0.1.673", + "dist": { + "integrity": "sha512-4rSIfxfrp3t/hYnCB79+R4xW6Xyq+oQJbRqBnPh+eSIg2w8jkQCrl4tM6VhxCAs+PuYuOWo6U1fWFGlLc/40zw==", + "shasum": "8cd7bc1345e8151e7ceccd997353b4d981b8159f", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.673.tgz", + "fileCount": 4, + "unpackedSize": 2868686, + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEQCIHVKHpU3N4Hxh2WJQQsDUQxi8D/BKbNGUohWwO9jCEMuAiBtPA+tDHiyjzC4A358p7U1dPYuiFtw6QAHlg4qJYpCZw==" + } + ] + }, + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "directories": {}, + "maintainers": [ + { + "name": "typescript-bot", + "email": "typescript@microsoft.com" + }, + { + "name": "weswigham", + "email": "wwigham@gmail.com" + }, + { + "name": "sanders_n", + "email": "nathan@shively-sanders.com" + }, + { + "name": "andrewbranch", + "email": "andrew@wheream.io" + }, + { + "name": "minestarks", + "email": "mineyalc@microsoft.com" + }, + { + "name": "rbuckton", + "email": "rbuckton@chronicles.org" + }, + { + "name": "sheetalkamat", + "email": "shkamat@microsoft.com" + }, + { + "name": "typescript-deploys", + "email": "typescript-design@microsoft.com" + }, + { + "name": "types", + "email": "ts-npm-types@microsoft.com" + } + ], + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/types-registry_0.1.673_1701562909634_0.0779932225952431" + }, + "_hasShrinkwrap": false, + "contributors": [] + }, + "0.1.674": { + "name": "types-registry", + "version": "0.1.674", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/microsoft/DefinitelyTyped-tools.git", + "directory": "packages/publisher" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "MIT", + "typesPublisherContentHash": "0774a3b7c351df13d7d4d0f30dd2f228163293f1a0eba6e1c28af7aac58cad8f", + "_id": "types-registry@0.1.674", + "dist": { + "integrity": "sha512-Jz3WFc7M4W265OERqiSjaVdXEyJEQnAKSih+ABlo78iL+UVSST1AETg4G3Nf7BVjFEgxVHFKwlUtOOvzX2/C8g==", + "shasum": "3b2c2889035c324ae5ca57d81a87bc03336b632a", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.674.tgz", + "fileCount": 4, + "unpackedSize": 2871616, + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEYCIQDT4jSuAnpok1PeTUX0NgIR1ZSDkm1DEcnBXwzSP9oZ8AIhAMNOtdQ4kLDHcNa/5uIdu1JZyqvIQJlkjmCxH6VX7oHV" + } + ] + }, + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "directories": {}, + "maintainers": [ + { + "name": "typescript-bot", + "email": "typescript@microsoft.com" + }, + { + "name": "weswigham", + "email": "wwigham@gmail.com" + }, + { + "name": "sanders_n", + "email": "nathan@shively-sanders.com" + }, + { + "name": "andrewbranch", + "email": "andrew@wheream.io" + }, + { + "name": "minestarks", + "email": "mineyalc@microsoft.com" + }, + { + "name": "rbuckton", + "email": "rbuckton@chronicles.org" + }, + { + "name": "sheetalkamat", + "email": "shkamat@microsoft.com" + }, + { + "name": "typescript-deploys", + "email": "typescript-design@microsoft.com" + }, + { + "name": "types", + "email": "ts-npm-types@microsoft.com" + } + ], + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/types-registry_0.1.674_1702167704690_0.5622310537076576" + }, + "_hasShrinkwrap": false, + "contributors": [] + }, + "0.1.675": { + "name": "types-registry", + "version": "0.1.675", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/microsoft/DefinitelyTyped-tools.git", + "directory": "packages/publisher" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "MIT", + "typesPublisherContentHash": "3e18f082961d056ecdaf1918219186156f1cd6054966f8f813d05c8f5fda38d9", + "_id": "types-registry@0.1.675", + "dist": { + "integrity": "sha512-VfAcOzfm6KWCWXSnlA3PjSEwbZoz3WukbjQDmkjuMgphSkQHanLougVWH5Tz4JLXQ3DpIbes+0SRnXf6MM4eqQ==", + "shasum": "e5797fbbe100071c5d9603f26cfe7414dc6c1ff3", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.675.tgz", + "fileCount": 4, + "unpackedSize": 2872532, + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEYCIQDjF2CRYO8TVt0z0IoO6CFRvaPzNJnIR6IKEuJ3V7SWMgIhAJYpXP7iDsxUg7kM+LhgPM4M/q6kZpXdypUrmMQQGg+s" + } + ] + }, + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "directories": {}, + "maintainers": [ + { + "name": "typescript-bot", + "email": "typescript@microsoft.com" + }, + { + "name": "weswigham", + "email": "wwigham@gmail.com" + }, + { + "name": "sanders_n", + "email": "nathan@shively-sanders.com" + }, + { + "name": "andrewbranch", + "email": "andrew@wheream.io" + }, + { + "name": "minestarks", + "email": "mineyalc@microsoft.com" + }, + { + "name": "rbuckton", + "email": "rbuckton@chronicles.org" + }, + { + "name": "sheetalkamat", + "email": "shkamat@microsoft.com" + }, + { + "name": "typescript-deploys", + "email": "typescript-design@microsoft.com" + }, + { + "name": "types", + "email": "ts-npm-types@microsoft.com" + } + ], + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/types-registry_0.1.675_1702772427603_0.19101945782551755" + }, + "_hasShrinkwrap": false, + "contributors": [] + }, + "0.1.676": { + "name": "types-registry", + "version": "0.1.676", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/microsoft/DefinitelyTyped-tools.git", + "directory": "packages/publisher" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "MIT", + "typesPublisherContentHash": "fcfe6f8d2d163920037027cb5e7c80410500c7f2e5747c1897ccd53f975a3337", + "_id": "types-registry@0.1.676", + "dist": { + "integrity": "sha512-Yn8nOQsT1bxHG1/gUAk4RrGPUkQWsLfsfiY65KdfDfenXVgeskSUkoUZzAEHyh5P4ICmCHzUGUtAfqbBuqg5JA==", + "shasum": "aefc1170b2d55316ac69114ca72ccd87deb57144", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.676.tgz", + "fileCount": 4, + "unpackedSize": 2873001, + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIErRDBA2KW6c1Xfr7SL/A9/LrAnGjBCUhDqCPMXwwbArAiEAizsWSH7OxswdWXNIGkYBuIwKWPKfexLpgkPcP67e2mE=" + } + ] + }, + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "directories": {}, + "maintainers": [ + { + "name": "typescript-bot", + "email": "typescript@microsoft.com" + }, + { + "name": "weswigham", + "email": "wwigham@gmail.com" + }, + { + "name": "sanders_n", + "email": "nathan@shively-sanders.com" + }, + { + "name": "andrewbranch", + "email": "andrew@wheream.io" + }, + { + "name": "minestarks", + "email": "mineyalc@microsoft.com" + }, + { + "name": "rbuckton", + "email": "rbuckton@chronicles.org" + }, + { + "name": "sheetalkamat", + "email": "shkamat@microsoft.com" + }, + { + "name": "typescript-deploys", + "email": "typescript-design@microsoft.com" + }, + { + "name": "types", + "email": "ts-npm-types@microsoft.com" + } + ], + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/types-registry_0.1.676_1703377531046_0.48661059769696524" + }, + "_hasShrinkwrap": false, + "contributors": [] + }, + "0.1.677": { + "name": "types-registry", + "version": "0.1.677", + "description": "A registry of TypeScript declaration file packages published within the @types scope.", + "repository": { + "type": "git", + "url": "https://github.com/microsoft/DefinitelyTyped-tools.git", + "directory": "packages/publisher" + }, + "keywords": [ + "TypeScript", + "declaration", + "files", + "types", + "packages" + ], + "author": "Microsoft Corp.", + "license": "MIT", + "typesPublisherContentHash": "4dad696e694f3a0ca1a217ec03b5757a0fd3b912885ca378877487bd1e2d7350", + "_id": "types-registry@0.1.677", + "dist": { + "integrity": "sha512-i7PXe/06LN7WwNJh3zxjcoK0EjR9am71ELc8ACKlN2dGYbaPrv7WaIqsY80mljXddXf4EzOuLvzBDAA9SfKW5A==", + "shasum": "64e0037aafcc18aac89529b07767f183ea566977", + "tarball": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.677.tgz", + "fileCount": 4, + "unpackedSize": 2873742, + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIEYujRMXB0r90YDEHGlxFQz5Z+HnWWneWtDIfh3ZUwNXAiEArM5r3LV3Q37MAlXoDLO4vo0HeYIGKXmsUHRD3cEmaUE=" + } + ] + }, + "_npmUser": { + "name": "types", + "email": "ts-npm-types@microsoft.com" + }, + "directories": {}, + "maintainers": [ + { + "name": "typescript-bot", + "email": "typescript@microsoft.com" + }, + { + "name": "weswigham", + "email": "wwigham@gmail.com" + }, + { + "name": "sanders_n", + "email": "nathan@shively-sanders.com" + }, + { + "name": "andrewbranch", + "email": "andrew@wheream.io" + }, + { + "name": "minestarks", + "email": "mineyalc@microsoft.com" + }, + { + "name": "rbuckton", + "email": "rbuckton@chronicles.org" + }, + { + "name": "sheetalkamat", + "email": "shkamat@microsoft.com" + }, + { + "name": "typescript-deploys", + "email": "typescript-design@microsoft.com" + }, + { + "name": "types", + "email": "ts-npm-types@microsoft.com" + } + ], + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/types-registry_0.1.677_1703982111761_0.42907855101521064" + }, + "_hasShrinkwrap": false, + "contributors": [] + } + }, + "time": { + "modified": "2023-12-31T00:22:54.634Z", + "created": "2016-11-03T00:58:58.960Z", + "0.1.0": "2016-11-03T00:58:58.960Z", + "0.1.1": "2016-11-03T17:47:54.885Z", + "0.1.2": "2016-11-03T18:13:14.070Z", + "0.1.3": "2016-11-10T13:50:36.875Z", + "0.1.4": "2016-11-14T19:37:54.817Z", + "0.1.5": "2016-11-14T21:10:06.615Z", + "0.1.6": "2016-11-15T14:56:19.129Z", + "0.1.7": "2016-11-15T19:09:01.554Z", + "0.1.8": "2016-11-15T20:15:41.490Z", + "0.1.9": "2016-11-15T21:05:16.227Z", + "0.1.10": "2016-11-16T02:03:11.834Z", + "0.1.11": "2016-11-16T16:20:17.938Z", + "0.1.12": "2016-11-16T19:26:17.297Z", + "0.1.13": "2016-11-17T19:01:46.105Z", + "0.1.14": "2016-11-17T21:47:09.438Z", + "0.1.15": "2016-11-17T22:08:53.442Z", + "0.1.16": "2016-11-18T17:50:43.197Z", + "0.1.17": "2016-11-18T21:37:40.571Z", + "0.1.18": "2016-11-21T14:48:23.165Z", + "0.1.19": "2016-11-21T14:56:22.843Z", + "0.1.20": "2016-11-21T16:49:48.286Z", + "0.1.21": "2016-11-21T18:00:44.493Z", + "0.1.22": "2016-11-22T02:26:35.951Z", + "0.1.23": "2016-11-22T21:01:42.382Z", + "0.1.24": "2016-11-22T21:10:58.449Z", + "0.1.25": "2016-11-22T21:29:29.613Z", + "0.1.26": "2016-11-22T22:00:27.815Z", + "0.1.27": "2016-11-22T23:39:04.675Z", + "0.1.28": "2016-11-23T18:29:54.280Z", + "0.1.29": "2016-11-23T20:53:36.321Z", + "0.1.30": "2016-11-23T20:56:17.477Z", + "0.1.31": "2016-11-28T18:04:58.445Z", + "0.1.32": "2016-11-28T18:30:19.100Z", + "0.1.33": "2016-11-29T19:02:46.979Z", + "0.1.34": "2016-11-29T22:12:13.827Z", + "0.1.35": "2016-11-29T22:40:52.078Z", + "0.1.36": "2016-11-29T23:32:29.371Z", + "0.1.37": "2016-11-29T23:35:55.143Z", + "0.1.38": "2016-11-29T23:38:49.376Z", + "0.1.39": "2016-11-29T23:42:27.432Z", + "0.1.40": "2016-11-29T23:59:29.479Z", + "0.1.41": "2016-11-30T00:23:33.208Z", + "0.1.42": "2016-11-30T01:27:31.456Z", + "0.1.43": "2016-11-30T19:09:11.113Z", + "0.1.44": "2016-11-30T22:03:30.328Z", + "0.1.45": "2016-12-01T00:00:26.764Z", + "0.1.46": "2016-12-01T00:25:10.167Z", + "0.1.47": "2016-12-01T01:19:00.270Z", + "0.1.48": "2016-12-05T21:36:16.361Z", + "0.1.49": "2016-12-05T22:51:38.413Z", + "0.1.50": "2016-12-06T15:14:23.794Z", + "0.1.51": "2016-12-07T02:05:25.442Z", + "0.1.52": "2016-12-07T19:31:40.949Z", + "0.1.53": "2016-12-07T22:09:22.658Z", + "0.1.54": "2016-12-07T22:43:19.065Z", + "0.1.55": "2016-12-08T04:33:51.919Z", + "0.1.56": "2016-12-08T14:46:39.257Z", + "0.1.57": "2016-12-08T14:52:04.987Z", + "0.1.58": "2016-12-08T14:55:12.598Z", + "0.1.59": "2016-12-08T16:19:56.465Z", + "0.1.60": "2016-12-08T22:15:55.323Z", + "0.1.61": "2016-12-08T22:19:00.369Z", + "0.1.62": "2016-12-08T23:31:52.351Z", + "0.1.63": "2016-12-09T17:11:12.175Z", + "0.1.64": "2016-12-11T17:33:00.070Z", + "0.1.65": "2016-12-12T22:51:40.969Z", + "0.1.66": "2016-12-15T16:53:22.051Z", + "0.1.67": "2016-12-15T19:04:17.532Z", + "0.1.68": "2016-12-15T20:32:59.150Z", + "0.1.69": "2016-12-16T16:25:51.714Z", + "0.1.70": "2016-12-17T03:10:29.734Z", + "0.1.71": "2016-12-19T14:59:54.552Z", + "0.1.72": "2016-12-19T15:13:56.540Z", + "0.1.73": "2016-12-19T22:36:49.162Z", + "0.1.74": "2016-12-20T12:11:48.260Z", + "0.1.75": "2016-12-20T14:10:06.028Z", + "0.1.76": "2016-12-20T14:21:25.570Z", + "0.1.77": "2016-12-20T19:38:47.042Z", + "0.1.78": "2016-12-23T14:16:46.522Z", + "0.1.79": "2016-12-24T21:15:59.248Z", + "0.1.80": "2016-12-25T15:02:37.346Z", + "0.1.81": "2016-12-27T05:53:16.989Z", + "0.1.82": "2016-12-27T21:18:02.209Z", + "0.1.83": "2016-12-28T01:22:30.088Z", + "0.1.84": "2016-12-28T03:36:20.200Z", + "0.1.85": "2016-12-28T14:08:49.640Z", + "0.1.86": "2016-12-29T23:14:14.514Z", + "0.1.87": "2016-12-30T00:42:10.095Z", + "0.1.88": "2016-12-30T17:45:24.908Z", + "0.1.89": "2016-12-31T22:38:12.974Z", + "0.1.90": "2017-01-02T06:04:42.607Z", + "0.1.91": "2017-01-02T06:37:25.616Z", + "0.1.92": "2017-01-02T18:09:47.866Z", + "0.1.93": "2017-01-02T23:11:00.034Z", + "0.1.94": "2017-01-03T01:09:15.733Z", + "0.1.95": "2017-01-03T14:35:25.951Z", + "0.1.96": "2017-01-03T14:48:37.881Z", + "0.1.97": "2017-01-03T15:01:28.547Z", + "0.1.98": "2017-01-03T21:09:35.408Z", + "0.1.99": "2017-01-03T21:13:08.544Z", + "0.1.100": "2017-01-04T14:36:54.701Z", + "0.1.101": "2017-01-04T20:11:29.837Z", + "0.1.102": "2017-01-04T22:36:54.874Z", + "0.1.103": "2017-01-05T00:23:16.933Z", + "0.1.104": "2017-01-05T03:16:23.832Z", + "0.1.105": "2017-01-05T16:38:53.301Z", + "0.1.106": "2017-01-05T17:29:38.990Z", + "0.1.107": "2017-01-05T19:15:35.826Z", + "0.1.108": "2017-01-05T20:41:17.358Z", + "0.1.109": "2017-01-05T22:49:20.131Z", + "0.1.110": "2017-01-06T14:25:56.770Z", + "0.1.111": "2017-01-06T14:30:28.524Z", + "0.1.112": "2017-01-06T16:36:29.023Z", + "0.1.113": "2017-01-06T16:57:33.301Z", + "0.1.114": "2017-01-06T18:26:08.972Z", + "0.1.115": "2017-01-07T01:28:56.781Z", + "0.1.116": "2017-01-07T01:33:28.164Z", + "0.1.117": "2017-01-07T20:09:14.298Z", + "0.1.118": "2017-01-09T01:31:34.277Z", + "0.1.119": "2017-01-09T01:48:16.472Z", + "0.1.120": "2017-01-09T15:22:17.097Z", + "0.1.121": "2017-01-09T17:03:15.239Z", + "0.1.122": "2017-01-10T19:55:43.004Z", + "0.1.123": "2017-01-10T20:20:21.650Z", + "0.1.124": "2017-01-10T20:29:33.541Z", + "0.1.125": "2017-01-12T16:54:51.687Z", + "0.1.126": "2017-01-13T15:27:36.723Z", + "0.1.127": "2017-01-13T19:56:41.888Z", + "0.1.128": "2017-01-13T21:22:43.438Z", + "0.1.129": "2017-01-14T16:12:05.581Z", + "0.1.130": "2017-01-17T20:11:40.464Z", + "0.1.131": "2017-01-17T20:15:10.128Z", + "0.1.132": "2017-01-17T21:10:32.827Z", + "0.1.133": "2017-01-17T21:29:48.582Z", + "0.1.134": "2017-01-17T21:40:38.900Z", + "0.1.135": "2017-01-17T22:01:00.034Z", + "0.1.136": "2017-01-17T22:04:24.487Z", + "0.1.137": "2017-01-17T23:42:18.380Z", + "0.1.138": "2017-01-18T00:28:46.068Z", + "0.1.139": "2017-01-18T01:38:10.745Z", + "0.1.140": "2017-01-18T04:11:34.180Z", + "0.1.141": "2017-01-18T18:02:22.202Z", + "0.1.142": "2017-01-18T18:08:09.210Z", + "0.1.143": "2017-01-27T00:04:05.178Z", + "0.1.144": "2017-01-27T00:08:54.521Z", + "0.1.145": "2017-01-28T00:33:09.361Z", + "0.1.146": "2017-01-28T00:36:47.946Z", + "0.1.147": "2017-01-29T05:15:11.553Z", + "0.1.148": "2017-01-29T05:19:46.901Z", + "0.1.149": "2017-01-29T05:36:36.944Z", + "0.1.150": "2017-01-30T18:32:48.954Z", + "0.1.151": "2017-02-07T20:54:37.543Z", + "0.1.152": "2017-02-07T21:15:01.127Z", + "0.1.153": "2017-02-07T22:45:25.085Z", + "0.1.154": "2017-02-08T21:31:33.517Z", + "0.1.155": "2017-02-09T19:37:42.338Z", + "0.1.156": "2017-02-09T21:50:51.785Z", + "0.1.157": "2017-02-09T22:02:18.037Z", + "0.1.158": "2017-02-09T22:06:10.666Z", + "0.1.159": "2017-02-09T22:46:32.446Z", + "0.1.160": "2017-02-09T22:51:47.293Z", + "0.1.161": "2017-02-09T23:37:57.002Z", + "0.1.162": "2017-02-10T00:36:25.575Z", + "0.1.163": "2017-02-10T00:44:33.893Z", + "0.1.164": "2017-02-10T00:48:22.051Z", + "0.1.165": "2017-02-10T21:24:46.014Z", + "0.1.166": "2017-02-10T22:09:59.349Z", + "0.1.167": "2017-02-10T22:25:01.171Z", + "0.1.168": "2017-02-10T23:11:21.707Z", + "0.1.169": "2017-02-11T00:32:13.642Z", + "0.1.170": "2017-02-14T21:36:38.339Z", + "0.1.171": "2017-02-15T17:41:10.909Z", + "0.1.172": "2017-02-16T01:35:13.675Z", + "0.1.173": "2017-02-17T19:05:52.924Z", + "0.1.174": "2017-02-17T19:11:21.698Z", + "0.1.175": "2017-02-20T07:58:15.491Z", + "0.1.176": "2017-02-20T08:06:21.306Z", + "0.1.177": "2017-02-20T22:03:39.510Z", + "0.1.178": "2017-02-27T14:46:15.266Z", + "0.1.179": "2017-03-06T22:34:59.448Z", + "0.1.180": "2017-03-06T22:54:50.209Z", + "0.1.181": "2017-03-07T01:00:37.943Z", + "0.1.182": "2017-03-07T20:38:04.110Z", + "0.1.183": "2017-03-08T01:29:13.990Z", + "0.1.184": "2017-03-08T04:42:56.522Z", + "0.1.185": "2017-03-08T08:30:32.682Z", + "0.1.186": "2017-03-08T08:43:36.463Z", + "0.1.187": "2017-03-08T20:02:44.550Z", + "0.1.188": "2017-03-09T00:28:01.702Z", + "0.1.189": "2017-03-09T19:23:44.435Z", + "0.1.190": "2017-03-09T22:14:51.405Z", + "0.1.191": "2017-03-10T05:41:30.371Z", + "0.1.192": "2017-03-10T06:08:24.046Z", + "0.1.193": "2017-03-10T06:12:52.802Z", + "0.1.194": "2017-03-10T06:19:07.656Z", + "0.1.195": "2017-03-10T06:30:31.385Z", + "0.1.196": "2017-03-10T06:42:59.364Z", + "0.1.197": "2017-03-10T06:48:29.920Z", + "0.1.198": "2017-03-10T06:58:57.497Z", + "0.1.199": "2017-03-10T07:10:29.605Z", + "0.1.200": "2017-03-10T07:29:38.947Z", + "0.1.201": "2017-03-11T00:23:42.274Z", + "0.1.202": "2017-03-11T00:32:26.303Z", + "0.1.203": "2017-03-11T01:17:52.037Z", + "0.1.204": "2017-03-11T01:36:55.105Z", + "0.1.205": "2017-03-14T02:04:01.183Z", + "0.1.206": "2017-03-14T17:15:42.987Z", + "0.1.207": "2017-03-16T14:39:45.855Z", + "0.1.208": "2017-03-17T18:02:37.557Z", + "0.1.209": "2017-03-20T18:26:14.872Z", + "0.1.210": "2017-03-20T21:34:59.071Z", + "0.1.211": "2017-03-20T22:05:08.760Z", + "0.1.212": "2017-03-20T22:29:18.637Z", + "0.1.213": "2017-03-20T22:40:59.754Z", + "0.1.214": "2017-03-21T19:52:49.041Z", + "0.1.215": "2017-03-21T20:06:06.491Z", + "0.1.216": "2017-03-21T20:19:58.585Z", + "0.1.217": "2017-03-21T21:08:47.101Z", + "0.1.218": "2017-03-22T00:34:12.463Z", + "0.1.219": "2017-03-22T20:52:22.385Z", + "0.1.220": "2017-03-22T22:58:25.091Z", + "0.1.221": "2017-03-24T16:02:31.065Z", + "0.1.222": "2017-03-24T16:37:31.126Z", + "0.1.223": "2017-03-27T16:20:42.141Z", + "0.1.224": "2017-03-27T17:37:52.121Z", + "0.1.225": "2017-03-27T20:44:48.559Z", + "0.1.226": "2017-03-27T22:05:00.005Z", + "0.1.227": "2017-03-28T16:58:40.441Z", + "0.1.228": "2017-03-28T17:04:31.259Z", + "0.1.229": "2017-03-28T20:24:10.297Z", + "0.1.230": "2017-03-28T21:46:34.708Z", + "0.1.231": "2017-03-28T21:57:54.376Z", + "0.1.232": "2017-03-28T22:30:18.299Z", + "0.1.233": "2017-03-29T18:33:12.627Z", + "0.1.234": "2017-03-30T15:43:59.431Z", + "0.1.235": "2017-03-30T22:43:50.560Z", + "0.1.236": "2017-03-31T16:56:15.698Z", + "0.1.237": "2017-04-10T15:10:49.984Z", + "0.1.238": "2017-04-11T21:07:57.255Z", + "0.1.239": "2017-04-13T22:46:47.837Z", + "0.1.240": "2017-04-26T21:40:19.737Z", + "0.1.241": "2017-04-26T22:00:15.929Z", + "0.1.242": "2017-04-27T15:00:25.517Z", + "0.1.243": "2017-04-27T17:10:20.585Z", + "0.1.244": "2017-04-27T19:01:08.498Z", + "0.1.245": "2017-05-01T14:50:50.535Z", + "0.1.246": "2017-05-01T14:55:05.319Z", + "0.1.247": "2017-05-01T19:38:33.810Z", + "0.1.248": "2017-05-01T19:42:33.787Z", + "0.1.249": "2017-05-01T22:23:49.334Z", + "0.1.250": "2017-05-01T23:03:20.998Z", + "0.1.251": "2017-05-01T23:27:39.796Z", + "0.1.252": "2017-05-02T00:12:13.597Z", + "0.1.253": "2017-05-02T17:32:35.928Z", + "0.1.254": "2017-05-03T17:32:40.728Z", + "0.1.255": "2017-05-03T17:56:30.084Z", + "0.1.256": "2017-05-03T18:04:39.821Z", + "0.1.257": "2017-05-03T18:13:36.513Z", + "0.1.258": "2017-05-03T18:17:44.966Z", + "0.1.259": "2017-05-03T18:39:34.049Z", + "0.1.260": "2017-05-03T19:57:02.973Z", + "0.1.261": "2017-05-04T17:06:10.390Z", + "0.1.262": "2017-05-04T19:17:01.350Z", + "0.1.263": "2017-05-05T00:20:23.385Z", + "0.1.264": "2017-05-05T00:37:06.470Z", + "0.1.265": "2017-05-05T01:19:28.615Z", + "0.1.266": "2017-05-05T04:06:49.371Z", + "0.1.267": "2017-05-05T16:03:37.273Z", + "0.1.268": "2017-05-05T23:29:22.014Z", + "0.1.269": "2017-05-15T22:22:21.341Z", + "0.1.270": "2017-05-15T22:26:40.119Z", + "0.1.271": "2017-05-16T20:46:04.790Z", + "0.1.272": "2017-05-18T21:47:04.718Z", + "0.1.273": "2017-05-18T23:29:14.778Z", + "0.1.274": "2017-05-18T23:36:46.357Z", + "0.1.275": "2017-05-18T23:48:12.100Z", + "0.1.276": "2017-05-19T00:07:31.845Z", + "0.1.277": "2017-05-19T20:04:30.945Z", + "0.1.278": "2017-05-19T20:51:50.581Z", + "0.1.279": "2017-05-19T21:16:29.286Z", + "0.1.280": "2017-05-19T23:43:18.789Z", + "0.1.281": "2017-05-22T17:20:55.655Z", + "0.1.282": "2017-05-22T20:42:14.581Z", + "0.1.283": "2017-05-22T20:53:55.415Z", + "0.1.284": "2017-05-22T21:58:49.559Z", + "0.1.285": "2017-05-27T01:16:46.250Z", + "0.1.286": "2017-05-31T23:31:02.915Z", + "0.1.287": "2017-06-01T03:05:22.248Z", + "0.1.288": "2017-06-01T03:19:09.643Z", + "0.1.289": "2017-06-01T05:01:13.937Z", + "0.1.290": "2017-06-01T05:19:20.387Z", + "0.1.291": "2017-06-01T05:23:26.536Z", + "0.1.292": "2017-06-01T05:34:38.206Z", + "0.1.293": "2017-06-01T05:39:51.767Z", + "0.1.294": "2017-06-01T05:46:19.351Z", + "0.1.295": "2017-06-01T05:51:28.315Z", + "0.1.296": "2017-06-01T06:00:50.735Z", + "0.1.297": "2017-06-02T14:23:47.324Z", + "0.1.298": "2017-09-21T21:19:29.431Z", + "0.1.299": "2017-09-22T18:00:11.644Z", + "0.1.300": "2017-09-25T15:42:49.299Z", + "0.1.301": "2017-09-26T18:21:39.122Z", + "0.1.302": "2017-10-05T15:49:36.945Z", + "0.1.303": "2017-10-05T17:35:36.806Z", + "0.1.304": "2017-10-05T20:05:34.672Z", + "0.1.305": "2017-10-17T15:31:07.845Z", + "0.1.306": "2017-10-19T19:02:25.362Z", + "0.1.307": "2017-10-20T14:38:04.764Z", + "0.1.308": "2017-11-14T17:27:24.247Z", + "0.1.309": "2017-11-14T17:45:04.721Z", + "0.1.310": "2017-12-08T23:23:58.835Z", + "0.1.311": "2017-12-13T19:27:51.154Z", + "0.1.312": "2017-12-13T22:46:24.267Z", + "0.1.313": "2017-12-14T17:25:23.078Z", + "0.1.314": "2017-12-14T20:48:40.580Z", + "0.1.315": "2017-12-15T23:09:24.086Z", + "0.1.316": "2017-12-28T02:31:10.108Z", + "0.1.317": "2018-01-02T22:40:05.666Z", + "0.1.318": "2018-01-03T21:06:31.099Z", + "0.1.319": "2018-01-05T17:26:02.790Z", + "0.1.320": "2018-01-05T17:53:48.413Z", + "0.1.321": "2018-01-05T19:21:16.405Z", + "0.1.322": "2018-01-05T19:35:46.637Z", + "0.1.323": "2018-01-05T23:52:24.039Z", + "0.1.324": "2018-01-07T07:35:36.185Z", + "0.1.325": "2018-01-07T08:23:26.468Z", + "0.1.326": "2018-01-07T22:19:28.355Z", + "0.1.327": "2018-01-08T18:31:21.502Z", + "0.1.328": "2018-01-08T18:54:32.357Z", + "0.1.329": "2018-01-08T22:39:41.193Z", + "0.1.330": "2018-01-08T23:40:51.214Z", + "0.1.331": "2018-01-19T00:04:23.718Z", + "0.1.332": "2018-01-23T20:13:37.861Z", + "0.1.333": "2018-02-01T19:01:00.643Z", + "0.1.334": "2018-02-08T20:41:50.764Z", + "0.1.335": "2018-02-09T23:29:59.048Z", + "0.1.336": "2018-02-12T22:02:29.891Z", + "0.1.337": "2018-02-17T18:32:01.804Z", + "0.1.338": "2018-02-20T18:32:18.786Z", + "0.1.339": "2018-02-27T23:05:55.195Z", + "0.1.340": "2018-02-28T20:08:37.956Z", + "0.1.341": "2018-03-01T09:29:49.442Z", + "0.1.342": "2018-03-01T17:29:39.834Z", + "0.1.343": "2018-03-01T18:51:43.029Z", + "0.1.344": "2018-03-01T19:36:06.250Z", + "0.1.345": "2018-03-01T22:56:04.711Z", + "0.1.346": "2018-03-01T23:19:11.848Z", + "0.1.347": "2018-03-01T23:34:12.552Z", + "0.1.348": "2018-03-01T23:45:34.232Z", + "0.1.349": "2018-03-02T10:57:13.192Z", + "0.1.350": "2018-03-02T16:46:15.973Z", + "0.1.351": "2018-03-02T17:41:46.379Z", + "0.1.352": "2018-03-02T17:55:05.424Z", + "0.1.353": "2018-03-02T19:49:31.468Z", + "0.1.354": "2018-03-02T21:25:37.540Z", + "0.1.355": "2018-03-02T21:40:46.252Z", + "0.1.356": "2018-03-03T00:43:11.670Z", + "0.1.357": "2018-03-03T00:58:37.008Z", + "0.1.358": "2018-03-03T01:06:14.033Z", + "0.1.359": "2018-03-03T01:12:08.896Z", + "0.1.360": "2018-03-03T01:17:39.908Z", + "0.1.361": "2018-03-03T06:11:21.125Z", + "0.1.362": "2018-03-03T18:51:22.650Z", + "0.1.363": "2018-03-05T23:01:24.508Z", + "0.1.364": "2018-03-06T00:40:56.923Z", + "0.1.365": "2018-03-06T02:26:07.504Z", + "0.1.366": "2018-03-06T02:33:39.336Z", + "0.1.367": "2018-03-06T08:33:07.011Z", + "0.1.368": "2018-03-06T16:11:51.241Z", + "0.1.369": "2018-03-06T20:33:14.763Z", + "0.1.370": "2018-03-09T00:24:51.854Z", + "0.1.371": "2018-03-09T00:42:44.080Z", + "0.1.372": "2018-03-09T00:54:24.343Z", + "0.1.373": "2018-03-09T01:03:44.953Z", + "0.1.374": "2018-03-09T01:10:30.331Z", + "0.1.375": "2018-03-09T01:15:57.398Z", + "0.1.376": "2018-03-09T01:21:39.576Z", + "0.1.377": "2018-03-09T01:27:28.752Z", + "0.1.378": "2018-03-09T01:33:34.022Z", + "0.1.379": "2018-03-09T01:39:07.582Z", + "0.1.380": "2018-03-09T01:44:36.334Z", + "0.1.381": "2018-03-09T01:50:08.332Z", + "0.1.382": "2018-03-09T01:55:45.389Z", + "0.1.383": "2018-03-09T02:01:44.179Z", + "0.1.384": "2018-03-09T02:07:32.525Z", + "0.1.385": "2018-03-09T02:13:24.400Z", + "0.1.386": "2018-03-23T23:02:41.110Z", + "0.1.387": "2018-05-01T16:12:36.162Z", + "0.1.388": "2018-05-31T22:14:55.666Z", + "0.1.389": "2018-06-01T23:39:14.024Z", + "0.1.390": "2018-06-09T00:49:09.335Z", + "0.1.391": "2018-06-16T16:11:21.252Z", + "0.1.392": "2018-07-10T03:48:41.724Z", + "0.1.393": "2018-08-29T17:12:13.059Z", + "0.1.394": "2018-11-03T00:29:34.862Z", + "0.1.395": "2018-11-03T00:43:16.832Z", + "0.1.396": "2018-11-03T16:00:43.942Z", + "0.1.397": "2018-11-03T20:06:04.333Z", + "0.1.398": "2018-11-04T07:37:12.593Z", + "0.1.399": "2018-11-05T05:19:23.465Z", + "0.1.400": "2018-11-05T06:16:42.010Z", + "0.1.401": "2018-11-05T06:21:55.049Z", + "0.1.402": "2018-11-05T06:33:43.954Z", + "0.1.403": "2018-11-05T06:41:39.375Z", + "0.1.404": "2018-11-05T06:49:10.957Z", + "0.1.405": "2018-11-05T07:01:56.264Z", + "0.1.406": "2018-11-05T07:26:06.227Z", + "0.1.407": "2018-11-05T07:34:05.261Z", + "0.1.408": "2018-11-13T00:24:40.707Z", + "0.1.409": "2018-11-13T22:49:17.725Z", + "0.1.410": "2018-11-15T00:29:44.365Z", + "0.1.411": "2018-11-22T09:30:50.443Z", + "0.1.412": "2018-11-29T23:49:58.670Z", + "0.1.413": "2018-12-07T18:09:35.294Z", + "0.1.414": "2018-12-11T17:41:22.793Z", + "0.1.415": "2018-12-18T18:12:15.978Z", + "0.1.416": "2018-12-27T00:47:02.082Z", + "0.1.417": "2019-01-03T17:16:21.553Z", + "0.1.418": "2019-01-14T17:29:52.397Z", + "0.1.419": "2019-01-22T17:31:24.906Z", + "0.1.420": "2019-01-29T18:10:56.480Z", + "0.1.421": "2019-02-05T18:34:42.716Z", + "0.1.422": "2019-02-12T19:18:33.461Z", + "0.1.423": "2019-02-19T19:20:31.266Z", + "0.1.424": "2019-02-26T19:28:45.543Z", + "0.1.425": "2019-03-06T17:19:07.169Z", + "0.1.426": "2019-03-14T00:34:06.083Z", + "0.1.427": "2019-03-21T01:06:00.147Z", + "0.1.428": "2019-03-28T01:39:28.091Z", + "0.1.429": "2019-04-04T01:49:44.380Z", + "0.1.430": "2019-04-11T02:00:36.671Z", + "0.1.431": "2019-04-18T02:15:28.585Z", + "0.1.432": "2019-04-25T02:25:24.116Z", + "0.1.433": "2019-05-02T21:28:48.910Z", + "0.1.434": "2019-05-09T21:50:25.762Z", + "0.1.435": "2019-05-16T21:57:55.096Z", + "0.1.436": "2019-05-23T22:09:29.158Z", + "0.1.437": "2019-05-30T22:23:14.649Z", + "0.1.438": "2019-06-06T22:30:34.534Z", + "0.1.439": "2019-06-13T23:03:44.013Z", + "0.1.440": "2019-06-20T23:20:01.700Z", + "0.1.441": "2019-06-27T23:35:45.966Z", + "0.1.442": "2019-07-05T07:52:31.593Z", + "0.1.443": "2019-07-12T08:09:42.152Z", + "0.1.444": "2019-07-19T08:13:21.879Z", + "0.1.445": "2019-07-26T08:23:19.982Z", + "0.1.446": "2019-08-02T08:27:21.078Z", + "0.1.447": "2019-08-09T08:29:17.808Z", + "0.1.448": "2019-08-16T08:40:37.121Z", + "0.1.449": "2019-08-23T09:09:13.489Z", + "0.1.450": "2019-08-30T09:11:57.683Z", + "0.1.451": "2019-09-06T09:27:28.273Z", + "0.1.452": "2019-09-13T09:45:09.501Z", + "0.1.453": "2019-09-20T10:09:19.289Z", + "0.1.454": "2019-09-27T10:31:57.935Z", + "0.1.455": "2019-10-02T16:36:35.570Z", + "0.1.456": "2019-10-02T17:18:46.890Z", + "0.1.457": "2019-10-02T21:06:24.082Z", + "0.1.458": "2019-10-02T22:34:10.230Z", + "0.1.459": "2019-10-02T23:10:58.776Z", + "0.1.460": "2019-10-09T23:23:27.512Z", + "0.1.461": "2019-10-16T23:28:24.397Z", + "0.1.462": "2019-10-23T23:51:34.001Z", + "0.1.463": "2019-10-30T23:54:55.727Z", + "0.1.464": "2019-11-07T00:11:52.734Z", + "0.1.465": "2019-11-14T00:16:23.888Z", + "0.1.466": "2019-11-21T00:28:22.171Z", + "0.1.467": "2019-11-28T00:31:30.665Z", + "0.1.468": "2019-12-05T00:44:41.334Z", + "0.1.469": "2019-12-12T01:00:22.660Z", + "0.1.470": "2019-12-19T01:35:35.999Z", + "0.1.471": "2019-12-26T02:06:20.598Z", + "0.1.472": "2020-01-02T02:38:23.108Z", + "0.1.473": "2020-01-09T02:51:29.452Z", + "0.1.474": "2020-01-16T03:06:52.923Z", + "0.1.475": "2020-01-23T03:41:46.676Z", + "0.1.476": "2020-01-30T16:36:42.868Z", + "0.1.477": "2020-02-06T16:39:10.004Z", + "0.1.478": "2020-02-13T16:48:17.990Z", + "0.1.479": "2020-02-20T17:01:30.741Z", + "0.1.480": "2020-03-02T20:05:56.252Z", + "0.1.481": "2020-03-10T19:05:52.148Z", + "0.1.482": "2020-03-17T19:28:16.709Z", + "0.1.483": "2020-03-24T19:31:02.936Z", + "0.1.484": "2020-03-31T20:04:57.630Z", + "0.1.485": "2020-04-07T20:20:11.706Z", + "0.1.486": "2020-04-16T19:51:26.299Z", + "0.1.487": "2020-04-23T21:12:26.215Z", + "0.1.488": "2020-04-30T21:16:02.637Z", + "0.1.489": "2020-05-07T21:19:28.182Z", + "0.1.490": "2020-05-14T21:22:33.114Z", + "0.1.491": "2020-05-21T21:50:18.461Z", + "0.1.492": "2020-05-28T22:05:57.028Z", + "0.1.493": "2020-06-04T22:19:54.817Z", + "0.1.494": "2020-06-11T22:27:06.760Z", + "0.1.495": "2020-06-18T22:49:02.594Z", + "0.1.496": "2020-06-25T23:00:33.903Z", + "0.1.497": "2020-07-02T23:25:23.669Z", + "0.1.498": "2020-07-09T23:54:46.143Z", + "0.1.499": "2020-07-16T23:58:51.297Z", + "0.1.500": "2020-07-24T00:31:57.864Z", + "0.1.501": "2020-07-31T00:59:01.266Z", + "0.1.502": "2020-08-07T01:21:09.814Z", + "0.1.503": "2020-08-14T01:44:35.831Z", + "0.1.504": "2020-08-21T01:47:27.632Z", + "0.1.505": "2020-08-28T02:15:50.147Z", + "0.1.506": "2020-09-04T02:21:19.014Z", + "0.1.507": "2020-09-11T02:36:06.886Z", + "0.1.508": "2020-09-18T16:48:50.583Z", + "0.1.509": "2020-09-25T18:46:57.728Z", + "0.1.510": "2020-10-02T19:50:00.415Z", + "0.1.511": "2020-10-09T19:57:19.150Z", + "0.1.512": "2020-10-16T20:00:05.863Z", + "0.1.513": "2020-10-23T20:02:55.826Z", + "0.1.514": "2020-10-30T20:29:13.501Z", + "0.1.515": "2020-11-06T20:36:52.399Z", + "0.1.516": "2020-11-13T20:52:19.877Z", + "0.1.517": "2020-11-20T20:56:11.662Z", + "0.1.518": "2020-12-03T16:49:05.130Z", + "0.1.519": "2020-12-10T17:02:58.676Z", + "0.1.520": "2020-12-17T17:13:01.078Z", + "0.1.521": "2020-12-24T17:42:19.371Z", + "0.1.522": "2020-12-31T18:03:09.518Z", + "0.1.523": "2021-01-07T18:07:24.349Z", + "0.1.524": "2021-01-14T18:12:04.961Z", + "0.1.525": "2021-01-21T18:35:08.751Z", + "0.1.526": "2021-01-28T20:37:37.309Z", + "0.1.527": "2021-02-04T20:40:11.413Z", + "0.1.528": "2021-02-11T21:07:37.447Z", + "0.1.529": "2021-02-18T21:22:08.488Z", + "0.1.530": "2021-02-25T21:54:51.101Z", + "0.1.531": "2021-03-04T22:10:09.808Z", + "0.1.532": "2021-03-11T22:42:17.578Z", + "0.1.533": "2021-03-18T23:30:07.891Z", + "0.1.534": "2021-03-25T23:32:27.790Z", + "0.1.535": "2021-04-02T00:03:01.651Z", + "0.1.536": "2021-04-09T00:33:00.338Z", + "0.1.537": "2021-04-16T01:02:37.998Z", + "0.1.538": "2021-04-23T01:32:41.148Z", + "0.1.539": "2021-04-30T02:03:00.250Z", + "0.1.540": "2021-05-07T02:32:46.614Z", + "0.1.541": "2021-05-14T03:03:01.300Z", + "0.1.542": "2021-05-21T03:33:13.864Z", + "0.1.543": "2021-05-28T04:03:04.352Z", + "0.1.544": "2021-06-04T04:33:12.142Z", + "0.1.545": "2021-06-11T05:02:47.272Z", + "0.1.546": "2021-06-18T05:32:34.510Z", + "0.1.547": "2021-06-25T06:02:35.995Z", + "0.1.548": "2021-07-02T06:33:09.581Z", + "0.1.549": "2021-07-09T07:38:28.700Z", + "0.1.550": "2021-07-16T08:03:00.964Z", + "0.1.551": "2021-07-23T08:32:42.540Z", + "0.1.552": "2021-07-30T21:02:56.541Z", + "0.1.553": "2021-08-06T21:33:06.698Z", + "0.1.554": "2021-08-13T22:03:04.591Z", + "0.1.555": "2021-08-20T22:33:19.377Z", + "0.1.556": "2021-08-27T23:02:41.405Z", + "0.1.557": "2021-09-03T23:32:45.384Z", + "0.1.558": "2021-09-11T00:03:03.902Z", + "0.1.559": "2021-09-18T00:32:44.499Z", + "0.1.560": "2021-09-25T01:35:47.265Z", + "0.1.561": "2021-10-02T02:02:58.981Z", + "0.1.562": "2021-10-09T02:32:42.553Z", + "0.1.563": "2021-10-16T03:02:45.406Z", + "0.1.564": "2021-10-23T03:32:54.882Z", + "0.1.565": "2021-10-30T04:02:58.347Z", + "0.1.566": "2021-11-06T04:32:51.725Z", + "0.1.567": "2021-11-13T05:02:45.832Z", + "0.1.568": "2021-11-20T05:32:53.747Z", + "0.1.569": "2021-11-27T06:02:41.747Z", + "0.1.570": "2021-12-04T06:32:22.105Z", + "0.1.571": "2021-12-11T07:02:49.502Z", + "0.1.572": "2021-12-18T07:32:32.945Z", + "0.1.573": "2021-12-25T08:03:02.578Z", + "0.1.574": "2022-01-01T08:33:03.295Z", + "0.1.575": "2022-01-08T09:02:59.914Z", + "0.1.576": "2022-01-15T09:32:55.145Z", + "0.1.577": "2022-01-22T10:33:21.496Z", + "0.1.578": "2022-01-29T11:33:31.660Z", + "0.1.579": "2022-02-05T12:02:48.176Z", + "0.1.580": "2022-02-12T12:32:57.425Z", + "0.1.581": "2022-02-22T18:02:34.578Z", + "0.1.582": "2022-03-01T18:31:58.234Z", + "0.1.583": "2022-03-08T19:02:12.479Z", + "0.1.584": "2022-03-15T19:32:31.171Z", + "0.1.585": "2022-03-22T20:02:01.674Z", + "0.1.586": "2022-03-29T21:02:23.065Z", + "0.1.587": "2022-04-05T22:02:07.977Z", + "0.1.588": "2022-04-12T22:31:48.844Z", + "0.1.589": "2022-04-19T23:01:53.215Z", + "0.1.590": "2022-04-26T23:31:58.465Z", + "0.1.591": "2022-05-04T00:02:31.522Z", + "0.1.592": "2022-05-11T00:31:53.029Z", + "0.1.593": "2022-05-18T01:02:18.593Z", + "0.1.594": "2022-05-29T13:31:46.102Z", + "0.1.595": "2022-06-05T14:01:46.911Z", + "0.1.596": "2022-06-18T05:01:47.408Z", + "0.1.597": "2022-06-24T17:13:57.974Z", + "0.1.598": "2022-06-26T00:11:00.083Z", + "0.1.599": "2022-07-03T00:13:11.416Z", + "0.1.600": "2022-07-10T00:16:04.902Z", + "0.1.601": "2022-07-17T00:12:52.674Z", + "0.1.602": "2022-07-24T00:13:54.864Z", + "0.1.603": "2022-07-31T00:15:44.534Z", + "0.1.604": "2022-08-07T00:16:19.852Z", + "0.1.605": "2022-08-14T00:12:39.352Z", + "0.1.606": "2022-08-21T00:16:27.454Z", + "0.1.607": "2022-08-28T00:17:42.074Z", + "0.1.608": "2022-09-04T00:13:31.794Z", + "0.1.609": "2022-09-11T00:14:43.146Z", + "0.1.610": "2022-09-18T00:15:19.486Z", + "0.1.611": "2022-09-25T00:17:15.825Z", + "0.1.612": "2022-10-02T00:20:46.499Z", + "0.1.613": "2022-10-09T00:17:44.393Z", + "0.1.614": "2022-10-16T00:17:13.287Z", + "0.1.615": "2022-10-23T00:19:06.402Z", + "0.1.616": "2022-10-30T00:14:08.006Z", + "0.1.617": "2022-11-06T00:15:13.021Z", + "0.1.618": "2022-11-13T00:13:30.037Z", + "0.1.619": "2022-11-20T00:14:16.907Z", + "0.1.620": "2022-11-27T00:16:13.239Z", + "0.1.621": "2022-12-04T00:16:03.731Z", + "0.1.622": "2022-12-11T00:15:02.741Z", + "0.1.623": "2022-12-18T00:16:15.579Z", + "0.1.624": "2022-12-25T00:13:14.695Z", + "0.1.625": "2023-01-01T00:16:12.295Z", + "0.1.626": "2023-01-08T00:14:43.494Z", + "0.1.627": "2023-01-15T00:15:41.840Z", + "0.1.628": "2023-01-22T00:12:07.953Z", + "0.1.629": "2023-01-29T00:15:52.435Z", + "0.1.630": "2023-02-05T00:12:38.222Z", + "0.1.631": "2023-02-12T00:13:03.117Z", + "0.1.632": "2023-02-19T00:15:12.199Z", + "0.1.633": "2023-02-26T00:12:16.971Z", + "0.1.634": "2023-03-05T00:15:14.051Z", + "0.1.635": "2023-03-12T00:16:14.296Z", + "0.1.636": "2023-03-19T00:15:05.107Z", + "0.1.637": "2023-03-26T00:14:15.846Z", + "0.1.638": "2023-04-02T00:11:48.448Z", + "0.1.639": "2023-04-09T00:15:25.206Z", + "0.1.640": "2023-04-16T00:11:50.128Z", + "0.1.641": "2023-04-23T00:11:30.199Z", + "0.1.642": "2023-04-30T00:14:39.077Z", + "0.1.643": "2023-05-07T00:14:56.851Z", + "0.1.644": "2023-05-14T00:12:52.295Z", + "0.1.645": "2023-05-21T00:15:06.507Z", + "0.1.646": "2023-05-28T00:16:26.610Z", + "0.1.647": "2023-06-04T00:13:00.761Z", + "0.1.648": "2023-06-11T00:12:05.220Z", + "0.1.649": "2023-06-18T00:12:32.857Z", + "0.1.650": "2023-06-25T00:17:27.713Z", + "0.1.651": "2023-07-02T00:15:11.811Z", + "0.1.652": "2023-07-16T00:16:48.098Z", + "0.1.653": "2023-07-23T00:16:01.494Z", + "0.1.654": "2023-07-30T00:15:03.654Z", + "0.1.655": "2023-08-06T00:15:23.193Z", + "0.1.656": "2023-08-13T00:15:21.683Z", + "0.1.657": "2023-08-20T00:14:43.310Z", + "0.1.658": "2023-08-27T00:14:38.079Z", + "0.1.659": "2023-09-03T00:14:24.848Z", + "0.1.660": "2023-09-10T00:15:18.397Z", + "0.1.661": "2023-09-17T00:34:06.549Z", + "0.1.662": "2023-09-24T00:24:09.141Z", + "0.1.663": "2023-10-01T00:23:23.676Z", + "0.1.664": "2023-10-08T00:25:14.135Z", + "0.1.665": "2023-10-15T00:25:06.429Z", + "0.1.666": "2023-10-22T00:25:19.668Z", + "0.1.667": "2023-10-25T22:33:34.653Z", + "0.1.668": "2023-10-26T16:55:51.358Z", + "0.1.669": "2023-10-29T00:23:00.987Z", + "0.1.670": "2023-11-12T00:23:14.238Z", + "0.1.671": "2023-11-19T00:19:42.572Z", + "0.1.672": "2023-11-26T00:21:07.545Z", + "0.1.673": "2023-12-03T00:21:49.837Z", + "0.1.674": "2023-12-10T00:21:44.967Z", + "0.1.675": "2023-12-17T00:20:27.844Z", + "0.1.676": "2023-12-24T00:25:31.326Z", + "0.1.677": "2023-12-31T00:21:52.004Z" + }, + "users": {}, + "dist-tags": { + "latest": "0.1.677", + "next": "0.1.677" + }, + "_uplinks": { + "npmjs": { + "etag": "W/\"2664cfd50051a662a11bfca407a5bc34\"", + "fetched": 1704380625179 + } + }, + "_distfiles": { + "types-registry-0.1.0.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.0.tgz", + "sha": "fba0a8ecbe1c10a47cdfe91039afc0d95b7f4438", + "registry": "npmjs" + }, + "types-registry-0.1.1.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.1.tgz", + "sha": "ce6ba33f8a0997b7144c61bff71ed28c8a64814b", + "registry": "npmjs" + }, + "types-registry-0.1.2.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.2.tgz", + "sha": "db5544089ce4b1b5492c8d19e7732f2cf642c36a", + "registry": "npmjs" + }, + "types-registry-0.1.3.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.3.tgz", + "sha": "4166b57140f012fcdedbb58344034bc002740254", + "registry": "npmjs" + }, + "types-registry-0.1.4.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.4.tgz", + "sha": "d87906d7c5d30c38102d839e293f8f5cdc43d33d", + "registry": "npmjs" + }, + "types-registry-0.1.5.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.5.tgz", + "sha": "8c7916c6b8877e5d2ba58f45637e07b5a2c132cd", + "registry": "npmjs" + }, + "types-registry-0.1.6.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.6.tgz", + "sha": "241fc385abc50179daed8099ae3044b2d705fdef", + "registry": "npmjs" + }, + "types-registry-0.1.7.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.7.tgz", + "sha": "17e2bac6daeac6d529f1962719aca6699bedada6", + "registry": "npmjs" + }, + "types-registry-0.1.8.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.8.tgz", + "sha": "bd7b2e54136cf1a3108d6ff00d2b7a9229788eb3", + "registry": "npmjs" + }, + "types-registry-0.1.9.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.9.tgz", + "sha": "7666248ee70d2ed130354a020cb2aed2810bd9e2", + "registry": "npmjs" + }, + "types-registry-0.1.10.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.10.tgz", + "sha": "5421c8c6b0c62d438d12d6dac9f2fb6e8f89984f", + "registry": "npmjs" + }, + "types-registry-0.1.11.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.11.tgz", + "sha": "83fabed71a80ecb0aa3cbf4ffe191b30fc39f9db", + "registry": "npmjs" + }, + "types-registry-0.1.12.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.12.tgz", + "sha": "db3567527e7f004957f80ccefb7d3d0070573841", + "registry": "npmjs" + }, + "types-registry-0.1.13.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.13.tgz", + "sha": "a8b0ac710bde6b7422523b4b676eba06f0a18955", + "registry": "npmjs" + }, + "types-registry-0.1.14.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.14.tgz", + "sha": "22f45b9149019769b8233202c7c692866309855d", + "registry": "npmjs" + }, + "types-registry-0.1.15.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.15.tgz", + "sha": "34802ce62d86b3fdbacba22bd60abe167749ffd9", + "registry": "npmjs" + }, + "types-registry-0.1.16.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.16.tgz", + "sha": "3c94bda32101c92ca539d011e1972b81a9aa8e5b", + "registry": "npmjs" + }, + "types-registry-0.1.17.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.17.tgz", + "sha": "3a449b961ba4ba783d008317b802ba951aa05dc3", + "registry": "npmjs" + }, + "types-registry-0.1.18.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.18.tgz", + "sha": "b85d986236b4472676a72723c3d0bba9f953e95f", + "registry": "npmjs" + }, + "types-registry-0.1.19.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.19.tgz", + "sha": "f33f47cdca4e3c28fb7f86ed880333835d7b0f6a", + "registry": "npmjs" + }, + "types-registry-0.1.20.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.20.tgz", + "sha": "08472cdc3890403270ead70d9a40fb6b41944e85", + "registry": "npmjs" + }, + "types-registry-0.1.21.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.21.tgz", + "sha": "6e6ad2430d8edc2aef0fe6c4b1d09ceefb7786ed", + "registry": "npmjs" + }, + "types-registry-0.1.22.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.22.tgz", + "sha": "4cadf3316ad2556c25fce258a6e4fad64745f48e", + "registry": "npmjs" + }, + "types-registry-0.1.23.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.23.tgz", + "sha": "a041e493fe09f600f8f3e931b3725b98f548e8d6", + "registry": "npmjs" + }, + "types-registry-0.1.24.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.24.tgz", + "sha": "90fc8bcf3b432dec8c69d8e2af8360354a6d126f", + "registry": "npmjs" + }, + "types-registry-0.1.25.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.25.tgz", + "sha": "825b737c68cefda5bf6536038d02248c202057ea", + "registry": "npmjs" + }, + "types-registry-0.1.26.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.26.tgz", + "sha": "31b828a92044ca3bcd7c6f821f2ed7f760069812", + "registry": "npmjs" + }, + "types-registry-0.1.27.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.27.tgz", + "sha": "017dc94500ed0934857dc3da44e580040aa115d1", + "registry": "npmjs" + }, + "types-registry-0.1.28.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.28.tgz", + "sha": "53f78cbaa23e3ef96befe66442d587ea0c716232", + "registry": "npmjs" + }, + "types-registry-0.1.29.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.29.tgz", + "sha": "9f5d1d59c6ad78237f142dc3b2312e260a3835ba", + "registry": "npmjs" + }, + "types-registry-0.1.30.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.30.tgz", + "sha": "c4eef61ab65dc232e0b40d3657ef0d66be9cd099", + "registry": "npmjs" + }, + "types-registry-0.1.31.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.31.tgz", + "sha": "f23b445c30d684f02671047caa483885beb6cae6", + "registry": "npmjs" + }, + "types-registry-0.1.32.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.32.tgz", + "sha": "cdfbda792de77bfc3117bc3ec9fe5ac4fa2bfa94", + "registry": "npmjs" + }, + "types-registry-0.1.33.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.33.tgz", + "sha": "ec9dfcc883e03c21bec5714e19ef5d6727484a00", + "registry": "npmjs" + }, + "types-registry-0.1.34.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.34.tgz", + "sha": "38794fe7cd09c9a679a4c19ccef95b8f2ff77cdb", + "registry": "npmjs" + }, + "types-registry-0.1.35.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.35.tgz", + "sha": "85871eb26c98e4201478114e34cd2164bee7a252", + "registry": "npmjs" + }, + "types-registry-0.1.36.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.36.tgz", + "sha": "ff353cde95613e8a487fbbb30cc6844e8461b35d", + "registry": "npmjs" + }, + "types-registry-0.1.37.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.37.tgz", + "sha": "56e3b9a3a8d15a00d1c4656895698342c8bc9f85", + "registry": "npmjs" + }, + "types-registry-0.1.38.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.38.tgz", + "sha": "8276f0ae566f0839b89695ab62a9ed9eac48bc65", + "registry": "npmjs" + }, + "types-registry-0.1.39.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.39.tgz", + "sha": "c31e017ec91bdec8b07a49b1e2867b8ac466eff0", + "registry": "npmjs" + }, + "types-registry-0.1.40.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.40.tgz", + "sha": "3f4886803e20b6887bde99879df322fdf4ebdd5e", + "registry": "npmjs" + }, + "types-registry-0.1.41.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.41.tgz", + "sha": "68f7a9cb47aa6bbf0bc1c6199e0ad6432204d78a", + "registry": "npmjs" + }, + "types-registry-0.1.42.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.42.tgz", + "sha": "778c98f7d6b026281192cbc23ca648be74d9a56b", + "registry": "npmjs" + }, + "types-registry-0.1.43.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.43.tgz", + "sha": "8f78356c7f3e01bfa4b2af33114f6e3fbaa54d94", + "registry": "npmjs" + }, + "types-registry-0.1.44.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.44.tgz", + "sha": "5022e8c1d43bbb6d0545413736eba79d6ba801e6", + "registry": "npmjs" + }, + "types-registry-0.1.45.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.45.tgz", + "sha": "ed63b06f40220f34af345ad5f9b47723fc7d1123", + "registry": "npmjs" + }, + "types-registry-0.1.46.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.46.tgz", + "sha": "939d2a4571be04dae541714bd0d7d6255e137db7", + "registry": "npmjs" + }, + "types-registry-0.1.47.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.47.tgz", + "sha": "e384f19c3ec0803c26cd64130a3548c5fdaccfc5", + "registry": "npmjs" + }, + "types-registry-0.1.48.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.48.tgz", + "sha": "d25cee6a7dff30b01eff448871e449311cfc4bdd", + "registry": "npmjs" + }, + "types-registry-0.1.49.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.49.tgz", + "sha": "3c0dfe0d071675a74c4cb88df8e7ab6d3c79459c", + "registry": "npmjs" + }, + "types-registry-0.1.50.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.50.tgz", + "sha": "6b744caa1e55530f7e98f2e6eebeeef2848fdb00", + "registry": "npmjs" + }, + "types-registry-0.1.51.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.51.tgz", + "sha": "a689bf6f063a80d83bdcd7b3fbe503ddaf67efea", + "registry": "npmjs" + }, + "types-registry-0.1.52.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.52.tgz", + "sha": "028fc5965fb5c41ae03c6c56887997f7145cfff3", + "registry": "npmjs" + }, + "types-registry-0.1.53.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.53.tgz", + "sha": "49862fdfb2fb194685636a311c3d5e2874e6bb25", + "registry": "npmjs" + }, + "types-registry-0.1.54.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.54.tgz", + "sha": "cd4dde27bc1318cbb549708694d000917a597f1d", + "registry": "npmjs" + }, + "types-registry-0.1.55.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.55.tgz", + "sha": "fbde51410f3c03e64bc1ce62d34f157cac6c30a9", + "registry": "npmjs" + }, + "types-registry-0.1.56.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.56.tgz", + "sha": "8d99dd4c16301e262a0cb29b4059adc04c2504c5", + "registry": "npmjs" + }, + "types-registry-0.1.57.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.57.tgz", + "sha": "b103a96b3d04c1e1066eb65da304aa671795588f", + "registry": "npmjs" + }, + "types-registry-0.1.58.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.58.tgz", + "sha": "7747a721d1ce777a8045d35c89c98962f6d188a2", + "registry": "npmjs" + }, + "types-registry-0.1.59.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.59.tgz", + "sha": "df5c1f892967589d1facb57b9bd7d4ffe6b7a63f", + "registry": "npmjs" + }, + "types-registry-0.1.60.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.60.tgz", + "sha": "07c4dabd1977b06ad852731a33a2fbb4839aba90", + "registry": "npmjs" + }, + "types-registry-0.1.61.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.61.tgz", + "sha": "882510534fa6f83d090e32e379885e07b17201cd", + "registry": "npmjs" + }, + "types-registry-0.1.62.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.62.tgz", + "sha": "1152d5acec32d2d157a359e3f6343fa18062b475", + "registry": "npmjs" + }, + "types-registry-0.1.63.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.63.tgz", + "sha": "7d2346bca057b26ef15dcd2a9bf79d0ea722fd9d", + "registry": "npmjs" + }, + "types-registry-0.1.64.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.64.tgz", + "sha": "7e4a47d6dee4ea6066e0b2bb616392195d6ec578", + "registry": "npmjs" + }, + "types-registry-0.1.65.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.65.tgz", + "sha": "2ff68a2efdca57c0e9d95d05ca5bbf96d4c74d4f", + "registry": "npmjs" + }, + "types-registry-0.1.66.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.66.tgz", + "sha": "b1abd809723e8ea30bfec3320e80411b583065f0", + "registry": "npmjs" + }, + "types-registry-0.1.67.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.67.tgz", + "sha": "559c2ab178a5e21a1dd7829d477d6df21143c206", + "registry": "npmjs" + }, + "types-registry-0.1.68.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.68.tgz", + "sha": "ff8596219c688465a94f83efa32e2105a5871170", + "registry": "npmjs" + }, + "types-registry-0.1.69.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.69.tgz", + "sha": "4b672e2073ffe75af5ae9348bcb2a69f1fdc361d", + "registry": "npmjs" + }, + "types-registry-0.1.70.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.70.tgz", + "sha": "717885a9f192d33c5a86886a6d9846bfeb14a3c2", + "registry": "npmjs" + }, + "types-registry-0.1.71.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.71.tgz", + "sha": "d49db1a9b7ada82e9375ffefeb6f1ed546f1c1db", + "registry": "npmjs" + }, + "types-registry-0.1.72.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.72.tgz", + "sha": "36af228dfc9155c4663042ca1bd95cbfb242dec5", + "registry": "npmjs" + }, + "types-registry-0.1.73.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.73.tgz", + "sha": "3f7296da3cb4dd773147f6e5e899e20c70a7f6e6", + "registry": "npmjs" + }, + "types-registry-0.1.74.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.74.tgz", + "sha": "e2f361f94c57d35a2215185944d528ef806608a2", + "registry": "npmjs" + }, + "types-registry-0.1.75.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.75.tgz", + "sha": "4e7b746ca6712baca10c6775b5efe40e271dd58c", + "registry": "npmjs" + }, + "types-registry-0.1.76.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.76.tgz", + "sha": "51795fa12331a01fd544955abe802ba6b0d20864", + "registry": "npmjs" + }, + "types-registry-0.1.77.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.77.tgz", + "sha": "4604038ae24254459ea88ee4f1bcaac1b44d3bfb", + "registry": "npmjs" + }, + "types-registry-0.1.78.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.78.tgz", + "sha": "45cd32534e4429b52d0a0ab8d9ec8f98270d27c6", + "registry": "npmjs" + }, + "types-registry-0.1.79.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.79.tgz", + "sha": "3c81fe6126818032a820af3ea33942813a58f42d", + "registry": "npmjs" + }, + "types-registry-0.1.80.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.80.tgz", + "sha": "ccce73a0570042b447403107514058f9919659b0", + "registry": "npmjs" + }, + "types-registry-0.1.81.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.81.tgz", + "sha": "a9399c514aae052ca1d356c231a8fb135410c37a", + "registry": "npmjs" + }, + "types-registry-0.1.82.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.82.tgz", + "sha": "6c6418ca25dfa7470ab958ae0bbd88b255501ed3", + "registry": "npmjs" + }, + "types-registry-0.1.83.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.83.tgz", + "sha": "e3dd0ec47e127a15a1e6ea17d38b8acd3c3d40a1", + "registry": "npmjs" + }, + "types-registry-0.1.84.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.84.tgz", + "sha": "33c491a90c3cf7da2f5a7a0acfa6e8d9af083bca", + "registry": "npmjs" + }, + "types-registry-0.1.85.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.85.tgz", + "sha": "f3e4ea5677a402e42a7274a1893b989d78585179", + "registry": "npmjs" + }, + "types-registry-0.1.86.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.86.tgz", + "sha": "01c9a18d2a9beec15ad97b882ba4ce3f1a58330d", + "registry": "npmjs" + }, + "types-registry-0.1.87.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.87.tgz", + "sha": "cab69b15f661237cb089c4a8a7cb902cc9ffe9bf", + "registry": "npmjs" + }, + "types-registry-0.1.88.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.88.tgz", + "sha": "a2fe62b00a715a7dd7b81e64b9dfab3a9122bc7c", + "registry": "npmjs" + }, + "types-registry-0.1.89.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.89.tgz", + "sha": "072774a499602706cc517e594d2f17614ebd2fce", + "registry": "npmjs" + }, + "types-registry-0.1.90.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.90.tgz", + "sha": "d7b6f76452e4b2c26e0e47a414322a7de105edab", + "registry": "npmjs" + }, + "types-registry-0.1.91.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.91.tgz", + "sha": "7fdb47fd198d73b5993d359b5cf83742d50078be", + "registry": "npmjs" + }, + "types-registry-0.1.92.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.92.tgz", + "sha": "d8f38a54455aaef0781a1766b28ca150e6771382", + "registry": "npmjs" + }, + "types-registry-0.1.93.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.93.tgz", + "sha": "8ead6659a0a28eba88f44e5b2df8b348a2821151", + "registry": "npmjs" + }, + "types-registry-0.1.94.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.94.tgz", + "sha": "5620a83a458c9a2cb2e2333390e80fd4238c5c5c", + "registry": "npmjs" + }, + "types-registry-0.1.95.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.95.tgz", + "sha": "b8fbfdfb9b56124baf644cd8991258a20021f7d4", + "registry": "npmjs" + }, + "types-registry-0.1.96.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.96.tgz", + "sha": "269dbf9bdf6ec82db506a3aec66321452ec602a8", + "registry": "npmjs" + }, + "types-registry-0.1.97.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.97.tgz", + "sha": "0f9b8773190c6d70da1ac885a2b71860edf4149b", + "registry": "npmjs" + }, + "types-registry-0.1.98.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.98.tgz", + "sha": "66a5ce42f22c7a150cad80faa0bdfd23604ccb6d", + "registry": "npmjs" + }, + "types-registry-0.1.99.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.99.tgz", + "sha": "f8abf464eeb68ef28f04039066cb64354cdda211", + "registry": "npmjs" + }, + "types-registry-0.1.100.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.100.tgz", + "sha": "c121ae2afabafe0065345a06bcfce1365d61c12f", + "registry": "npmjs" + }, + "types-registry-0.1.101.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.101.tgz", + "sha": "a59b8d0d154d73893137c2ea892275a970323548", + "registry": "npmjs" + }, + "types-registry-0.1.102.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.102.tgz", + "sha": "01853b6207f2308093d0ef5ea07367d73c83afdd", + "registry": "npmjs" + }, + "types-registry-0.1.103.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.103.tgz", + "sha": "e77541f4cbadb8610ba2fc762e4df0520e93e96c", + "registry": "npmjs" + }, + "types-registry-0.1.104.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.104.tgz", + "sha": "0c3e1451533585c7556bfebb7ddf655681edac3f", + "registry": "npmjs" + }, + "types-registry-0.1.105.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.105.tgz", + "sha": "cd935213854473a01f51a02ec779f27bd0a866fb", + "registry": "npmjs" + }, + "types-registry-0.1.106.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.106.tgz", + "sha": "5a4011f7c3c39659d24efece07b0edeea05f8e53", + "registry": "npmjs" + }, + "types-registry-0.1.107.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.107.tgz", + "sha": "fa621f852106b5e701193bf521bef51fe1b226b8", + "registry": "npmjs" + }, + "types-registry-0.1.108.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.108.tgz", + "sha": "1261157df981ac918b78acc89587afc9745c1984", + "registry": "npmjs" + }, + "types-registry-0.1.109.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.109.tgz", + "sha": "c75775b35e71d7d174ce831489e580fada4f5445", + "registry": "npmjs" + }, + "types-registry-0.1.110.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.110.tgz", + "sha": "de38f8b1b83d1c69473826b3fa773ff3465ec280", + "registry": "npmjs" + }, + "types-registry-0.1.111.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.111.tgz", + "sha": "cfca8a9139a34e79201df1ff022fec69852d5ebb", + "registry": "npmjs" + }, + "types-registry-0.1.112.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.112.tgz", + "sha": "215026ac8bca2dc266bc5e977490308eb064c3f5", + "registry": "npmjs" + }, + "types-registry-0.1.113.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.113.tgz", + "sha": "c52754150956276f33a82f557eb4fb26027c049f", + "registry": "npmjs" + }, + "types-registry-0.1.114.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.114.tgz", + "sha": "ca7da8c35ebc558133bac9a2d8d6a744f976d4dc", + "registry": "npmjs" + }, + "types-registry-0.1.115.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.115.tgz", + "sha": "212e33f9e98140b84725736527911fbd7a3e01b5", + "registry": "npmjs" + }, + "types-registry-0.1.116.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.116.tgz", + "sha": "bceda1ed65cfd97892b517becff0cd79292d6154", + "registry": "npmjs" + }, + "types-registry-0.1.117.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.117.tgz", + "sha": "587b78c372be19c6a3639a8ec5b94c05d29bd8ec", + "registry": "npmjs" + }, + "types-registry-0.1.118.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.118.tgz", + "sha": "8ae058d988807b3a7f3b7b4c062fbefdd3e2a1db", + "registry": "npmjs" + }, + "types-registry-0.1.119.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.119.tgz", + "sha": "13d18978bb25809920db9692c2bc9e49c375c4a3", + "registry": "npmjs" + }, + "types-registry-0.1.120.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.120.tgz", + "sha": "4b93344c3b93be244a451a3b64003abab10e1b72", + "registry": "npmjs" + }, + "types-registry-0.1.121.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.121.tgz", + "sha": "40334d786eefbe022b735c3f3a65970ef8bcf15b", + "registry": "npmjs" + }, + "types-registry-0.1.122.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.122.tgz", + "sha": "ba0ec646b4099e9a7bfa36cf2f0c0e4f935c695c", + "registry": "npmjs" + }, + "types-registry-0.1.123.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.123.tgz", + "sha": "16edf444ea6db5401261beee4ece5ccf59059192", + "registry": "npmjs" + }, + "types-registry-0.1.124.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.124.tgz", + "sha": "90e038c3a00248fd7dbc0c5345c9d71b32843990", + "registry": "npmjs" + }, + "types-registry-0.1.125.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.125.tgz", + "sha": "9d92d9113bdc2a22cec34d52c9467f699d4c1007", + "registry": "npmjs" + }, + "types-registry-0.1.126.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.126.tgz", + "sha": "a2e85fc8cd62d67e2453e239c2a61f58deae5519", + "registry": "npmjs" + }, + "types-registry-0.1.127.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.127.tgz", + "sha": "1cb49572f94e092bae3ab7cb89c6b360b909bc6d", + "registry": "npmjs" + }, + "types-registry-0.1.128.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.128.tgz", + "sha": "2b3bb079e668f6f6233b9c69bbf86a2931e15161", + "registry": "npmjs" + }, + "types-registry-0.1.129.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.129.tgz", + "sha": "407921e5e74e41b03957db663cc77c686f4c8459", + "registry": "npmjs" + }, + "types-registry-0.1.130.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.130.tgz", + "sha": "22ab87cfdfd9e21cbae6581d1dcc6e135fca5cf5", + "registry": "npmjs" + }, + "types-registry-0.1.131.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.131.tgz", + "sha": "79a1890fdcae7b9f1ced13950a67ab4cf2dd779a", + "registry": "npmjs" + }, + "types-registry-0.1.132.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.132.tgz", + "sha": "07b30a3f045fc49272080e9c8cc80f9cdf1e5f54", + "registry": "npmjs" + }, + "types-registry-0.1.133.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.133.tgz", + "sha": "a87bbea6c558708d8fb59fcc51b7ad36ab4b12c3", + "registry": "npmjs" + }, + "types-registry-0.1.134.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.134.tgz", + "sha": "64675ff3dbfbdde385c9a3465de9360d24051a31", + "registry": "npmjs" + }, + "types-registry-0.1.135.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.135.tgz", + "sha": "67eb209317a648db385e2a4217d7556dd06db7ae", + "registry": "npmjs" + }, + "types-registry-0.1.136.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.136.tgz", + "sha": "bba9ab11e20085c6cadb68a659294070494bc0bf", + "registry": "npmjs" + }, + "types-registry-0.1.137.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.137.tgz", + "sha": "3b00960c288699c87e25bf97557a2b3d59ad0f50", + "registry": "npmjs" + }, + "types-registry-0.1.138.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.138.tgz", + "sha": "65c6b1e276bffaf79096ae680d976b0cb34de7e9", + "registry": "npmjs" + }, + "types-registry-0.1.139.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.139.tgz", + "sha": "e4e16da8f65f583d351f222fbf4d302e16b0b5fa", + "registry": "npmjs" + }, + "types-registry-0.1.140.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.140.tgz", + "sha": "de2dfb31cec0ab463f4e47f8b628dd6189403097", + "registry": "npmjs" + }, + "types-registry-0.1.141.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.141.tgz", + "sha": "2b62e1b4f751dcc46f0024d56cdd2464bc2b0f48", + "registry": "npmjs" + }, + "types-registry-0.1.142.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.142.tgz", + "sha": "d574be3f718bb866749562c1f699905295c1dec3", + "registry": "npmjs" + }, + "types-registry-0.1.143.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.143.tgz", + "sha": "31fe2084d692d8416bd6244c8200782f169b4648", + "registry": "npmjs" + }, + "types-registry-0.1.144.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.144.tgz", + "sha": "8c6ffbbed34ee923baed53346fa384ad1a3f43e7", + "registry": "npmjs" + }, + "types-registry-0.1.145.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.145.tgz", + "sha": "a18e305db2d2e1d261683e17a70bd3affe2a774b", + "registry": "npmjs" + }, + "types-registry-0.1.146.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.146.tgz", + "sha": "43c98228c792596c5fa6a8b4387a0e24551d6710", + "registry": "npmjs" + }, + "types-registry-0.1.147.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.147.tgz", + "sha": "e5d7973020bc996b9b14377703efc052d430f5ab", + "registry": "npmjs" + }, + "types-registry-0.1.148.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.148.tgz", + "sha": "e3363cc59bfdf1ec687aed1977037724cd7b86f9", + "registry": "npmjs" + }, + "types-registry-0.1.149.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.149.tgz", + "sha": "7d66f7dfe77c755152405ce82014b3bcc7ba5a4f", + "registry": "npmjs" + }, + "types-registry-0.1.150.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.150.tgz", + "sha": "e3722ae9334b9099775288611b3c7ef21d189d78", + "registry": "npmjs" + }, + "types-registry-0.1.151.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.151.tgz", + "sha": "cf87ff4570463490fd984cfe8812e0f4447623aa", + "registry": "npmjs" + }, + "types-registry-0.1.152.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.152.tgz", + "sha": "de5898f41891e8f06637492ba049712fb0fc9833", + "registry": "npmjs" + }, + "types-registry-0.1.153.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.153.tgz", + "sha": "a0866f38fcd9c58a71a5344d2911e229bbef62f9", + "registry": "npmjs" + }, + "types-registry-0.1.154.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.154.tgz", + "sha": "f742a3b3e2410282f52983fd68aadada9de1f771", + "registry": "npmjs" + }, + "types-registry-0.1.155.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.155.tgz", + "sha": "e447647fd54ecdc472a9036982afa97f838685d9", + "registry": "npmjs" + }, + "types-registry-0.1.156.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.156.tgz", + "sha": "5a0c54eccdc977976ecad3753e019ec9ca9284d9", + "registry": "npmjs" + }, + "types-registry-0.1.157.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.157.tgz", + "sha": "378debe00e66684cd4e9627ccff8014e82599fbc", + "registry": "npmjs" + }, + "types-registry-0.1.158.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.158.tgz", + "sha": "4a87b01b0cb2adc9f56dc79d31b74fe205ea39dd", + "registry": "npmjs" + }, + "types-registry-0.1.159.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.159.tgz", + "sha": "1c5f210d91e0fb6dbf01b6f4c7615051bda98fcf", + "registry": "npmjs" + }, + "types-registry-0.1.160.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.160.tgz", + "sha": "f0c428d539e67bf593aa876cc7d06fbde4781a03", + "registry": "npmjs" + }, + "types-registry-0.1.161.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.161.tgz", + "sha": "498a5edd228c1196892ad133b4a6249390794860", + "registry": "npmjs" + }, + "types-registry-0.1.162.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.162.tgz", + "sha": "3c0d67f357a18e5daf77e1a89d00634a3a82b8e9", + "registry": "npmjs" + }, + "types-registry-0.1.163.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.163.tgz", + "sha": "6f6259a6408b6158dc99e7c74e7898a9b28ff0f5", + "registry": "npmjs" + }, + "types-registry-0.1.164.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.164.tgz", + "sha": "b29cb76ccaca9998d15cc92b5228da0f65d96d6b", + "registry": "npmjs" + }, + "types-registry-0.1.165.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.165.tgz", + "sha": "53c6cd9bf56d9b29a5382360a1121a58f25b8edd", + "registry": "npmjs" + }, + "types-registry-0.1.166.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.166.tgz", + "sha": "4af7ab3d859027023f26ff7550a548f53d750bda", + "registry": "npmjs" + }, + "types-registry-0.1.167.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.167.tgz", + "sha": "f53c76a2468cdabc6b0838bc8a4a10e1310c6ff8", + "registry": "npmjs" + }, + "types-registry-0.1.168.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.168.tgz", + "sha": "209abca7047ae40862cbd1f83ae60e6ad9b616e7", + "registry": "npmjs" + }, + "types-registry-0.1.169.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.169.tgz", + "sha": "9eb49f679585c423746f3b138df969ff5dcd9d55", + "registry": "npmjs" + }, + "types-registry-0.1.170.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.170.tgz", + "sha": "e13b6bc138cae2c264df1f73d390f3052d68cfde", + "registry": "npmjs" + }, + "types-registry-0.1.171.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.171.tgz", + "sha": "4092ec0b60e27ccdfa47ca1d729912e936367c53", + "registry": "npmjs" + }, + "types-registry-0.1.172.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.172.tgz", + "sha": "85403fa89e2a2b4ed904a254310df20ffe213a68", + "registry": "npmjs" + }, + "types-registry-0.1.173.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.173.tgz", + "sha": "515e387db380d9a4e95050f597a34744af68a8b1", + "registry": "npmjs" + }, + "types-registry-0.1.174.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.174.tgz", + "sha": "40437ee3a3f88fd00d3e124ca3f3215d7fd343ea", + "registry": "npmjs" + }, + "types-registry-0.1.175.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.175.tgz", + "sha": "71815d4f7c6b155575f8e658843826c9980fd7b7", + "registry": "npmjs" + }, + "types-registry-0.1.176.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.176.tgz", + "sha": "6432455e5aa592d8416d363168b0f285deec08d3", + "registry": "npmjs" + }, + "types-registry-0.1.177.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.177.tgz", + "sha": "a15525704306516a0734f7ccc52dcd47bdcde1fd", + "registry": "npmjs" + }, + "types-registry-0.1.178.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.178.tgz", + "sha": "1ff5d1d010166b66c85bc54a3ab2926c2b9b1281", + "registry": "npmjs" + }, + "types-registry-0.1.179.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.179.tgz", + "sha": "229f689bf74a33c558f743bc0626bfa378141255", + "registry": "npmjs" + }, + "types-registry-0.1.180.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.180.tgz", + "sha": "89497027d7d6c4f3762c78824af75958aaeb4a49", + "registry": "npmjs" + }, + "types-registry-0.1.181.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.181.tgz", + "sha": "08ad26ef8bc3f01f561b06b08e543f7c319a8d34", + "registry": "npmjs" + }, + "types-registry-0.1.182.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.182.tgz", + "sha": "528d43cf83094e47a5be6c86dba0465f5440f13d", + "registry": "npmjs" + }, + "types-registry-0.1.183.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.183.tgz", + "sha": "3b611231f011ec9dd5109f492a3539f2bc9960b3", + "registry": "npmjs" + }, + "types-registry-0.1.184.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.184.tgz", + "sha": "e64abfea6f5f9e08cfb15c95563c0068c837af30", + "registry": "npmjs" + }, + "types-registry-0.1.185.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.185.tgz", + "sha": "df535de4a5500ecf090361c8b72b45585bef472b", + "registry": "npmjs" + }, + "types-registry-0.1.186.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.186.tgz", + "sha": "e208b9618300d32be117689719e3f96fe6481461", + "registry": "npmjs" + }, + "types-registry-0.1.187.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.187.tgz", + "sha": "767cbc327891047912ec2d593f8f85fd3f3ac5d0", + "registry": "npmjs" + }, + "types-registry-0.1.188.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.188.tgz", + "sha": "9653dc682fd2b27e2dddd240f989579a7fbdf064", + "registry": "npmjs" + }, + "types-registry-0.1.189.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.189.tgz", + "sha": "454a30c7faa8d4d179a9d19312f8578673673467", + "registry": "npmjs" + }, + "types-registry-0.1.190.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.190.tgz", + "sha": "f999a44ab198263c94a398d82619976efda8feff", + "registry": "npmjs" + }, + "types-registry-0.1.191.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.191.tgz", + "sha": "57186963e62f74b24047e6e5319c6996df84bdd6", + "registry": "npmjs" + }, + "types-registry-0.1.192.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.192.tgz", + "sha": "55a462aa19b31f8344a3849bf756b5321ee07fb6", + "registry": "npmjs" + }, + "types-registry-0.1.193.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.193.tgz", + "sha": "ccd483a8e44936ab61b193313b6c4a6dd64dae31", + "registry": "npmjs" + }, + "types-registry-0.1.194.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.194.tgz", + "sha": "87777da61fcf9a55335e5f653dc84c5667b3a1e3", + "registry": "npmjs" + }, + "types-registry-0.1.195.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.195.tgz", + "sha": "03115744a0fe722806f0c143221f1222df51c871", + "registry": "npmjs" + }, + "types-registry-0.1.196.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.196.tgz", + "sha": "c946af6b10c50c8b54cab678506285c2349f5798", + "registry": "npmjs" + }, + "types-registry-0.1.197.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.197.tgz", + "sha": "983accf13ff81799128e9d85a0711ba6dda67ee9", + "registry": "npmjs" + }, + "types-registry-0.1.198.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.198.tgz", + "sha": "c9d0ff7d329af23018781d0ccfee5253a9b974d3", + "registry": "npmjs" + }, + "types-registry-0.1.199.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.199.tgz", + "sha": "305aae690264260539a48c4e39c260e2cc791f11", + "registry": "npmjs" + }, + "types-registry-0.1.200.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.200.tgz", + "sha": "52d097c4bfe52020dfc424a0b243f456ccbd1919", + "registry": "npmjs" + }, + "types-registry-0.1.201.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.201.tgz", + "sha": "c2e08a86d129f66f88421a8602770a7a1168f672", + "registry": "npmjs" + }, + "types-registry-0.1.202.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.202.tgz", + "sha": "15ee68ae662d1ac52efddd01605b2fba6379dd9c", + "registry": "npmjs" + }, + "types-registry-0.1.203.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.203.tgz", + "sha": "d3237fbe7ed6f682c2be52efa1b78070dea21fcb", + "registry": "npmjs" + }, + "types-registry-0.1.204.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.204.tgz", + "sha": "2232fc5de3f5ae4bea52d0b0ee3c6b9ffbdca0a6", + "registry": "npmjs" + }, + "types-registry-0.1.205.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.205.tgz", + "sha": "fceb2855da5c31332876c218db60aa7be987f7f0", + "registry": "npmjs" + }, + "types-registry-0.1.206.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.206.tgz", + "sha": "41eb7b63a763bf66d9f3ff5a2a4fd436b35701ba", + "registry": "npmjs" + }, + "types-registry-0.1.207.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.207.tgz", + "sha": "d1fcfe4637b2b5095b66faa5aef98907fe7169bd", + "registry": "npmjs" + }, + "types-registry-0.1.208.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.208.tgz", + "sha": "285aca47c1b25421552d8d74b5fcc4a453952fe1", + "registry": "npmjs" + }, + "types-registry-0.1.209.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.209.tgz", + "sha": "b168b5a19af0b2f4d053781f8d8b226d338a3570", + "registry": "npmjs" + }, + "types-registry-0.1.210.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.210.tgz", + "sha": "48fb736015d685dea8cf57a894387ad145dce1d9", + "registry": "npmjs" + }, + "types-registry-0.1.211.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.211.tgz", + "sha": "d99f3dda6c3daabe7af1d987f1b4b3a36fc5809f", + "registry": "npmjs" + }, + "types-registry-0.1.212.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.212.tgz", + "sha": "1e5c46945e5af5d7380dfe67f76926f37ce29361", + "registry": "npmjs" + }, + "types-registry-0.1.213.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.213.tgz", + "sha": "894988f5231c322d7b42f6c60ba825be85241a7c", + "registry": "npmjs" + }, + "types-registry-0.1.214.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.214.tgz", + "sha": "8f259126972401923db6252519dd314d9cf40899", + "registry": "npmjs" + }, + "types-registry-0.1.215.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.215.tgz", + "sha": "3fde30ac0e8785adcf6eeaba34f823232268b341", + "registry": "npmjs" + }, + "types-registry-0.1.216.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.216.tgz", + "sha": "549454de71fb98e57319c9d00e038db19747e75a", + "registry": "npmjs" + }, + "types-registry-0.1.217.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.217.tgz", + "sha": "6253d0799dda59fef90163a9c8ea3e0233dbb5a6", + "registry": "npmjs" + }, + "types-registry-0.1.218.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.218.tgz", + "sha": "9cee2c1db8c70b8fb0697c0c87aa7e50438ade01", + "registry": "npmjs" + }, + "types-registry-0.1.219.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.219.tgz", + "sha": "52ab1bbc63f921a0aaf5fe9c197729ff52c9edd0", + "registry": "npmjs" + }, + "types-registry-0.1.220.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.220.tgz", + "sha": "46dacfce8378751c228e337f6e626e0d32affc68", + "registry": "npmjs" + }, + "types-registry-0.1.221.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.221.tgz", + "sha": "14246b49169fb1f4f5fb9ba6512a596189f9c87a", + "registry": "npmjs" + }, + "types-registry-0.1.222.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.222.tgz", + "sha": "107fc2ab7bf264ff48ae2a353872bbb52ba10cce", + "registry": "npmjs" + }, + "types-registry-0.1.223.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.223.tgz", + "sha": "b0c6816c89daac9b1eee89ff9614ab50142e76e9", + "registry": "npmjs" + }, + "types-registry-0.1.224.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.224.tgz", + "sha": "03c0fe731eac6e9d5f0881ba9ffb8af63284813f", + "registry": "npmjs" + }, + "types-registry-0.1.225.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.225.tgz", + "sha": "e53cc6c9172644728b450592c4b0710b6447dae3", + "registry": "npmjs" + }, + "types-registry-0.1.226.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.226.tgz", + "sha": "c6e1e88b3caca9adc5e9f2eefa7ace76c6b39b97", + "registry": "npmjs" + }, + "types-registry-0.1.227.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.227.tgz", + "sha": "a14be31756a94a16e33d55b148bc7f8ea9dc8d18", + "registry": "npmjs" + }, + "types-registry-0.1.228.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.228.tgz", + "sha": "797adb60132e29e91fbd336f4c6d9ef53046737a", + "registry": "npmjs" + }, + "types-registry-0.1.229.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.229.tgz", + "sha": "05c192e2124de6632b165c3285bc02b18b64a7b7", + "registry": "npmjs" + }, + "types-registry-0.1.230.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.230.tgz", + "sha": "03138755af1d5700abe20ed7e0211d980fb8bc7f", + "registry": "npmjs" + }, + "types-registry-0.1.231.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.231.tgz", + "sha": "3a16752e8464b388c7c288ec541a3b9b1038530a", + "registry": "npmjs" + }, + "types-registry-0.1.232.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.232.tgz", + "sha": "31093cf70e8a11429783fa6b6a6091f4982a4ea9", + "registry": "npmjs" + }, + "types-registry-0.1.233.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.233.tgz", + "sha": "788a087d2305d02ece91e8d7b6e7513d362ecf1d", + "registry": "npmjs" + }, + "types-registry-0.1.234.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.234.tgz", + "sha": "ee093840eb135709cf2f58375407347103fb7680", + "registry": "npmjs" + }, + "types-registry-0.1.235.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.235.tgz", + "sha": "d71a8a912af0b413ee105dd1389b62fcf95f19a8", + "registry": "npmjs" + }, + "types-registry-0.1.236.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.236.tgz", + "sha": "7932770eebecf04e82a2fb288a8ae4ec06d5f364", + "registry": "npmjs" + }, + "types-registry-0.1.237.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.237.tgz", + "sha": "bc8f27af039ece128cfecbcbfdff02f245fca316", + "registry": "npmjs" + }, + "types-registry-0.1.238.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.238.tgz", + "sha": "6aad731532fc15187880f603216eb54e026f7dbc", + "registry": "npmjs" + }, + "types-registry-0.1.239.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.239.tgz", + "sha": "d4bbe83b08045ce5bf8b9db18558e4d361433709", + "registry": "npmjs" + }, + "types-registry-0.1.240.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.240.tgz", + "sha": "b1c1f96bec6f3eb5a62c1c65a4d8949e049c9b98", + "registry": "npmjs" + }, + "types-registry-0.1.241.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.241.tgz", + "sha": "273864b530291742daa791c841fb60c414eaf351", + "registry": "npmjs" + }, + "types-registry-0.1.242.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.242.tgz", + "sha": "68159fcf39ad1c3e5235290e0caa254704c30271", + "registry": "npmjs" + }, + "types-registry-0.1.243.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.243.tgz", + "sha": "35c47f291fc055bc48ebf7fea5c60506363360d5", + "registry": "npmjs" + }, + "types-registry-0.1.244.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.244.tgz", + "sha": "3d0e5f0a3b1694e05ce1c93aa7232b5d9dc9ad05", + "registry": "npmjs" + }, + "types-registry-0.1.245.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.245.tgz", + "sha": "7aa830d943fc301db4161c2b5d46b08fbd6a61c3", + "registry": "npmjs" + }, + "types-registry-0.1.246.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.246.tgz", + "sha": "e83b26b441c8ea9931568cd8bf2649cdec131371", + "registry": "npmjs" + }, + "types-registry-0.1.247.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.247.tgz", + "sha": "5fe00e6995438ae116cd61cfe0a6cc8f16a259c8", + "registry": "npmjs" + }, + "types-registry-0.1.248.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.248.tgz", + "sha": "78ce26182a8dcb5d450b6cbf8eac0bcfaa2b51c6", + "registry": "npmjs" + }, + "types-registry-0.1.249.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.249.tgz", + "sha": "5b38d3216ccdc853185964985eb8fd7ce6fb1413", + "registry": "npmjs" + }, + "types-registry-0.1.250.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.250.tgz", + "sha": "1bc9013007312523734f10c67c2eb82c6fd052e5", + "registry": "npmjs" + }, + "types-registry-0.1.251.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.251.tgz", + "sha": "ffb74268878bea0009f43cc0a45f18bd73211167", + "registry": "npmjs" + }, + "types-registry-0.1.252.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.252.tgz", + "sha": "adafa2695208aac610e53caec8948944fcf1291d", + "registry": "npmjs" + }, + "types-registry-0.1.253.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.253.tgz", + "sha": "5b4629c174d29863163270f63742bd37aa7c3b1e", + "registry": "npmjs" + }, + "types-registry-0.1.254.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.254.tgz", + "sha": "8891f7b887994aa932bee92f55a4d3d68b6d62ac", + "registry": "npmjs" + }, + "types-registry-0.1.255.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.255.tgz", + "sha": "89bdd0b1a32ba91417f8a66c50cc9c8410327ab6", + "registry": "npmjs" + }, + "types-registry-0.1.256.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.256.tgz", + "sha": "b8dfcf1faa8ec46408d6a4bcbe50f831a860fe8f", + "registry": "npmjs" + }, + "types-registry-0.1.257.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.257.tgz", + "sha": "ac6a8049c8c5c41a152d8f5a9d74c71cacb8e629", + "registry": "npmjs" + }, + "types-registry-0.1.258.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.258.tgz", + "sha": "9786257310b2f6890e72944eff80cf5206469128", + "registry": "npmjs" + }, + "types-registry-0.1.259.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.259.tgz", + "sha": "a81be860d1316c43cb5dc50dfbcb36d2504990e9", + "registry": "npmjs" + }, + "types-registry-0.1.260.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.260.tgz", + "sha": "1e7201c33237d5420277b1f7544678cca82e22bb", + "registry": "npmjs" + }, + "types-registry-0.1.261.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.261.tgz", + "sha": "576f2fca1e08a881cb2b1a72e31a50c5c7ec05b9", + "registry": "npmjs" + }, + "types-registry-0.1.262.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.262.tgz", + "sha": "461d884a3cec9aae59a993c109b8f59dad25eefd", + "registry": "npmjs" + }, + "types-registry-0.1.263.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.263.tgz", + "sha": "a64696b532871d3d9b2241455262a5b1ec329c62", + "registry": "npmjs" + }, + "types-registry-0.1.264.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.264.tgz", + "sha": "2c665410c693103a5cb00abb1fa2368d15337b7c", + "registry": "npmjs" + }, + "types-registry-0.1.265.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.265.tgz", + "sha": "e5643ae348869f00acfbf4cf75816162738a56bf", + "registry": "npmjs" + }, + "types-registry-0.1.266.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.266.tgz", + "sha": "a13f9d56ef528a379f462fb7373cff1ff465f64e", + "registry": "npmjs" + }, + "types-registry-0.1.267.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.267.tgz", + "sha": "50c495f89fce05c22e03dbd6bb564ade83cea2f3", + "registry": "npmjs" + }, + "types-registry-0.1.268.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.268.tgz", + "sha": "9cc199c5ce4f40152379cc2aa4ac08aa85496781", + "registry": "npmjs" + }, + "types-registry-0.1.269.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.269.tgz", + "sha": "c9caf8fdcf124fe6396af48a9ab0cda1df70e6c3", + "registry": "npmjs" + }, + "types-registry-0.1.270.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.270.tgz", + "sha": "0d121f44d3c09843a33dbb7b4cadf02a10d4893d", + "registry": "npmjs" + }, + "types-registry-0.1.271.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.271.tgz", + "sha": "83b914f8cda1a39d2cb268641eaee92797602db1", + "registry": "npmjs" + }, + "types-registry-0.1.272.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.272.tgz", + "sha": "40c45740f4c732111db7879a81c67bcaf310a36b", + "registry": "npmjs" + }, + "types-registry-0.1.273.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.273.tgz", + "sha": "2ce83b2948e1f7e617ae3ee138f6b5b5a8d9cc44", + "registry": "npmjs" + }, + "types-registry-0.1.274.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.274.tgz", + "sha": "ba6e553c51365443303afa558f9a4f625534a45f", + "registry": "npmjs" + }, + "types-registry-0.1.275.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.275.tgz", + "sha": "97e5f794f71d531ca1349248db593ad08d3c9586", + "registry": "npmjs" + }, + "types-registry-0.1.276.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.276.tgz", + "sha": "4927d71b02eb71f91841a7c2185ebe32d81a0370", + "registry": "npmjs" + }, + "types-registry-0.1.277.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.277.tgz", + "sha": "d099562add2ea2888513eba4144c187e89825272", + "registry": "npmjs" + }, + "types-registry-0.1.278.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.278.tgz", + "sha": "0e5d7cec35996f746e50a54a3a52465b762589de", + "registry": "npmjs" + }, + "types-registry-0.1.279.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.279.tgz", + "sha": "462d9f0ec0bbd70bc1b0f7cf19282368edccc9d3", + "registry": "npmjs" + }, + "types-registry-0.1.280.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.280.tgz", + "sha": "be7c0ceec26ca6c9adbeee6a65baad74901b9bd0", + "registry": "npmjs" + }, + "types-registry-0.1.281.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.281.tgz", + "sha": "3572c2051291fc56f9f533cdbc4b511b9903a90e", + "registry": "npmjs" + }, + "types-registry-0.1.282.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.282.tgz", + "sha": "6efe30ad0dad25cfda9cbed8a548e9a84589a501", + "registry": "npmjs" + }, + "types-registry-0.1.283.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.283.tgz", + "sha": "d91fa421765ca8f3406b33a66e998bb385f77f05", + "registry": "npmjs" + }, + "types-registry-0.1.284.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.284.tgz", + "sha": "a70f68ab06d6598c0914c7827521463e78beb9ae", + "registry": "npmjs" + }, + "types-registry-0.1.285.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.285.tgz", + "sha": "5b8a164d903693e1062e6b13afcaf818453b81de", + "registry": "npmjs" + }, + "types-registry-0.1.286.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.286.tgz", + "sha": "f9920260a205004ccf787e22e82a27ec38e580ab", + "registry": "npmjs" + }, + "types-registry-0.1.287.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.287.tgz", + "sha": "f9bdbb20f4ff47b229470f041b22f9977ec0ff9a", + "registry": "npmjs" + }, + "types-registry-0.1.288.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.288.tgz", + "sha": "55e2fefb3e23f062d49f16eae7c73458a2bb4b6f", + "registry": "npmjs" + }, + "types-registry-0.1.289.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.289.tgz", + "sha": "e6d460d630869f45a19087b521c82fda39820a1a", + "registry": "npmjs" + }, + "types-registry-0.1.290.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.290.tgz", + "sha": "bd0eb02438f5ce202c845b69b6f691bf8607de42", + "registry": "npmjs" + }, + "types-registry-0.1.291.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.291.tgz", + "sha": "2294eac015eca1f68f63b42f755a428fbe542c95", + "registry": "npmjs" + }, + "types-registry-0.1.292.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.292.tgz", + "sha": "25f8ded167d5ae06c68c616f805dc5028c8457d1", + "registry": "npmjs" + }, + "types-registry-0.1.293.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.293.tgz", + "sha": "67973938869b2122e6ad85f03050dd2b536a4999", + "registry": "npmjs" + }, + "types-registry-0.1.294.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.294.tgz", + "sha": "d0e0ba7b3ce7e7a888b0c2722f8f95f15386073a", + "registry": "npmjs" + }, + "types-registry-0.1.295.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.295.tgz", + "sha": "1a142603bfacaca502785e32d3d9022552473425", + "registry": "npmjs" + }, + "types-registry-0.1.296.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.296.tgz", + "sha": "18b66e30cb5eced688f286beb97a23316e7169e6", + "registry": "npmjs" + }, + "types-registry-0.1.297.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.297.tgz", + "sha": "0924223f7cc05e13f3e8cf743a4cbda78a553519", + "registry": "npmjs" + }, + "types-registry-0.1.298.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.298.tgz", + "sha": "37c8a605d1f824915a8871e16d931cabdeb17bed", + "registry": "npmjs" + }, + "types-registry-0.1.299.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.299.tgz", + "sha": "a4c6e36da0f3dc3a223f4c09ec1e8f7967c07014", + "registry": "npmjs" + }, + "types-registry-0.1.300.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.300.tgz", + "sha": "908c8f162852467cabc8c13f910b1d02a4ad3f66", + "registry": "npmjs" + }, + "types-registry-0.1.301.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.301.tgz", + "sha": "35df336cec0d958e62814b03daccfcc0c21b4fb8", + "registry": "npmjs" + }, + "types-registry-0.1.302.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.302.tgz", + "sha": "f9872f1e119e8099e95592e45d87a68fb3455285", + "registry": "npmjs" + }, + "types-registry-0.1.303.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.303.tgz", + "sha": "3a1d65e80064c38b5cf07a2c972fc52132cc3bdf", + "registry": "npmjs" + }, + "types-registry-0.1.304.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.304.tgz", + "sha": "52b5aad6eb55a4b1fb5d33c167aa2070b343e7fe", + "registry": "npmjs" + }, + "types-registry-0.1.305.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.305.tgz", + "sha": "0ae2dd83911e403a4959c4cd5a3d8938b9837ff9", + "registry": "npmjs" + }, + "types-registry-0.1.306.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.306.tgz", + "sha": "9312d6d99ee568a3ab1943c2304dc9648ecaf3aa", + "registry": "npmjs" + }, + "types-registry-0.1.307.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.307.tgz", + "sha": "995f9267a5d9432a984216bb740ca8e09cc4950b", + "registry": "npmjs" + }, + "types-registry-0.1.308.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.308.tgz", + "sha": "ffe8badd7eaf4dbeff6571235422fed569a54c79", + "registry": "npmjs" + }, + "types-registry-0.1.309.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.309.tgz", + "sha": "35a3b06da4565340482f8fb81e605696910efe05", + "registry": "npmjs" + }, + "types-registry-0.1.310.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.310.tgz", + "sha": "3f93ffd18f001cec87861be575e9d85091fea7fc", + "registry": "npmjs" + }, + "types-registry-0.1.311.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.311.tgz", + "sha": "78bfba6119a865267ce2a0a383b8247eaf3da70f", + "registry": "npmjs" + }, + "types-registry-0.1.312.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.312.tgz", + "sha": "8c6b99789bf9b889d811cc4e24cfc1c1a972cef1", + "registry": "npmjs" + }, + "types-registry-0.1.313.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.313.tgz", + "sha": "b3af5ccd80d5d8e647625e878abd743fd839b314", + "registry": "npmjs" + }, + "types-registry-0.1.314.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.314.tgz", + "sha": "4acb48834a63911469951acebdf78b04eb3e9ee0", + "registry": "npmjs" + }, + "types-registry-0.1.315.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.315.tgz", + "sha": "fc6c7569f1fcad2cb2ec9bca2549fbf8ce56dcdc", + "registry": "npmjs" + }, + "types-registry-0.1.316.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.316.tgz", + "sha": "037ae04af560ee2740a4013d946931d826daa8c3", + "registry": "npmjs" + }, + "types-registry-0.1.317.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.317.tgz", + "sha": "2489ed10116c3fb5fa14fab0fdadda6af4e117e6", + "registry": "npmjs" + }, + "types-registry-0.1.318.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.318.tgz", + "sha": "b75c8b102b244348de21bf9b53279c5b6ee70999", + "registry": "npmjs" + }, + "types-registry-0.1.319.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.319.tgz", + "sha": "c525be5eff69349b667cd17e60f86246a7f5318d", + "registry": "npmjs" + }, + "types-registry-0.1.320.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.320.tgz", + "sha": "b7a39c357048512b87b49e31abeba27b4812b628", + "registry": "npmjs" + }, + "types-registry-0.1.321.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.321.tgz", + "sha": "29fcf1fbc74667bdef4414cf73bfa5e3cbf2cade", + "registry": "npmjs" + }, + "types-registry-0.1.322.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.322.tgz", + "sha": "cec9ccb00b3f4b509c656369eb93f446ada2b739", + "registry": "npmjs" + }, + "types-registry-0.1.323.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.323.tgz", + "sha": "847959a039229cb28819ad833999384249044d0e", + "registry": "npmjs" + }, + "types-registry-0.1.324.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.324.tgz", + "sha": "1ec98b1430ff3b6d94f999c1bec20d5bec9fabe4", + "registry": "npmjs" + }, + "types-registry-0.1.325.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.325.tgz", + "sha": "128ea50165e893b136eac38eb1ab417fce6d10da", + "registry": "npmjs" + }, + "types-registry-0.1.326.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.326.tgz", + "sha": "d4f151050326b1738e347a8ae241f0b7c6b8fec5", + "registry": "npmjs" + }, + "types-registry-0.1.327.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.327.tgz", + "sha": "b6b68e3149c47db20167c0940b75784ad0f2f771", + "registry": "npmjs" + }, + "types-registry-0.1.328.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.328.tgz", + "sha": "00eeef1ec25ee55c824bc8d140369cb67ad36e9a", + "registry": "npmjs" + }, + "types-registry-0.1.329.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.329.tgz", + "sha": "29a70f90c9e3cdd38df32b21dab664ddb4bb4fd8", + "registry": "npmjs" + }, + "types-registry-0.1.330.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.330.tgz", + "sha": "ca5224515426c4497eee8c6299203f7948732dab", + "registry": "npmjs" + }, + "types-registry-0.1.331.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.331.tgz", + "sha": "01614ec8ee222d91a27be789d9e75c7c205025e5", + "registry": "npmjs" + }, + "types-registry-0.1.332.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.332.tgz", + "sha": "c01759c1f0c8a27124167ca7b3b475d5e7f134ba", + "registry": "npmjs" + }, + "types-registry-0.1.333.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.333.tgz", + "sha": "63c353064bfbdbf2218a023f6d6cfe4ea66ba983", + "registry": "npmjs" + }, + "types-registry-0.1.334.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.334.tgz", + "sha": "cafc8476a29c4b770b583b3ddc93d8ac957b2d00", + "registry": "npmjs" + }, + "types-registry-0.1.335.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.335.tgz", + "sha": "fd28eeaac6baa827d039959c8921a8f1d3557027", + "registry": "npmjs" + }, + "types-registry-0.1.336.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.336.tgz", + "sha": "59cbebf8e81fc633e39ec58663fdfbbd3cf33899", + "registry": "npmjs" + }, + "types-registry-0.1.337.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.337.tgz", + "sha": "b703f34c31a5ac9164daeca6d035a0c859114771", + "registry": "npmjs" + }, + "types-registry-0.1.338.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.338.tgz", + "sha": "f8213f1e607e312e93201a1172d06136e81845e3", + "registry": "npmjs" + }, + "types-registry-0.1.339.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.339.tgz", + "sha": "3f9a9bfdcfe6e3a1c68aeadc6f9e04634f937bce", + "registry": "npmjs" + }, + "types-registry-0.1.340.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.340.tgz", + "sha": "d0a29b5f0eefcbb4e8e00224029cc0e60932ea62", + "registry": "npmjs" + }, + "types-registry-0.1.341.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.341.tgz", + "sha": "5aad1d6f5e7eba82c0652a2613825749981c9269", + "registry": "npmjs" + }, + "types-registry-0.1.342.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.342.tgz", + "sha": "6b7990fe8b149008212b491c3098f20512e17474", + "registry": "npmjs" + }, + "types-registry-0.1.343.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.343.tgz", + "sha": "e520b4f678c6ef9c06a31624f9be732a10d43331", + "registry": "npmjs" + }, + "types-registry-0.1.344.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.344.tgz", + "sha": "0dccb48a68e16935ea236719f239b5591140c8a7", + "registry": "npmjs" + }, + "types-registry-0.1.345.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.345.tgz", + "sha": "edae8ba5a94412a66603b44832ea5b6f2e31efb7", + "registry": "npmjs" + }, + "types-registry-0.1.346.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.346.tgz", + "sha": "15918285ea592f807a049fae1e4602c8cbabad93", + "registry": "npmjs" + }, + "types-registry-0.1.347.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.347.tgz", + "sha": "588ee8bb7336d8c389a49aafb538e6b1d81bceb2", + "registry": "npmjs" + }, + "types-registry-0.1.348.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.348.tgz", + "sha": "fec7eef29a4cd2068951a6a476685a5f2d2b5e93", + "registry": "npmjs" + }, + "types-registry-0.1.349.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.349.tgz", + "sha": "c539ac1290a075c425180efa378eff458dc67766", + "registry": "npmjs" + }, + "types-registry-0.1.350.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.350.tgz", + "sha": "64ca391100af20bde77c9c39f7d7902c1934f84f", + "registry": "npmjs" + }, + "types-registry-0.1.351.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.351.tgz", + "sha": "97dab1d94d17710b3e7718b1b48c100df7290c7b", + "registry": "npmjs" + }, + "types-registry-0.1.352.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.352.tgz", + "sha": "b85d7429548b4ac69163828895a267e11b280a0f", + "registry": "npmjs" + }, + "types-registry-0.1.353.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.353.tgz", + "sha": "ee6ef955140f45a5a51545af70dd6b8cf5704e12", + "registry": "npmjs" + }, + "types-registry-0.1.354.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.354.tgz", + "sha": "5ab37d548e6d7cbece02c7b81d82d168cbfcec5e", + "registry": "npmjs" + }, + "types-registry-0.1.355.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.355.tgz", + "sha": "7cc7d67d038f908d0403989f7ec3a9a50700d6d5", + "registry": "npmjs" + }, + "types-registry-0.1.356.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.356.tgz", + "sha": "4687314e1c01b48f4bae45989857caf0a29ab30d", + "registry": "npmjs" + }, + "types-registry-0.1.357.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.357.tgz", + "sha": "210111116f2d05957a50a5ea09d3c5401ced7035", + "registry": "npmjs" + }, + "types-registry-0.1.358.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.358.tgz", + "sha": "4c28bcccd8e72c3691a63646dad0ed8bea7707fe", + "registry": "npmjs" + }, + "types-registry-0.1.359.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.359.tgz", + "sha": "74f0b6caf365cd2d9a8e8275339b193485318102", + "registry": "npmjs" + }, + "types-registry-0.1.360.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.360.tgz", + "sha": "faef28d28a614065de57f146d6d543a591567a87", + "registry": "npmjs" + }, + "types-registry-0.1.361.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.361.tgz", + "sha": "0e2b3634de85630eb945ba39442e7d1945cb6966", + "registry": "npmjs" + }, + "types-registry-0.1.362.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.362.tgz", + "sha": "3a3bed06eeb492b69acca161c8352756ce236b11", + "registry": "npmjs" + }, + "types-registry-0.1.363.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.363.tgz", + "sha": "e88ee69fdaa83912b2fce4b4e4f4f3c410e2699e", + "registry": "npmjs" + }, + "types-registry-0.1.364.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.364.tgz", + "sha": "199d07bfb15a16926d7e4217b7280a900c5c6183", + "registry": "npmjs" + }, + "types-registry-0.1.365.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.365.tgz", + "sha": "2d14e4e601defd4f3f538552c0f04a7f0a8679ff", + "registry": "npmjs" + }, + "types-registry-0.1.366.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.366.tgz", + "sha": "d6a45b0d550bce3e48daf10bb0ac7cf9618ade45", + "registry": "npmjs" + }, + "types-registry-0.1.367.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.367.tgz", + "sha": "7beffdecb5f3f271c58e953c6e2ac9018ea14110", + "registry": "npmjs" + }, + "types-registry-0.1.368.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.368.tgz", + "sha": "ae9f86ba826f2cdf24bf0f90f2549998ba6163c4", + "registry": "npmjs" + }, + "types-registry-0.1.369.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.369.tgz", + "sha": "36c41e0826056262bb6889080f6562e32cbf1215", + "registry": "npmjs" + }, + "types-registry-0.1.370.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.370.tgz", + "sha": "b00fca9cbd35e9bea469d34ed8016f0b2b3b28e3", + "registry": "npmjs" + }, + "types-registry-0.1.371.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.371.tgz", + "sha": "980a0e8d2694d46ce39755409ecacc67a570123d", + "registry": "npmjs" + }, + "types-registry-0.1.372.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.372.tgz", + "sha": "46fee99468f786b37552ad68eacb5a56c540a0dc", + "registry": "npmjs" + }, + "types-registry-0.1.373.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.373.tgz", + "sha": "fa075b55b32e2468a55fca62decfdcdbd2c09264", + "registry": "npmjs" + }, + "types-registry-0.1.374.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.374.tgz", + "sha": "ef8467211e589dd47cb124ef0bdff28ecbe32482", + "registry": "npmjs" + }, + "types-registry-0.1.375.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.375.tgz", + "sha": "1428e560b1bd28890aa95ff479e15572a4f34f07", + "registry": "npmjs" + }, + "types-registry-0.1.376.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.376.tgz", + "sha": "08386d064448358c80f417b02f1dabf765d5e494", + "registry": "npmjs" + }, + "types-registry-0.1.377.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.377.tgz", + "sha": "5b85a3b0698ca3c7de0b0c04eb2e03efdeeda755", + "registry": "npmjs" + }, + "types-registry-0.1.378.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.378.tgz", + "sha": "cae503dce9b0bd7a2d077d05ed3ab793beb2e076", + "registry": "npmjs" + }, + "types-registry-0.1.379.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.379.tgz", + "sha": "7b4a5f376450fdea30c8b90a9fa4ffebc84da371", + "registry": "npmjs" + }, + "types-registry-0.1.380.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.380.tgz", + "sha": "28eef1f184db815f45342f426193ff62c98507bf", + "registry": "npmjs" + }, + "types-registry-0.1.381.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.381.tgz", + "sha": "1a48ba8990e7eff2b478c66d0a73165551bd6255", + "registry": "npmjs" + }, + "types-registry-0.1.382.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.382.tgz", + "sha": "a0151ceeea15a778a3d967cc2f6216460b49a968", + "registry": "npmjs" + }, + "types-registry-0.1.383.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.383.tgz", + "sha": "ce9f9c2ea3675d3dfc7fbf07a275c233b7483b6d", + "registry": "npmjs" + }, + "types-registry-0.1.384.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.384.tgz", + "sha": "5d825cbaa4c2b33c2b058fec9ee1391688958e94", + "registry": "npmjs" + }, + "types-registry-0.1.385.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.385.tgz", + "sha": "80965dd5712482431fc73e39336bf1be6366d904", + "registry": "npmjs" + }, + "types-registry-0.1.386.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.386.tgz", + "sha": "0ee86c0edac1a0db22fe1f0396654cdc900a68ae", + "registry": "npmjs" + }, + "types-registry-0.1.387.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.387.tgz", + "sha": "5acdbb0dc80136187600feb0ee914747a4959fbd", + "registry": "npmjs" + }, + "types-registry-0.1.388.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.388.tgz", + "sha": "1aa9da8fcb380ac8bc23c2b6d8a737de0fbd69ed", + "registry": "npmjs" + }, + "types-registry-0.1.389.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.389.tgz", + "sha": "ad4d3bc6d6781d011336805ee8d52e779a759011", + "registry": "npmjs" + }, + "types-registry-0.1.390.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.390.tgz", + "sha": "056248bf4f333ab0b5fd71a4072037a8b53ae73c", + "registry": "npmjs" + }, + "types-registry-0.1.391.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.391.tgz", + "sha": "9a49f9cf308f484e4f5ff7ac2419c4de862c286c", + "registry": "npmjs" + }, + "types-registry-0.1.392.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.392.tgz", + "sha": "ecad0b373be988b07f65e92b34c9abe9fff2ac83", + "registry": "npmjs" + }, + "types-registry-0.1.393.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.393.tgz", + "sha": "4d1828640373f4a0aa94d3efdec720bba9c04639", + "registry": "npmjs" + }, + "types-registry-0.1.394.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.394.tgz", + "sha": "8e93af6aa430802af279eae632b18184c1acc0d0", + "registry": "npmjs" + }, + "types-registry-0.1.395.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.395.tgz", + "sha": "93e71f28c3d36b32ed43dc70eb39b4ce3d5e3162", + "registry": "npmjs" + }, + "types-registry-0.1.396.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.396.tgz", + "sha": "ac641ab372ba5970c40ab9e75c6d90f25e9a77fe", + "registry": "npmjs" + }, + "types-registry-0.1.397.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.397.tgz", + "sha": "ba45f52e7eb34e43742b59900cf67a232e82c93a", + "registry": "npmjs" + }, + "types-registry-0.1.398.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.398.tgz", + "sha": "47547de7c6f47e7f12de6b77bdb09d122e7abdc3", + "registry": "npmjs" + }, + "types-registry-0.1.399.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.399.tgz", + "sha": "726000609fe82d229b2cf46591ec83cf2341c547", + "registry": "npmjs" + }, + "types-registry-0.1.400.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.400.tgz", + "sha": "02ad94e79f6a056e446774ccc624798d97876c10", + "registry": "npmjs" + }, + "types-registry-0.1.401.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.401.tgz", + "sha": "b36a202f50db4ed5c7176202475ddafe224e6798", + "registry": "npmjs" + }, + "types-registry-0.1.402.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.402.tgz", + "sha": "1a80c79eb9e93c89ca0f69ee1acf245068ef96e5", + "registry": "npmjs" + }, + "types-registry-0.1.403.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.403.tgz", + "sha": "b4a21d43d5d3fbacb4d14bd182321cace0f4e8ca", + "registry": "npmjs" + }, + "types-registry-0.1.404.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.404.tgz", + "sha": "cc66605989a5636dbcd64ce3d247cebb8bb424e7", + "registry": "npmjs" + }, + "types-registry-0.1.405.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.405.tgz", + "sha": "5d0d49ee82bdc7498de81e27ac43c63dea0fc8d4", + "registry": "npmjs" + }, + "types-registry-0.1.406.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.406.tgz", + "sha": "2aff1e214076d1633173fa5cc21226103167da48", + "registry": "npmjs" + }, + "types-registry-0.1.407.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.407.tgz", + "sha": "dc3ea15e499c6c66e138bf7ed272541babdf503f", + "registry": "npmjs" + }, + "types-registry-0.1.408.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.408.tgz", + "sha": "b39ac88b3325da2f1922ee3c0c2cbb7cc55fcfce", + "registry": "npmjs" + }, + "types-registry-0.1.409.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.409.tgz", + "sha": "01933ff79b1c0eb6a0730a75832b55dccab49c50", + "registry": "npmjs" + }, + "types-registry-0.1.410.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.410.tgz", + "sha": "01654c3c961827ea62ba3e194ba60a36782c977e", + "registry": "npmjs" + }, + "types-registry-0.1.411.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.411.tgz", + "sha": "be96e0cfee1694b22b487e7035f41c2872504e24", + "registry": "npmjs" + }, + "types-registry-0.1.412.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.412.tgz", + "sha": "3e821a202e5db7563bb86baec5f8b1a1ef50b435", + "registry": "npmjs" + }, + "types-registry-0.1.413.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.413.tgz", + "sha": "fefc36c7cbf8c42fc16c7b0793ef1c066769fa21", + "registry": "npmjs" + }, + "types-registry-0.1.414.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.414.tgz", + "sha": "ed4dd861cc2635e942b0d279d2c41e30c18e4963", + "registry": "npmjs" + }, + "types-registry-0.1.415.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.415.tgz", + "sha": "381abe31503028c2e949105df8339fe8460d6509", + "registry": "npmjs" + }, + "types-registry-0.1.416.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.416.tgz", + "sha": "f1f9ed429da29f36cdb3bfb540ec43a26b3f7e80", + "registry": "npmjs" + }, + "types-registry-0.1.417.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.417.tgz", + "sha": "8cdf78ca3f7f527a64954f95e3eec160fde705bd", + "registry": "npmjs" + }, + "types-registry-0.1.418.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.418.tgz", + "sha": "69d1626de21bcaf2e3b50e4fd1e64523ba356f89", + "registry": "npmjs" + }, + "types-registry-0.1.419.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.419.tgz", + "sha": "91edf6fb4a57a68f285ed9c589be175f20674aa0", + "registry": "npmjs" + }, + "types-registry-0.1.420.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.420.tgz", + "sha": "07f81c1d57baa342dc6e582ef58318d5eca30abd", + "registry": "npmjs" + }, + "types-registry-0.1.421.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.421.tgz", + "sha": "dd48e59697adf8869890b45c55b60a9985d59aa4", + "registry": "npmjs" + }, + "types-registry-0.1.422.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.422.tgz", + "sha": "41ebcdeba0919ea4b0c79a4f295197b7626a749d", + "registry": "npmjs" + }, + "types-registry-0.1.423.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.423.tgz", + "sha": "a36c9559433b3f89e3778c209b2d6e625b1b5985", + "registry": "npmjs" + }, + "types-registry-0.1.424.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.424.tgz", + "sha": "99c90ce89dd05cd057c132a15f7a4be66bd38188", + "registry": "npmjs" + }, + "types-registry-0.1.425.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.425.tgz", + "sha": "fc2d3c9f462fe2a2e4cdb51fdb4aeba2b67a5827", + "registry": "npmjs" + }, + "types-registry-0.1.426.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.426.tgz", + "sha": "76447d1a0c7a1a4a791b73ed67d48c08f6d50808", + "registry": "npmjs" + }, + "types-registry-0.1.427.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.427.tgz", + "sha": "f80855366c3dd23d07aa5ad79dd89a9511c518ed", + "registry": "npmjs" + }, + "types-registry-0.1.428.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.428.tgz", + "sha": "720c9cce52c8cc0bdd38b96baef07cdfff5f8c12", + "registry": "npmjs" + }, + "types-registry-0.1.429.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.429.tgz", + "sha": "1de67ae799c5951dfaacdb0ce4a45d1f558286cc", + "registry": "npmjs" + }, + "types-registry-0.1.430.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.430.tgz", + "sha": "be2635d87d1a41908d3856fcafc9fc9a07b466d6", + "registry": "npmjs" + }, + "types-registry-0.1.431.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.431.tgz", + "sha": "a6420322c893a0570ad54ed3fdaa7b26a211a5b6", + "registry": "npmjs" + }, + "types-registry-0.1.432.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.432.tgz", + "sha": "c37d5f70f6147d86002909d327d18348dd5d2596", + "registry": "npmjs" + }, + "types-registry-0.1.433.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.433.tgz", + "sha": "513b625c053c2f57bf7fe502e2717fc7b6c972cd", + "registry": "npmjs" + }, + "types-registry-0.1.434.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.434.tgz", + "sha": "19f20b07774c062c2c6d341fc9d665009c1ecf2e", + "registry": "npmjs" + }, + "types-registry-0.1.435.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.435.tgz", + "sha": "331bf8b86ff5c5a2538688ebbe74e26a15258fc1", + "registry": "npmjs" + }, + "types-registry-0.1.436.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.436.tgz", + "sha": "2b7d6b02deacf80c8603ef2d76be4810929c7b42", + "registry": "npmjs" + }, + "types-registry-0.1.437.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.437.tgz", + "sha": "f900d8e5cb06f08cfd2728e28aee472b30904f21", + "registry": "npmjs" + }, + "types-registry-0.1.438.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.438.tgz", + "sha": "e90e83e827d3b79f7caa825bd73a3f037bdce2d2", + "registry": "npmjs" + }, + "types-registry-0.1.439.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.439.tgz", + "sha": "87cb41043aa06852f6e79a384dfe9468fe232280", + "registry": "npmjs" + }, + "types-registry-0.1.440.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.440.tgz", + "sha": "70069ee83a181145817d78821aac935c74290344", + "registry": "npmjs" + }, + "types-registry-0.1.441.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.441.tgz", + "sha": "4ffeaa2c6316065dd8a6d8637f151d2b08e143f2", + "registry": "npmjs" + }, + "types-registry-0.1.442.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.442.tgz", + "sha": "af91452030b185e7ab3ffbd1058d0d7b4625df58", + "registry": "npmjs" + }, + "types-registry-0.1.443.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.443.tgz", + "sha": "98b5a9ddad3aef286db3511f7f7eb71803afd43c", + "registry": "npmjs" + }, + "types-registry-0.1.444.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.444.tgz", + "sha": "a0cc1e7b27846b2465cba074b0da15dd0e070eec", + "registry": "npmjs" + }, + "types-registry-0.1.445.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.445.tgz", + "sha": "776e06377ceca99c6653036248e7a6cd2e529aa2", + "registry": "npmjs" + }, + "types-registry-0.1.446.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.446.tgz", + "sha": "1465d01dd57a855a2c3c496da97185aa9694c91a", + "registry": "npmjs" + }, + "types-registry-0.1.447.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.447.tgz", + "sha": "f8991f62059641786fc53bba69cf337c368eb2cc", + "registry": "npmjs" + }, + "types-registry-0.1.448.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.448.tgz", + "sha": "f8e9d0f0fb18e3c5666003cffbbdccea64eaee7f", + "registry": "npmjs" + }, + "types-registry-0.1.449.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.449.tgz", + "sha": "4d4ef9b19673bbf2b09fdbfdef1ae3f21ab7a853", + "registry": "npmjs" + }, + "types-registry-0.1.450.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.450.tgz", + "sha": "ac50b208e3e76f21ecf919644c96d7db3586e443", + "registry": "npmjs" + }, + "types-registry-0.1.451.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.451.tgz", + "sha": "0d67dc116b2a2ae53d016c0dafefa7e53209573e", + "registry": "npmjs" + }, + "types-registry-0.1.452.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.452.tgz", + "sha": "17490f26ba70886b8227b25668b1e38de852a8eb", + "registry": "npmjs" + }, + "types-registry-0.1.453.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.453.tgz", + "sha": "6033b66cccf11d5365891ec2f38f3ad9148a75d4", + "registry": "npmjs" + }, + "types-registry-0.1.454.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.454.tgz", + "sha": "b2d52acbf0acca0deb917458cb94d5bd8540dc4d", + "registry": "npmjs" + }, + "types-registry-0.1.455.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.455.tgz", + "sha": "b4ed6408263caf0e54d0da5372ddaecb7874ea09", + "registry": "npmjs" + }, + "types-registry-0.1.456.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.456.tgz", + "sha": "dc9e93cba79be9cd00f8b7cf3fef177e4f161c3e", + "registry": "npmjs" + }, + "types-registry-0.1.457.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.457.tgz", + "sha": "6b8093deb48cee7e3ee6c4bd73bf5b52de87e16f", + "registry": "npmjs" + }, + "types-registry-0.1.458.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.458.tgz", + "sha": "3d7a66c6310938250203b04a2792bb3ae783ffe6", + "registry": "npmjs" + }, + "types-registry-0.1.459.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.459.tgz", + "sha": "8c8bc52bd46dc59238f1ce1d32fe4acdb25925c9", + "registry": "npmjs" + }, + "types-registry-0.1.460.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.460.tgz", + "sha": "a5eb20ab06f1993ab8e99dac7cb96c71195f02a6", + "registry": "npmjs" + }, + "types-registry-0.1.461.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.461.tgz", + "sha": "6f64a9b40e1ee5c2cc482ac3e9530577e22b8676", + "registry": "npmjs" + }, + "types-registry-0.1.462.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.462.tgz", + "sha": "41708e004be5b1901f8a172552d1a46db629c877", + "registry": "npmjs" + }, + "types-registry-0.1.463.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.463.tgz", + "sha": "4107db4f6143589527433382b6c9042b0a750641", + "registry": "npmjs" + }, + "types-registry-0.1.464.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.464.tgz", + "sha": "fc5c5c1c75b06f1a4ea96e823b31c81fba12abc3", + "registry": "npmjs" + }, + "types-registry-0.1.465.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.465.tgz", + "sha": "b9737c70dcfab890c421c3ca279aa50925cffb2b", + "registry": "npmjs" + }, + "types-registry-0.1.466.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.466.tgz", + "sha": "287aaaaf6250483c24e766b44d70e986278fdad3", + "registry": "npmjs" + }, + "types-registry-0.1.467.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.467.tgz", + "sha": "19800d1f0b932cef8b52360d3bdd1259f0338be7", + "registry": "npmjs" + }, + "types-registry-0.1.468.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.468.tgz", + "sha": "78db1e79e99755b48ed9b9ed5be4ddf6add1846a", + "registry": "npmjs" + }, + "types-registry-0.1.469.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.469.tgz", + "sha": "8e4a642e0ec3d76b36e71224cec2162febffb0f3", + "registry": "npmjs" + }, + "types-registry-0.1.470.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.470.tgz", + "sha": "51e6ec6ee5c16e00807862eb98cebf040f881a87", + "registry": "npmjs" + }, + "types-registry-0.1.471.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.471.tgz", + "sha": "a4ada3e01110f1c2f9eb2ce6a0251fb1607ee288", + "registry": "npmjs" + }, + "types-registry-0.1.472.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.472.tgz", + "sha": "533edcc8673a27b86153b287d744109caa09ddcd", + "registry": "npmjs" + }, + "types-registry-0.1.473.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.473.tgz", + "sha": "c03f510ff6c83b0bf538f4b51a808ef9c71dfd9f", + "registry": "npmjs" + }, + "types-registry-0.1.474.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.474.tgz", + "sha": "e4ffcd049e434cf272b802e78d7a945f2576d3ed", + "registry": "npmjs" + }, + "types-registry-0.1.475.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.475.tgz", + "sha": "1fa6533246f6611e3f321aaa1524b1170123ea8c", + "registry": "npmjs" + }, + "types-registry-0.1.476.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.476.tgz", + "sha": "375d7e025a7e82d9198bcf71b3726ca1817588bc", + "registry": "npmjs" + }, + "types-registry-0.1.477.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.477.tgz", + "sha": "edb1346c5c1abc5feccbc590da919d78edd8f8fc", + "registry": "npmjs" + }, + "types-registry-0.1.478.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.478.tgz", + "sha": "d0a174c8ddd5246d2a06805f12e5d24f60ea4d1c", + "registry": "npmjs" + }, + "types-registry-0.1.479.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.479.tgz", + "sha": "7dba9067c9716aa08d56ead22d1bf1757f1eeed8", + "registry": "npmjs" + }, + "types-registry-0.1.480.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.480.tgz", + "sha": "5861d083355cb94b60012560d1d1e4f7ef58ded0", + "registry": "npmjs" + }, + "types-registry-0.1.481.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.481.tgz", + "sha": "9a95f709e32ce1b703e6b18d9dd661c081e9779f", + "registry": "npmjs" + }, + "types-registry-0.1.482.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.482.tgz", + "sha": "7ba8d28eb9ed6a7a4eef1314ee6c7287a8423aee", + "registry": "npmjs" + }, + "types-registry-0.1.483.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.483.tgz", + "sha": "6791011ddf0e6b757250d9a5c20a2ec0072e059a", + "registry": "npmjs" + }, + "types-registry-0.1.484.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.484.tgz", + "sha": "227bce7b089c5485955a1a90b5db660e51f6b6a5", + "registry": "npmjs" + }, + "types-registry-0.1.485.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.485.tgz", + "sha": "816630cf6aaf36147d571d7e3ebd911852a439d6", + "registry": "npmjs" + }, + "types-registry-0.1.486.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.486.tgz", + "sha": "68420ea3f866ae6abcaf9ee134a9ff95eba09e76", + "registry": "npmjs" + }, + "types-registry-0.1.487.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.487.tgz", + "sha": "9d3caad0f753a52ffeeac6aca79e2d9d14baf3e5", + "registry": "npmjs" + }, + "types-registry-0.1.488.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.488.tgz", + "sha": "c1b07f2b3f30fb95ec2c3af027c58914f7d7cda3", + "registry": "npmjs" + }, + "types-registry-0.1.489.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.489.tgz", + "sha": "68bf842db1b2f2d4efd4013472109214dd6d468b", + "registry": "npmjs" + }, + "types-registry-0.1.490.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.490.tgz", + "sha": "80bc29d22c246014ff248ef2f3b12866f9e8ee33", + "registry": "npmjs" + }, + "types-registry-0.1.491.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.491.tgz", + "sha": "aa287592b3341cd492a98374ea62aaadbb55b7cb", + "registry": "npmjs" + }, + "types-registry-0.1.492.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.492.tgz", + "sha": "c48bbf2aa8c5a7f5ea0e0d149bf83e23af5c33aa", + "registry": "npmjs" + }, + "types-registry-0.1.493.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.493.tgz", + "sha": "60cec3893f5b56882281ed4030aa3c9dd247f659", + "registry": "npmjs" + }, + "types-registry-0.1.494.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.494.tgz", + "sha": "213d83d897cf71bd7f452ca2785aa012a8de623f", + "registry": "npmjs" + }, + "types-registry-0.1.495.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.495.tgz", + "sha": "da36e10782fc85f6d78897eaf1bb1452097ec067", + "registry": "npmjs" + }, + "types-registry-0.1.496.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.496.tgz", + "sha": "1a9f5879fe46da144104e1e668624c93560ff66f", + "registry": "npmjs" + }, + "types-registry-0.1.497.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.497.tgz", + "sha": "0d8aa2c1b474912df33da22d4b6e8289df953f75", + "registry": "npmjs" + }, + "types-registry-0.1.498.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.498.tgz", + "sha": "49fbc8a707746cbae320356cc9c7164779f0f9a5", + "registry": "npmjs" + }, + "types-registry-0.1.499.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.499.tgz", + "sha": "4dd084fa0d82755c952e3e0e2e00bc157496f831", + "registry": "npmjs" + }, + "types-registry-0.1.500.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.500.tgz", + "sha": "b8bb448d2693a811a2bb215a28b2202a81d0b54b", + "registry": "npmjs" + }, + "types-registry-0.1.501.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.501.tgz", + "sha": "ea764bd47e102eb911ee4efe9287caeee819d669", + "registry": "npmjs" + }, + "types-registry-0.1.502.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.502.tgz", + "sha": "5829d938b7c0e6c86d0657d741463da7d53b2b05", + "registry": "npmjs" + }, + "types-registry-0.1.503.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.503.tgz", + "sha": "c782b39267a2ef31523e3babdf4ff70831268479", + "registry": "npmjs" + }, + "types-registry-0.1.504.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.504.tgz", + "sha": "29a9733742511dfaeabae75f451781ac67773b2d", + "registry": "npmjs" + }, + "types-registry-0.1.505.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.505.tgz", + "sha": "7174ddb0e2eabd7f20738085ebafbdd97e237c31", + "registry": "npmjs" + }, + "types-registry-0.1.506.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.506.tgz", + "sha": "281b031347876f5176584810c9121c59772b3765", + "registry": "npmjs" + }, + "types-registry-0.1.507.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.507.tgz", + "sha": "3ecff4ddf970705eea4cdb42e505edb58e5875bb", + "registry": "npmjs" + }, + "types-registry-0.1.508.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.508.tgz", + "sha": "a6d52b9b99e915fbee2a951df9b6a82c84448f5b", + "registry": "npmjs" + }, + "types-registry-0.1.509.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.509.tgz", + "sha": "9a1775dc39a0de49a9df58f418700b01c83fb0c5", + "registry": "npmjs" + }, + "types-registry-0.1.510.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.510.tgz", + "sha": "8891379f7f64ae0d5876d08bd8780d97f2bc6e5d", + "registry": "npmjs" + }, + "types-registry-0.1.511.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.511.tgz", + "sha": "c3fcadd853f007918dacba7309a3d35ae8781623", + "registry": "npmjs" + }, + "types-registry-0.1.512.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.512.tgz", + "sha": "dd3161129bb2834cc0c9399cf36ecc16277f4602", + "registry": "npmjs" + }, + "types-registry-0.1.513.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.513.tgz", + "sha": "fcb61afb59b1e6931a53cecf3bff53f934c43d78", + "registry": "npmjs" + }, + "types-registry-0.1.514.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.514.tgz", + "sha": "14ddb507688d1ff08d90feb971e0b3277517dbbf", + "registry": "npmjs" + }, + "types-registry-0.1.515.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.515.tgz", + "sha": "0102f3b34172fdce43f9b985cd68afb20bebea96", + "registry": "npmjs" + }, + "types-registry-0.1.516.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.516.tgz", + "sha": "246583097e7dd1507b7fbc4914a5bc5838cad16f", + "registry": "npmjs" + }, + "types-registry-0.1.517.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.517.tgz", + "sha": "da768d742a55a78944ff90c60f05b5b128b989cf", + "registry": "npmjs" + }, + "types-registry-0.1.518.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.518.tgz", + "sha": "9e88941c8b10cc186ff69530cdaea671c850ab87", + "registry": "npmjs" + }, + "types-registry-0.1.519.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.519.tgz", + "sha": "825ae85bbf681309af70d8746025f91b3b6ef791", + "registry": "npmjs" + }, + "types-registry-0.1.520.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.520.tgz", + "sha": "2fc119395be7948ac8d40cef8701e9cbb4382d76", + "registry": "npmjs" + }, + "types-registry-0.1.521.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.521.tgz", + "sha": "1729ded582e0e069cbe8f5df6ba6277b4399b288", + "registry": "npmjs" + }, + "types-registry-0.1.522.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.522.tgz", + "sha": "17d6b1327e9885954c1678d397d20123c707f05f", + "registry": "npmjs" + }, + "types-registry-0.1.523.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.523.tgz", + "sha": "9d2be2da75b2f6b1db51a6c4bc1a5ba72a4a7778", + "registry": "npmjs" + }, + "types-registry-0.1.524.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.524.tgz", + "sha": "59fef96d2b7fe0de7e261570c70da9f09c8a9b2f", + "registry": "npmjs" + }, + "types-registry-0.1.525.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.525.tgz", + "sha": "bab4ca95efd6fed8c08fa7eabcb81993316bbc72", + "registry": "npmjs" + }, + "types-registry-0.1.526.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.526.tgz", + "sha": "d907b3b7fae6db9eae060e36b46ff9bc5b4c8198", + "registry": "npmjs" + }, + "types-registry-0.1.527.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.527.tgz", + "sha": "b7c5e866c9b65e366db0974dfde0f48e6203662a", + "registry": "npmjs" + }, + "types-registry-0.1.528.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.528.tgz", + "sha": "59228c43ce533af401ef0cdb8390701925247b24", + "registry": "npmjs" + }, + "types-registry-0.1.529.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.529.tgz", + "sha": "53b770117db6d205d016cb0cc44419126d90b9b5", + "registry": "npmjs" + }, + "types-registry-0.1.530.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.530.tgz", + "sha": "1faea4826d8332a8ed66b3d5f5daee6bbd1e6884", + "registry": "npmjs" + }, + "types-registry-0.1.531.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.531.tgz", + "sha": "4352425da179fbbbb97342ad0b6b1622d7ff3d12", + "registry": "npmjs" + }, + "types-registry-0.1.532.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.532.tgz", + "sha": "33573dbe0019f14a3cf389d4f485f280b0ca7a82", + "registry": "npmjs" + }, + "types-registry-0.1.533.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.533.tgz", + "sha": "0267072ed1afa3be03e1fc8c24cb742715e0bf36", + "registry": "npmjs" + }, + "types-registry-0.1.534.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.534.tgz", + "sha": "4fa20933aab1e17f00a68a76a6bbb8ce27d52c36", + "registry": "npmjs" + }, + "types-registry-0.1.535.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.535.tgz", + "sha": "3e2f1c91eac21d0b90fefe1398125f43048097e4", + "registry": "npmjs" + }, + "types-registry-0.1.536.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.536.tgz", + "sha": "602ecaf29a93268bcb7648d2ae7af352667bf085", + "registry": "npmjs" + }, + "types-registry-0.1.537.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.537.tgz", + "sha": "84117f5e02959463095f9d0ee2777e4e039ade6b", + "registry": "npmjs" + }, + "types-registry-0.1.538.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.538.tgz", + "sha": "9b61b388ce812321b0bf532a27bf72d3b12e5360", + "registry": "npmjs" + }, + "types-registry-0.1.539.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.539.tgz", + "sha": "667d83d83cfb5677c8b9d88912015060f1a8f58d", + "registry": "npmjs" + }, + "types-registry-0.1.540.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.540.tgz", + "sha": "0ab3273dc398bedbd695bec839d7a51c77de92f1", + "registry": "npmjs" + }, + "types-registry-0.1.541.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.541.tgz", + "sha": "49e3a4226bc157db0ddc2c1fce3db60fe91df095", + "registry": "npmjs" + }, + "types-registry-0.1.542.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.542.tgz", + "sha": "454cf399c87d5f1cb6f86259750f2136f3626b85", + "registry": "npmjs" + }, + "types-registry-0.1.543.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.543.tgz", + "sha": "d22edf257439db9868e2b7274346bd9d22c33423", + "registry": "npmjs" + }, + "types-registry-0.1.544.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.544.tgz", + "sha": "c3f31aac2ed8ffb8814d2cfa0c8c00b7665c39dc", + "registry": "npmjs" + }, + "types-registry-0.1.545.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.545.tgz", + "sha": "afc9e6207decf53c89d1f31532e8221a6a46427a", + "registry": "npmjs" + }, + "types-registry-0.1.546.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.546.tgz", + "sha": "eb63b38f32b281caad99223f829f471fa58c4a39", + "registry": "npmjs" + }, + "types-registry-0.1.547.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.547.tgz", + "sha": "fc813f6e3cd5fcb39040426eed3808a637eaa84c", + "registry": "npmjs" + }, + "types-registry-0.1.548.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.548.tgz", + "sha": "222151210abd74fc3cdfdfb5e2be74818855073e", + "registry": "npmjs" + }, + "types-registry-0.1.549.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.549.tgz", + "sha": "f45fc5059d434d256347b45b3bffa7b4848fd371", + "registry": "npmjs" + }, + "types-registry-0.1.550.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.550.tgz", + "sha": "45f91150bd00432d52ecd17d1cec0803fb87922c", + "registry": "npmjs" + }, + "types-registry-0.1.551.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.551.tgz", + "sha": "ebc5b5813958df20748d2d1ccbc760164c5cd032", + "registry": "npmjs" + }, + "types-registry-0.1.552.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.552.tgz", + "sha": "1ed44931c21e7e369378573916785055a4d2d90e", + "registry": "npmjs" + }, + "types-registry-0.1.553.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.553.tgz", + "sha": "a1f6cb137b798d4a2f44dddfacc7aca323385b06", + "registry": "npmjs" + }, + "types-registry-0.1.554.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.554.tgz", + "sha": "8c8e2900fdf8b692ab17e599d2e6a3a95f520ea5", + "registry": "npmjs" + }, + "types-registry-0.1.555.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.555.tgz", + "sha": "f1ec729cfd626f7b15a45bba848cb760ee153f15", + "registry": "npmjs" + }, + "types-registry-0.1.556.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.556.tgz", + "sha": "9b99bec28bb22908d90c0be537ff535c1d2bdf30", + "registry": "npmjs" + }, + "types-registry-0.1.557.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.557.tgz", + "sha": "9d9371b78a4cbe89d41e4a7b79ed34d4f15c7766", + "registry": "npmjs" + }, + "types-registry-0.1.558.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.558.tgz", + "sha": "8cd583e10f36da671d2059208c167bd34189c4cc", + "registry": "npmjs" + }, + "types-registry-0.1.559.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.559.tgz", + "sha": "5657bcead86ea1de4e6c46d319fb04e3c3b805ee", + "registry": "npmjs" + }, + "types-registry-0.1.560.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.560.tgz", + "sha": "f8ab4b9e690df57e28e0f986bf60edcba6f2410b", + "registry": "npmjs" + }, + "types-registry-0.1.561.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.561.tgz", + "sha": "cfd9c099dde9f442bb98730ff9d3aaf5ec48ef94", + "registry": "npmjs" + }, + "types-registry-0.1.562.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.562.tgz", + "sha": "3da7f50cab97775b1c4be793bdaea9366943b614", + "registry": "npmjs" + }, + "types-registry-0.1.563.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.563.tgz", + "sha": "5fa97f75c5725dcddcb108213300c709a04f2df1", + "registry": "npmjs" + }, + "types-registry-0.1.564.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.564.tgz", + "sha": "133ec0897295300d012e9d2fba936aa8c722cb04", + "registry": "npmjs" + }, + "types-registry-0.1.565.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.565.tgz", + "sha": "1c2596da76401c3ba37d2c27bcb514796f8e4fbf", + "registry": "npmjs" + }, + "types-registry-0.1.566.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.566.tgz", + "sha": "b0e93219f27ff9a2a72bcfbcbffcbd9338f978c0", + "registry": "npmjs" + }, + "types-registry-0.1.567.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.567.tgz", + "sha": "6f14c954847e62522e0e8eb3032973c29b93b90f", + "registry": "npmjs" + }, + "types-registry-0.1.568.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.568.tgz", + "sha": "9638eb8eb8517e7b60d89b20e0295ce4214ee872", + "registry": "npmjs" + }, + "types-registry-0.1.569.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.569.tgz", + "sha": "a77f39589cbda12835a4d2d2024f33ce717a8fd4", + "registry": "npmjs" + }, + "types-registry-0.1.570.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.570.tgz", + "sha": "492dafef2e719aeb32e93b07755d3c1b640012b1", + "registry": "npmjs" + }, + "types-registry-0.1.571.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.571.tgz", + "sha": "63d9a7ed65f2223691a38c69fa5c1f22e5212ac5", + "registry": "npmjs" + }, + "types-registry-0.1.572.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.572.tgz", + "sha": "362cb54332745aedd9701444cbd88fb0e1810333", + "registry": "npmjs" + }, + "types-registry-0.1.573.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.573.tgz", + "sha": "c690a51ef14f1480d0ce46cd1b282b11b03d2159", + "registry": "npmjs" + }, + "types-registry-0.1.574.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.574.tgz", + "sha": "545990623cfdf5959fe02c1b357f765580d78dab", + "registry": "npmjs" + }, + "types-registry-0.1.575.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.575.tgz", + "sha": "a2608e9cbdda231274668a2ba68c356f7e97e091", + "registry": "npmjs" + }, + "types-registry-0.1.576.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.576.tgz", + "sha": "e272d70c2fe5250f598cb8139720c2fe4b0eb9a4", + "registry": "npmjs" + }, + "types-registry-0.1.577.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.577.tgz", + "sha": "a66eb38d90a1e8ca4d8afaf0579d1e8e244d1214", + "registry": "npmjs" + }, + "types-registry-0.1.578.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.578.tgz", + "sha": "7bb9c33c01b35d9062e8b08997a039bad180c4f1", + "registry": "npmjs" + }, + "types-registry-0.1.579.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.579.tgz", + "sha": "bea48db49b4e9050102006e04a7863665bcdaf16", + "registry": "npmjs" + }, + "types-registry-0.1.580.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.580.tgz", + "sha": "51c223ae15ddbc0e23c078230a3ac7f40e6128e9", + "registry": "npmjs" + }, + "types-registry-0.1.581.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.581.tgz", + "sha": "d1a4c2df17614bff0583c1e50d771a119c5d8ce6", + "registry": "npmjs" + }, + "types-registry-0.1.582.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.582.tgz", + "sha": "598817621ea70579aec8e2c943fd07f3583619b8", + "registry": "npmjs" + }, + "types-registry-0.1.583.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.583.tgz", + "sha": "309f2a12a054a3f6475e35c2adb905d1f1d81476", + "registry": "npmjs" + }, + "types-registry-0.1.584.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.584.tgz", + "sha": "814008e651dc004e19292ed15e2b863e8edd82ce", + "registry": "npmjs" + }, + "types-registry-0.1.585.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.585.tgz", + "sha": "ee1aa08e944f7d218333863d66372bb405edd596", + "registry": "npmjs" + }, + "types-registry-0.1.586.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.586.tgz", + "sha": "7f548bc9682b5854581b39f913a569c71988c864", + "registry": "npmjs" + }, + "types-registry-0.1.587.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.587.tgz", + "sha": "0a630bac6e42d39c7fd9bf16161d8664b373ddd3", + "registry": "npmjs" + }, + "types-registry-0.1.588.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.588.tgz", + "sha": "05ea39a087ea1a1d0bb9ba7a6b4e5a762dbb3414", + "registry": "npmjs" + }, + "types-registry-0.1.589.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.589.tgz", + "sha": "4c14e5a0d98bcd460fbf8e7c9b0c321369277c4c", + "registry": "npmjs" + }, + "types-registry-0.1.590.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.590.tgz", + "sha": "ff719e3d18ae6d5799d18838499ee7bcb2aebf1c", + "registry": "npmjs" + }, + "types-registry-0.1.591.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.591.tgz", + "sha": "0327bb20cda8eaaa040b2f8a3064671a63c5d4e4", + "registry": "npmjs" + }, + "types-registry-0.1.592.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.592.tgz", + "sha": "45a11e54aa0df311c72cb8d946e325028aaa8389", + "registry": "npmjs" + }, + "types-registry-0.1.593.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.593.tgz", + "sha": "64c7c6d600bdea6ae44870554e29c3b6dd47d262", + "registry": "npmjs" + }, + "types-registry-0.1.594.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.594.tgz", + "sha": "ee5d6a148af8f83d9380ea2f8b6ed198649fbdf1", + "registry": "npmjs" + }, + "types-registry-0.1.595.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.595.tgz", + "sha": "37daeb58bdf54c6db55e85cf329fba0d38cd0625", + "registry": "npmjs" + }, + "types-registry-0.1.596.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.596.tgz", + "sha": "b60cab1a8a169a1d5eba59ce9e5ac09b91eb20aa", + "registry": "npmjs" + }, + "types-registry-0.1.597.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.597.tgz", + "sha": "8742d998572bfb11eab2abc4d2fce3733f3bc660", + "registry": "npmjs" + }, + "types-registry-0.1.598.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.598.tgz", + "sha": "0a38bf7af9448a383b1e40954f63f55b6a616a8f", + "registry": "npmjs" + }, + "types-registry-0.1.599.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.599.tgz", + "sha": "c50ae548b8806b1fcb0dd6e077569ab8fb132a3f", + "registry": "npmjs" + }, + "types-registry-0.1.600.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.600.tgz", + "sha": "dd3b61b4bda3f42eb125ca74158b3747d97858e9", + "registry": "npmjs" + }, + "types-registry-0.1.601.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.601.tgz", + "sha": "45960dfc91c3a4438bccf5b67dac86cce5171f06", + "registry": "npmjs" + }, + "types-registry-0.1.602.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.602.tgz", + "sha": "785903c9b638d3266df9e1d6485a39beeb39a348", + "registry": "npmjs" + }, + "types-registry-0.1.603.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.603.tgz", + "sha": "d263f98975f7b698d13987f611602c7d5fc6f5fc", + "registry": "npmjs" + }, + "types-registry-0.1.604.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.604.tgz", + "sha": "e3bfa99c86eec5488a45c704ae3da8e6c050ac17", + "registry": "npmjs" + }, + "types-registry-0.1.605.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.605.tgz", + "sha": "6bb2d20b516430db2213821de5749e82c3b8daa9", + "registry": "npmjs" + }, + "types-registry-0.1.606.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.606.tgz", + "sha": "d6f0c26699114f7fd6520d4e6640dbd2914c0736", + "registry": "npmjs" + }, + "types-registry-0.1.607.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.607.tgz", + "sha": "65ed677fa5472e5ca694b22dc9791154c5472b8a", + "registry": "npmjs" + }, + "types-registry-0.1.608.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.608.tgz", + "sha": "589c6de7d3e321afada9a81c6142dda33ebbe709", + "registry": "npmjs" + }, + "types-registry-0.1.609.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.609.tgz", + "sha": "9e35f519786fe6ddbf50eb8b4f261d8f12a3c839", + "registry": "npmjs" + }, + "types-registry-0.1.610.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.610.tgz", + "sha": "5a0e36ab2a8bde0bc02aea9f39f9fb20422b1727", + "registry": "npmjs" + }, + "types-registry-0.1.611.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.611.tgz", + "sha": "dcaab6cd610407431106302e886e6833fcdaf436", + "registry": "npmjs" + }, + "types-registry-0.1.612.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.612.tgz", + "sha": "47a19108d8e75cddd55ae18971835aeb4395e11a", + "registry": "npmjs" + }, + "types-registry-0.1.613.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.613.tgz", + "sha": "8f82ee79d7e5efbba88e0b4dc839b886c60a1aa0", + "registry": "npmjs" + }, + "types-registry-0.1.614.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.614.tgz", + "sha": "f24071fb7e0e8ff9124df0e112a94ed07dec10fa", + "registry": "npmjs" + }, + "types-registry-0.1.615.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.615.tgz", + "sha": "51810edcf08c6acf09bad208637386f7ccad159a", + "registry": "npmjs" + }, + "types-registry-0.1.616.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.616.tgz", + "sha": "9c45fe85036d137be32cbee5cc0d28389effa85a", + "registry": "npmjs" + }, + "types-registry-0.1.617.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.617.tgz", + "sha": "3ed51040a64ec9c18ffd791118b1dbcad039c3fc", + "registry": "npmjs" + }, + "types-registry-0.1.618.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.618.tgz", + "sha": "48b9051d08eba932742f9a11e7d23aabfdfacc07", + "registry": "npmjs" + }, + "types-registry-0.1.619.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.619.tgz", + "sha": "1d8d93e42001b5694aa6859ecb501288bc2ad3aa", + "registry": "npmjs" + }, + "types-registry-0.1.620.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.620.tgz", + "sha": "b5076e92452a530f545407fe3ce7d02f8c0d65b2", + "registry": "npmjs" + }, + "types-registry-0.1.621.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.621.tgz", + "sha": "92fc10c68b55429a3716b75829f5151e809117b7", + "registry": "npmjs" + }, + "types-registry-0.1.622.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.622.tgz", + "sha": "56a04232daa5fe68e4d4b088f0c6c239d3e0b72f", + "registry": "npmjs" + }, + "types-registry-0.1.623.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.623.tgz", + "sha": "85ceab609d29b0013c8a225ad32f3acbaa836307", + "registry": "npmjs" + }, + "types-registry-0.1.624.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.624.tgz", + "sha": "f5df0d23181606199389aea4418b577a5139fde4", + "registry": "npmjs" + }, + "types-registry-0.1.625.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.625.tgz", + "sha": "23451fa238ba34729f9ee5045c7d36776781a083", + "registry": "npmjs" + }, + "types-registry-0.1.626.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.626.tgz", + "sha": "1c15e6f39bb3616667dfc46c50b5789e7196bd00", + "registry": "npmjs" + }, + "types-registry-0.1.627.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.627.tgz", + "sha": "fb1ac7681d865d0dc5f0a2ae5696a4a6b8aa7e05", + "registry": "npmjs" + }, + "types-registry-0.1.628.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.628.tgz", + "sha": "6e415ed3c61da3f5c58f84b8c4e5ca6259d6f4bb", + "registry": "npmjs" + }, + "types-registry-0.1.629.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.629.tgz", + "sha": "d49938b8b96fc2b50ed9a471c1a83628b8f7e84a", + "registry": "npmjs" + }, + "types-registry-0.1.630.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.630.tgz", + "sha": "7c61e583a946749e4f2b7db86fdadf30214eee2a", + "registry": "npmjs" + }, + "types-registry-0.1.631.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.631.tgz", + "sha": "3979d1cb96ac186c9ed38c8b64fc107d4d78c6a2", + "registry": "npmjs" + }, + "types-registry-0.1.632.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.632.tgz", + "sha": "39240c76b1652c318c7d38cfba9c77faaff29764", + "registry": "npmjs" + }, + "types-registry-0.1.633.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.633.tgz", + "sha": "91fd858ba204806d4ae7fc6f63ed28dbce5a3107", + "registry": "npmjs" + }, + "types-registry-0.1.634.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.634.tgz", + "sha": "fce2192f6f21a30274f74f1c59c9cbe570d11295", + "registry": "npmjs" + }, + "types-registry-0.1.635.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.635.tgz", + "sha": "c8df00496f4785a39692512b996169f28e2f2364", + "registry": "npmjs" + }, + "types-registry-0.1.636.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.636.tgz", + "sha": "0b7e49d4b28aa219131a75ec3aa8b9cb74ab46ff", + "registry": "npmjs" + }, + "types-registry-0.1.637.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.637.tgz", + "sha": "38378f4a2b6648538cea0bb94e8ff21e8a70fdaa", + "registry": "npmjs" + }, + "types-registry-0.1.638.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.638.tgz", + "sha": "ae6365773ad38b544acd64a80f3bfef1b209467d", + "registry": "npmjs" + }, + "types-registry-0.1.639.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.639.tgz", + "sha": "04ebb06fa9e10111299d38e37ce7195c762af6a4", + "registry": "npmjs" + }, + "types-registry-0.1.640.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.640.tgz", + "sha": "cd11765875f69c444d2625b5ea1c1fe0abb34c2b", + "registry": "npmjs" + }, + "types-registry-0.1.641.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.641.tgz", + "sha": "7bca8c8d55370db1e39acf0088829a07332d1384", + "registry": "npmjs" + }, + "types-registry-0.1.642.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.642.tgz", + "sha": "1db98357fb135f331ff6ff8319287ac159d30fa2", + "registry": "npmjs" + }, + "types-registry-0.1.643.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.643.tgz", + "sha": "144d107cc855315206e0e3a588ece729a8e8b710", + "registry": "npmjs" + }, + "types-registry-0.1.644.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.644.tgz", + "sha": "c3ba1bae3ccd0064369ea8249362fe8f3bb6e1dc", + "registry": "npmjs" + }, + "types-registry-0.1.645.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.645.tgz", + "sha": "bab596775b4ce7855b5c914b5f218acfb096ff30", + "registry": "npmjs" + }, + "types-registry-0.1.646.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.646.tgz", + "sha": "b51056dfcc9db7d0a3ff6f32b8f6ef0789de5d58", + "registry": "npmjs" + }, + "types-registry-0.1.647.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.647.tgz", + "sha": "d3d8e05750321a99c67ce7a7a97c44d0d3dd61df", + "registry": "npmjs" + }, + "types-registry-0.1.648.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.648.tgz", + "sha": "2a37682209511fe761d109b962e67486968f372c", + "registry": "npmjs" + }, + "types-registry-0.1.649.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.649.tgz", + "sha": "32c591cabc165cec71df0b52244e4ee6fa07eca9", + "registry": "npmjs" + }, + "types-registry-0.1.650.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.650.tgz", + "sha": "c6836c815b13745b8c1cba57f3577c680e3e9bcb", + "registry": "npmjs" + }, + "types-registry-0.1.651.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.651.tgz", + "sha": "57d1b39836034030c57d9c91fcf528ec48aadf6f", + "registry": "npmjs" + }, + "types-registry-0.1.652.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.652.tgz", + "sha": "bc278241d8e6e40c49850df0d2a2de5cfd186cf1", + "registry": "npmjs" + }, + "types-registry-0.1.653.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.653.tgz", + "sha": "e8203a01aa9d815c6b5de6e79bc35193166cf0da", + "registry": "npmjs" + }, + "types-registry-0.1.654.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.654.tgz", + "sha": "ecc68e19fed0253f5aeabfe66734c1f2b0b33429", + "registry": "npmjs" + }, + "types-registry-0.1.655.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.655.tgz", + "sha": "555e6136a53c736e2ddca9fd097f4c052ab6c80d", + "registry": "npmjs" + }, + "types-registry-0.1.656.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.656.tgz", + "sha": "5d026b6dde40e98deba167f4dfbb8f72d9a290ff", + "registry": "npmjs" + }, + "types-registry-0.1.657.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.657.tgz", + "sha": "7b8452bf56d206a2ebb29d3944ce35b7d8eb56ae", + "registry": "npmjs" + }, + "types-registry-0.1.658.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.658.tgz", + "sha": "c21b22fb262d7be4fd1affbfb6dd88ca276c94e7", + "registry": "npmjs" + }, + "types-registry-0.1.659.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.659.tgz", + "sha": "351a1a59353d280000a64426619156d281c8493c", + "registry": "npmjs" + }, + "types-registry-0.1.660.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.660.tgz", + "sha": "dcac68eeb2bc99cff2fe818b5b06be2a5984dbdd", + "registry": "npmjs" + }, + "types-registry-0.1.661.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.661.tgz", + "sha": "0ccee9350394bd5c01bc27de011ae9076bb33b3c", + "registry": "npmjs" + }, + "types-registry-0.1.662.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.662.tgz", + "sha": "99c63b2f8f05cb46118fed70b8a30d649fdf7ff4", + "registry": "npmjs" + }, + "types-registry-0.1.663.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.663.tgz", + "sha": "a3f9d2d971bccf1ba6a7b40656f6f66e7c0cb9cd", + "registry": "npmjs" + }, + "types-registry-0.1.664.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.664.tgz", + "sha": "8305d3bccff59764030253ee5c1849be3efc3eea", + "registry": "npmjs" + }, + "types-registry-0.1.665.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.665.tgz", + "sha": "5fc359893f553437de8bf4689081a6ab25fb04c8", + "registry": "npmjs" + }, + "types-registry-0.1.666.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.666.tgz", + "sha": "77ee934e34b5bad64551816c7469ff390aee31e0", + "registry": "npmjs" + }, + "types-registry-0.1.667.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.667.tgz", + "sha": "1fcbd593b10a35ed35c9665730b5c51be8f44a57", + "registry": "npmjs" + }, + "types-registry-0.1.668.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.668.tgz", + "sha": "804d7f804a3ed01968be4eafd2e23eda98d6d5f1", + "registry": "npmjs" + }, + "types-registry-0.1.669.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.669.tgz", + "sha": "f0ae77325634c55c964b6395760f655a2b620b01", + "registry": "npmjs" + }, + "types-registry-0.1.670.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.670.tgz", + "sha": "fb1460b3fdc64a5baa41f5af276591e94f04c85b", + "registry": "npmjs" + }, + "types-registry-0.1.671.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.671.tgz", + "sha": "6ff2bb888836eec94dda7b1a592f81a94efbed2b", + "registry": "npmjs" + }, + "types-registry-0.1.672.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.672.tgz", + "sha": "e00c44a28a8037a12ab4a9dd2aec3d2f4f5e6dbb", + "registry": "npmjs" + }, + "types-registry-0.1.673.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.673.tgz", + "sha": "8cd7bc1345e8151e7ceccd997353b4d981b8159f", + "registry": "npmjs" + }, + "types-registry-0.1.674.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.674.tgz", + "sha": "3b2c2889035c324ae5ca57d81a87bc03336b632a", + "registry": "npmjs" + }, + "types-registry-0.1.675.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.675.tgz", + "sha": "e5797fbbe100071c5d9603f26cfe7414dc6c1ff3", + "registry": "npmjs" + }, + "types-registry-0.1.676.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.676.tgz", + "sha": "aefc1170b2d55316ac69114ca72ccd87deb57144", + "registry": "npmjs" + }, + "types-registry-0.1.677.tgz": { + "url": "https://registry.npmjs.org/types-registry/-/types-registry-0.1.677.tgz", + "sha": "64e0037aafcc18aac89529b07767f183ea566977", + "registry": "npmjs" + } + }, + "_attachments": {}, + "_rev": "2-75d921daa7e757f9", + "_id": "types-registry", + "readme": "[object Object]" +} \ No newline at end of file diff --git a/test/test-project/test-registry.test.js b/test/test-project/test-registry.test.js index 7d07fa8d9..a886fe50d 100644 --- a/test/test-project/test-registry.test.js +++ b/test/test-project/test-registry.test.js @@ -4,31 +4,29 @@ const { readFile } = require('fs').promises; const path = require('path'); -const Generator = require('@asyncapi/generator'); -const templateName = '@asyncapi/html-template'; -const tempOutputResults = '../temp/integrationTestResult'; +const Generator = require('../lib/generator'); +const dummySpecPath = path.resolve(__dirname, './docs/dummy.yml'); +const crypto = require('crypto'); +const mainTestResultPath = 'test/temp/integrationTestResult'; +//we do not want to download chromium for html-template if it is not needed +process.env['PUPPETEER_SKIP_CHROMIUM_DOWNLOAD'] = true; -console.log = jest.fn(); - -describe('Testing if html template can fetch from private repository', () => { - jest.setTimeout(200000); +describe('Integration testing generateFromFile() to make sure the result of the generation is not changend comparing to snapshot', () => { + const generateFolderName = () => { + //you always want to generate to new directory to make sure test runs in clear environment + return path.resolve(mainTestResultPath, crypto.randomBytes(4).toString('hex')); + }; - let ArboristMock; - let arboristMock; + jest.setTimeout(60000); - beforeEach(() => { - ArboristMock = require('@npmcli/arborist'); - arboristMock = new ArboristMock(); + it('generated using private registory', async () => { + const outputDir = generateFolderName(); + const generator = new Generator('@asyncapi/html-template', outputDir, + { forceWrite: true, templateParams: { singleFile: true }, + registry: {url: 'http://localhost:4873/', username: 'admin', password: 'nimbda'}}); + await generator.generateFromFile(dummySpecPath); + const file = await readFile(path.join(outputDir, 'index.html'), 'utf8'); + expect(file).toMatchSnapshot(); }); - it('fetching the html template from the private repository', async () => { - //you always want to generate to new directory to make sure test runs in clear environment - const outputDir = path.resolve(tempOutputResults, Math.random().toString(36).substring(7)); - //we setup the generator to pick the template file that is present in the private repository - const generator = new Generator(templateName, outputDir, { forceWrite: true, debug: true, templateParams: { singleFile: true }, registry: {url: 'http://localhost:4873/', username: 'admin', password: 'nimda'}}); - - await generator.installTemplate(); - - expect(arboristMock.reify).toHaveBeenCalledTimes(1); - }); });