-
Notifications
You must be signed in to change notification settings - Fork 23
/
Copy pathpackage.json
69 lines (69 loc) · 1.81 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
{
"author": {
"email": "[email protected]",
"name": "Gajus Kuizinas",
"url": "http://gajus.com"
},
"dependencies": {
"@typescript-eslint/utils": "^8.19.0",
"debug": "^4.4.0",
"lodash": "^4.17.21",
"multiline-ts": "^4.0.1",
"sql-formatter": "^15.4.9",
"sql-parse": "^0.1.5"
},
"description": "SQL linting rules for ESLint.",
"devDependencies": {
"@semantic-release/commit-analyzer": "^13.0.1",
"@semantic-release/github": "^11.0.1",
"@semantic-release/npm": "^12.0.1",
"@types/mocha": "^10.0.10",
"@types/node": "^22.10.5",
"@typescript-eslint/rule-tester": "^8.19.0",
"cspell": "^8.17.1",
"eslint": "^9.17.0",
"eslint-config-canonical": "44.3.36",
"gitdown": "^4.1.1",
"glob": "^11.0.0",
"husky": "^9.1.7",
"mocha": "^11.0.1",
"semantic-release": "^24.2.1",
"tsx": "^4.19.2",
"typescript": "^5.7.2"
},
"engines": {
"node": ">=12"
},
"files": [
"src",
"dist"
],
"keywords": [
"eslint",
"plugin",
"sql"
],
"license": "BSD-3-Clause",
"main": "./dist/index.js",
"name": "eslint-plugin-sql",
"peerDependencies": {
"eslint": ">=8.1.0"
},
"repository": {
"type": "git",
"url": "https://github.com/gajus/eslint-plugin-sql"
},
"scripts": {
"build": "tsc --project tsconfig.build.json",
"documentation-add-assertions": "tsx ./src/bin/readmeAssertions",
"generate": "gitdown ./.README/README.md --output-file ./README.md && npm run documentation-add-assertions",
"lint:cspell": "cspell './**/*.{ts,tsx}' --no-progress --gitignore",
"lint:eslint": "eslint ./src",
"lint:tsc": "tsc --noEmit",
"prepare": "husky",
"test": "npm run test:mocha",
"test:mocha": "mocha --require tsx src/**/*.test.ts"
},
"types": "./dist/index.d.ts",
"version": "1.0.1"
}