node-db-mysql 1.0.2 → 1.0.3
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.
Potentially problematic release.
This version of node-db-mysql might be problematic. Click here for more details.
- package/package.json +4 -2
package/package.json
CHANGED
|
@@ -1,11 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "node-db-mysql",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.3",
|
|
4
4
|
"author": "L",
|
|
5
5
|
"types": "index.d.ts",
|
|
6
6
|
"scripts": {
|
|
7
7
|
"dev": "ts-node ./index.ts",
|
|
8
|
-
"push": "npm publish"
|
|
8
|
+
"push": "npm publish",
|
|
9
|
+
"test": "node test-send"
|
|
9
10
|
},
|
|
10
11
|
"description": "在Node.js服务器开发时用到的部分插件二次封装 MySQL",
|
|
11
12
|
"keywords": [
|
|
@@ -33,6 +34,7 @@
|
|
|
33
34
|
"uuid": "^9.0.1"
|
|
34
35
|
},
|
|
35
36
|
"devDependencies": {
|
|
37
|
+
"@faker-js/faker": "^8.4.1",
|
|
36
38
|
"@types/node": "^20.12.11",
|
|
37
39
|
"typescript": "^5.4.5"
|
|
38
40
|
}
|