forked from mysqljs/mysql
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
34 lines (34 loc) · 983 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
{
"name": "mysql",
"description": "A node.js driver for mysql. It is written in JavaScript, does not require compiling, and is 100% MIT licensed.",
"version": "2.5.4",
"license": "MIT",
"author": "Felix Geisendörfer <felix@debuggable.com> (http://debuggable.com/)",
"contributors": [
"Andrey Sidorov <sidorares@yandex.ru>",
"Douglas Christopher Wilson <doug@somethingdoug.com>",
"Diogo Resende <dresende@thinkdigital.pt>"
],
"homepage": "https://github.com/felixge/node-mysql",
"repository": "felixge/node-mysql",
"dependencies": {
"bignumber.js": "2.0.0",
"readable-stream": "~1.1.13",
"require-all": "~1.0.0"
},
"devDependencies": {
"istanbul": "0.3.5",
"rimraf": "2.2.8",
"mkdirp": "0.5.0",
"urun": "0.0.8",
"utest": "0.0.8"
},
"engines": {
"node": ">= 0.6"
},
"scripts": {
"test": "node test/run.js",
"test-ci": "node test/run-cov.js lcovonly",
"test-cov": "node test/run-cov.js"
}
}