package.json
3.27 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
{
"_from": "mysql2",
"_id": "mysql2@2.2.5",
"_inBundle": false,
"_integrity": "sha512-XRqPNxcZTpmFdXbJqb+/CtYVLCx14x1RTeNMD4954L331APu75IC74GDqnZMEt1kwaXy6TySo55rF2F3YJS78g==",
"_location": "/mysql2",
"_phantomChildren": {
"safer-buffer": "2.1.2"
},
"_requested": {
"type": "tag",
"registry": true,
"raw": "mysql2",
"name": "mysql2",
"escapedName": "mysql2",
"rawSpec": "",
"saveSpec": null,
"fetchSpec": "latest"
},
"_requiredBy": [
"#USER",
"/"
],
"_resolved": "https://registry.npmjs.org/mysql2/-/mysql2-2.2.5.tgz",
"_shasum": "72624ffb4816f80f96b9c97fedd8c00935f9f340",
"_spec": "mysql2",
"_where": "C:\\Users\\gther\\Desktop\\projects\\capston2",
"author": {
"name": "Andrey Sidorov",
"email": "sidorares@yandex.ru"
},
"bugs": {
"url": "https://github.com/sidorares/node-mysql2/issues"
},
"bundleDependencies": false,
"dependencies": {
"denque": "^1.4.1",
"generate-function": "^2.3.1",
"iconv-lite": "^0.6.2",
"long": "^4.0.0",
"lru-cache": "^6.0.0",
"named-placeholders": "^1.1.2",
"seq-queue": "^0.0.5",
"sqlstring": "^2.3.2"
},
"deprecated": false,
"description": "fast mysql driver. Implements core protocol, prepared statements, ssl and compression in native JS",
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^2.3.2",
"@typescript-eslint/parser": "^2.3.2",
"assert-diff": "^3.0.0",
"error-stack-parser": "^2.0.3",
"eslint": "^6.2.2",
"eslint-config-prettier": "^6.1.0",
"eslint-plugin-async-await": "0.0.0",
"eslint-plugin-markdown": "^1.0.0",
"husky": "^3.0.4",
"is-async-supported": "^1.2.0",
"lint-staged": "^10.0.3",
"portfinder": "^1.0.28",
"prettier": "^2.0.5",
"prettier-markdown": "^0.1.6",
"progress": "^2.0.3",
"typescript": "^3.6.3",
"urun": "0.0.8",
"utest": "0.0.8"
},
"directories": {
"example": "examples"
},
"engines": {
"node": ">= 8.0"
},
"exports": {
".": "./index.js",
"./promise": "./promise.js"
},
"files": [
"lib",
"typings",
"index.js",
"index.d.ts",
"promise.js",
"promise.d.ts"
],
"homepage": "https://github.com/sidorares/node-mysql2#readme",
"keywords": [
"mysql",
"client",
"server"
],
"license": "MIT",
"lint-staged": {
"*.js": [
"prettier --single-quote --trailing-comma none --write",
"git add"
]
},
"main": "index.js",
"name": "mysql2",
"repository": {
"type": "git",
"url": "git+https://github.com/sidorares/node-mysql2.git"
},
"scripts": {
"benchmark": "./benchmarks/run-unit.js",
"eslint-check": "eslint --print-config .eslintrc | eslint-config-prettier-check",
"lint": "npm run lint:docs && npm run lint:code",
"lint:code": "eslint index.js promise.js \"lib/**/*.js\" \"test/**/*.js\" \"benchmarks/**/*.js\"",
"lint:docs": "eslint Contributing.md \"documentation/**/*.md\" \"examples/*.js\"",
"precommit": "lint-staged",
"prettier": "prettier --single-quote --trailing-comma none --write \"{lib,examples,test}/**/*.js\"",
"prettier:docs": "prettier-markdown README.md documentation/*",
"test": "npm run lint && npm run test:raw",
"test:raw": "node ./test/run.js",
"wait-port": "wait-on"
},
"version": "2.2.5"
}