├── README.md └── package.json /README.md: -------------------------------------------------------------------------------- 1 | # Deprecated Package 2 | 3 | This package is no longer supported and has been deprecated. To avoid malicious use, npm is hanging on to the package name. 4 | 5 | Please contact support@npmjs.com if you have questions about this package. 6 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "XXXXXXX", 3 | "version": "0.0.1-security", 4 | "description": "", 5 | "main": "index.js", 6 | "scripts": { 7 | "test": "echo \"Error: no test specified\" && exit 1" 8 | }, 9 | "repository": { 10 | "type": "git", 11 | "url": "git+https://github.com/npm/deprecate-holder.git" 12 | }, 13 | "author": "", 14 | "license": "ISC", 15 | "bugs": { 16 | "url": "https://github.com/npm/deprecate-holder/issues" 17 | }, 18 | "homepage": "https://github.com/npm/deprecate-holder#readme" 19 | } 20 | --------------------------------------------------------------------------------