{"_id":"@types/normalize-package-data","_rev":"198505","name":"@types/normalize-package-data","description":"TypeScript definitions for normalize-package-data","dist-tags":{"latest":"2.4.1","ts2.0":"2.4.0","ts2.1":"2.4.0","ts2.2":"2.4.0","ts2.3":"2.4.0","ts2.4":"2.4.0","ts2.5":"2.4.0","ts2.6":"2.4.0","ts2.7":"2.4.0","ts2.8":"2.4.0","ts2.9":"2.4.0","ts3.0":"2.4.0","ts3.1":"2.4.0","ts3.2":"2.4.0","ts3.3":"2.4.0","ts3.4":"2.4.0","ts3.5":"2.4.0","ts3.6":"2.4.1","ts3.7":"2.4.1","ts3.8":"2.4.1","ts3.9":"2.4.1","ts4.0":"2.4.1","ts4.1":"2.4.1","ts4.2":"2.4.1","ts4.3":"2.4.1","ts4.4":"2.4.1","ts4.5":"2.4.1","ts4.6":"2.4.1","ts4.7":"2.4.1","ts4.8":"2.4.1","ts4.9":"2.4.1","ts5.0":"2.4.1","ts5.1":"2.4.1","ts5.2":"2.4.1","ts5.3":"2.4.1"},"maintainers":[{"name":"types","email":""}],"time":{"modified":"2023-09-20T22:01:52.000Z","created":"2018-01-07T07:35:32.045Z","2.4.1":"2021-07-07T16:35:08.730Z","2.4.0":"2018-01-07T07:35:32.045Z"},"users":{},"repository":{"type":"git","url":"https://github.com/DefinitelyTyped/DefinitelyTyped.git","directory":"types/normalize-package-data"},"versions":{"2.4.1":{"name":"@types/normalize-package-data","version":"2.4.1","description":"TypeScript definitions for normalize-package-data","homepage":"https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/normalize-package-data","license":"MIT","contributors":[{"name":"Jeff Dickey","url":"https://github.com/jdxcode","githubUsername":"jdxcode"}],"main":"","types":"index.d.ts","repository":{"type":"git","url":"https://github.com/DefinitelyTyped/DefinitelyTyped.git","directory":"types/normalize-package-data"},"scripts":{},"dependencies":{},"typesPublisherContentHash":"10653410655e204616118acfbe2900dc09227bc3a80c532a93d44b46be54db36","typeScriptVersion":"3.6","_id":"@types/normalize-package-data@2.4.1","dist":{"shasum":"d3357479a0fdfdd5907fe67e17e0a85c906e1301","size":1872,"noattachment":false,"key":"/@types/normalize-package-data/-/@types/normalize-package-data-2.4.1.tgz","tarball":"http://name.csiicloud.com:7001/@types/normalize-package-data/download/@types/normalize-package-data-2.4.1.tgz"},"_npmUser":{"name":"types","email":"ts-npm-types@microsoft.com"},"directories":{},"maintainers":[{"name":"types","email":""}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/normalize-package-data_2.4.1_1625675708615_0.26517946589144836"},"_hasShrinkwrap":false,"publish_time":1625675708730,"_cnpm_publish_time":1625675708730,"_cnpmcore_publish_time":"2021-12-13T13:03:56.636Z"},"2.4.0":{"name":"@types/normalize-package-data","version":"2.4.0","description":"TypeScript definitions for normalize-package-data","license":"MIT","contributors":[{"name":"Jeff Dickey","url":"https://github.com/jdxcode","githubUsername":"jdxcode"}],"main":"","repository":{"type":"git","url":"https://www.github.com/DefinitelyTyped/DefinitelyTyped.git"},"scripts":{},"dependencies":{},"typesPublisherContentHash":"5d2101e9e55c73e1d649a6c311e0d40bdfaa25bb06bb75ea6f3bb0d149c1303b","typeScriptVersion":"2.0","_id":"@types/normalize-package-data@2.4.0","dist":{"shasum":"e486d0d97396d79beedd0a6e33f4534ff6b4973e","size":1786,"noattachment":false,"key":"/@types/normalize-package-data/-/@types/normalize-package-data-2.4.0.tgz","tarball":"http://name.csiicloud.com:7001/@types/normalize-package-data/download/@types/normalize-package-data-2.4.0.tgz"},"maintainers":[{"name":"types","email":""}],"_npmUser":{"name":"types","email":"ts-npm-types@microsoft.com"},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/normalize-package-data-2.4.0.tgz_1515310531876_0.8681222880259156"},"directories":{},"publish_time":1515310532045,"_hasShrinkwrap":false,"_cnpm_publish_time":1515310532045}},"readme":"# Installation\r\n> `npm install --save @types/normalize-package-data`\r\n\r\n# Summary\r\nThis package contains type definitions for normalize-package-data (https://github.com/npm/normalize-package-data#readme).\r\n\r\n# Details\r\nFiles were exported from https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/normalize-package-data.\r\n## [index.d.ts](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/normalize-package-data/index.d.ts)\r\n````ts\r\n// Type definitions for normalize-package-data 2.4\n// Project: https://github.com/npm/normalize-package-data#readme\n// Definitions by: Jeff Dickey <https://github.com/jdxcode>\n// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped\n\nexport = normalize;\n\ndeclare function normalize(data: normalize.Input, warn?: normalize.WarnFn, strict?: boolean): void;\ndeclare function normalize(data: normalize.Input, strict?: boolean): void;\n\ndeclare namespace normalize {\n    type WarnFn = (msg: string) => void;\n    interface Input {[k: string]: any; }\n\n    interface Person {\n        name?: string | undefined;\n        email?: string | undefined;\n        url?: string | undefined;\n    }\n\n    interface Package {\n        [k: string]: any;\n        name: string;\n        version: string;\n        files?: string[] | undefined;\n        bin?: {[k: string]: string } | undefined;\n        man?: string[] | undefined;\n        keywords?: string[] | undefined;\n        author?: Person | undefined;\n        maintainers?: Person[] | undefined;\n        contributors?: Person[] | undefined;\n        bundleDependencies?: {[name: string]: string; } | undefined;\n        dependencies?: {[name: string]: string; } | undefined;\n        devDependencies?: {[name: string]: string; } | undefined;\n        optionalDependencies?: {[name: string]: string; } | undefined;\n        description?: string | undefined;\n        engines?: {[type: string]: string } | undefined;\n        license?: string | undefined;\n        repository?: { type: string, url: string } | undefined;\n        bugs?: { url: string, email?: string | undefined } | { url?: string | undefined, email: string } | undefined;\n        homepage?: string | undefined;\n        scripts?: {[k: string]: string} | undefined;\n        readme: string;\n        _id: string;\n    }\n}\n\r\n````\r\n\r\n### Additional Details\r\n * Last updated: Wed, 07 Jul 2021 16:31:34 GMT\r\n * Dependencies: none\r\n * Global values: none\r\n\r\n# Credits\r\nThese definitions were written by [Jeff Dickey](https://github.com/jdxcode).\r\n","_attachments":{},"homepage":"https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/normalize-package-data","license":"MIT"}