-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
38 lines (38 loc) · 854 Bytes
/
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
{
"name": "sqlutils",
"version": "1.5.4",
"description": "Lightweight SQL helper methods that simplify stuff (MySQL and PostgreSQL)",
"main": "index.js",
"scripts": {
"test": "tap --coverage-report=lcov --no-browser --show-full-coverage"
},
"repository": {
"type": "git",
"url": "git+https://github.com/patrickpissurno/sqlutils.git"
},
"keywords": [
"sql",
"mysql",
"postgresql",
"pg",
"helper",
"utils",
"easy",
"lightweight",
"format",
"escape"
],
"author": "Patrick Pissurno",
"license": "MIT",
"bugs": {
"url": "https://github.com/patrickpissurno/sqlutils/issues"
},
"homepage": "https://github.com/patrickpissurno/sqlutils#readme",
"devDependencies": {
"tap": "^21.0.1"
},
"dependencies": {
"pg-promise": "^11.10.2",
"sqlstring": "^2.3.3"
}
}