This repository was archived by the owner on Dec 1, 2024. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 173
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.49 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 1.49 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
{
"name": "leveldown",
"description": "A low-level Node.js LevelDB binding",
"version": "5.0.0-0",
"repository": {
"type": "git",
"url": "https://github.com/level/leveldown.git"
},
"homepage": "https://github.com/level/leveldown",
"keywords": [
"leveldb",
"level"
],
"main": "leveldown.js",
"dependencies": {
"abstract-leveldown": "~6.0.0",
"bindings": "~1.3.0",
"fast-future": "~1.0.2",
"napi-macros": "~1.8.1",
"node-gyp-build": "~3.7.0"
},
"devDependencies": {
"async": "^2.0.1",
"coveralls": "^3.0.2",
"delayed": "~1.0.1",
"du": "~0.1.0",
"hallmark": "~0.1.0",
"level-concat-iterator": "^2.0.0",
"mkfiletree": "~1.0.1",
"monotonic-timestamp": "~0.0.8",
"node-gyp": "^3.8.0",
"nyc": "^12.0.2",
"optimist": "~0.6.1",
"prebuildify": "^2.10.0",
"prebuildify-ci": "^1.0.4",
"readfiletree": "~0.0.1",
"rimraf": "^2.6.1",
"slump": "~3.0.0",
"standard": "^12.0.0",
"tape": "^4.5.1",
"tempy": "^0.2.1",
"uuid": "^3.2.1"
},
"scripts": {
"install": "node-gyp-build",
"test": "standard && nyc tape test/*-test.js",
"coverage": "nyc report --reporter=text-lcov | coveralls",
"rebuild": "node-gyp rebuild",
"prebuild": "prebuildify -t 8.14.0 -t electron@3.0.0 --napi --strip",
"download-prebuilds": "prebuildify-ci download",
"hallmark": "hallmark --fix UPGRADING.md CHANGELOG.md"
},
"license": "MIT",
"gypfile": true,
"engines": {
"node": ">=8.6.0"
}
}