@bkmj/node-red-contrib-odbcmj 1.6.6 → 2.0.0

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.
Files changed (4) hide show
  1. package/README.md +63 -107
  2. package/odbc.html +224 -222
  3. package/odbc.js +380 -228
  4. package/package.json +26 -7
package/package.json CHANGED
@@ -1,28 +1,47 @@
1
1
  {
2
2
  "name": "@bkmj/node-red-contrib-odbcmj",
3
- "version": "1.6.6",
4
- "description": "Node Red implementation of odbc.js",
3
+ "version": "2.0.0",
4
+ "description": "A powerful Node-RED node to connect to any ODBC data source, with connection pooling, advanced retry logic, and result streaming.",
5
5
  "keywords": [
6
6
  "node-red",
7
7
  "odbc",
8
- "SQL",
9
- "query"
8
+ "sql",
9
+ "query",
10
+ "database",
11
+ "streaming",
12
+ "sql server",
13
+ "postgresql",
14
+ "mysql",
15
+ "db2",
16
+ "ibm i"
10
17
  ],
18
+ "engines": {
19
+ "node": ">=18.0.0",
20
+ "node-red": ">=3.0.0"
21
+ },
11
22
  "dependencies": {
12
23
  "mustache": "^4.2.0",
13
24
  "node-sql-parser": "^5.3.5",
14
25
  "object-path": "^0.11.8",
15
26
  "odbc": "^2.4.9"
16
27
  },
28
+ "devDependencies": {
29
+ "eslint": "^8.57.0",
30
+ "mocha": "^10.4.0",
31
+ "should": "^13.2.3",
32
+ "node-red-node-test-helper": "^0.3.3"
33
+ },
17
34
  "node-red": {
18
35
  "nodes": {
19
36
  "odbc": "odbc.js"
20
37
  }
21
38
  },
22
39
  "scripts": {
23
- "test": "echo \"Error: no test specified\" && exit 1"
40
+ "test": "mocha \"tests/**/*_spec.js\"",
41
+ "lint": "eslint .",
42
+ "start": "node-red"
24
43
  },
25
- "license": "Apache 2",
44
+ "license": "Apache-2.0",
26
45
  "author": "Marc-André Morneau <ma.morneau.1@gmail.com>",
27
46
  "main": "odbc.js",
28
47
  "repository": {
@@ -33,4 +52,4 @@
33
52
  "url": "https://github.com/mamorneau/node-red-contrib-odbcmj/issues"
34
53
  },
35
54
  "homepage": "https://github.com/mamorneau/node-red-contrib-odbcmj#readme"
36
- }
55
+ }