forked from sidorares/nodejs-mysql-native
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
21 lines (20 loc) · 677 Bytes
/
Copy pathpackage.json
File metadata and controls
21 lines (20 loc) · 677 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
{ "name" : "mysql-native"
, "description" : "MySql protocol client for Node.Js"
, "keywords": ["mysql", "native", "sql", "database", "client", "pool"]
, "homepage" : "http://github.com/sidorares/nodejs-mysql-native"
, "version" : "0.4.7"
, "author": "Andrey Sidorov <sidorares@yandex.ru>"
, "bugs" : { "url" : "http://github.com/sidorares/nodejs-mysql-native/issues" }
,"license": "MIT"
, "repository" :
[ { "type" : "git"
, "url" : "http://github.com/sidorares/nodejs-mysql-native"
}
]
, "main" : "./lib/mysql-native"
, "engines" : { "node" : ">=0.6.0" }
, "scripts" : {
"pretest": "NODE_ENV=test node test/setup_db",
"test": "node test/expresso-wrapper"
}
}