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: 3f6b257aba95d5d48bfe181515fe114806c85b4f (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
{
  "name": "webtorrent",
  "description": "Streaming BitTorrent client for the browser",
  "version": "0.2.3",
  "author": {
    "name": "Feross Aboukhadijeh",
    "email": "feross@feross.org",
    "url": "http://feross.org/"
  },
  "browser": {
    "jquery": "jquery/dist/jquery.min.js"
  },
  "browserify": {
    "transform": [
      "browserify-shim",
      "brfs"
    ]
  },
  "browserify-shim": {
    "jquery": "jQuery"
  },
  "bugs": {
    "url": "https://github.com/feross/webtorrent/issues"
  },
  "dependencies": {
    "async": "^0.2.10",
    "bitfield": "^0.1.0",
    "bittorrent-dht": "0.x",
    "bittorrent-protocol": "0.x",
    "bittorrent-swarm": "0.x",
    "bncode": "^0.5.2",
    "brfs": "^0.2.1",
    "chrome-portfinder": "^0.2.4",
    "font-awesome": "git://github.com/FortAwesome/Font-Awesome",
    "hat": "0.0.3",
    "humanize": "0.0.9",
    "inherits": "^2.0.1",
    "jquery": "^2.1.0",
    "keymaster": "git://github.com/feross/keymaster",
    "magnet-uri": "1.x",
    "parse-torrent": "0.x",
    "rusha-browserify": "^0.7.3",
    "speedometer": "^0.1.2",
    "moment": "^2.5.1"
  },
  "devDependencies": {
    "brfs": "^0.2.2",
    "browserify": "3.x",
    "browserify-shim": "^3.2.2",
    "nib": "^1.0.2",
    "stylus": "^0.42.2",
    "tape": "2.x",
    "watchify": "0.x"
  },
  "homepage": "http://webtorrent.io",
  "keywords": [
    "torrent",
    "bittorrent",
    "bittorrent client",
    "webrtc",
    "webrtc data",
    "webtorrent",
    "mad science"
  ],
  "license": "MIT",
  "main": "index.js",
  "repository": {
    "type": "git",
    "url": "git://github.com/feross/webtorrent.git"
  },
  "scripts": {
    "build": "npm run build-css && npm run build-js",
    "build-css": "stylus --use nib css/main.styl --compress --out chrome/ && ./bin/post-build.js",
    "build-js": "browserify --debug . > chrome/bundle.js",
    "prepublish": "npm run build",
    "start": "npm run build && ./bin/start.js",
    "test": "tape test/*.js",
    "watch": "npm run watch-js & npm run watch-css",
    "watch-css": "stylus --use nib css/main.styl --out chrome/ --watch",
    "watch-js": "watchify . --outfile chrome/bundle.js --debug --verbose"
  }
}