forked from joe-re/sql-language-server
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.06 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.06 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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
{
"name": "@deepnote/sqlint",
"version": "3.0.0",
"main": "dist/src/index",
"bin": "bin/cli.js",
"author": "joe-re<joe.tialtngo@gmail.com>",
"license": "MIT",
"scripts": {
"build": "tsc -p .",
"watch": "tsc -w",
"test": "jest",
"prepublish": "yarn run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/joe-re/sql-language-server.git"
},
"keywords": [
"sql",
"lint",
"autofix",
"beautify"
],
"engines": {
"node": ">=22.0.0"
},
"bugs": {
"url": "https://github.com/joe-re/sql-language-server/issues"
},
"files": [
"package.json",
"dist",
"bin",
"LICENSE"
],
"types": "./dist/src",
"dependencies": {
"@deepnote/sql-parser": "^3.0.0",
"ajv": "^6.12.2",
"chalk": "^4.0.0",
"js-yaml": "^4.1.1",
"yargs": "^17.3.1"
},
"devDependencies": {
"@types/ajv": "^1.0.0",
"@types/js-yaml": "^4.0.9",
"@types/node": "14.0.26",
"@types/yargs": "^17.0.0",
"jest": "^26.0.1",
"ts-jest": "^26.0.0",
"typescript": "^4.4.2"
}
}