-
Notifications
You must be signed in to change notification settings - Fork 15
/
package.json
56 lines (56 loc) · 1.25 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
{
"name": "webtorrent-checker",
"version": "1.0.0",
"description": "Check the health of a magnet link or torrent file in Webtorrent or Bittorrent",
"main": "index.js",
"dependencies": {
"bittorrent-tracker": "^10.0.0",
"body-parser": "^1.20.0",
"browserify": "^17.0.0",
"express": "^4.21.0",
"parse-torrent": "^11.0.1",
"pug": "^3.0.3",
"webtorrent-health": "^1.2.0"
},
"devDependencies": {
"esmify": "^2.1.1",
"standard": "^17.1.0"
},
"engine": {
"node": ">=16.0.0"
},
"scripts": {
"test": "standard",
"build": "npm run build-js",
"build-js": "browserify client -p esmify > static/bundle.js",
"start": "nodejs server/index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/alxhotel/webtorrent-checker.git"
},
"keywords": [
"webtorrent",
"torrent",
"status",
"check",
"checker",
"webrtc",
"tcp",
"udp",
"online",
"web",
"service",
"seeds",
"seeders",
"leach",
"leachers",
"seed"
],
"author": "Alex <alxmorais8@msn.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/alxhotel/webtorrent-checker/issues"
},
"homepage": "https://github.com/alxhotel/webtorrent-checker#readme"
}