forked from sidorares/node-mysql2
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.22 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.22 KB
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
42
43
44
45
46
47
{
"name": "mysql2",
"version": "1.0.0-rc.7",
"description": "fast mysql driver. Implements core protocol, prepared statements, ssl and compression in native JS",
"main": "index.js",
"directories": {
"example": "examples"
},
"scripts": {
"lint": "eslint lib/**/*.js index.js test/**/*.js",
"test": "node ./test/run.js && MYSQL_USE_COMPRESSION=1 node ./test/run.js",
"benchmark": "./benchmarks/run-unit.js",
"benchmarks": "./benchmarks/run-unit.js",
"format-eslintrc": "jsonlint --sort-keys --in-place --indent ' ' ./.eslintrc"
},
"repository": {
"type": "git",
"url": "https://github.com/sidorares/node-mysql2"
},
"keywords": [
"mysql",
"client",
"server"
],
"engines": {
"node": ">= 0.8"
},
"author": "Andrey Sidorov <sidorares@yandex.ru>",
"license": "MIT",
"dependencies": {
"bn.js": "4.11.4",
"cardinal": "0.7.0",
"double-ended-queue": "2.1.0-0",
"named-placeholders": "1.1.1",
"readable-stream": "2.1.4",
"seq-queue": "0.0.5",
"sqlstring": "^2.0.1"
},
"devDependencies": {
"assert-diff": "^1.0.1",
"eslint": "^3.0.0",
"portfinder": "^1.0.3",
"progress": "1.1.8",
"urun": "0.0.8",
"utest": "0.0.8"
}
}