-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
66 lines (66 loc) · 1.53 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
62
63
64
65
66
{
"name": "level-web-stream",
"version": "1.1.0",
"description": "Read and write to an abstract-level database using Web Streams",
"license": "MIT",
"scripts": {
"test": "npm run lint && npm run test-browsers-local && npm run test-node",
"test-node": "(nyc -s node test.js | faucet) && nyc report",
"test-browsers-local": "airtap --coverage test.js",
"lint": "standard && ts-standard *.ts && hallmark",
"coverage": "nyc report -r lcovonly"
},
"main": "index.js",
"types": "./index.d.ts",
"browser": {
"./streams.js": "streams-browser.js"
},
"files": [
"index.js",
"index.d.ts",
"streams.js",
"streams-browser.js",
"CHANGELOG.md",
"UPGRADING.md"
],
"peerDependencies": {
"abstract-level": "^1.0.0"
},
"peerDependenciesMeta": {
"abstract-level": {
"optional": true
}
},
"devDependencies": {
"@voxpelli/tsconfig": "^4.0.0",
"airtap": "^4.0.3",
"airtap-playwright": "^1.0.1",
"faucet": "^0.0.3",
"hallmark": "^4.0.0",
"memory-level": "^1.0.0",
"nyc": "^15.1.0",
"standard": "^16.0.3",
"tape": "^5.0.1",
"ts-standard": "^11.0.0",
"typescript": "^4.5.5"
},
"standard": {
"globals": [
"ReadableStream",
"WritableStream",
"CountQueuingStrategy",
"AbortController"
]
},
"repository": "Level/web-stream",
"homepage": "https://github.com/Level/web-stream",
"keywords": [
"level",
"stream",
"web-streams",
"abstract-level"
],
"engines": {
"node": ">=16.5.0"
}
}