-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
61 lines (61 loc) · 1.42 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
54
55
56
57
58
59
60
61
{
"name": "rave-level",
"version": "1.0.0",
"description": "Use a LevelDB database from multiple processes with seamless failover",
"license": "MIT",
"main": "index.js",
"types": "./index.d.ts",
"author": {
"name": "James Halliday",
"email": "[email protected]",
"url": "http://substack.net"
},
"scripts": {
"test": "standard && ts-standard *.ts && hallmark && nyc tape test/*.js",
"coverage": "nyc report -r lcovonly",
"hallmark": "hallmark --fix",
"dependency-check": "dependency-check --no-dev . test/*.js",
"prepublishOnly": "npm run dependency-check"
},
"files": [
"index.js",
"index.d.ts",
"CHANGELOG.md",
"UPGRADING.md"
],
"dependencies": {
"classic-level": "^1.2.0",
"many-level": "^1.0.1",
"module-error": "^1.0.2",
"readable-stream": "^3.6.0"
},
"devDependencies": {
"@voxpelli/tsconfig": "^4.0.0",
"bytewise": "^1.1.0",
"dependency-check": "^4.1.0",
"hallmark": "^4.1.0",
"nyc": "^15.1.0",
"standard": "^16.0.3",
"tape": "^5.0.1",
"ts-standard": "^11.0.0",
"typescript": "^4.5.5"
},
"repository": {
"type": "git",
"url": "https://github.com/Level/rave-level.git"
},
"homepage": "https://github.com/Level/rave-level",
"keywords": [
"level",
"leveldb",
"database",
"handle",
"multi-handle",
"multilevel",
"unix",
"socket"
],
"engines": {
"node": ">=12"
}
}