-
Notifications
You must be signed in to change notification settings - Fork 40
/
package.json
81 lines (81 loc) · 2.13 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
{
"bin": {
"sql-lint": "./dist/src/cli.js"
},
"dependencies": {
"@types/moo": "^0.5.3",
"@types/nearley": "^2.11.1",
"@types/node": "^22.4.0",
"@types/pg": "^8.11.6",
"@types/sprintf-js": "^1.1.2",
"commander": "^5.1.0",
"moo": "^0.5.1",
"mysql2": "^3.9.8",
"nearley": "^2.19.3",
"param-case": "^3.0.3",
"pg": "^8.6.0",
"sprintf-js": "^1.1.2"
},
"description": "An intelligent SQL linter and checker",
"devDependencies": {
"@types/jest": "^26.0.3",
"jest": "^26.1.0",
"pkg": "^5.3.0",
"prettier": "^3.3.3",
"shelltest": "^2.0.0",
"ts-jest": "^26.5.2",
"tslint": "^6.1.2",
"tslint-config-prettier": "^1.18.0",
"tslint-sonarts": "^1.9.0",
"typescript": "^4.7.0"
},
"homepage": "https://github.com/joereynolds/sql-lint",
"main": "./dist/src/main.js",
"jest": {
"coverageThreshold": {
"global": {
"branches": 75,
"functions": 78,
"lines": 87,
"statements": 87
}
},
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json",
"node"
],
"testRegex": "test/(unit|integration)",
"testURL": "http://localhost/",
"transform": {
"^.+\\.tsx?$": "ts-jest"
},
"verbose": true
},
"keywords": [
"sql",
"linter",
"checker",
"sql-linter",
"sql-lint"
],
"license": "MIT",
"man": "./doc/man/doc.1",
"name": "sql-lint",
"repository": {
"type": "git",
"url": "https://github.com/joereynolds/sql-lint.git"
},
"scripts": {
"build": "tsc && chmod +x dist/src/cli.js",
"format": "prettier --write {src,test}/**/*.ts",
"lint": "tslint --fix -c tslint.json -p tsconfig.json",
"start": "./build/build.sh",
"test": "jest test --coverage --silent",
"nearley": "nearleyc"
},
"version": "1.0.0"
}