forked from sql-formatter-org/sql-formatter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
112 lines (112 loc) · 3.1 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
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
{
"name": "sql-formatter",
"version": "4.0.2",
"description": "Format whitespace in a SQL query to make it more readable",
"license": "MIT",
"main": "lib/sqlFormatter.js",
"types": "src/sqlFormatter.d.ts",
"bin": {
"sql-formatter": "./bin/sqlfmt.js"
},
"keywords": [
"sql",
"formatter",
"format",
"n1ql",
"redshift",
"spark",
"whitespace",
"mysql",
"mariadb",
"postgresql",
"pl/sql",
"transact-sql",
"db2"
],
"contributors": [
"Adrien Pyke <[email protected]>",
"Andrew",
"Benjamin Bellamy",
"bingou",
"Damon Davison <[email protected]>",
"Davut Can Abacigil <[email protected]>",
"Erik Hirmo <[email protected]>",
"George Leslie-Waksman <[email protected]>",
"Ian Campbell <[email protected]>",
"ivan baktsheev",
"João Pimentel Ferreira",
"Martin Nowak <[email protected]>",
"Matheus Salmi <[email protected]>",
"Matheus Teixeira <[email protected]>",
"Nicolas Dermine <[email protected]>",
"Offir Baron <[email protected]>",
"Olexandr Sydorchuk <[email protected]>",
"Rafael Pinto <[email protected]>",
"Rahel Rjadnev-Meristo <[email protected]>",
"Rene Saarsoo <[email protected]>",
"Rodrigo Stuchi",
"Sasha Aliashkevich <[email protected]>",
"Sergei Egorov <[email protected]>",
"Tyler Jones <[email protected]>",
"Uku Pattak <[email protected]>"
],
"files": [
"bin",
"dist",
"lib",
"src"
],
"scripts": {
"clean": "rimraf lib dist",
"lint": "eslint .",
"pretty": "prettier --write .",
"pretty:check": "prettier --check .",
"test": "jest",
"test:watch": "npm run test -- --watch",
"check": "npm run pretty:check && npm run lint && npm run test",
"build": "npm run build:commonjs && npm run build:umd && npm run build:umd:min",
"build:commonjs": "babel src --out-dir lib",
"build:umd": "webpack --config webpack.dev.js",
"build:umd:min": "webpack --config webpack.prod.js",
"prepare": "npm run clean && npm run check && npm run build"
},
"repository": {
"type": "git",
"url": "https://github.com/zeroturnaround/sql-formatter.git"
},
"bugs": {
"url": "https://github.com/zeroturnaround/sql-formatter/issues"
},
"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-eslint": "^10.1.0",
"babel-jest": "^26.1.0",
"babel-loader": "^8.1.0",
"babel-plugin-add-module-exports": "^1.0.2",
"dedent-js": "^1.0.1",
"eslint": "^7.4.0",
"eslint-config-airbnb-base": "^14.2.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-prettier": "^3.1.4",
"jest": "^26.1.0",
"prettier": "^2.0.5",
"rimraf": "^3.0.2",
"webpack": "^4.43.0",
"webpack-cli": "^3.3.12",
"webpack-merge": "^5.0.8"
},
"jest": {
"roots": [
"test"
],
"testRegex": ".*Test",
"collectCoverage": true
},
"dependencies": {
"argparse": "^2.0.1"
}
}