-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 972 Bytes
/
package.json
File metadata and controls
46 lines (46 loc) · 972 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
41
42
43
44
45
46
{
"name": "poziomka",
"version": "1.2.0",
"description": "Fast and opinionated leveldb interface.",
"type": "commonjs",
"exports": {
".": "./index.js",
"./promises": "./lib/promises.js"
},
"author": {
"name": "Damian Krzeminski",
"email": "pirxpilot@furkot.com",
"url": "https://pirxpilot.me"
},
"repository": {
"type": "git",
"url": "git+https://github.com/pirxpilot/poziomka.git"
},
"license": "MIT",
"keywords": [
"poziomka",
"leveldb"
],
"dependencies": {
"@pirxpilot/cmake-js": "~5",
"bindings": "^1.5.0",
"nan": "^2.23.0",
"prebuild-install": "~7"
},
"devDependencies": {
"@biomejs/biome": "2.0.5",
"tmp": "~0"
},
"scripts": {
"install": "prebuild-install || cmake-js build --CDCMAKE_POLICY_VERSION_MINIMUM=3.5",
"prebuild": "make prebuild",
"test": "make check"
},
"files": [
"index.js",
"lib",
"CMakeLists.txt",
"src",
"deps"
]
}