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

github.com/webtorrent/webtorrent.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFeross Aboukhadijeh <feross@feross.org>2014-02-02 03:57:25 +0400
committerFeross Aboukhadijeh <feross@feross.org>2014-02-02 03:57:25 +0400
commit6babc6e79d06686fb3f42c17805359c22c752740 (patch)
tree07fc16ea9fbe55cbab2461c0d6e87df8f7d0e630 /package.json
parentb462a48b49facc2872361732c9ef226266097d85 (diff)
fixpack
Diffstat (limited to 'package.json')
-rw-r--r--package.json68
1 files changed, 34 insertions, 34 deletions
diff --git a/package.json b/package.json
index ad91351..425b9a6 100644
--- a/package.json
+++ b/package.json
@@ -1,9 +1,26 @@
{
"name": "webtorrent",
- "version": "0.1.2",
"description": "Streaming BitTorrent client for the browser",
- "homepage": "http://webtorrent.io",
- "main": "index.js",
+ "version": "0.1.2",
+ "author": {
+ "name": "Feross Aboukhadijeh",
+ "email": "feross@feross.org",
+ "url": "http://feross.org/"
+ },
+ "browser": {
+ "jquery": "./node_modules/jquery/dist/jquery.min.js"
+ },
+ "browserify": {
+ "transform": [
+ "browserify-shim"
+ ]
+ },
+ "browserify-shim": {
+ "jquery": "jQuery"
+ },
+ "bugs": {
+ "url": "https://github.com/feross/webtorrent/issues"
+ },
"dependencies": {
"async": "~0.2.10",
"bittorrent-dht": "0.x",
@@ -15,35 +32,15 @@
"hat": "0.0.3",
"jquery": "~2.1.0",
"magnet-uri": "0.x",
+ "portfinder": "~0.2.1",
"read-torrent": "~0.2.0",
- "speedometer": "~0.1.2",
- "portfinder": "~0.2.1"
+ "speedometer": "~0.1.2"
},
"devDependencies": {
"tape": "2.x",
"watchify": "0.x"
},
- "scripts": {
- "build": "browserify --debug index.js > chrome/bundle.js",
- "watch": "watchify index.js -o chrome/bundle.js -dv & (sleep 1 && ./bin/start.js)",
- "start": "npm run build && ./bin/start.js",
- "test": "tape test/*.js"
- },
- "browser": {
- "jquery": "./node_modules/jquery/dist/jquery.min.js"
- },
- "browserify": {
- "transform": [
- "browserify-shim"
- ]
- },
- "browserify-shim": {
- "jquery": "jQuery"
- },
- "repository": {
- "type": "git",
- "url": "git://github.com/feross/webtorrent.git"
- },
+ "homepage": "http://webtorrent.io",
"keywords": [
"torrent",
"bittorrent",
@@ -53,13 +50,16 @@
"webtorrent",
"mad science"
],
- "author": {
- "name": "Feross Aboukhadijeh",
- "email": "feross@feross.org",
- "url": "http://feross.org/"
- },
"license": "MIT",
- "bugs": {
- "url": "https://github.com/feross/webtorrent/issues"
+ "main": "index.js",
+ "repository": {
+ "type": "git",
+ "url": "git://github.com/feross/webtorrent.git"
+ },
+ "scripts": {
+ "build": "browserify --debug index.js > chrome/bundle.js",
+ "watch": "watchify index.js -o chrome/bundle.js -dv",
+ "start": "npm run build && ./bin/start.js",
+ "test": "tape test/*.js"
}
-}
+} \ No newline at end of file