-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
51 lines (51 loc) · 1.32 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
{
"name": "prettier-plugin-sql-cst",
"version": "0.12.0",
"description": "Prettier plugin for SQL",
"contributors": [
"Bowen Parnell <bparnell@4tel.com.au>",
"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",
"test": "yarn node --experimental-vm-modules $(yarn bin jest)",
"pretty": "prettier -w src/ test/",
"ts:check": "tsc --noEmit",
"analyze-field-access": "ts-node scripts/analyze-field-access.ts src/index.ts"
},
"keywords": [
"prettier",
"sql",
"plugin"
],
"dependencies": {
"prettier": "^3.0.3",
"sql-parser-cst": "^0.30.0"
},
"devDependencies": {
"@types/jest": "^29.2.5",
"@types/node": "^22.9.0",
"chalk": "^4.1.2",
"dedent-js": "^1.0.1",
"jest": "^29.7.0",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.2",
"typescript": "^4.9.4"
}
}