forked from Finexa/node-firebird
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
44 lines (44 loc) · 1.07 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
{
"name": "node-firebird",
"version": "0.9.9",
"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": "https://github.com/hgourvest/node-firebird"
},
"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",
"licenses": [
{
"type": "MPL-2.0",
"url": "https://github.com/hgourvest/node-firebird/blob/master/LICENSE"
}
],
"scripts": {
"test": "mocha"
},
"dependencies": {
"big-integer": "^1.6.48",
"long": "^4.0.0"
},
"devDependencies": {
"coveralls": "^3.0.1",
"mocha": "^8.0.1",
"nyc": "^15.0.1"
}
}