-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.47 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 1.47 KB
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
{
"name": "@mimersql/node-mimer",
"version": "1.0.2",
"description": "Node.js bindings for Mimer SQL using Mimer API",
"main": "index.js",
"types": "index.d.ts",
"gypfile": true,
"files": [
"index.js",
"index.d.ts",
"lib/",
"src/",
"scripts/check-mimer.js",
"scripts/find-mimer-windows.js",
"binding.gyp",
"prebuilds/"
],
"scripts": {
"install": "prebuild-install || node-gyp rebuild",
"build": "node-gyp rebuild",
"test": "node --test test/*.test.js",
"prebuild": "prebuildify --napi --strip",
"prebuild-macos": "prebuildify --napi --strip --arch x64 && prebuildify --napi --strip --arch arm64",
"prebuild-linux": "prebuildify --napi --strip && bash scripts/prebuild-linux-arm64.sh",
"check-mimer": "node scripts/check-mimer.js"
},
"keywords": [
"mimer",
"mimersql",
"database",
"sql"
],
"repository": {
"type": "git",
"url": "https://github.com/mimersql/node-mimer.git"
},
"bugs": {
"url": "https://github.com/mimersql/node-mimer/issues"
},
"homepage": "https://github.com/mimersql/node-mimer#readme",
"author": "Fredrik Ålund <fredrik.alund@mimer.com>",
"license": "MIT",
"dependencies": {
"node-addon-api": "^8.0.0",
"node-gyp-build": "^4.8.4",
"prebuild-install": "^7.1.2"
},
"devDependencies": {
"node-gyp": "^10.0.0",
"prebuildify": "^6.0.1"
},
"engines": {
"node": ">=18.0.0"
},
"binary": {
"napi_versions": [
8
]
}
}