-
Notifications
You must be signed in to change notification settings - Fork 136
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1009 Bytes
/
package.json
File metadata and controls
40 lines (40 loc) · 1009 Bytes
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
{
"name": "node-firebird",
"version": "2.0.2",
"description": "Pure JavaScript and Asynchronous Firebird client for Node.js.",
"keywords": [
"firebird",
"database",
"rdbms",
"sql"
],
"homepage": "https://github.com/hgourvest/node-firebird",
"repository": {
"type": "git",
"url": "git+https://github.com/hgourvest/node-firebird.git"
},
"author": {
"name": "Henri Gourvest",
"email": "hgourvest@gmail.com"
},
"contributors": [
"Popa Marius Adrian <mapopa@gmail.com>",
"Peter Širka <petersirka@gmail.com>"
],
"main": "./lib",
"types": "./lib/index.d.ts",
"license": "MPL-2.0",
"scripts": {
"test": "vitest run",
"lint": "oxlint"
},
"dependencies": {
"big-integer": "^1.6.51",
"long": "^5.2.3"
},
"devDependencies": {
"coveralls-next": "^4.2.0",
"oxlint": "^0.15.11",
"vitest": "^4.0.18"
}
}