-
-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
59 lines (59 loc) · 1.23 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
{
"name": "webtorrent-fixtures",
"description": "Sample torrent files for the WebTorrent test suite",
"version": "2.0.2",
"author": {
"name": "WebTorrent, LLC",
"email": "feross@webtorrent.io",
"url": "https://webtorrent.io"
},
"browserify": {
"transform": [
"brfs"
]
},
"bugs": {
"url": "https://github.com/webtorrent/webtorrent-fixtures/issues"
},
"type": "module",
"dependencies": {
"brfs": "^2.0.0",
"parse-torrent": "^11.0.0"
},
"devDependencies": {
"@webtorrent/semantic-release-config": "1.0.10",
"semantic-release": "21.1.2",
"standard": "*"
},
"keywords": [
"sample torrents",
"test",
"test fixtures",
"torrent",
"torrent files",
"webtorrent",
"webtorrent test"
],
"license": "MIT",
"engines": {
"node": ">=12.20.0"
},
"exports": {
"import": "./index.js"
},
"repository": {
"type": "git",
"url": "git://github.com/webtorrent/webtorrent-fixtures.git"
},
"scripts": {
"test": "standard && node --input-type=module -e \"import './index.js'\""
},
"renovate": {
"extends": [
"github>webtorrent/renovate-config"
]
},
"release": {
"extends": "@webtorrent/semantic-release-config"
}
}