-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
63 lines (63 loc) · 1.35 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
52
53
54
55
56
57
58
59
60
61
62
63
{
"name": "sql-log-prettifier",
"version": "0.1.2",
"description": "SQL query prettifier for your favorite logger",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"repository": {
"url": "zcuric/sql-log-prettifier",
"type": "git"
},
"bugs": {
"url": "https://github.com/zcuric/sql-log-prettifier/issues"
},
"homepage": "https://github.com/zcuric/sql-log-prettifier#readme",
"scripts": {
"start": "tsdx watch",
"build": "tsdx build",
"test": "tsdx test",
"lint": "tsdx lint"
},
"keywords": [
"sql",
"logger",
"log",
"pretty print",
"sequelize",
"logging"
],
"author": "Zdravko Ćurić <[email protected]>",
"license": "MIT",
"dependencies": {
"chalk": "^4.1.0",
"sql-formatter": "^2.3.3"
},
"devDependencies": {
"@types/chalk": "^2.2.0",
"@types/jest": "^26.0.14",
"@types/node": "^14.11.8",
"@types/sql-formatter": "^2.3.0",
"@typescript-eslint/eslint-plugin": "^4.4.1",
"@typescript-eslint/parser": "^4.4.1",
"eslint": "^7.11.0",
"husky": "^4.3.0",
"tsdx": "^0.14.0",
"tslib": "^2.0.3",
"typescript": "^4.0.3"
},
"husky": {
"hooks": {
"pre-commit": "tsdx lint"
}
},
"prettier": {
"printWidth": 80,
"semi": true,
"singleQuote": true,
"trailingComma": "es5"
},
"files": [
"dist",
"src"
]
}