This repository was archived by the owner on Mar 15, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.26 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.26 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
{
"name": "sql-formatter-cli",
"version": "2.3.3",
"description": "Formats whitespaces in a SQL query to make it more readable. Binary version",
"bin": "dist/sql-formatter-cli",
"scripts": {
"build": "rollup -c --environment BUILD:production",
"prepublish": "yarn run build",
"postbuild": "./postbuild.sh",
"watch": "rollup -c -w"
},
"repository": "osv/sql-formatter-cli",
"keywords": [
"cli",
"sql",
"formatter",
"format",
"n1ql",
"whitespaces"
],
"authors": [
"Rene Saarsoo",
"Uku Pattak",
"Olexandr Sydorchuk"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/osv/sql-formatter-cli/issues"
},
"files": [
"dist"
],
"homepage": "https://github.com/osv/sql-formatter-cli#readme",
"dependencies": {},
"devDependencies": {
"babel-plugin-external-helpers": "^6.18.0",
"babel-preset-es2015": "^6.18.0",
"babel-register": "^6.18.0",
"babelrc-rollup": "^3.0.0",
"optimist": "^0.6.1",
"rollup": "^0.43.0",
"rollup-plugin-babel": "^2.7.1",
"rollup-plugin-clean": "^1.0.0",
"rollup-plugin-commonjs": "^8.2.1",
"rollup-plugin-node-resolve": "^3.0.0",
"rollup-plugin-uglify": "^2.0.1",
"rollup-watch": "^4.0.0",
"sql-formatter": "2.3.3"
}
}