Blob Blame History Raw
commit 763d684ab58fd1e4aa524e7ced960549fd6bd7ac
Author: Tom Hughes <tom@compton.nu>
Date:   Fri Mar 14 19:26:20 2014 +0000

    Patch out use of node-pre-gyp

diff --git a/lib/index.js b/lib/index.js
index c7748be..1bb4894 100644
--- a/lib/index.js
+++ b/lib/index.js
@@ -1,6 +1,5 @@
-var binary = require('node-pre-gyp');
 var path = require('path');
-var binding_path = binary.find(path.resolve(path.join(__dirname,'../package.json')));
+var binding_path = path.resolve(path.join(__dirname, 'binding/zipfile.node'));
 var zipfile = require(binding_path);
 
 exports = module.exports = zipfile;
diff --git a/package.json b/package.json
index 9b8af6d..4ccb13a 100644
--- a/package.json
+++ b/package.json
@@ -12,9 +12,6 @@
   "author"        : "Dane Springmeyer <dane@dbsgeo.com>",
   "contributors"  : [],
   "licenses"      : ["BSD"],
-  "dependencies"  : {
-    "node-pre-gyp": "0.5.x"
-  },
   "bundledDependencies":["node-pre-gyp"],
   "devDependencies": {
     "mocha": "*",