@bernierllc/database-adapter 1.2.0 → 1.2.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +13 -14
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@bernierllc/database-adapter",
|
|
3
|
-
"version": "1.2.
|
|
3
|
+
"version": "1.2.1",
|
|
4
4
|
"description": "Universal database connection and query abstraction layer with connection pooling",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"types": "dist/index.d.ts",
|
|
@@ -10,16 +10,6 @@
|
|
|
10
10
|
"README.md",
|
|
11
11
|
"LICENSE"
|
|
12
12
|
],
|
|
13
|
-
"scripts": {
|
|
14
|
-
"build": "tsc",
|
|
15
|
-
"prebuild": "npm run clean",
|
|
16
|
-
"clean": "rm -rf dist",
|
|
17
|
-
"test": "jest",
|
|
18
|
-
"test:run": "jest --coverage --no-cache",
|
|
19
|
-
"test:watch": "jest --watch",
|
|
20
|
-
"test:coverage": "jest --coverage",
|
|
21
|
-
"lint": "eslint src --ext .ts"
|
|
22
|
-
},
|
|
23
13
|
"keywords": [
|
|
24
14
|
"database",
|
|
25
15
|
"adapter",
|
|
@@ -35,7 +25,7 @@
|
|
|
35
25
|
"author": "Bernier LLC",
|
|
36
26
|
"license": "PROPRIETARY",
|
|
37
27
|
"dependencies": {
|
|
38
|
-
"@bernierllc/logger": "1.3.
|
|
28
|
+
"@bernierllc/logger": "1.3.1"
|
|
39
29
|
},
|
|
40
30
|
"peerDependencies": {
|
|
41
31
|
"better-sqlite3": "^9.2.0",
|
|
@@ -82,5 +72,14 @@
|
|
|
82
72
|
"access": "public",
|
|
83
73
|
"registry": "https://registry.npmjs.org/"
|
|
84
74
|
},
|
|
85
|
-
"
|
|
86
|
-
|
|
75
|
+
"scripts": {
|
|
76
|
+
"build": "tsc",
|
|
77
|
+
"prebuild": "npm run clean",
|
|
78
|
+
"clean": "rm -rf dist",
|
|
79
|
+
"test": "jest",
|
|
80
|
+
"test:run": "jest --coverage --no-cache",
|
|
81
|
+
"test:watch": "jest --watch",
|
|
82
|
+
"test:coverage": "jest --coverage",
|
|
83
|
+
"lint": "eslint src --ext .ts"
|
|
84
|
+
}
|
|
85
|
+
}
|