-
-
Notifications
You must be signed in to change notification settings - Fork 97
/
package.json
100 lines (100 loc) · 2.03 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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
{
"name": "create-torrent",
"description": "Create .torrent files",
"version": "6.1.0",
"author": {
"name": "WebTorrent LLC",
"email": "[email protected]",
"url": "https://webtorrent.io"
},
"type": "module",
"bin": {
"create-torrent": "./bin/cmd.js"
},
"bugs": {
"url": "https://github.com/webtorrent/create-torrent/issues"
},
"browser": {
"./get-files.js": false,
"is-file": false
},
"dependencies": {
"bencode": "^4.0.0",
"block-iterator": "^1.1.1",
"fast-readable-async-iterator": "^2.0.0",
"is-file": "^1.0.0",
"join-async-iterator": "^1.1.1",
"junk": "^4.0.1",
"minimist": "^1.2.8",
"once": "^1.4.0",
"piece-length": "^2.0.1",
"queue-microtask": "^1.2.3",
"run-parallel": "^1.2.0",
"uint8-util": "^2.2.5"
},
"devDependencies": {
"@webtorrent/semantic-release-config": "1.0.10",
"brfs": "2.0.2",
"parse-torrent": "11.0.18",
"semantic-release": "21.1.2",
"standard": "*",
"tape": "5.9.0",
"webtorrent-fixtures": "2.0.2"
},
"engines": {
"node": ">=12"
},
"exports": {
"import": "./index.js"
},
"keywords": [
".torrent",
"bittorrent",
"create",
"create torrent",
"make",
"new",
"peer-to-peer",
"torrent",
"torrent file",
"torrent files",
"webtorrent"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "git://github.com/webtorrent/create-torrent.git"
},
"scripts": {
"test": "standard && tape test/*.js"
},
"standard": {
"globals": [
"Blob",
"FileList"
]
},
"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"
],
"rangeStrategy": "bump"
},
"release": {
"extends": "@webtorrent/semantic-release-config"
}
}