forked from sidorares/node-mysql2
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
41 lines (41 loc) · 998 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
32
33
34
35
36
37
38
39
40
41
{
"name": "mysql2",
"version": "1.0.0-rc.1",
"description": "fast mysql driver. Implements core protocol, prepared statements, ssl and compression in native JS",
"main": "index.js",
"directories": {
"example": "examples"
},
"scripts": {
"test": "node ./test/run.js && MYSQL_USE_COMPRESSION=1 node ./test/run.js",
"benchmark": "./benchmarks/run-unit.js",
"benchmarks": "./benchmarks/run-unit.js"
},
"repository": {
"type": "git",
"url": "https://github.com/sidorares/node-mysql2"
},
"keywords": [
"mysql",
"client",
"server"
],
"engines": {
"node": ">= 0.8"
},
"author": "Andrey Sidorov <[email protected]>",
"license": "MIT",
"dependencies": {
"bn.js": "4.11.3",
"cardinal": "0.7.0",
"double-ended-queue": "2.1.0-0",
"named-placeholders": "1.1.1",
"readable-stream": "2.1.2",
"seq-queue": "0.0.5"
},
"devDependencies": {
"progress": "1.1.8",
"urun": "0.0.8",
"utest": "0.0.8"
}
}