Skip to content

Commit 7b54fe7

Browse files
committed
fix: use node-gyp for node 0.10
1 parent e132b36 commit 7b54fe7

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

package.json

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
, "keywords": ["database","db","native","binding","library","plugin","client","mysql","libmysql"]
44
, "homepage" : "http://nodejsdb.org/db-mysql"
55
, "version" : "0.7.6"
6-
, "engines" : { "node" : ">=0.4.1" }
6+
, "engines" : { "node" : ">=0.8.0" }
77
, "maintainers" :
88
[ { "name": "Mariano Iglesias"
99
, "email": "[email protected]"
@@ -18,14 +18,14 @@
1818
]
1919
, "main" : "./db-mysql"
2020
, "scripts" :
21-
{ "preinstall": "git clone -b bigint_pre_libuv git://github.com/imkira/node-db.git lib/node-db"
22-
, "install": "node-waf configure build"
21+
{ "preinstall": "git clone git://github.com/imkira/node-db.git lib/node-db"
22+
, "install": "node-gyp rebuild --release"
2323
, "preuninstall": "rm -rf build/*"
24-
, "test" : "node-waf test"
25-
, "doc" : "node-waf doc"
24+
, "test" : "nodeunit tests.js"
2625
}
2726
, "devDependencies" :
2827
{ "nodeunit" : "*"
2928
, "nodelint" : "*"
29+
, "node-gyp" : "*"
3030
}
3131
}

0 commit comments

Comments
 (0)