-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.45 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.45 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
54
{
"name": "prettier-plugin-sql-cst",
"version": "0.19.0",
"description": "Prettier plugin for SQL",
"contributors": [
"Barna Magyarkuti <bmagyarkuti@gmail.com>",
"Bowen Parnell <bparnell@4tel.com.au>",
"Joel Mukuthu <joelmukuthu@gmail.com>",
"Rene Saarsoo <nene@triin.net>"
],
"license": "GPL-3.0-or-later",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/nene/prettier-plugin-sql-cst"
},
"homepage": "https://github.com/nene/prettier-plugin-sql-cst",
"bugs": {
"url": "https://github.com/nene/prettier-plugin-sql-cst/issues"
},
"files": [
"dist/"
],
"scripts": {
"prepublishOnly": "yarn analyze-field-access && yarn test && yarn build",
"clean": "rm -rf dist",
"build": "yarn clean && tsc -p tsconfig.build.json",
"test": "yarn node --experimental-vm-modules $(yarn bin jest)",
"pretty": "prettier -w src/ test/",
"ts:check": "tsc --noEmit",
"analyze-field-access": "tsx scripts/analyze-field-access.ts src/index.ts"
},
"keywords": [
"prettier",
"sql",
"plugin"
],
"dependencies": {
"prettier": "^3.0.3",
"sql-parser-cst": "^0.39.0"
},
"devDependencies": {
"@types/jest": "^30.0.0",
"@types/node": "^22.9.0",
"chalk": "^4.1.2",
"dedent-js": "^1.0.1",
"jest": "^30.3.0",
"ts-jest": "^29.4.9",
"ts-node": "^10.9.2",
"tsx": "^4.21.0",
"typescript": "^5.9.3"
}
}