-
-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
72 lines (72 loc) · 1.56 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
67
68
69
70
71
72
{
"name": "torrent-piece",
"description": "Torrent piece abstraction",
"version": "2.0.1",
"author": {
"name": "WebTorrent LLC",
"email": "[email protected]",
"url": "https://webtorrent.io"
},
"bugs": {
"url": "https://github.com/webtorrent/torrent-piece/issues"
},
"type": "module",
"devDependencies": {
"@babel/preset-env": "^7.22.9",
"airtap": "4.0.4",
"airtap-manual": "^1.0.0",
"airtap-system": "^0.1.0",
"babelify": "^10.0.0",
"standard": "*",
"tap-spec": "^5.0.0",
"tape": "5.9.0"
},
"engines": {
"node": ">=12.20.0"
},
"exports": {
"import": "./index.js"
},
"keywords": [
"torrent",
"piece",
"chunk",
"webtorrent",
"torrent-stream",
"peerflix",
"bittorrent"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "git://github.com/webtorrent/torrent-piece.git"
},
"scripts": {
"test": "standard && npm run test-node && npm run test-browser",
"test-browser": "airtap --concurrency 1 --all -- test/*.js | tap-spec",
"test-browser-local": "airtap --preset local -- test/*.js | tap-spec",
"test-node": "tape test/*.js"
},
"funding": [
{
"type": "github",
"url": "https://github.com/sponsors/feross"
},
{
"type": "patreon",
"url": "https://www.patreon.com/feross"
},
{
"type": "consulting",
"url": "https://feross.org/support"
}
],
"renovate": {
"extends": [
"github>webtorrent/renovate-config"
]
},
"dependencies": {
"uint8-util": "^2.1.9"
}
}