{"_attachments":{},"_id":"@types/cors","_rev":"287914-61f1c3d8ab210505a8972db4","description":"TypeScript definitions for cors","dist-tags":{"latest":"2.8.19","ts2.0":"2.8.1","ts2.1":"2.8.1","ts2.2":"2.8.5","ts2.3":"2.8.6","ts2.4":"2.8.6","ts2.5":"2.8.6","ts2.6":"2.8.6","ts2.7":"2.8.6","ts2.8":"2.8.6","ts2.9":"2.8.6","ts3.0":"2.8.7","ts3.1":"2.8.7","ts3.2":"2.8.8","ts3.3":"2.8.9","ts3.4":"2.8.10","ts3.5":"2.8.10","ts3.6":"2.8.12","ts3.7":"2.8.12","ts3.8":"2.8.12","ts3.9":"2.8.12","ts4.0":"2.8.12","ts4.1":"2.8.12","ts4.2":"2.8.13","ts4.3":"2.8.14","ts4.4":"2.8.14","ts4.5":"2.8.17","ts4.6":"2.8.17","ts4.7":"2.8.17","ts4.8":"2.8.17","ts4.9":"2.8.17","ts5.0":"2.8.17","ts5.1":"2.8.19","ts5.2":"2.8.19","ts5.3":"2.8.19","ts5.4":"2.8.19","ts5.5":"2.8.19","ts5.6":"2.8.19","ts5.7":"2.8.19","ts5.8":"2.8.19","ts5.9":"2.8.19","ts6.0":"2.8.19"},"license":"MIT","maintainers":[{"name":"types","email":"ts-npm-types@microsoft.com"}],"name":"@types/cors","readme":"# Installation\r\n> `npm install --save @types/cors`\r\n\r\n# Summary\r\nThis package contains type definitions for cors (https://github.com/expressjs/cors/).\r\n\r\n# Details\r\nFiles were exported from https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/cors.\r\n## [index.d.ts](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/cors/index.d.ts)\r\n````ts\r\n/// <reference types=\"node\" />\n\nimport { IncomingHttpHeaders } from \"http\";\n\ntype StaticOrigin = boolean | string | RegExp | Array<boolean | string | RegExp>;\n\ntype CustomOrigin = (\n    requestOrigin: string | undefined,\n    callback: (err: Error | null, origin?: StaticOrigin) => void,\n) => void;\n\ndeclare namespace e {\n    interface CorsRequest {\n        method?: string | undefined;\n        headers: IncomingHttpHeaders;\n    }\n    interface CorsOptions {\n        /**\n         * @default '*'\n         */\n        origin?: StaticOrigin | CustomOrigin | undefined;\n        /**\n         * @default 'GET,HEAD,PUT,PATCH,POST,DELETE'\n         */\n        methods?: string | string[] | undefined;\n        allowedHeaders?: string | string[] | undefined;\n        exposedHeaders?: string | string[] | undefined;\n        credentials?: boolean | undefined;\n        maxAge?: number | undefined;\n        /**\n         * @default false\n         */\n        preflightContinue?: boolean | undefined;\n        /**\n         * @default 204\n         */\n        optionsSuccessStatus?: number | undefined;\n    }\n    type CorsOptionsDelegate<T extends CorsRequest = CorsRequest> = (\n        req: T,\n        callback: (err: Error | null, options?: CorsOptions) => void,\n    ) => void;\n}\n\ndeclare function e<T extends e.CorsRequest = e.CorsRequest>(\n    options?: e.CorsOptions | e.CorsOptionsDelegate<T>,\n): (\n    req: T,\n    res: {\n        statusCode?: number | undefined;\n        setHeader(key: string, value: string): any;\n        end(): any;\n    },\n    next: (err?: any) => any,\n) => void;\nexport = e;\n\r\n````\r\n\r\n### Additional Details\r\n * Last updated: Sat, 07 Jun 2025 02:15:25 GMT\r\n * Dependencies: [@types/node](https://npmjs.com/package/@types/node)\r\n\r\n# Credits\r\nThese definitions were written by [Alan Plum](https://github.com/pluma), [Gaurav Sharma](https://github.com/gtpan77), and [Sebastian Beltran](https://github.com/bjohansebas).\r\n","time":{"created":"2022-01-26T21:57:44.740Z","modified":"2025-08-03T06:34:22.977Z","2.8.12":"2021-07-09T07:34:57.199Z","2.8.11":"2021-07-06T20:36:29.929Z","2.8.10":"2021-02-14T07:16:50.742Z","2.8.9":"2020-12-10T18:07:57.263Z","2.8.8":"2020-10-10T05:22:32.895Z","2.8.7":"2020-07-31T20:42:29.623Z","2.8.6":"2019-08-19T00:55:41.063Z","2.8.5":"2019-04-25T22:24:45.352Z","2.8.4":"2018-04-23T15:07:39.108Z","2.8.3":"2017-11-10T22:59:29.357Z","2.8.2":"2017-11-08T22:17:19.802Z","2.8.1":"2017-03-11T00:14:34.428Z","2.8.0":"2017-01-04T21:17:25.060Z","0.0.33":"2016-09-19T16:34:45.937Z","0.0.32":"2016-08-25T18:37:45.783Z","0.0.31":"2016-08-19T15:22:59.608Z","0.0.30":"2016-08-02T15:49:59.564Z","0.0.29":"2016-07-14T14:21:26.377Z","0.0.28-alpha":"2016-07-07T17:08:18.846Z","0.0.27-alpha":"2016-07-04T00:00:54.811Z","0.0.26-alpha":"2016-07-02T02:15:38.099Z","0.0.25-alpha":"2016-07-01T22:30:41.510Z","0.0.24-alpha":"2016-07-01T19:10:19.659Z","0.0.23-alpha":"2016-05-25T04:42:05.663Z","0.0.22-alpha":"2016-05-20T19:23:59.954Z","0.0.17-alpha":"2016-05-19T20:35:23.455Z","0.0.16-alpha":"2016-05-17T04:42:14.431Z","2.8.13":"2022-12-05T07:33:02.313Z","2.8.14":"2023-09-04T16:22:26.104Z","2.8.15":"2023-10-18T00:28:35.489Z","2.8.16":"2023-11-07T01:08:25.117Z","2.8.17":"2023-11-20T23:54:11.024Z","2.8.18":"2025-05-08T11:03:36.297Z","2.8.19":"2025-06-07T02:16:26.348Z"},"versions":{"2.8.12":{"name":"@types/cors","version":"2.8.12","description":"TypeScript definitions for cors","homepage":"https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/cors","license":"MIT","contributors":[{"name":"Alan Plum","url":"https://github.com/pluma","githubUsername":"pluma"},{"name":"Gaurav Sharma","url":"https://github.com/gtpan77","githubUsername":"gtpan77"}],"main":"","types":"index.d.ts","repository":{"type":"git","url":"https://github.com/DefinitelyTyped/DefinitelyTyped.git","directory":"types/cors"},"scripts":{},"dependencies":{},"typesPublisherContentHash":"53ea51a6543d58d3c1b9035a9c361d8f06d7be01973be2895820b2fb7ad9563a","typeScriptVersion":"3.6","_id":"@types/cors@2.8.12","dist":{"shasum":"6b2c510a7ad7039e98e7b8d3d6598f4359e5c080","size":2080,"noattachment":false,"tarball":"https://registry.npmmirror.com/@types/cors/-/cors-2.8.12.tgz","integrity":"sha512-vt+kDhq/M2ayberEtJcIN/hxXy1Pk+59g2FV/ZQceeaTyCtCucjL2Q7FXlFjtWn4n15KCr1NE2lNNFhp0lEThw=="},"_npmUser":{"name":"types","email":"ts-npm-types@microsoft.com"},"directories":{},"maintainers":[{"name":"types","email":"ts-npm-types@microsoft.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/cors_2.8.12_1625816097094_0.3885416023873247"},"_hasShrinkwrap":false,"publish_time":1625816097199,"_cnpm_publish_time":1625816097199,"_cnpmcore_publish_time":"2021-12-13T11:17:33.118Z"},"2.8.11":{"name":"@types/cors","version":"2.8.11","description":"TypeScript definitions for cors","homepage":"https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/cors","license":"MIT","contributors":[{"name":"Alan Plum","url":"https://github.com/pluma","githubUsername":"pluma"},{"name":"Gaurav Sharma","url":"https://github.com/gtpan77","githubUsername":"gtpan77"}],"main":"","types":"index.d.ts","repository":{"type":"git","url":"https://github.com/DefinitelyTyped/DefinitelyTyped.git","directory":"types/cors"},"scripts":{},"dependencies":{},"typesPublisherContentHash":"d8927c540b44862c74d60cbb0b7b7f613567988fdedb216f5e53639dc4b5068b","typeScriptVersion":"3.6","_id":"@types/cors@2.8.11","dist":{"shasum":"0bbd036cc6c8c63e0e5d64115fa9692eabb7eaa3","size":2081,"noattachment":false,"tarball":"https://registry.npmmirror.com/@types/cors/-/cors-2.8.11.tgz","integrity":"sha512-64aQQZXPSo1fdLEE/utClOFVUqDUjyh5j3JorcCTlYQm4r5wsfggx6yhSY6hNudJLkbmIt+pO6xWyCnM0EQgPw=="},"_npmUser":{"name":"types","email":"ts-npm-types@microsoft.com"},"directories":{},"maintainers":[{"name":"types","email":"ts-npm-types@microsoft.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/cors_2.8.11_1625603789805_0.5094611470300112"},"_hasShrinkwrap":false,"publish_time":1625603789929,"_cnpm_publish_time":1625603789929,"_cnpmcore_publish_time":"2021-12-13T11:17:33.395Z"},"2.8.10":{"name":"@types/cors","version":"2.8.10","description":"TypeScript definitions for cors","license":"MIT","contributors":[{"name":"Alan Plum","url":"https://github.com/pluma","githubUsername":"pluma"},{"name":"Gaurav Sharma","url":"https://github.com/gtpan77","githubUsername":"gtpan77"}],"main":"","types":"index.d.ts","repository":{"type":"git","url":"https://github.com/DefinitelyTyped/DefinitelyTyped.git","directory":"types/cors"},"scripts":{},"dependencies":{},"typesPublisherContentHash":"211c1b2df33cf0e3701aaff798ccb87f0a813d275560208db31cee05483ae4d3","typeScriptVersion":"3.4","_id":"@types/cors@2.8.10","dist":{"shasum":"61cc8469849e5bcdd0c7044122265c39cec10cf4","size":2012,"noattachment":false,"tarball":"https://registry.npmmirror.com/@types/cors/-/cors-2.8.10.tgz","integrity":"sha512-C7srjHiVG3Ey1nR6d511dtDkCEjxuN9W1HWAEjGq8kpcwmNM6JJkpC0xvabM7BXTG2wDq8Eu33iH9aQKa7IvLQ=="},"_npmUser":{"name":"types","email":"ts-npm-types@microsoft.com"},"directories":{},"maintainers":[{"name":"types","email":"ts-npm-types@microsoft.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/cors_2.8.10_1613287010524_0.5470832237511527"},"_hasShrinkwrap":false,"publish_time":1613287010742,"_cnpm_publish_time":1613287010742,"_cnpmcore_publish_time":"2021-12-13T11:17:33.678Z"},"2.8.9":{"name":"@types/cors","version":"2.8.9","description":"TypeScript definitions for cors","license":"MIT","contributors":[{"name":"Alan Plum","url":"https://github.com/pluma","githubUsername":"pluma"},{"name":"Gaurav Sharma","url":"https://github.com/gtpan77","githubUsername":"gtpan77"}],"main":"","types":"index.d.ts","repository":{"type":"git","url":"https://github.com/DefinitelyTyped/DefinitelyTyped.git","directory":"types/cors"},"scripts":{},"dependencies":{},"typesPublisherContentHash":"528189d8f95b57800f8c2eb2ee496fed4c04d7ca809373df123b0831f65bb45a","typeScriptVersion":"3.3","_id":"@types/cors@2.8.9","dist":{"shasum":"4bd1fcac72eca8d5bec93e76c7fdcbdc1bc2cd4a","size":2005,"noattachment":false,"tarball":"https://registry.npmmirror.com/@types/cors/-/cors-2.8.9.tgz","integrity":"sha512-zurD1ibz21BRlAOIKP8yhrxlqKx6L9VCwkB5kMiP6nZAhoF5MvC7qS1qPA7nRcr1GJolfkQC7/EAL4hdYejLtg=="},"_npmUser":{"name":"types","email":"ts-npm-types@microsoft.com"},"directories":{},"maintainers":[{"name":"types","email":"ts-npm-types@microsoft.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/cors_2.8.9_1607623677051_0.15737293878520386"},"_hasShrinkwrap":false,"publish_time":1607623677263,"_cnpm_publish_time":1607623677263,"_cnpmcore_publish_time":"2021-12-13T11:17:34.017Z"},"2.8.8":{"name":"@types/cors","version":"2.8.8","description":"TypeScript definitions for cors","license":"MIT","contributors":[{"name":"Alan Plum","url":"https://github.com/pluma","githubUsername":"pluma"},{"name":"Gaurav Sharma","url":"https://github.com/gtpan77","githubUsername":"gtpan77"}],"main":"","types":"index.d.ts","repository":{"type":"git","url":"https://github.com/DefinitelyTyped/DefinitelyTyped.git","directory":"types/cors"},"scripts":{},"dependencies":{"@types/express":"*"},"typesPublisherContentHash":"b24d14934ef66476c80faf7287ca41764d0c8dffa662ea161164704a1eae48e6","typeScriptVersion":"3.2","_id":"@types/cors@2.8.8","dist":{"shasum":"317a8d8561995c60e35b9e0fcaa8d36660c98092","size":1931,"noattachment":false,"tarball":"https://registry.npmmirror.com/@types/cors/-/cors-2.8.8.tgz","integrity":"sha512-fO3gf3DxU2Trcbr75O7obVndW/X5k8rJNZkLXlQWStTHhP71PkRqjwPIEI0yMnJdg9R9OasjU+Bsr+Hr1xy/0w=="},"maintainers":[{"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/cors_2.8.8_1602307352782_0.6245581553992658"},"_hasShrinkwrap":false,"publish_time":1602307352895,"_cnpm_publish_time":1602307352895,"_cnpmcore_publish_time":"2021-12-13T11:17:34.347Z"},"2.8.7":{"name":"@types/cors","version":"2.8.7","description":"TypeScript definitions for cors","license":"MIT","contributors":[{"name":"Alan Plum","url":"https://github.com/pluma","githubUsername":"pluma"}],"main":"","types":"index.d.ts","repository":{"type":"git","url":"https://github.com/DefinitelyTyped/DefinitelyTyped.git","directory":"types/cors"},"scripts":{},"dependencies":{"@types/express":"*"},"typesPublisherContentHash":"0af19f412cacc75439ed20dc927db5f3ea966ac67564b7213df4bf42ba272ad2","typeScriptVersion":"3.0","_id":"@types/cors@2.8.7","dist":{"shasum":"ab2f47f1cba93bce27dfd3639b006cc0e5600889","size":1882,"noattachment":false,"tarball":"https://registry.npmmirror.com/@types/cors/-/cors-2.8.7.tgz","integrity":"sha512-sOdDRU3oRS7LBNTIqwDkPJyq0lpHYcbMTt0TrjzsXbk/e37hcLTH6eZX7CdbDeN0yJJvzw9hFBZkbtCSbk/jAQ=="},"maintainers":[{"email":"ts-npm-types@microsoft.com","name":"types"}],"_npmUser":{"name":"types","email":"ts-npm-types@microsoft.com"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/cors_2.8.7_1596228149395_0.6583498389068416"},"_hasShrinkwrap":false,"publish_time":1596228149623,"_cnpm_publish_time":1596228149623,"_cnpmcore_publish_time":"2021-12-13T11:17:34.663Z"},"2.8.6":{"name":"@types/cors","version":"2.8.6","description":"TypeScript definitions for cors","license":"MIT","contributors":[{"name":"Alan Plum","url":"https://github.com/pluma","githubUsername":"pluma"}],"main":"","types":"index","repository":{"type":"git","url":"https://github.com/DefinitelyTyped/DefinitelyTyped.git","directory":"types/cors"},"scripts":{},"dependencies":{"@types/express":"*"},"typesPublisherContentHash":"721739163a52c3386dedca1e8de02fcd7bdf7d791fc9fe69ea12b1cec63b8f3c","typeScriptVersion":"2.3","_id":"@types/cors@2.8.6","dist":{"shasum":"cfaab33c49c15b1ded32f235111ce9123009bd02","size":1804,"noattachment":false,"tarball":"https://registry.npmmirror.com/@types/cors/-/cors-2.8.6.tgz","integrity":"sha512-invOmosX0DqbpA+cE2yoHGUlF/blyf7nB0OGYBBiH27crcVm5NmFaZkLP4Ta1hGaesckCi5lVLlydNJCxkTOSg=="},"maintainers":[{"email":"ts-npm-types@microsoft.com","name":"types"}],"_npmUser":{"name":"types","email":"ts-npm-types@microsoft.com"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/cors_2.8.6_1566176140924_0.735823321808087"},"_hasShrinkwrap":false,"publish_time":1566176141063,"_cnpm_publish_time":1566176141063,"_cnpmcore_publish_time":"2021-12-13T11:17:35.013Z"},"2.8.5":{"name":"@types/cors","version":"2.8.5","description":"TypeScript definitions for cors","license":"MIT","contributors":[{"name":"Alan Plum","url":"https://github.com/pluma","githubUsername":"pluma"}],"main":"","types":"index","repository":{"type":"git","url":"https://github.com/DefinitelyTyped/DefinitelyTyped.git","directory":"types/cors"},"scripts":{},"dependencies":{"@types/express":"*"},"typesPublisherContentHash":"171eb48cab588a6eee187a908ec93d25de774cee12bfdcdb87112c128942eaa8","typeScriptVersion":"2.2","_id":"@types/cors@2.8.5","dist":{"shasum":"c0c54c4e643e1d943d447292f2baf9dc82cfc8ec","size":1800,"noattachment":false,"tarball":"https://registry.npmmirror.com/@types/cors/-/cors-2.8.5.tgz","integrity":"sha512-GmK8AKu8i+s+EChK/uZ5IbrXPcPaQKWaNSGevDT/7o3gFObwSUQwqb1jMqxuo+YPvj0ckGzINI+EO7EHcmJjKg=="},"maintainers":[{"email":"ts-npm-types@microsoft.com","name":"types"}],"_npmUser":{"name":"types","email":"ts-npm-types@microsoft.com"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/cors_2.8.5_1556231085253_0.13486983700901778"},"_hasShrinkwrap":false,"publish_time":1556231085352,"_cnpm_publish_time":1556231085352,"_cnpmcore_publish_time":"2021-12-13T11:17:35.382Z"},"2.8.4":{"name":"@types/cors","version":"2.8.4","description":"TypeScript definitions for cors","license":"MIT","contributors":[{"name":"Alan Plum","url":"https://github.com/pluma","githubUsername":"pluma"}],"main":"","repository":{"type":"git","url":"https://www.github.com/DefinitelyTyped/DefinitelyTyped.git"},"scripts":{},"dependencies":{"@types/express":"*"},"typesPublisherContentHash":"c206254f8940d61a0375ce4f7a7d68e0ebf14d7b49b8abefec6375a8955615f7","typeScriptVersion":"2.2","_id":"@types/cors@2.8.4","dist":{"shasum":"50991a759a29c0b89492751008c6af7a7c8267b0","size":1791,"noattachment":false,"tarball":"https://registry.npmmirror.com/@types/cors/-/cors-2.8.4.tgz","integrity":"sha512-ipZjBVsm2tF/n8qFGOuGBkUij9X9ZswVi9G3bx/6dz7POpVa6gVHcj1wsX/LVEn9MMF41fxK/PnZPPoTD1UFPw=="},"maintainers":[{"email":"ts-npm-types@microsoft.com","name":"types"}],"_npmUser":{"name":"types","email":"ts-npm-types@microsoft.com"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/cors_2.8.4_1524496058975_0.3431334859792956"},"_hasShrinkwrap":false,"publish_time":1524496059108,"_cnpm_publish_time":1524496059108,"_cnpmcore_publish_time":"2021-12-13T11:17:35.785Z"},"2.8.3":{"name":"@types/cors","version":"2.8.3","description":"TypeScript definitions for cors","license":"MIT","contributors":[{"name":"Mihhail Lapushkin","url":"https://github.com/mihhail-lapushkin/"}],"main":"","repository":{"type":"git","url":"https://www.github.com/DefinitelyTyped/DefinitelyTyped.git"},"scripts":{},"dependencies":{"@types/express":"*"},"typesPublisherContentHash":"92837fc97dc98472b50c21e630e63d08ff9d39f300de75877453ae1d48f1897c","typeScriptVersion":"2.2","_id":"@types/cors@2.8.3","dist":{"shasum":"eaf6e476da0d36bee6b061a24d57e343ddce86d6","size":1749,"noattachment":false,"tarball":"https://registry.npmmirror.com/@types/cors/-/cors-2.8.3.tgz","integrity":"sha512-wiZ7yYSIKZ005QJeyoUk5OHHEamNHTxaYwaFQWfTPohBjyhgIDHTgV8oGn+zBYTWQCb9WQYg54PhtntFTD7GVg=="},"maintainers":[{"email":"ts-npm-types@microsoft.com","name":"types"}],"_npmUser":{"name":"types","email":"ts-npm-types@microsoft.com"},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/cors-2.8.3.tgz_1510354769279_0.2601675905752927"},"directories":{},"publish_time":1510354769357,"_hasShrinkwrap":false,"_cnpm_publish_time":1510354769357,"_cnpmcore_publish_time":"2021-12-13T11:17:36.232Z"},"2.8.2":{"name":"@types/cors","version":"2.8.2","description":"TypeScript definitions for cors","license":"MIT","contributors":[{"name":"Mihhail Lapushkin","url":"https://github.com/mihhail-lapushkin/"}],"main":"","repository":{"type":"git","url":"https://www.github.com/DefinitelyTyped/DefinitelyTyped.git"},"scripts":{},"dependencies":{"@types/express":"*"},"typesPublisherContentHash":"16a63efdf0891cf313d4dd7b5aad878bdefa6fd1433faac36fde187b795e388e","typeScriptVersion":"2.2","_id":"@types/cors@2.8.2","dist":{"shasum":"0afc130f896480308663a93ef3ca767ca8f86443","size":1737,"noattachment":false,"tarball":"https://registry.npmmirror.com/@types/cors/-/cors-2.8.2.tgz","integrity":"sha512-E9ic5j9l85SVkT/8p02/+Y7FGnrVoomjxMnXenbkHUlTPZy87uJox79gD3fXilWNFe5/92fCAY8vEqK6YlcDPw=="},"maintainers":[{"name":"types","email":"ryan.cavanaugh@microsoft.com"}],"_npmUser":{"name":"types","email":"ts-npm-types@microsoft.com"},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/cors-2.8.2.tgz_1510179439721_0.662114582490176"},"directories":{},"publish_time":1510179439802,"_hasShrinkwrap":false,"_cnpm_publish_time":1510179439802,"_cnpmcore_publish_time":"2021-12-13T11:17:36.630Z"},"2.8.1":{"name":"@types/cors","version":"2.8.1","description":"TypeScript definitions for cors","license":"MIT","contributors":[{"name":"Mihhail Lapushkin","url":"https://github.com/mihhail-lapushkin/"}],"main":"","repository":{"type":"git","url":"https://www.github.com/DefinitelyTyped/DefinitelyTyped.git"},"scripts":{},"dependencies":{"@types/express":"*"},"peerDependencies":{},"typesPublisherContentHash":"93d0114a4610eeb2bccaeb89d41464cc662b38f7a17240b33ededc42ed2ce8fc","typeScriptVersion":"2.0","_id":"@types/cors@2.8.1","dist":{"shasum":"54073caf3b7a741e67fb82483f83a6cadfba7501","size":1050,"noattachment":false,"tarball":"https://registry.npmmirror.com/@types/cors/-/cors-2.8.1.tgz","integrity":"sha512-8xJpqRrY/nUh35mhvA/rCHaSzNA2kStG891GNicCN/dB+zRZ0dlgPArvxee3QljfUNSBwL1t/Y4vcx9rvBmfzA=="},"maintainers":[{"name":"types","email":"ryan.cavanaugh@microsoft.com"}],"_npmUser":{"name":"types","email":"ts-npm-types@microsoft.com"},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/cors-2.8.1.tgz_1489191274185_0.37953048828057945"},"directories":{},"publish_time":1489191274428,"_hasShrinkwrap":false,"_cnpm_publish_time":1489191274428,"_cnpmcore_publish_time":"2021-12-13T11:17:37.032Z"},"2.8.0":{"name":"@types/cors","version":"2.8.0","description":"TypeScript definitions for cors","license":"MIT","author":"Mihhail Lapushkin <https://github.com/mihhail-lapushkin/>","main":"","repository":{"type":"git","url":"https://www.github.com/DefinitelyTyped/DefinitelyTyped.git"},"scripts":{},"dependencies":{"@types/express":"*"},"peerDependencies":{},"typesPublisherContentHash":"bd5cf283596ed08c392d10c0c1b5fdc5804c1569fcecd47d3edc1e5f8030a80f","typeScriptVersion":"2.0","_id":"@types/cors@2.8.0","dist":{"shasum":"9e4d0308b862f5306ae8d83859f90abd379199c8","size":1220,"noattachment":false,"tarball":"https://registry.npmmirror.com/@types/cors/-/cors-2.8.0.tgz","integrity":"sha512-7SRdTQ2FB+A/pI6J77vVbKQwJySOGpBi8RdRxUEg/fVMORDgesWCaaRD1t++IvELP48O008spWujyakb4mAewg=="},"maintainers":[{"name":"types","email":"ryan.cavanaugh@microsoft.com"}],"_npmUser":{"name":"types","email":"ts-npm-types@microsoft.com"},"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/cors-2.8.0.tgz_1483564643228_0.8234567667823285"},"directories":{},"publish_time":1483564645060,"_hasShrinkwrap":false,"_cnpm_publish_time":1483564645060,"_cnpmcore_publish_time":"2021-12-13T11:17:37.421Z"},"0.0.33":{"name":"@types/cors","version":"0.0.33","description":"TypeScript definitions for cors","license":"MIT","author":"Mihhail Lapushkin <https://github.com/mihhail-lapushkin/>","main":"","repository":{"type":"git","url":"https://www.github.com/DefinitelyTyped/DefinitelyTyped.git"},"scripts":{},"dependencies":{"@types/express":"*"},"typings":"index.d.ts","typesPublisherContentHash":"4b4b8a87d6b7f98091fc8aac53ab32a0ebad252862dbbdb46d870c970a618698","_id":"@types/cors@0.0.33","dist":{"shasum":"05dc50760b93201b81c54a94fb757f21144f5e61","size":1147,"noattachment":false,"tarball":"https://registry.npmmirror.com/@types/cors/-/cors-0.0.33.tgz","integrity":"sha512-9gSpeI3P8G1nFkIoK2D/3eUoYXCQoqcgECzQY1p9rLuld4ImZ8ebQd88m+VWWV1xVx7Mc3Ri03JvVzJy4yOwhQ=="},"maintainers":[{"name":"types","email":"ryan.cavanaugh@microsoft.com"}],"_npmUser":{"name":"types","email":"ts-npm-types@microsoft.com"},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/cors-0.0.33.tgz_1474302884100_0.4495333591476083"},"directories":{},"publish_time":1474302885937,"_hasShrinkwrap":false,"_cnpm_publish_time":1474302885937,"_cnpmcore_publish_time":"2021-12-13T11:17:37.878Z"},"0.0.32":{"name":"@types/cors","version":"0.0.32","description":"TypeScript definitions for cors","license":"MIT","author":"Mihhail Lapushkin <https://github.com/mihhail-lapushkin/>","main":"","repository":{"type":"git","url":"https://www.github.com/DefinitelyTyped/DefinitelyTyped.git"},"scripts":{},"dependencies":{"@types/express":"4.0.*"},"typings":"index.d.ts","_id":"@types/cors@0.0.32","dist":{"shasum":"eb8da83e5fd88e901753ba07d77c472c79e5c7d4","size":1137,"noattachment":false,"tarball":"https://registry.npmmirror.com/@types/cors/-/cors-0.0.32.tgz","integrity":"sha512-j8ep6hrL1kXlnP5yyuUz1f6V6hp68jeadDVUfu4AwGCmBkNeZk48mSCeoGN4i7094brftlD5zZdPIGisKv7dGw=="},"maintainers":[{"name":"types","email":"ryan.cavanaugh@microsoft.com"}],"_npmUser":{"name":"types","email":"ts-npm-types@microsoft.com"},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/cors-0.0.32.tgz_1472150264013_0.7422501500695944"},"directories":{},"publish_time":1472150265783,"_hasShrinkwrap":false,"_cnpm_publish_time":1472150265783,"_cnpmcore_publish_time":"2021-12-13T11:17:38.323Z"},"0.0.31":{"name":"@types/cors","version":"0.0.31","description":"TypeScript definitions for cors","license":"MIT","author":"Mihhail Lapushkin <https://github.com/mihhail-lapushkin/>","main":"","repository":{"type":"git","url":"https://www.github.com/DefinitelyTyped/DefinitelyTyped.git"},"scripts":{},"dependencies":{"@types/express":"4.0.*"},"typings":"index.d.ts","_id":"@types/cors@0.0.31","dist":{"shasum":"32ddcffffe52816ccf9ebf22a2dcdfcbbdba5747","size":1137,"noattachment":false,"tarball":"https://registry.npmmirror.com/@types/cors/-/cors-0.0.31.tgz","integrity":"sha512-WdJs4o0rFM/KhjKqJhFlLa80QD31LwWjIvMDnHhvj86E++m5jq0y7NsrYZC8LG6th6zvH9jfS+vBHsXQYYoLQQ=="},"maintainers":[{"name":"types","email":"ryan.cavanaugh@microsoft.com"}],"_npmUser":{"name":"types","email":"ts-npm-types@microsoft.com"},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/cors-0.0.31.tgz_1471620177811_0.7358324793167412"},"directories":{},"publish_time":1471620179608,"_hasShrinkwrap":false,"_cnpm_publish_time":1471620179608,"_cnpmcore_publish_time":"2021-12-13T11:17:38.849Z"},"0.0.30":{"name":"@types/cors","version":"0.0.30","description":"TypeScript definitions for cors","license":"MIT","author":"Mihhail Lapushkin <https://github.com/mihhail-lapushkin/>","main":"","repository":{"type":"git","url":"https://www.github.com/DefinitelyTyped/DefinitelyTyped.git"},"scripts":{},"dependencies":{"@types/express":"4.0.*"},"typings":"index.d.ts","_id":"@types/cors@0.0.30","dist":{"shasum":"c55856eef7317c7b88d9a9129a9569a5058e66af","size":6656,"noattachment":false,"tarball":"https://registry.npmmirror.com/@types/cors/-/cors-0.0.30.tgz","integrity":"sha512-TLGy5c7eZM7+i5lODc/iVcxeHWwsbN5dJTZx3WgL44yj9am6IPOxDUi5Oc90w9G1uCiClSlCUPfKA6w2ih5UaQ=="},"maintainers":[{"name":"types","email":"ryan.cavanaugh@microsoft.com"}],"_npmUser":{"name":"types","email":"ts-npm-types@microsoft.com"},"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/cors-0.0.30.tgz_1470152998593_0.6102244399953634"},"directories":{},"publish_time":1470152999564,"_hasShrinkwrap":false,"_cnpm_publish_time":1470152999564,"_cnpmcore_publish_time":"2021-12-13T11:17:39.313Z"},"0.0.29":{"name":"@types/cors","version":"0.0.29","description":"TypeScript definitions for cors","main":"","scripts":{},"author":{"name":"Mihhail Lapushkin","email":"https://github.com/mihhail-lapushkin/"},"repository":{"type":"git","url":"https://www.github.com/DefinitelyTyped/DefinitelyTyped.git"},"license":"MIT","typings":"index.d.ts","dependencies":{"@types/express":"4.0.*"},"_id":"@types/cors@0.0.29","_shasum":"b3077162c44e0160e50f41519dd35adef1c2386b","_from":"output\\cors","_resolved":"file:output\\cors","_npmVersion":"3.10.3","_nodeVersion":"6.3.0","_npmUser":{"name":"types","email":"ts-npm-types@microsoft.com"},"dist":{"shasum":"b3077162c44e0160e50f41519dd35adef1c2386b","size":1114,"noattachment":false,"tarball":"https://registry.npmmirror.com/@types/cors/-/cors-0.0.29.tgz","integrity":"sha512-fxI7i5JC3kuS5jZDpfCbkcOL+10SBZeD4MJVlVjEW4WrKSD2+eEEFwEAkBUHhfv7iQokdGx+IwNeu0lalOIY5w=="},"maintainers":[{"name":"types","email":"ryan.cavanaugh@microsoft.com"}],"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/cors-0.0.29.tgz_1468506084248_0.5033458049874753"},"directories":{},"publish_time":1468506086377,"_hasShrinkwrap":false,"_cnpm_publish_time":1468506086377,"_cnpmcore_publish_time":"2021-12-13T11:17:39.774Z"},"0.0.28-alpha":{"name":"@types/cors","version":"0.0.28-alpha","description":"TypeScript definitions for cors","main":"","scripts":{},"author":{"name":"Mihhail Lapushkin","email":"https://github.com/mihhail-lapushkin/"},"repository":{"type":"git","url":"https://www.github.com/DefinitelyTyped/DefinitelyTyped.git"},"license":"MIT","typings":"index.d.ts","dependencies":{"@types/express":"4.0.28-alpha"},"_id":"@types/cors@0.0.28-alpha","_shasum":"51be5f52122d2d6f25f00b3b1b12ba90b57ace50","_from":"output\\cors","_resolved":"file:output\\cors","_npmVersion":"3.7.2","_nodeVersion":"6.2.1","_npmUser":{"name":"types","email":"ryan.cavanaugh@microsoft.com"},"dist":{"shasum":"51be5f52122d2d6f25f00b3b1b12ba90b57ace50","size":1115,"noattachment":false,"tarball":"https://registry.npmmirror.com/@types/cors/-/cors-0.0.28-alpha.tgz","integrity":"sha512-jrA8S2ygXnKeCgjZOAwhElD50YhJb6olFUEqQvFv8PB5dPUXaGm9fYD0ci6wS6q40mc4oqEIS2DsCFvZh38/eg=="},"maintainers":[{"name":"types","email":"ryan.cavanaugh@microsoft.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/cors-0.0.28-alpha.tgz_1467911298400_0.40025015198625624"},"directories":{},"publish_time":1467911298846,"_hasShrinkwrap":false,"_cnpm_publish_time":1467911298846,"_cnpmcore_publish_time":"2021-12-13T11:17:40.275Z"},"0.0.27-alpha":{"name":"@types/cors","version":"0.0.27-alpha","description":"TypeScript definitions for cors","main":"","scripts":{},"author":{"name":"Mihhail Lapushkin","email":"https://github.com/mihhail-lapushkin/"},"repository":{"type":"git","url":"https://www.github.com/DefinitelyTyped/DefinitelyTyped.git"},"license":"MIT","typings":"index.d.ts","dependencies":{"@types/express":"4.0.27-alpha"},"_id":"@types/cors@0.0.27-alpha","_shasum":"6ed63bb7d3de77f87d327d95b56b0e5e5a9645a2","_from":"output\\cors","_resolved":"file:output\\cors","_npmVersion":"3.7.2","_nodeVersion":"6.2.1","_npmUser":{"name":"types","email":"ryan.cavanaugh@microsoft.com"},"dist":{"shasum":"6ed63bb7d3de77f87d327d95b56b0e5e5a9645a2","size":1114,"noattachment":false,"tarball":"https://registry.npmmirror.com/@types/cors/-/cors-0.0.27-alpha.tgz","integrity":"sha512-Xr+DN3TpdFQ7W0dXkUVio/9FmPazty3jjCp34IKL9a3V8JM54PkhY1cAiLrS/91mWGu5rWUkS1He03sCRqHOvw=="},"maintainers":[{"name":"types","email":"ryan.cavanaugh@microsoft.com"}],"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/cors-0.0.27-alpha.tgz_1467590451380_0.4959877145010978"},"directories":{},"publish_time":1467590454811,"_hasShrinkwrap":false,"_cnpm_publish_time":1467590454811,"_cnpmcore_publish_time":"2021-12-13T11:17:40.815Z"},"0.0.26-alpha":{"name":"@types/cors","version":"0.0.26-alpha","description":"TypeScript definitions for cors","main":"","scripts":{},"author":{"name":"Mihhail Lapushkin","email":"https://github.com/mihhail-lapushkin/"},"repository":{"type":"git","url":"https://www.github.com/DefinitelyTyped/DefinitelyTyped.git"},"license":"MIT","typings":"index.d.ts","dependencies":{"@types/express":"4.0.25-alpha"},"_id":"@types/cors@0.0.26-alpha","_shasum":"688f9e5425cc8d9d876aa4595d1ebf10ceb0a10c","_from":"output\\cors","_resolved":"file:output\\cors","_npmVersion":"3.7.2","_nodeVersion":"6.2.1","_npmUser":{"name":"types","email":"ryan.cavanaugh@microsoft.com"},"dist":{"shasum":"688f9e5425cc8d9d876aa4595d1ebf10ceb0a10c","size":1118,"noattachment":false,"tarball":"https://registry.npmmirror.com/@types/cors/-/cors-0.0.26-alpha.tgz","integrity":"sha512-MzzycuoUBG4+nJEvTIpIvg3XKl4qNymh2VUGCXTBkdETG+IVfIKPvb0tPZ28LutgQcwNqJZdeiF4M4eloDroJw=="},"maintainers":[{"name":"types","email":"ryan.cavanaugh@microsoft.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/cors-0.0.26-alpha.tgz_1467425737511_0.7930498791392893"},"directories":{},"publish_time":1467425738099,"_hasShrinkwrap":false,"_cnpm_publish_time":1467425738099,"_cnpmcore_publish_time":"2021-12-13T11:17:41.336Z"},"0.0.25-alpha":{"name":"@types/cors","version":"0.0.25-alpha","description":"TypeScript definitions for cors","main":"","scripts":{},"author":{"name":"Mihhail Lapushkin","email":"https://github.com/mihhail-lapushkin/"},"repository":{"type":"git","url":"https://www.github.com/DefinitelyTyped/DefinitelyTyped.git"},"license":"MIT","typings":"index.d.ts","dependencies":{"@types/express":"4.0.24-alpha"},"_id":"@types/cors@0.0.25-alpha","_shasum":"8e3e5bb757de5be35326f2714d5b8f6de53d46be","_from":"output\\cors","_resolved":"file:output\\cors","_npmVersion":"3.7.2","_nodeVersion":"6.2.1","_npmUser":{"name":"types","email":"ryan.cavanaugh@microsoft.com"},"dist":{"shasum":"8e3e5bb757de5be35326f2714d5b8f6de53d46be","size":1121,"noattachment":false,"tarball":"https://registry.npmmirror.com/@types/cors/-/cors-0.0.25-alpha.tgz","integrity":"sha512-DuCWUVwxFTgppB5OkhGxLDIriTPJcnIe8IQrMU6qTdsgL6ughI8tv/8g/HhRUQ+h+h7kxf+O/BMRZFjPHYB71w=="},"maintainers":[{"name":"types","email":"ryan.cavanaugh@microsoft.com"}],"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/cors-0.0.25-alpha.tgz_1467412237957_0.8284072666428983"},"directories":{},"publish_time":1467412241510,"_hasShrinkwrap":false,"_cnpm_publish_time":1467412241510,"_cnpmcore_publish_time":"2021-12-13T11:17:41.930Z"},"0.0.24-alpha":{"name":"@types/cors","version":"0.0.24-alpha","description":"TypeScript definitions for cors","main":"","scripts":{},"author":{"name":"Mihhail Lapushkin","email":"https://github.com/mihhail-lapushkin/"},"repository":{"type":"git","url":"https://www.github.com/DefinitelyTyped/DefinitelyTyped.git"},"license":"MIT","typings":"index.d.ts","dependencies":{"@types/express":"4.0.*"},"_id":"@types/cors@0.0.24-alpha","_shasum":"19b97e840e614b371cd4214316b9931a65f3e7a9","_from":"output\\cors","_resolved":"file:output\\cors","_npmVersion":"3.9.5","_nodeVersion":"6.2.2","_npmUser":{"name":"types","email":"ryan.cavanaugh@microsoft.com"},"dist":{"shasum":"19b97e840e614b371cd4214316b9931a65f3e7a9","size":1107,"noattachment":false,"tarball":"https://registry.npmmirror.com/@types/cors/-/cors-0.0.24-alpha.tgz","integrity":"sha512-6ebKmIgIlWALlO8wjSkJRsMM94F79zDdYfr8gqp5HhjBVMdJRFKgHPnYlrrCQ6MDQ9RhUF57H0ldXgfoQ+rYIw=="},"maintainers":[{"name":"types","email":"ryan.cavanaugh@microsoft.com"}],"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/cors-0.0.24-alpha.tgz_1467400217457_0.13403520546853542"},"directories":{},"publish_time":1467400219659,"_hasShrinkwrap":false,"_cnpm_publish_time":1467400219659,"_cnpmcore_publish_time":"2021-12-13T11:17:42.442Z"},"0.0.23-alpha":{"name":"@types/cors","version":"0.0.23-alpha","description":"TypeScript definitions for cors","main":"","scripts":{},"author":{"name":"Mihhail Lapushkin","email":"https://github.com/mihhail-lapushkin/"},"license":"MIT","typings":"index.d.ts","dependencies":{"@types/express":"*"},"_id":"@types/cors@0.0.23-alpha","_shasum":"e0c4c1c71cc85228fed7d60865e868deced4c7fa","_from":"output\\cors","_resolved":"file:output\\cors","_npmVersion":"3.8.2","_nodeVersion":"5.5.0","_npmUser":{"name":"types","email":"ryan.cavanaugh@microsoft.com"},"dist":{"shasum":"e0c4c1c71cc85228fed7d60865e868deced4c7fa","size":1088,"noattachment":false,"tarball":"https://registry.npmmirror.com/@types/cors/-/cors-0.0.23-alpha.tgz","integrity":"sha512-6c9awn8qrIqgdctCpov8a6rBYjksgutUG6szh8V7rnZW7iZHF9JGFPCvYsPCmtbPExishTvpRlkE+fjdb7EZ1g=="},"maintainers":[{"name":"types","email":"ryan.cavanaugh@microsoft.com"}],"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/cors-0.0.23-alpha.tgz_1464151323245_0.09293201612308621"},"directories":{},"publish_time":1464151325663,"_hasShrinkwrap":false,"_cnpm_publish_time":1464151325663,"_cnpmcore_publish_time":"2021-12-13T11:17:42.941Z"},"0.0.22-alpha":{"name":"@types/cors","version":"0.0.22-alpha","description":"TypeScript definitions for cors","main":"","scripts":{},"author":{"name":"Mihhail Lapushkin","email":"https://github.com/mihhail-lapushkin/"},"license":"MIT","typings":"index.d.ts","dependencies":{"@types/express":"*"},"_id":"@types/cors@0.0.22-alpha","_shasum":"ddaacb8ecd3c2d4fa313939bef4dc3d03b9114b3","_from":"output\\cors","_resolved":"file:output\\cors","_npmVersion":"3.8.2","_nodeVersion":"5.5.0","_npmUser":{"name":"types","email":"ryan.cavanaugh@microsoft.com"},"dist":{"shasum":"ddaacb8ecd3c2d4fa313939bef4dc3d03b9114b3","size":1084,"noattachment":false,"tarball":"https://registry.npmmirror.com/@types/cors/-/cors-0.0.22-alpha.tgz","integrity":"sha512-ciI5lO2O+ay/YWz2FJDNcpVlV2PIugyhGQEJC05alUBX/8oSXy59KGCxojbhhVsPPRoAiJxeHgYCyS9tZZSXmQ=="},"maintainers":[{"name":"types","email":"ryan.cavanaugh@microsoft.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/cors-0.0.22-alpha.tgz_1463772239561_0.2874596833717078"},"directories":{},"publish_time":1463772239954,"_hasShrinkwrap":false,"_cnpm_publish_time":1463772239954,"_cnpmcore_publish_time":"2021-12-13T11:17:43.445Z"},"0.0.17-alpha":{"name":"@types/cors","version":"0.0.17-alpha","description":"Type definitions for cors from https://www.github.com/DefinitelyTyped/DefinitelyTyped","main":"","scripts":{},"author":{"name":"Mihhail Lapushkin","email":"https://github.com/mihhail-lapushkin/"},"license":"MIT","typings":"index.d.ts","dependencies":{"equire('express'":"*"},"_id":"@types/cors@0.0.17-alpha","_shasum":"db769f2b2924b317153e2241df512130d449f4e3","_from":"output\\cors","_resolved":"file:output\\cors","_npmVersion":"3.8.2","_nodeVersion":"5.5.0","_npmUser":{"name":"types","email":"ryan.cavanaugh@microsoft.com"},"dist":{"shasum":"db769f2b2924b317153e2241df512130d449f4e3","size":1092,"noattachment":false,"tarball":"https://registry.npmmirror.com/@types/cors/-/cors-0.0.17-alpha.tgz","integrity":"sha512-Futyn2YG/aKNI8KMc2reCqjipl7uClNuvNlAM2wz5shj6sPlgPkOextfnxSY9ClsMnO71q9R3Ain4sNwMqErxQ=="},"maintainers":[{"name":"types","email":"ryan.cavanaugh@microsoft.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/cors-0.0.17-alpha.tgz_1463690120955_0.6335323066450655"},"directories":{},"publish_time":1463690123455,"_hasShrinkwrap":false,"_cnpm_publish_time":1463690123455,"_cnpmcore_publish_time":"2021-12-13T11:17:43.940Z"},"0.0.16-alpha":{"name":"@types/cors","version":"0.0.16-alpha","description":"Type definitions for cors from https://www.github.com/DefinitelyTyped/DefinitelyTyped","main":"","scripts":{},"author":{"name":"Mihhail Lapushkin","email":"https://github.com/mihhail-lapushkin/"},"license":"MIT","typings":"index.d.ts","dependencies":{"equire('express'":"*"},"_id":"@types/cors@0.0.16-alpha","_shasum":"61513d4126e939531f63dce51be66c05148b1dc9","_from":"output\\cors","_resolved":"file:output\\cors","_npmVersion":"3.8.2","_nodeVersion":"5.5.0","_npmUser":{"name":"types","email":"ryan.cavanaugh@microsoft.com"},"dist":{"shasum":"61513d4126e939531f63dce51be66c05148b1dc9","size":1085,"noattachment":false,"tarball":"https://registry.npmmirror.com/@types/cors/-/cors-0.0.16-alpha.tgz","integrity":"sha512-tryvGV5zp86mTgngZuFkIZo+qzwZEW+zBVDuTTV7eGVPQGO9GYwYvo4umYXX9zRgnrxUSJ1mBVEREiKNz3AcqA=="},"maintainers":[{"name":"types","email":"ryan.cavanaugh@microsoft.com"}],"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/cors-0.0.16-alpha.tgz_1463460130720_0.9423643869813532"},"directories":{},"publish_time":1463460134431,"_hasShrinkwrap":false,"_cnpm_publish_time":1463460134431,"_cnpmcore_publish_time":"2021-12-13T11:17:44.472Z"},"2.8.13":{"name":"@types/cors","version":"2.8.13","description":"TypeScript definitions for cors","homepage":"https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/cors","license":"MIT","contributors":[{"name":"Alan Plum","url":"https://github.com/pluma","githubUsername":"pluma"},{"name":"Gaurav Sharma","url":"https://github.com/gtpan77","githubUsername":"gtpan77"}],"main":"","types":"index.d.ts","repository":{"type":"git","url":"https://github.com/DefinitelyTyped/DefinitelyTyped.git","directory":"types/cors"},"scripts":{},"dependencies":{"@types/node":"*"},"typesPublisherContentHash":"7979c95081a89c6479dfb9a9a432965c861677edef9443df6d4a871a5db924c4","typeScriptVersion":"4.2","_id":"@types/cors@2.8.13","dist":{"integrity":"sha512-RG8AStHlUiV5ysZQKq97copd2UmVYw3/pRMLefISZ3S1hK104Cwm7iLQ3fTKx+lsUH2CE8FlLaYeEA2LSeqYUA==","shasum":"b8ade22ba455a1b8cb3b5d3f35910fd204f84f94","tarball":"https://registry.npmmirror.com/@types/cors/-/cors-2.8.13.tgz","fileCount":5,"unpackedSize":6492,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQCHtJBkcn6Up7ZqhsHQxC0hGNT7QzSx3CLiFE97teJJTAIgAwd78HpYm4JUvn5WLpMKTfSOgpsxUgol9Zakou1pJo4="}],"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjjZ6uACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2Vmp/BQ/9GvasmWSnabDl2UnstTQT0rVbTBNAff7xnGJQJyTJ/d/AwHdg\r\nzBpsxUKFpH7xustbqNKGG9ifyEuyfHDnFcqJSKPh6VPGjqo1XCg7hb0TmPhq\r\nqSlwpvlLtCSgBxKrB74GCQ//ZLz4pnUd6MPD5iKf68dVfK9qa0O2B3mtlGG1\r\nUtyrdVReiKJJSxxsdfLyIItoZTsCdmt2/2sZCmq3i8NetSIxAxSG+lSpkbyE\r\nX9KJLoWf4Nxf6RL8BtFO1FpFR1tpD6jUnjZHdUJ1gDOa/l+fzpzyOpBnaTlH\r\n5X+hOifMkAAsLVet1iT5aZb935q80ZG3inXhr0rnjxq4cy4IQQqWJL2at92k\r\nU+We9GUt79lODAlPSGm5s/Io+AdEA+c2vGCViSGdcucJjM+l6h6p/nB8hrjP\r\n4D3If5nabBWd+kfetav8FnKwmUiEvqsRf9DqZZCwD51UEgUkFZv9Fe4Dg/PF\r\npnNQGq2zV0rTle41xaXV/5Pcvhhp5apgf6+Q7V3bqQkGcNTrVL/E6nknQhpP\r\nW4B9DW4TIZ4uttzIdGprLFDNqKrcim72Sd1/4ZvEhzpzfAfOBjwMe7uGjsUO\r\n22oXIXi8Z8AulcfviIsIJadIFjp7gme6p6h5FI7Qx57Z1z2PtnilTUMSc3Pk\r\nlUmMtjPY342ocaslo6QbcVXPBh3KYwoXAIY=\r\n=NcBt\r\n-----END PGP SIGNATURE-----\r\n","size":2173},"_npmUser":{"name":"types","email":"ts-npm-types@microsoft.com"},"directories":{},"maintainers":[{"name":"types","email":"ts-npm-types@microsoft.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/cors_2.8.13_1670225582154_0.15977660529452997"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2022-12-05T07:33:19.675Z"},"2.8.14":{"name":"@types/cors","version":"2.8.14","description":"TypeScript definitions for cors","homepage":"https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/cors","license":"MIT","contributors":[{"name":"Alan Plum","url":"https://github.com/pluma","githubUsername":"pluma"},{"name":"Gaurav Sharma","url":"https://github.com/gtpan77","githubUsername":"gtpan77"}],"main":"","types":"index.d.ts","repository":{"type":"git","url":"https://github.com/DefinitelyTyped/DefinitelyTyped.git","directory":"types/cors"},"scripts":{},"dependencies":{"@types/node":"*"},"typesPublisherContentHash":"e4fbb8898e768e27ad521fb9c66aa964ab5cf7859301d685017386ebd41c2d3e","typeScriptVersion":"4.3","_id":"@types/cors@2.8.14","dist":{"integrity":"sha512-RXHUvNWYICtbP6s18PnOCaqToK8y14DnLd75c6HfyKf228dxy7pHNOQkxPtvXKp/hINFMDjbYzsj63nnpPMSRQ==","shasum":"94eeb1c95eda6a8ab54870a3bf88854512f43a92","tarball":"https://registry.npmmirror.com/@types/cors/-/cors-2.8.14.tgz","fileCount":5,"unpackedSize":6514,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQChuc77IZldAU3tsqjdH+Hl3d2qwoAAUY2AvCSfJzRmEwIhAM3oAFjneG4iSSlZ/lj+HHeXiQqPZ2Ue+0ceBH8lH+7u"}],"size":2170},"_npmUser":{"name":"types","email":"ts-npm-types@microsoft.com"},"directories":{},"maintainers":[{"name":"types","email":"ts-npm-types@microsoft.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/cors_2.8.14_1693844545893_0.14730105394376403"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2023-09-04T16:22:26.104Z","publish_time":1693844546104,"_source_registry_name":"default"},"2.8.15":{"name":"@types/cors","version":"2.8.15","description":"TypeScript definitions for cors","homepage":"https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/cors","license":"MIT","contributors":[{"name":"Alan Plum","githubUsername":"pluma","url":"https://github.com/pluma"},{"name":"Gaurav Sharma","githubUsername":"gtpan77","url":"https://github.com/gtpan77"}],"main":"","types":"index.d.ts","repository":{"type":"git","url":"https://github.com/DefinitelyTyped/DefinitelyTyped.git","directory":"types/cors"},"scripts":{},"dependencies":{"@types/node":"*"},"typesPublisherContentHash":"c40386a694c9d1bf849c5628384164926908b523da932e0e9751c2efe774c486","typeScriptVersion":"4.5","_id":"@types/cors@2.8.15","dist":{"integrity":"sha512-n91JxbNLD8eQIuXDIChAN1tCKNWCEgpceU9b7ZMbFA+P+Q4yIeh80jizFLEvolRPc1ES0VdwFlGv+kJTSirogw==","shasum":"eb143aa2f8807ddd78e83cbff141bbedd91b60ee","tarball":"https://registry.npmmirror.com/@types/cors/-/cors-2.8.15.tgz","fileCount":5,"unpackedSize":5904,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQCyiDb71O6jwxkZIZjHV5zM/SgrP0HuZluzKOeCsASzpAIgSHofYRTzc+njCR/viFO5jlx5E6IOQKiXfmDhOT+4kp4="}],"size":2111},"_npmUser":{"name":"types","email":"ts-npm-types@microsoft.com"},"directories":{},"maintainers":[{"name":"types","email":"ts-npm-types@microsoft.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/cors_2.8.15_1697588915244_0.8875218876559501"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2023-10-18T00:28:35.489Z","publish_time":1697588915489,"_source_registry_name":"default"},"2.8.16":{"name":"@types/cors","version":"2.8.16","description":"TypeScript definitions for cors","homepage":"https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/cors","license":"MIT","contributors":[{"name":"Alan Plum","githubUsername":"pluma","url":"https://github.com/pluma"},{"name":"Gaurav Sharma","githubUsername":"gtpan77","url":"https://github.com/gtpan77"}],"main":"","types":"index.d.ts","repository":{"type":"git","url":"https://github.com/DefinitelyTyped/DefinitelyTyped.git","directory":"types/cors"},"scripts":{},"dependencies":{"@types/node":"*"},"typesPublisherContentHash":"f713b0f644442bb98a880118963bd7fa79cd1d5e02b97cee11f7e0e25ffb5987","typeScriptVersion":"4.5","_id":"@types/cors@2.8.16","dist":{"integrity":"sha512-Trx5or1Nyg1Fq138PCuWqoApzvoSLWzZ25ORBiHMbbUT42g578lH1GT4TwYDbiUOLFuDsCkfLneT2105fsFWGg==","shasum":"a24bf65acd216c078890ca6ceb91e672adb158e7","tarball":"https://registry.npmmirror.com/@types/cors/-/cors-2.8.16.tgz","fileCount":5,"unpackedSize":5904,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIBjmP+p37BZ11DJvroGv5vt0EAqr/dnwKm1XsEIC+2QkAiAewrYVrieKKIAQxtkXQSjkguJ/6Irqlm9PdWlXQELgAQ=="}],"size":2114},"_npmUser":{"name":"types","email":"ts-npm-types@microsoft.com"},"directories":{},"maintainers":[{"name":"types","email":"ts-npm-types@microsoft.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/cors_2.8.16_1699319304745_0.6205636476608405"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2023-11-07T01:08:25.117Z","publish_time":1699319305117,"_source_registry_name":"default"},"2.8.17":{"name":"@types/cors","version":"2.8.17","description":"TypeScript definitions for cors","homepage":"https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/cors","license":"MIT","contributors":[{"name":"Alan Plum","githubUsername":"pluma","url":"https://github.com/pluma"},{"name":"Gaurav Sharma","githubUsername":"gtpan77","url":"https://github.com/gtpan77"}],"main":"","types":"index.d.ts","repository":{"type":"git","url":"https://github.com/DefinitelyTyped/DefinitelyTyped.git","directory":"types/cors"},"scripts":{},"dependencies":{"@types/node":"*"},"typesPublisherContentHash":"04d506dbb23d9e7a142bfb227d59c61102abec00fb40694bb64a8d9fe1f1a3a1","typeScriptVersion":"4.5","_id":"@types/cors@2.8.17","dist":{"integrity":"sha512-8CGDvrBj1zgo2qE+oS3pOCyYNqCPryMWY2bGfwA0dcfopWGgxs+78df0Rs3rc9THP4JkOhLsAa+15VdpAqkcUA==","shasum":"5d718a5e494a8166f569d986794e49c48b216b2b","tarball":"https://registry.npmmirror.com/@types/cors/-/cors-2.8.17.tgz","fileCount":5,"unpackedSize":5910,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQDYUWgxpK870Irqot3K/IrqGV/sZmY1riD38ICaD2Cx5gIgewWEvfNuTJVFi6I56sD8REQX0aheLa06cfjP3D2XwGw="}],"size":2114},"_npmUser":{"name":"types","email":"ts-npm-types@microsoft.com"},"directories":{},"maintainers":[{"name":"types","email":"ts-npm-types@microsoft.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/cors_2.8.17_1700524450863_0.6815335646175904"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2023-11-20T23:54:11.024Z","publish_time":1700524451024,"_source_registry_name":"default"},"2.8.18":{"name":"@types/cors","version":"2.8.18","license":"MIT","_id":"@types/cors@2.8.18","maintainers":[{"name":"types","email":"ts-npm-types@microsoft.com"}],"contributors":[{"url":"https://github.com/pluma","name":"Alan Plum","githubUsername":"pluma"},{"url":"https://github.com/gtpan77","name":"Gaurav Sharma","githubUsername":"gtpan77"}],"homepage":"https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/cors","dist":{"shasum":"101e033b3ca06695f3d73c587cd7f9eb348135d1","tarball":"https://registry.npmmirror.com/@types/cors/-/cors-2.8.18.tgz","fileCount":5,"integrity":"sha512-nX3d0sxJW41CqQvfOzVG1NCTXfFDrDWIghCZncpHeWlVFd81zxB/DLhg7avFg6eHLCRX7ckBmoIIcqa++upvJA==","signatures":[{"sig":"MEUCIQD0MrIO0E2r7agAZWtU+lC+2BRMaWHsiPlpa1Jy1Tt5rwIgSjiAQt47G8vt5bUU8UvUCOQ2xPsPT2gInQx9OZkB1e0=","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":5936,"size":2130},"main":"","types":"index.d.ts","scripts":{},"_npmUser":{"name":"types","email":"ts-npm-types@microsoft.com"},"repository":{"url":"https://github.com/DefinitelyTyped/DefinitelyTyped.git","type":"git","directory":"types/cors"},"description":"TypeScript definitions for cors","directories":{},"dependencies":{"@types/node":"*"},"_hasShrinkwrap":false,"peerDependencies":{},"typeScriptVersion":"5.1","_npmOperationalInternal":{"tmp":"tmp/cors_2.8.18_1746702216107_0.8498291974140422","host":"s3://npm-registry-packages-npm-production"},"typesPublisherContentHash":"bb827b9078703536a36eec6c6a0fff336bf3c2bca470df69b51c6402fd1c2316","_cnpmcore_publish_time":"2025-05-08T11:03:36.297Z","publish_time":1746702216297,"_source_registry_name":"default"},"2.8.19":{"name":"@types/cors","version":"2.8.19","license":"MIT","_id":"@types/cors@2.8.19","maintainers":[{"name":"types","email":"ts-npm-types@microsoft.com"}],"contributors":[{"url":"https://github.com/pluma","name":"Alan Plum","githubUsername":"pluma"},{"url":"https://github.com/gtpan77","name":"Gaurav Sharma","githubUsername":"gtpan77"},{"url":"https://github.com/bjohansebas","name":"Sebastian Beltran","githubUsername":"bjohansebas"}],"homepage":"https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/cors","dist":{"shasum":"d93ea2673fd8c9f697367f5eeefc2bbfa94f0342","tarball":"https://registry.npmmirror.com/@types/cors/-/cors-2.8.19.tgz","fileCount":5,"integrity":"sha512-mFNylyeyqN93lfe/9CSxOGREz8cpzAhH+E93xJ4xWQf62V8sQ/24reV2nyzUWM6H6Xji+GGHpkbLe7pVoUEskg==","signatures":[{"sig":"MEUCICkxnSIYwK0gj9jRi4EpogplO+PsMpiJCNQjdM5ObuAyAiEAgZd8hHJk7UcYH7nxw3/8PAJhDb98zmecY8grW/BH/JM=","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":6148,"size":2172},"main":"","types":"index.d.ts","scripts":{},"_npmUser":{"name":"types","email":"ts-npm-types@microsoft.com"},"repository":{"url":"https://github.com/DefinitelyTyped/DefinitelyTyped.git","type":"git","directory":"types/cors"},"description":"TypeScript definitions for cors","directories":{},"dependencies":{"@types/node":"*"},"_hasShrinkwrap":false,"peerDependencies":{},"typeScriptVersion":"5.1","_npmOperationalInternal":{"tmp":"tmp/cors_2.8.19_1749262586170_0.6836294892668815","host":"s3://npm-registry-packages-npm-production"},"typesPublisherContentHash":"a090e558c5f443573318c2955deecddc840bd8dfaac7cdedf31c7f6ede8d0b47","_cnpmcore_publish_time":"2025-06-07T02:16:26.348Z","publish_time":1749262586348,"_source_registry_name":"default"}},"contributors":[{"url":"https://github.com/pluma","name":"Alan Plum","githubUsername":"pluma"},{"url":"https://github.com/gtpan77","name":"Gaurav Sharma","githubUsername":"gtpan77"},{"url":"https://github.com/bjohansebas","name":"Sebastian Beltran","githubUsername":"bjohansebas"}],"homepage":"https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/cors","repository":{"url":"https://github.com/DefinitelyTyped/DefinitelyTyped.git","type":"git","directory":"types/cors"},"_source_registry_name":"default"}