-
-
Notifications
You must be signed in to change notification settings - Fork 23
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 1.07 KB
/
package.json
File metadata and controls
39 lines (39 loc) · 1.07 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
{
"name": "mysql-utilities",
"version": "1.1.5",
"author": "Timur Shemsedinov <timur.shemsedinov@gmail.com>",
"description": "Utilities for node-mysql driver with specialized result types, introspection and other helpful functionality.",
"license": "MIT",
"keywords": [
"mysql",
"utilities",
"introspection",
"impress"
],
"readmeFilename": "README.md",
"repository": {
"type": "git",
"url": "https://github.com/tshemsedinov/node-mysql-utilities"
},
"main": "utilities.js",
"files": [],
"scripts": {
"test": "npm run lint && node example",
"lint": "eslint . && prettier -c \"**/*.js\" \"**/*.json\" \"**/*.md\" \"**/*.yml\"",
"fmt": "prettier --write \"**/*.js\" \"**/*.json\" \"**/*.md\" \"**/*.yml\""
},
"engines": {
"node": ">= 6.0.0"
},
"dependencies": {
"mysql": "^2.18.1"
},
"devDependencies": {
"eslint": "^8.34.0",
"eslint-config-metarhia": "^8.1.0",
"eslint-config-prettier": "^8.6.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-prettier": "^4.2.1",
"prettier": "^2.8.4"
}
}