This repository was archived by the owner on Jul 6, 2022. It is now read-only.
forked from sql-formatter-org/sql-formatter
-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
146 lines (146 loc) · 4.29 KB
/
package.json
File metadata and controls
146 lines (146 loc) · 4.29 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
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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
{
"name": "sql-formatter",
"version": "6.1.2",
"description": "Format whitespace in a SQL query to make it more readable",
"license": "MIT",
"main": "lib/index.js",
"types": "lib/src/index.d.ts",
"bin": {
"sql-formatter": "./bin/sql-formatter-cli.js"
},
"keywords": [
"sql",
"formatter",
"format",
"n1ql",
"redshift",
"spark",
"whitespace",
"mysql",
"mariadb",
"postgresql",
"pl/sql",
"transact-sql",
"db2",
"sqlite"
],
"contributors": [
"Adrien Pyke <adpyke@gmail.com>",
"Alexandr Kozhevnikov <aedkozhevnikov@sberbank.ru>",
"Andrew",
"Benjamin Bellamy",
"bingou",
"Damon Davison <ddavison@avalere.com>",
"Davut Can Abacigil <can@teamsql.io>",
"Erik Hirmo <erik.hirmo@roguewave.com>",
"George Leslie-Waksman <waksman@gmail.com>",
"htaketani <h.taketani@gmail.com>",
"Ian Campbell <icampbell@immuta.com>",
"ivan baktsheev",
"Jacobo Bouzas Quiroga <jacobo.bouzas@factorial.co>",
"João Pimentel Ferreira",
"Justin Dane Vallar <jdvallar@gmail.com>",
"Martin Nowak <code@dawg.eu>",
"Matheus Salmi <mathsalmi@gmail.com>",
"Matheus Teixeira <matheus.mtxr@gmail.com>",
"Nicolas Dermine <nicolas.dermine@gmail.com>",
"Offir Baron <ofir@panoply.io>",
"Olexandr Sydorchuk <olexandr.syd@gmail.com>",
"Rafael Pinto <raprp@posteo.de>",
"Rahel Rjadnev-Meristo <rahelini@gmail.com>",
"Rene Saarsoo <nene@triin.net>",
"Rodrigo Stuchi",
"Romain Rigaux <hello@getromain.com>",
"Sasha Aliashkevich <olsender@gmail.com>",
"Sean Song <mail@seansong.dev>",
"Sergei Egorov <sergei.egorov@zeroturnaround.com>",
"Steven Yung <stevenyung@fastmail.com>",
"Toliver <teejae@gmail.com>",
"Tyler Jones <tyler.jones@txwormhole.com>",
"Uku Pattak <ukupat@gmail.com>",
"Xin Hu <hoosin.git@gmail.com>"
],
"files": [
"dist",
"bin",
"lib"
],
"scripts": {
"clean": "rimraf lib dist coverage",
"ts:check": "tsc --noEmit",
"lint": "eslint .",
"pretty": "prettier --write .",
"fix": "yarn pretty && eslint --fix .",
"pretty:check": "prettier --check .",
"test": "jest",
"test:watch": "yarn test -- --watch",
"check": "yarn ts:check && yarn pretty:check && yarn lint && yarn test",
"prepare": "yarn clean && yarn fix && yarn check && yarn build",
"build:commonjs": "babel src --out-dir lib --extensions .ts --source-maps && tsc --module commonjs --emitDeclarationOnly --isolatedModules",
"build:umd": "webpack --config webpack.dev.js",
"build:umd:min": "webpack --config webpack.prod.js",
"build": "yarn build:commonjs && yarn build:umd && yarn build:umd:min",
"release": "release-it"
},
"pre-commit": [
"ts:check",
"lint"
],
"pre-push": "build",
"repository": {
"type": "git",
"url": "https://github.com/zeroturnaround/sql-formatter.git"
},
"bugs": {
"url": "https://github.com/zeroturnaround/sql-formatter/issues"
},
"dependencies": {
"argparse": "^2.0.1"
},
"devDependencies": {
"@babel/cli": "^7.10.4",
"@babel/core": "^7.10.4",
"@babel/plugin-proposal-class-properties": "^7.10.4",
"@babel/preset-env": "^7.10.4",
"@babel/preset-typescript": "^7.15.0",
"@jest/globals": "^28.0.2",
"@types/babel__core": "^7.1.15",
"@types/jest": "^27.5.0",
"@typescript-eslint/eslint-plugin": "^5.21.0",
"@typescript-eslint/parser": "^5.21.0",
"babel-eslint": "^10.1.0",
"babel-jest": "^28.0.2",
"babel-loader": "^8.1.0",
"babel-plugin-add-module-exports": "^1.0.2",
"dedent-js": "^1.0.1",
"eslint": "^8.14.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-airbnb-typescript": "^17.0.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-prettier": "^4.0.0",
"jest": "^28.0.2",
"npm-cli": "^0.1.0",
"pre-commit": "^1.2.2",
"pre-push": "^0.1.2",
"prettier": "^2.0.5",
"release-it": "^14.11.7",
"rimraf": "^3.0.2",
"ts-jest": "^28.0.0",
"ts-loader": "^9.2.6",
"typescript": "^4.3.5",
"webpack": "^5.64.1",
"webpack-cli": "^4.9.1",
"webpack-merge": "^5.8.0"
},
"jest": {
"preset": "ts-jest",
"roots": [
"test"
],
"collectCoverage": true,
"collectCoverageFrom": [
"src/**/*.ts"
]
}
}