forked from joereynolds/sql-lint
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
83 lines (83 loc) · 2.18 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
82
83
{
"bin": {
"sql-lint": "./dist/src/main.js"
},
"dependencies": {
"@types/moo": "^0.5.3",
"@types/mysql": "^2.15.9",
"@types/nearley": "^2.11.1",
"@types/node": "^14.0.14",
"@types/sprintf-js": "^1.1.2",
"any-db": "^2.2.1",
"any-db-mysql": "^2.1.2",
"any-db-postgres": "^2.1.5",
"commander": "^5.1.0",
"moo": "^0.5.1",
"mysql": "^2.16.0",
"nearley": "^2.19.3",
"param-case": "^3.0.3",
"sprintf-js": "^1.1.2"
},
"description": "An intelligent SQL linter and checker",
"devDependencies": {
"@types/any-db": "^2.1.30",
"@types/jest": "^26.0.3",
"jest": "^26.1.0",
"pkg": "^4.3.7",
"prettier": "^2.0.5",
"shelltest": "^2.0.0",
"ts-jest": "^26.1.1",
"tslint": "^6.1.2",
"tslint-config-prettier": "^1.18.0",
"tslint-sonarts": "^1.9.0",
"typescript": "^3.8.2"
},
"homepage": "https://github.com/joereynolds/sql-lint",
"jest": {
"coverageThreshold": {
"global": {
"branches": 93,
"functions": 97,
"lines": 98,
"statements": 98
}
},
"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",
"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": "0.0.15"
}