forked from mariano/node-db-mysql
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
31 lines (31 loc) · 927 Bytes
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
{ "name" : "db-mysql"
, "description" : "MySQL database bindings for Node.JS"
, "keywords": ["database","db","native","binding","library","plugin","client","mysql","libmysql"]
, "homepage" : "http://nodejsdb.org/db-mysql"
, "version" : "0.7.6"
, "engines" : { "node" : ">=0.8.0" }
, "maintainers" :
[ { "name": "Mariano Iglesias"
, "email": "mgiglesias@gmail.com"
}
]
, "bugs" : { "url" : "http://github.com/mariano/node-db-mysql/issues" }
, "licenses" : [ { "type" : "MIT" } ]
, "repositories" :
[ { "type" : "git"
, "url" : "https://github.com/mariano/node-db-mysql.git"
}
]
, "main" : "./db-mysql"
, "scripts" :
{ "preinstall": "git clone git://github.com/mariano/node-db.git lib/node-db"
, "install": "node-gyp rebuild --release"
, "preuninstall": "rm -rf build/*"
, "test" : "nodeunit tests.js"
}
, "devDependencies" :
{ "nodeunit" : "*"
, "nodelint" : "*"
, "node-gyp" : "*"
}
}