forked from skozin/node-fdb
-
Notifications
You must be signed in to change notification settings - Fork 18
/
Copy pathpackage.json
53 lines (53 loc) · 1.27 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
{
"name": "foundationdb",
"version": "2.0.1",
"description": "Node.js bindings for the FoundationDB database",
"keywords": [
"foundationdb",
"fdb",
"database",
"NoSQL",
"ACID"
],
"homepage": "https://foundationdb.org",
"license": "MIT",
"main": "dist/lib/index.js",
"types": "dist/lib/index.d.ts",
"files": [
"dist",
"prebuilds",
"binding.gyp",
"src"
],
"scripts": {
"install": "node-gyp-build",
"test": "mocha -r ts-node/register test/*.ts",
"prepare": "rm -rf dist && tsc -p .",
"prepublishOnly": "ls -ld prebuilds/darwin-arm64/node.napi.node prebuilds/darwin-x64/node.napi.node prebuilds/linux-x64/node.napi.node",
"prebuild": "prebuildify --napi --strip"
},
"dependencies": {
"fdb-tuple": "^1.0.0",
"node-gyp-build": "^4.2.3"
},
"devDependencies": {
"@types/bindings": "^1.3.0",
"@types/mocha": "^10.0.1",
"@types/node": "^18.14.0",
"@types/xml2js": "^0.4.5",
"chalk": "^4.0.0",
"mocha": "^10.2.0",
"prebuildify": "^5.0.1",
"ts-node": "^10.9.1",
"typescript": "^4.1.3",
"xml2js": "^0.5.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/josephg/node-foundationdb.git"
},
"engines": {
"node": ">=14.0.0"
},
"gypfile": true
}