-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.45 KB
/
Copy pathpackage.json
File metadata and controls
63 lines (63 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
55
56
57
58
59
60
61
62
63
{
"name": "@dgoguerra/sql-cli",
"version": "1.3.11",
"description": "Universal command-line interface for SQL databases",
"keywords": [
"cli",
"sql",
"database",
"client",
"universal"
],
"author": "Diego Guerra <dgoguerra.or@gmail.com>",
"license": "ISC",
"main": "index.js",
"bin": {
"sql": "src/index.js"
},
"scripts": {
"format": "prettier --write \"**/*.js\"",
"test": "TZ=UTC jest",
"test:e2e": "bin/test-e2e"
},
"dependencies": {
"@google-cloud/bigquery": "^5.2.0",
"chalk": "^3.0.0",
"conf": "^6.2.1",
"deep-equal": "^2.0.1",
"flush-write-stream": "^2.0.0",
"get-port": "^5.1.1",
"keytar": "^6.0.1",
"knex": "^0.21.4",
"lodash": "^4.17.15",
"mssql": "^6.1.0",
"mysql2": "^2.1.0",
"pg": "^7.18.2",
"pg-query-stream": "^3.2.0",
"plist": "^3.0.1",
"pretty-bytes": "^5.3.0",
"pump": "^3.0.0",
"rimraf": "^3.0.2",
"split2": "^3.1.1",
"sqlite3": "^5.0.0",
"ssh2": "^0.8.9",
"string-width": "^4.2.0",
"table": "^5.4.6",
"tar": "^6.0.2",
"through2": "^4.0.2",
"xlsx": "^0.16.1",
"yargs": "^15.4.1"
},
"devDependencies": {
"jest": "^25.3.0",
"prettier": "^2.1.2"
},
"repository": {
"type": "git",
"url": "git+https://github.com/dgoguerra/sql-cli.git"
},
"bugs": {
"url": "https://github.com/dgoguerra/sql-cli/issues"
},
"homepage": "https://github.com/dgoguerra/sql-cli#readme"
}