fix to package.json to allow npm to run tests with 'npm test pg'

This commit is contained in:
Brian Carlson 2010-11-20 18:40:50 -06:00
parent 06417eafdc
commit 43cbd34a0a

View File

@ -9,6 +9,6 @@
"author" : "Brian Carlson <brian.m.carlson@gmail.com>",
"main" : "./lib/index",
"directories" : { "lib" : "./lib" },
"scripts" : { "test" : "node .test/run.js" },
"scripts" : { "test" : "node ./test/run.js" },
"engines" : { "node": ">= 0.2.2" }
}