forked from Tomas2D/knex-firebird-dialect
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
68 lines (68 loc) · 1.81 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
62
63
64
65
66
67
68
{
"name": "knex-firebird-dialect",
"version": "2.0.0",
"description": "Knex dialect for Firebird",
"main": "lib/index.js",
"scripts": {
"build": "babel src --out-dir lib",
"test": "jest --detectOpenHandles --forceExit --runInBand",
"prepublishOnly": "yarn run build",
"lint": "eslint --fix \"{src,tests}/**/*.js\"",
"format": "prettier --write \"src/**/*.ts\"",
"changelog": "npx gitmoji-changelog",
"release": "yarn version",
"version": "yarn changelog && code --wait CHANGELOG.md && git add README.md CHANGELOG.md"
},
"keywords": [
"node",
"firebird",
"sql",
"knex",
"orm"
],
"author": "Tomáš Dvořák <[email protected]>",
"license": "MIT",
"homepage": "https://github.com/Tomas2D/knex-firebird-dialect#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/Tomas2D/knex-firebird-dialect.git"
},
"bugs": {
"url": "https://github.com/Tomas2D/knex-firebird-dialect/issues"
},
"dependencies": {
"@babel/runtime": "^7.23.2",
"lodash": "^4.17.21",
"node-firebird-driver-native": "^3.1.0"
},
"devDependencies": {
"@babel/cli": "^7.23.0",
"@babel/core": "^7.23.2",
"@babel/eslint-parser": "^7.22.15",
"@babel/plugin-transform-modules-commonjs": "^7.23.0",
"@babel/plugin-transform-runtime": "^7.23.2",
"@babel/preset-env": "^7.23.2",
"eslint": "^8.52.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-jest": "^27.6.0",
"husky": "8.0.3",
"jest": "^29.7.0",
"knex": "^3.0.1",
"prettier": "^2.6.2",
"node-firebird-driver-native": "^3.1.0"
},
"peerDependencies": {
"knex": ">=0.95.15"
},
"resolutions": {
"set-value": ">=4.0.1"
},
"husky": {
"hooks": {
"pre-commit": "yarn lint && yarn format"
}
},
"files": [
"lib"
]
}