71 lines
1.7 KiB
JSON
71 lines
1.7 KiB
JSON
{
|
|
"name": "cachep2p",
|
|
"description": "The Peer to Peer for the Masses",
|
|
"version": "0.1.0",
|
|
"author": {
|
|
"name": "Carlos Guerrero",
|
|
"email": "carlos@carlosguerrero.com",
|
|
"url": "https://cachep2p.com"
|
|
},
|
|
"browser": {},
|
|
"browserify": {
|
|
"transform": [
|
|
"package-json-versionify"
|
|
]
|
|
},
|
|
"bugs": {
|
|
"url": "https://github.com/guerrerocarlos/cachep2p/issues"
|
|
},
|
|
"dependencies": {
|
|
"safe-buffer": "^5.0.1",
|
|
"simple-sha1": "^2.0.8",
|
|
"webtorrent": "git+https://github.com/guerrerocarlos/webtorrent.git"
|
|
},
|
|
"devDependencies": {
|
|
"browserify": "^13.0.1",
|
|
"debug": "^2.2.0",
|
|
"uglifyjs": "^2.4.10"
|
|
},
|
|
"engines": {
|
|
"node": ">=4"
|
|
},
|
|
"homepage": "https://cachep2p.com",
|
|
"keywords": [
|
|
"cache",
|
|
"p2p",
|
|
"web2web",
|
|
"cachep2p",
|
|
"p2pcache",
|
|
"web2webcache",
|
|
"cacheweb2web",
|
|
"bittorrent",
|
|
"bittorrent client",
|
|
"download",
|
|
"mad science",
|
|
"p2p",
|
|
"peer-to-peer",
|
|
"peers",
|
|
"streaming",
|
|
"swarm",
|
|
"torrent",
|
|
"web torrent",
|
|
"webrtc",
|
|
"webrtc data",
|
|
"webtorrent"
|
|
],
|
|
"license": "MIT",
|
|
"main": "index.js",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git://github.com/guerrerocarlos/cachep2p.git"
|
|
},
|
|
"scripts": {
|
|
"build": "browserify -s CacheP2P -e ./ | uglifyjs -c warnings=false -m > cachep2p.min.js",
|
|
"build-debug": "browserify -s CacheP2P -e ./ > webtorrent.debug.js",
|
|
"size": "npm run build && cat cachep2p.min.js | gzip | wc -c",
|
|
"test": "standard && node ./bin/test.js",
|
|
"test-browser": "zuul -- test/*.js test/browser/*.js",
|
|
"test-browser-headless": "zuul --electron -- test/*.js test/browser/*.js",
|
|
"test-browser-local": "zuul --local -- test/*.js test/browser/*.js"
|
|
}
|
|
}
|