-
-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathpackage.json
41 lines (41 loc) · 1004 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": "level-iterator-stream",
"version": "5.0.0",
"description": "Turn an abstract-leveldown iterator into a readable stream",
"license": "MIT",
"scripts": {
"test": "standard && hallmark && (nyc -s node test.js | faucet) && nyc report",
"test-browsers-local": "airtap --coverage test.js",
"coverage": "nyc report -r lcovonly"
},
"files": [
"index.js",
"package.json",
"CHANGELOG.md",
"UPGRADING.md"
],
"dependencies": {
"inherits": "^2.0.4",
"readable-stream": "^3.4.0"
},
"devDependencies": {
"airtap": "^4.0.3",
"airtap-playwright": "^1.0.1",
"faucet": "^0.0.1",
"hallmark": "^4.1.0",
"memdown": "^6.0.0",
"nyc": "^15.1.0",
"secret-event-listener": "^1.0.0",
"standard": "^16.0.3",
"tape": "^5.0.1",
"through2": "^4.0.2"
},
"repository": "Level/iterator-stream",
"homepage": "https://github.com/Level/iterator-stream",
"keywords": [
"level"
],
"engines": {
"node": ">=10"
}
}