Skip to content

Instantly share code, notes, and snippets.

@summer4096
Created October 17, 2015 18:01
Show Gist options
  • Save summer4096/3e8ae888d9c2550086de to your computer and use it in GitHub Desktop.
Save summer4096/3e8ae888d9c2550086de to your computer and use it in GitHub Desktop.
{
"name": "webtorrent-experiment",
"version": "0.0.0",
"description": "webtorrent-experiment",
"main": "dist/index.js",
"author": "Tristan Davies <npm@tristan.io>",
"license": "MIT",
"scripts": {
"clean": "rm -rf dist",
"watch": "npm run clean; mkdir dist; watchify src/index.js -g aliasify-tristan -t babelify -o dist/bundle.js"
},
"devDependencies": {
"aliasify-tristan": "~1.8.1",
"babel": "^5.8.23",
"babel-eslint": "^4.1.1",
"babel-runtime": "^5.8.20",
"babelify": "^6.3.0",
"standard": "^5.2.2",
"watchify": "^3.4.0"
},
"standard": {
"parser": "babel-eslint"
},
"dependencies": {
"chrome-dgram": "^2.1.7",
"chrome-net": "^3.0.1",
"native-dns": "^0.7.0",
"webtorrent": "^0.62.2"
},
"aliasify": {
"aliases": {
"net": "chrome-net",
"dgram": "chrome-dgram",
"dns": "native-dns",
"./lib/server": "./lib/server.js",
"addr-to-ip-port": "addr-to-ip-port/index",
"bittorrent-dht/client": "bittorrent-dht/client.js",
"load-ip-set": "load-ip-set/index",
"ut_pex": "ut_pex/index",
"simple-get": "simple-get/index",
"./lib/common-node": "./lib/common-node.js",
"./lib/client/http-tracker": "./lib/client/http-tracker.js",
"./lib/client/udp-tracker": "./lib/client/udp-tracker.js",
"./server": "./server.js"
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment