Welcome to mirror list, hosted at ThFree Co, Russian Federation.

package.json - github.com/webtorrent/webtorrent.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 88bfd4a44986d0df5df56ec5d1a2276405d870e3 (plain)
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
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
{
  "name": "webtorrent",
  "description": "Streaming torrent client",
  "version": "0.93.1",
  "author": {
    "name": "Feross Aboukhadijeh",
    "email": "feross@feross.org",
    "url": "http://feross.org/"
  },
  "browser": {
    "./lib/server.js": false,
    "./lib/tcp-pool.js": false,
    "bittorrent-dht/client": false,
    "fs-chunk-store": "memory-chunk-store",
    "load-ip-set": false,
    "net": false,
    "os": false,
    "ut_pex": false
  },
  "browserify": {
    "transform": [
      "package-json-versionify"
    ]
  },
  "bugs": {
    "url": "https://github.com/feross/webtorrent/issues"
  },
  "dependencies": {
    "addr-to-ip-port": "^1.0.1",
    "bitfield": "^1.0.2",
    "bittorrent-dht": "^7.0.0",
    "bittorrent-protocol": "^2.0.0",
    "chunk-store-stream": "^2.0.0",
    "create-torrent": "^3.4.0",
    "debug": "^2.1.0",
    "end-of-stream": "^1.0.0",
    "fs-chunk-store": "^1.3.4",
    "hat": "^0.0.3",
    "immediate-chunk-store": "^1.0.7",
    "inherits": "^2.0.1",
    "load-ip-set": "^1.0.3",
    "memory-chunk-store": "^1.2.0",
    "mime": "^1.2.11",
    "multistream": "^2.0.2",
    "package-json-versionify": "^1.0.1",
    "parse-torrent": "^5.1.0",
    "pump": "^1.0.0",
    "random-iterate": "^1.0.1",
    "range-parser": "^1.0.2",
    "readable-stream": "^2.1.2",
    "render-media": "^2.0.0",
    "run-parallel": "^1.0.0",
    "run-parallel-limit": "^1.0.2",
    "simple-concat": "^1.0.0",
    "simple-get": "^2.0.0",
    "simple-peer": "^6.0.0",
    "simple-sha1": "^2.0.0",
    "speedometer": "^1.0.0",
    "stream-to-blob-url": "^2.0.0",
    "stream-with-known-length-to-buffer": "^1.0.0",
    "torrent-discovery": "^8.0.0",
    "torrent-piece": "^1.0.0",
    "uniq": "^1.0.1",
    "unordered-array-remove": "^1.0.2",
    "ut_metadata": "^3.0.2",
    "ut_pex": "^1.0.1",
    "xtend": "^4.0.0",
    "zero-fill": "^2.2.0"
  },
  "devDependencies": {
    "bittorrent-tracker": "^8.0.0",
    "brfs": "^1.2.0",
    "browserify": "^13.0.0",
    "cross-spawn-async": "^2.2.2",
    "electron-prebuilt": "^0.37.2",
    "finalhandler": "^0.4.0",
    "network-address": "^1.1.0",
    "run-series": "^1.0.2",
    "serve-static": "^1.9.3",
    "standard": "^7.0.0",
    "tape": "^4.0.0",
    "uglify-js": "^2.4.15",
    "webtorrent-fixtures": "^1.0.0",
    "zuul": "^3.0.0"
  },
  "homepage": "https://webtorrent.io",
  "keywords": [
    "bittorrent",
    "bittorrent client",
    "download",
    "mad science",
    "p2p",
    "peer-to-peer",
    "peers",
    "streaming",
    "swarm",
    "torrent",
    "web torrent",
    "webrtc",
    "webrtc data",
    "webtorrent"
  ],
  "license": "MIT",
  "main": "index.js",
  "repository": {
    "type": "git",
    "url": "git://github.com/feross/webtorrent.git"
  },
  "scripts": {
    "build": "browserify -s WebTorrent -e ./ | uglifyjs -c warnings=false -m > webtorrent.min.js",
    "build-debug": "browserify -s WebTorrent -e ./ > webtorrent.debug.js",
    "size": "npm run build && cat webtorrent.min.js | gzip | wc -c",
    "test": "standard && node ./bin/test.js",
    "test-browser": "zuul -- test/*.js test/browser/*.js",
    "test-browser-headless": "zuul --electron -- test/*.js test/browser/*.js",
    "test-browser-local": "zuul --local -- test/*.js test/browser/*.js",
    "test-node": "tape test/*.js test/node/*.js",
    "update-authors": "./bin/update-authors.sh"
  }
}