forked from mysqljs/mysql
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
51 lines (51 loc) · 1.97 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
48
49
50
51
{
"name": "@vlasky/mysql",
"description": "A fork of mysqljs/mysql with partial support for the MySQL compressed protocol (reads compressed data sent by server). It is written in JavaScript, does not require compiling, and is 100% MIT licensed.",
"version": "2.18.6",
"license": "MIT",
"author": "Vlad Lasky <github@vladlasky.com> (https://github.com/vlasky)",
"contributors": [
"Felix Geisendörfer <felix@debuggable.com> (http://debuggable.com/)",
"Andrey Sidorov <sidorares@yandex.ru> (https://github.com/sidorares)",
"Bradley Grainger <bgrainger@gmail.com> (https://github.com/bgrainger)",
"Douglas Christopher Wilson <doug@somethingdoug.com> (https://github.com/dougwilson)",
"Diogo Resende <dresende@thinkdigital.pt> (https://github.com/dresende)",
"Nathan Woltman <nwoltman@outlook.com> (https://github.com/nwoltman)",
"Aritz Beobide-Cardinal <aritz@aritzcracker.ca> (https://github.com/ARitz-Cracker)",
"Rui Quelhas <rui.quelhas@oracle.com> (https://github.com/ruiquelhas)",
"Peter Chung <touhonoob@gmail.com> (https://github.com/touhonoob)",
"Gabriel Fournier <gfournier@focusoptimization.com> (https://github.com/carboneater)"
],
"repository": "vlasky/mysql",
"dependencies": {
"bignumber.js": "9.1.1",
"readable-stream": "2.3.7",
"safe-buffer": "5.2.1",
"sqlstring": "2.3.3"
},
"devDependencies": {
"after": "0.8.2",
"eslint": "7.1.0",
"seedrandom": "3.0.5",
"timezone-mock": "0.0.7",
"urun": "0.0.8",
"utest": "0.0.8"
},
"files": [
"lib/",
"Changes.md",
"License",
"Readme.md",
"index.js"
],
"engines": {
"node": ">= 0.6"
},
"scripts": {
"lint": "eslint . && node tool/lint-readme.js",
"test": "node test/run.js",
"test-ci": "node tool/install-nyc.js --nyc-optional --reporter=text -- npm test",
"test-cov": "node tool/install-nyc.js --reporter=html --reporter=text -- npm test",
"version": "node tool/version-changes.js && git add Changes.md"
}
}