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: 87f0661e006cf6dfa37ce885c97aaed4cc6e1a53 (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
{
  "name": "webtorrent",
  "version": "0.1.0",
  "description": "A streaming torrent client in your browser, powered by webRTC and black magic.",
  "homepage": "http://webtorrent.io",
  "main": "index.js",
  "dependencies": {
    "async": "0.x",
    "bittorrent-dht": "0.x",
    "bittorrent-protocol": "0.x",
    "browserify": "2.x",
    "chrome-dgram": "1.x",
    "chrome-net": "1.x",
    "core-util-is": "1.x",
    "hat": "0.x",
    "magnet-uri": "0.x",
    "read-torrent": "0.x",
    "speedometer": "0.x"
  },
  "devDependencies": {
    "tape": "*",
    "call-log": "*"
  },
  "browser": {
    "dgram": "./node_modules/chrome-dgram/index.js",
    "net": "./node_modules/chrome-net/index.js"
  },
  "scripts": {
    "test": "tape test/*.js",
    "build": "browserify --debug index.js > chrome/bundle.js",
    "app": "\"/Applications/Google Chrome Canary.app/Contents/MacOS/Google Chrome Canary\" --load-and-launch-app=chrome",
    "start": "npm run build && npm run app"
  },
  "repository": {
    "type": "git",
    "url": "git://github.com/feross/webtorrent.git"
  },
  "keywords": [
    "torrent",
    "bittorrent",
    "bittorrent client",
    "webrtc",
    "webrtc data",
    "webtorrent",
    "mad science"
  ],
  "author": "Feross Aboukhadijeh <feross@feross.org> (http://feross.org/)",
  "license": "MIT",
  "bugs": {
    "url": "https://github.com/feross/webtorrent/issues"
  }
}