-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
61 lines (61 loc) · 1.35 KB
/
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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
{
"name": "@bdkinc/knex-ibmi",
"version": "0.2.7",
"description": "Knex dialect for IBMi",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"/dist"
],
"engines": {
"node": ">=16"
},
"scripts": {
"build": "tsup src/index.ts --dts",
"test": "ts-mocha -p tsconfig.json --import=tsx test/**/*.spec.ts test/**/**/*.spec.ts --exit",
"lint": "eslint . --ext .ts",
"format": "prettier . --write"
},
"keywords": [
"knex",
"dialect",
"querybuilder",
"db2",
"ibm",
"ibmi",
"odbc"
],
"author": {
"name": "BDKinc",
"web": "https://github.com/bdkinc"
},
"repository": {
"type": "git",
"url": "git://github.com/bdkinc/knex-ibmi.git"
},
"license": "MIT",
"devDependencies": {
"@types/chai": "^4.3.17",
"@types/knex": "^0.16.1",
"@types/lodash": "^4.17.7",
"@types/mocha": "^10.0.7",
"@types/node": "^22.1.0",
"@typescript-eslint/eslint-plugin": "^7.18.0",
"@typescript-eslint/parser": "^7.18.0",
"chai": "^5.1.1",
"debug": "^4.3.6",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"mocha": "^10.7.0",
"prettier": "^3.3.3",
"ts-mocha": "^10.0.0",
"tsup": "^8.2.4",
"tsx": "^4.16.5",
"typescript": "^5.5.4"
},
"dependencies": {
"date-fns": "^3.6.0",
"knex": "^3",
"odbc": "^2.4.8"
}
}