diff --git a/.npmignore b/.npmignore
deleted file mode 100644
index 3b3a32f..0000000
--- a/.npmignore
+++ /dev/null
@@ -1,22 +0,0 @@
-tmp
-node_modules
-*._
-*.tmp
-.monitor
-*.diff
-*.err
-*.orig
-*.log
-*.rej
-*.swo
-*.swp
-*.vi
-*~
-.DS_Store
-Thumbs.db
-.cache
-.project
-.settings
-.tmproj
-*.esproj
-nbproject
diff --git a/License.md b/License.md
new file mode 100644
index 0000000..24b40a3
--- /dev/null
+++ b/License.md
@@ -0,0 +1,21 @@
+MIT License
+
+Copyright (C) 2012 Veselin Todorov
+
+Permission is hereby granted, free of charge, to any person obtaining a copy of
+this software and associated documentation files (the "Software"), to deal in
+the Software without restriction, including without limitation the rights to
+use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies
+of the Software, and to permit persons to whom the Software is furnished to do
+so, subject to the following conditions:
+
+The above copyright notice and this permission notice shall be included in all
+copies or substantial portions of the Software.
+
+THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
+SOFTWARE.
diff --git a/Readme.md b/Readme.md
index c531965..a374924 100644
--- a/Readme.md
+++ b/Readme.md
@@ -1,54 +1,7 @@
-[![Build Status](https://secure.travis-ci.org/vesln/package.png)](http://travis-ci.org/vesln/package)
+# Project deprecated in favor of [read-package-json](https://github.com/isaacs/read-package-json)
 
-# package - Easy package.json exports.
+This project is not supported anymore. Please check the following alternatives:
 
-## Intro
-
-This module provides an easy and simple way to export package.json data.
-
-## Installation
-
-	$ npm install package
-
-## Usage
-
-	var package = require('package')(module); // contains package.json data.
-	var yourAwesomeModule = {};
-	yourAwesomeModule.version = package.version;
-
-## Tests
-
-	$ make test
-
-## Contribution
-
-Bug fixes and features are welcomed.
-
-## Other similar modules
-
-- pkginfo (https://github.com/indexzero/node-pkginfo) by indexzero.
-- JSON.parse + fs.readFile
-
-## License
-
-MIT License
-
-Copyright (C) 2012 Veselin Todorov
-
-Permission is hereby granted, free of charge, to any person obtaining a copy of
-this software and associated documentation files (the "Software"), to deal in
-the Software without restriction, including without limitation the rights to
-use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies
-of the Software, and to permit persons to whom the Software is furnished to do
-so, subject to the following conditions:
-
-The above copyright notice and this permission notice shall be included in all
-copies or substantial portions of the Software.
-
-THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
-IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
-FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
-AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
-LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
-OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
-SOFTWARE.
\ No newline at end of file
+- read-package-json (https://github.com/isaacs/read-package-json) by Isaac Z. Schlueter
+- pkginfo (https://github.com/indexzero/node-pkginfo) by Charlie Robbins
+- require('path-to-package-json').version // etc
diff --git a/debian/changelog b/debian/changelog
index 8a33a41..c76ec7e 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,4 +1,4 @@
-node-package (1.0.1-2) UNRELEASED; urgency=medium
+node-package (1.0.1+git20120808.1.446c9a8-1) UNRELEASED; urgency=medium
 
   * Trim trailing whitespace.
   * Use secure copyright file specification URI.
@@ -9,8 +9,9 @@ node-package (1.0.1-2) UNRELEASED; urgency=medium
     Repository-Browse.
   * Update Vcs-* headers from URL redirect.
   * Use canonical URL in Vcs-Git.
+  * New upstream snapshot.
 
- -- Debian Janitor <janitor@jelmer.uk>  Tue, 21 Apr 2020 04:40:40 +0000
+ -- Debian Janitor <janitor@jelmer.uk>  Sun, 17 Apr 2022 10:53:49 -0000
 
 node-package (1.0.1-1) unstable; urgency=medium
 
diff --git a/debian/patches/fix-makefile.patch b/debian/patches/fix-makefile.patch
index 78f4884..896071e 100644
--- a/debian/patches/fix-makefile.patch
+++ b/debian/patches/fix-makefile.patch
@@ -1,7 +1,7 @@
-Index: node-package-1.0.1/Makefile
+Index: node-package/Makefile
 ===================================================================
---- node-package-1.0.1.orig/Makefile
-+++ node-package-1.0.1/Makefile
+--- node-package.orig/Makefile
++++ node-package/Makefile
 @@ -1,7 +1,7 @@
  TESTS = $(shell find test -iname \*.test.js)