-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
56 lines (56 loc) · 1.33 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
{
"name": "level-read-stream",
"version": "2.0.0",
"description": "Read from an abstract-level database using Node.js streams",
"license": "MIT",
"scripts": {
"test": "standard && hallmark && (nyc -s node test.js | tap-arc) && nyc report",
"test-pessimistic": "node test.js | tap-arc -pv",
"test-browsers": "airtap --coverage test.js",
"coverage": "nyc report -r lcovonly",
"hallmark": "hallmark fix"
},
"main": "index.js",
"types": "./index.d.ts",
"files": [
"index.js",
"index.d.ts",
"CHANGELOG.md",
"UPGRADING.md"
],
"dependencies": {
"readable-stream": "^4.6.0"
},
"peerDependencies": {
"abstract-level": ">=2.0.0"
},
"peerDependenciesMeta": {
"abstract-level": {
"optional": true
}
},
"devDependencies": {
"@types/readable-stream": "^4.0.18",
"@voxpelli/tsconfig": "^15.1.0",
"airtap": "^5.0.0",
"airtap-playwright": "^1.0.1",
"hallmark": "^5.0.1",
"memory-level": "^2.0.0",
"nyc": "^17.1.0",
"secret-event-listener": "^1.0.0",
"standard": "^17.1.2",
"tap-arc": "^1.3.2",
"tape": "^5.0.1",
"typescript": "^5.7.2"
},
"repository": "Level/read-stream",
"homepage": "https://github.com/Level/read-stream",
"keywords": [
"level",
"stream",
"abstract-level"
],
"engines": {
"node": ">=18"
}
}