-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathpackage.json
47 lines (47 loc) · 1.22 KB
/
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
42
43
44
45
46
47
{ "name" : "mysql-benchmarks"
, "description" : "Node.js MySQL clients benchmarks"
, "keywords" : ["mysql", "sql", "database", "benchmark", "odbc", "rdbs"]
, "homepage" : "http://sannis.github.com/node-mysql-benchmarks"
, "version" : "0.2.1"
, "author" :
{ "name": "Oleg Efimov"
, "email": "[email protected]"
}
, "contributors" :
[ { "name": "Oleg Efimov"
, "email": "[email protected]"
}
, { "name": "Brian White"
, "email": "[email protected]"
}
, { "name": "Dan VerWeire"
, "email": "[email protected]"
}
]
, "bugs" : { "url" : "http://github.com/Sannis/node-mysql-benchmarks/issues" }
, "licenses" : [ { "type" : "MIT" } ]
, "repository" :
{ "type" : "git"
, "url" : "http://github.com/Sannis/node-mysql-benchmarks.git"
}
, "bin" :
{ "node-mysql-bindings-benchmark" : "./bin/node-mysql-benchmark.js"
}
, "scripts" :
{ "install" : "make build"
, "test" : "./bin/node-mysql-benchmark.js"
}
, "engines" : { "node" : ">=0.8.x" }
, "dependencies" :
{ "cli-table" : ">=0.2.0"
, "argparse":">=0.1.7"
, "semver":">=1.1.0"
, "mysql-libmysqlclient" : "1.6.0"
, "mysql" : "2.5.4"
, "mysql2" : "0.14.1"
, "mariasql" : "0.1.21"
}
, "devDependencies" :
{ "nodelint" : "*"
}
}