-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
41 lines (41 loc) · 969 Bytes
/
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
{
"name": "leveldb-zlib",
"version": "1.2.0",
"description": "Node.js bindings for LevelDB with zlib",
"main": "index.js",
"scripts": {
"checkEnv": "node buildChecks.js",
"install": "node buildChecks.js",
"prepare": "tsc",
"build": "tsc",
"postci": "node helpers/postCI.js",
"prepublish": "cd helpers && node npmPublish.js",
"fix": "ts-standard --fix",
"test": "npm run build && mocha"
},
"author": "extremeheat",
"license": "ISC",
"repository": {
"type": "git",
"url": "git://github.com/extremeheat/node-leveldb-zlib.git"
},
"dependencies": {
"bindings": "^1.5.0",
"cmake-js": "^6.1.0",
"debug": "^4.3.1",
"node-addon-api": "^3.1.0"
},
"devDependencies": {
"@types/node": "^14.14.16",
"leveldb-zlib": "file:.",
"ts-node": "^9.1.1",
"ts-standard": "^10.0.0",
"typescript": "^4.1.3",
"mocha": "^8.4.0"
},
"binary": {
"napi_versions": [
3
]
}
}