forked from bdkinc/knex-ibmi
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
59 lines (59 loc) · 1.28 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
{
"name": "@morgul/knex-db2",
"version": "0.5.1",
"description": "Knex dialect for IBM DB2",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"/dist",
"/types"
],
"engines": {
"node": ">=18"
},
"scripts": {
"build": "tsc",
"test": "mocha --require tsx \"test/**/*.spec.ts\"",
"lint": "eslint . --ext .ts",
"lint:fix": "eslint . --ext .ts --fix",
"prepublishOnly": "npm run build"
},
"keywords": [
"knex",
"dialect",
"querybuilder",
"db2"
],
"author": {
"name": "Christopher S. Case",
"email": "chris.case@g33xnexus.com"
},
"repository": {
"type": "git",
"url": "git://github.com/morgul/knex-db2.git"
},
"license": "MIT",
"devDependencies": {
"@types/chai": "^4.3.12",
"@types/lodash": "^4.14.202",
"@types/mocha": "^10.0.6",
"@typescript-eslint/eslint-plugin": "^7.1.1",
"@typescript-eslint/parser": "^7.1.1",
"chai": "^4.4.1",
"eslint": "^8.57.0",
"mocha": "^10.3.0",
"ts-mocha": "^10.0.0",
"ts-node": "^10.9.2",
"tsx": "^4.19.1",
"typescript": "^5.4.2"
},
"dependencies": {
"@types/ibm_db": "^2.0.16",
"date-fns": "^3.3.1",
"ibm_db": "^3.2.3",
"lodash": "^4.17.21"
},
"peerDependencies": {
"knex": ">=1.0.0"
}
}