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: a7e33ae0599c4a540846404f55c61ada38316403 (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
{
  "name": "webtorrent",
  "description": "Streaming torrent client",
  "version": "0.54.3",
  "author": {
    "name": "Feross Aboukhadijeh",
    "email": "feross@feross.org",
    "url": "http://feross.org/"
  },
  "bin": {
    "webtorrent": "./bin/cmd.js"
  },
  "browser": {
    "./lib/fs-storage": false,
    "./lib/server": false,
    "bittorrent-dht/client": false,
    "load-ip-set": false,
    "ut_pex": false
  },
  "bugs": {
    "url": "https://github.com/feross/webtorrent/issues"
  },
  "dependencies": {
    "addr-to-ip-port": "^1.0.1",
    "bitfield": "^1.0.2",
    "bittorrent-dht": "^3.0.0",
    "bittorrent-swarm": "^5.0.0",
    "block-stream2": "^1.0.0",
    "clivas": "^0.2.0",
    "create-torrent": "^3.4.0",
    "debug": "^2.1.0",
    "dezalgo": "^1.0.1",
    "end-of-stream": "^1.0.0",
    "hat": "0.0.3",
    "inherits": "^2.0.1",
    "inquirer": "^0.8.0",
    "load-ip-set": "^1.0.3",
    "mime": "^1.2.11",
    "minimist": "^1.1.0",
    "mkdirp": "^0.5.0",
    "moment": "^2.8.3",
    "multistream": "^1.4.2",
    "network-address": "^1.0.0",
    "once": "^1.3.1",
    "parse-torrent": "^5.1.0",
    "pretty-bytes": "^2.0.1",
    "pump": "^1.0.0",
    "random-access-file": "^0.3.1",
    "range-parser": "^1.0.2",
    "re-emitter": "^1.0.0",
    "rimraf": "^2.2.5",
    "run-parallel": "^1.0.0",
    "simple-sha1": "^2.0.0",
    "speedometer": "^0.1.2",
    "thunky": "^0.1.0",
    "torrent-discovery": "^3.0.0",
    "uniq": "^1.0.1",
    "ut_metadata": "^2.1.0",
    "ut_pex": "^1.0.1",
    "videostream": "^1.1.4",
    "windows-no-runnable": "0.0.6",
    "xtend": "^4.0.0",
    "zero-fill": "^2.2.0"
  },
  "devDependencies": {
    "bittorrent-tracker": "^6.0.0",
    "brfs": "^1.2.0",
    "browserify": "^11.0.0",
    "finalhandler": "^0.4.0",
    "run-auto": "^1.0.0",
    "serve-static": "^1.9.3",
    "simple-get": "^1.0.0",
    "standard": "^4.0.1",
    "tape": "^4.0.0",
    "uglify-js": "^2.4.15",
    "zelda": "^2.0.0",
    "zuul": "^3.0.0"
  },
  "homepage": "http://webtorrent.io",
  "keywords": [
    "torrent",
    "bittorrent",
    "bittorrent client",
    "streaming",
    "download",
    "webrtc",
    "webrtc data",
    "webtorrent",
    "mad science"
  ],
  "license": "MIT",
  "main": "index.js",
  "optionalDependencies": {
    "airplay-js": "^0.2.3",
    "chromecast-js": "^0.1.4",
    "nodebmc": "0.0.5"
  },
  "repository": {
    "type": "git",
    "url": "git://github.com/feross/webtorrent.git"
  },
  "scripts": {
    "build": "browserify -s WebTorrent -e ./ | uglifyjs -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/basic.js",
    "test-browser-local": "zuul --local -- test/basic.js",
    "test-node": "tape test/*.js"
  }
}