-
Notifications
You must be signed in to change notification settings - Fork 27
/
package.json
66 lines (66 loc) · 1.63 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
{
"name": "duckdb",
"main": "./lib/duckdb.js",
"types": "./lib/duckdb.d.ts",
"version": "0.0.2-dev5.0",
"description": "DuckDB node.js API",
"gypfile": true,
"dependencies": {
"@mapbox/node-pre-gyp": "^1.0.0",
"node-addon-api": "^7.0.0",
"node-gyp": "^9.3.0"
},
"binary": {
"module_name": "duckdb",
"module_path": "./lib/binding/",
"host": "https://npm.duckdb.org/duckdb"
},
"scripts": {
"install": "node-pre-gyp install --fallback-to-build",
"pretest": "node test/support/createdb.js",
"test": "mocha -R spec --timeout 480000 --expose-gc",
"test-path": "mocha -R spec --timeout 480000 --expose-gc --exclude 'test/*.ts'",
"pack": "node-pre-gyp package"
},
"directories": {
"lib": "lib",
"test": "test"
},
"devDependencies": {
"@types/chai": "^4.3.4",
"@types/chai-as-promised": "^7.1.5",
"@types/fs-extra": "^11.0.1",
"@types/mocha": "^10.0.0",
"@types/node": "^18.11.0",
"apache-arrow": "^9.0.0",
"aws-sdk": "^2.790.0",
"chai": "^4.3.6",
"chai-as-promised": "^7.1.1",
"fs-extra": "^11.1.1",
"jsdoc3-parser": "^2.0.0",
"mocha": "^8.3.0",
"ts-node": "^10.9.1",
"tsconfig-paths": "^4.0.0",
"typescript": "^4.8.4"
},
"repository": {
"type": "git",
"url": "git+https://github.com/duckdb/duckdb-node.git"
},
"ts-node": {
"require": [
"tsconfig-paths/register"
]
},
"keywords": [
"database",
"sql",
"duckdb"
],
"author": "Hannes Mühleisen",
"license": "MIT",
"bugs": {
"url": "https://github.com/duckdb/duckdb-node/issues"
},
"homepage": "https://www.duckdb.org"
}