forked from mysqljs/mysql
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 loc) · 1.19 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
{
"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.11.1",
"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>",
"Nathan Woltman <nwoltman@outlook.com>"
],
"repository": "mysqljs/mysql",
"dependencies": {
"bignumber.js": "2.3.0",
"readable-stream": "1.1.14",
"sqlstring": "2.0.1"
},
"devDependencies": {
"after": "0.8.1",
"eslint": "2.13.1",
"istanbul": "0.4.3",
"require-all": "2.0.0",
"rimraf": "2.2.8",
"timezone-mock": "0.0.0",
"mkdirp": "0.5.1",
"urun": "0.0.8",
"utest": "0.0.8"
},
"files": [
"lib/",
"Changes.md",
"License",
"Readme.md",
"index.js"
],
"engines": {
"node": ">= 0.6"
},
"scripts": {
"lint": "eslint lib/**/*.js index.js test/**/*.js",
"test": "node test/run.js",
"test-ci": "node test/run-cov.js lcovonly",
"test-cov": "node test/run-cov.js"
}
}