@bdkinc/knex-ibmi 0.5.11 → 0.5.12
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/README.md +476 -476
- package/dist/index.d.mts +7 -2
- package/dist/index.d.ts +7 -2
- package/dist/index.js +16 -1
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +16 -1
- package/dist/index.mjs.map +1 -1
- package/package.json +74 -74
package/package.json
CHANGED
|
@@ -1,74 +1,74 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "@bdkinc/knex-ibmi",
|
|
3
|
-
"version": "0.5.
|
|
4
|
-
"description": "Knex dialect for IBMi",
|
|
5
|
-
"main": "dist/index.js",
|
|
6
|
-
"module": "dist/index.mjs",
|
|
7
|
-
"types": "dist/index.d.ts",
|
|
8
|
-
"exports": {
|
|
9
|
-
".": {
|
|
10
|
-
"types": "./dist/index.d.ts",
|
|
11
|
-
"import": "./dist/index.mjs",
|
|
12
|
-
"require": "./dist/index.js"
|
|
13
|
-
}
|
|
14
|
-
},
|
|
15
|
-
"files": [
|
|
16
|
-
"/dist"
|
|
17
|
-
],
|
|
18
|
-
"bin": {
|
|
19
|
-
"ibmi-migrations": "dist/cli.cjs"
|
|
20
|
-
},
|
|
21
|
-
"engines": {
|
|
22
|
-
"node": ">=16"
|
|
23
|
-
},
|
|
24
|
-
"scripts": {
|
|
25
|
-
"build": "tsup && node scripts/fix-cli.mjs",
|
|
26
|
-
"test": "ts-mocha -p tsconfig.json --import=tsx test/**/*.spec.ts test/**/**/*.spec.ts --exit",
|
|
27
|
-
"lint": "eslint src test",
|
|
28
|
-
"format": "prettier . --write",
|
|
29
|
-
"typecheck": "tsc --noEmit",
|
|
30
|
-
"prepublishOnly": "npm run build && npm run typecheck"
|
|
31
|
-
},
|
|
32
|
-
"keywords": [
|
|
33
|
-
"knex",
|
|
34
|
-
"dialect",
|
|
35
|
-
"querybuilder",
|
|
36
|
-
"db2",
|
|
37
|
-
"ibm",
|
|
38
|
-
"ibmi",
|
|
39
|
-
"odbc"
|
|
40
|
-
],
|
|
41
|
-
"author": {
|
|
42
|
-
"name": "BDKinc",
|
|
43
|
-
"web": "https://github.com/bdkinc"
|
|
44
|
-
},
|
|
45
|
-
"repository": {
|
|
46
|
-
"type": "git",
|
|
47
|
-
"url": "git://github.com/bdkinc/knex-ibmi.git"
|
|
48
|
-
},
|
|
49
|
-
"license": "MIT",
|
|
50
|
-
"devDependencies": {
|
|
51
|
-
"@eslint/js": "^9.39.2",
|
|
52
|
-
"@types/chai": "^5.2.3",
|
|
53
|
-
"@types/mocha": "^10.0.10",
|
|
54
|
-
"@types/node": "^25.0.3",
|
|
55
|
-
"@typescript-eslint/eslint-plugin": "^8.50.0",
|
|
56
|
-
"@typescript-eslint/parser": "^8.50.0",
|
|
57
|
-
"chai": "^6.2.1",
|
|
58
|
-
"debug": "^4.4.3",
|
|
59
|
-
"eslint": "^9.39.2",
|
|
60
|
-
"eslint-config-prettier": "^10.1.8",
|
|
61
|
-
"jiti": "^2.6.1",
|
|
62
|
-
"mocha": "^11.7.5",
|
|
63
|
-
"prettier": "^3.7.4",
|
|
64
|
-
"ts-mocha": "^11.1.0",
|
|
65
|
-
"tsup": "^8.5.1",
|
|
66
|
-
"tsx": "^4.21.0",
|
|
67
|
-
"typescript": "^5.9.3",
|
|
68
|
-
"typescript-eslint": "^8.50.0"
|
|
69
|
-
},
|
|
70
|
-
"dependencies": {
|
|
71
|
-
"knex": "^3",
|
|
72
|
-
"odbc": "^2.4.9"
|
|
73
|
-
}
|
|
74
|
-
}
|
|
1
|
+
{
|
|
2
|
+
"name": "@bdkinc/knex-ibmi",
|
|
3
|
+
"version": "0.5.12",
|
|
4
|
+
"description": "Knex dialect for IBMi",
|
|
5
|
+
"main": "dist/index.js",
|
|
6
|
+
"module": "dist/index.mjs",
|
|
7
|
+
"types": "dist/index.d.ts",
|
|
8
|
+
"exports": {
|
|
9
|
+
".": {
|
|
10
|
+
"types": "./dist/index.d.ts",
|
|
11
|
+
"import": "./dist/index.mjs",
|
|
12
|
+
"require": "./dist/index.js"
|
|
13
|
+
}
|
|
14
|
+
},
|
|
15
|
+
"files": [
|
|
16
|
+
"/dist"
|
|
17
|
+
],
|
|
18
|
+
"bin": {
|
|
19
|
+
"ibmi-migrations": "dist/cli.cjs"
|
|
20
|
+
},
|
|
21
|
+
"engines": {
|
|
22
|
+
"node": ">=16"
|
|
23
|
+
},
|
|
24
|
+
"scripts": {
|
|
25
|
+
"build": "tsup && node scripts/fix-cli.mjs",
|
|
26
|
+
"test": "ts-mocha -p tsconfig.json --import=tsx test/**/*.spec.ts test/**/**/*.spec.ts --exit",
|
|
27
|
+
"lint": "eslint src test",
|
|
28
|
+
"format": "prettier . --write",
|
|
29
|
+
"typecheck": "tsc --noEmit",
|
|
30
|
+
"prepublishOnly": "npm run build && npm run typecheck"
|
|
31
|
+
},
|
|
32
|
+
"keywords": [
|
|
33
|
+
"knex",
|
|
34
|
+
"dialect",
|
|
35
|
+
"querybuilder",
|
|
36
|
+
"db2",
|
|
37
|
+
"ibm",
|
|
38
|
+
"ibmi",
|
|
39
|
+
"odbc"
|
|
40
|
+
],
|
|
41
|
+
"author": {
|
|
42
|
+
"name": "BDKinc",
|
|
43
|
+
"web": "https://github.com/bdkinc"
|
|
44
|
+
},
|
|
45
|
+
"repository": {
|
|
46
|
+
"type": "git",
|
|
47
|
+
"url": "git://github.com/bdkinc/knex-ibmi.git"
|
|
48
|
+
},
|
|
49
|
+
"license": "MIT",
|
|
50
|
+
"devDependencies": {
|
|
51
|
+
"@eslint/js": "^9.39.2",
|
|
52
|
+
"@types/chai": "^5.2.3",
|
|
53
|
+
"@types/mocha": "^10.0.10",
|
|
54
|
+
"@types/node": "^25.0.3",
|
|
55
|
+
"@typescript-eslint/eslint-plugin": "^8.50.0",
|
|
56
|
+
"@typescript-eslint/parser": "^8.50.0",
|
|
57
|
+
"chai": "^6.2.1",
|
|
58
|
+
"debug": "^4.4.3",
|
|
59
|
+
"eslint": "^9.39.2",
|
|
60
|
+
"eslint-config-prettier": "^10.1.8",
|
|
61
|
+
"jiti": "^2.6.1",
|
|
62
|
+
"mocha": "^11.7.5",
|
|
63
|
+
"prettier": "^3.7.4",
|
|
64
|
+
"ts-mocha": "^11.1.0",
|
|
65
|
+
"tsup": "^8.5.1",
|
|
66
|
+
"tsx": "^4.21.0",
|
|
67
|
+
"typescript": "^5.9.3",
|
|
68
|
+
"typescript-eslint": "^8.50.0"
|
|
69
|
+
},
|
|
70
|
+
"dependencies": {
|
|
71
|
+
"knex": "^3",
|
|
72
|
+
"odbc": "^2.4.9"
|
|
73
|
+
}
|
|
74
|
+
}
|