UNPKG

wikimedia-kad-fork

Version:

implementation of the kademlia dht for node

64 lines (63 loc) 1.76 kB
{ "name": "wikimedia-kad-fork", "version": "1.3.6", "description": "implementation of the kademlia dht for node", "main": "index.js", "directories": { "test": "test", "lib": "lib", "doc": "doc", "example": "example" }, "scripts": { "test": "npm run testsuite && npm run linter", "testsuite": "./node_modules/.bin/mocha test/** --recursive", "coverage": "./node_modules/.bin/istanbul cover -x 'lib/logger.js' ./node_modules/.bin/_mocha -- --recursive", "linter": "./node_modules/.bin/jshint --config .jshintrc ./index.js ./lib ./test", "build": "./node_modules/.bin/browserify index.js -s kad -o dist/kad.browser.js", "simulation": "node script/simulation.js", "makedoc": "./node_modules/.bin/jsdoc index.js lib -r -p -R README.md -u doc -c .jsdoc.json --verbose -d ../kadtools.github.io" }, "keywords": [ "dht", "kademlia", "p2p" ], "repository": { "type": "git", "url": "https://github.com/wikimedia/kad.git" }, "author": "Gordon Hall <gordon@gordonwritescode.com>", "contributors": [ { "name": "omphalos", "url": "https://github.com/omphalos" } ], "license": "GPL-3.0", "dependencies": { "async": "^0.9.0", "clarinet": "^0.11.0", "colors": "^1.0.3", "hat": "0.0.3", "kad-fs": "0.0.4", "kad-localstorage": "0.0.7", "kad-memstore": "0.0.1", "lodash": "^4.17.11", "ms": "^0.7.0", "msgpack5": "^3.3.0" }, "devDependencies": { "browserify": "^11.1.0", "chai": "^2.2.0", "coveralls": "^2.11.2", "faker": "^2.1.2", "istanbul": "^0.3.13", "jsdoc": "^3.4.0", "jshint": "2.8.0", "minami": "^1.1.1", "mocha": "^2.2.4", "proxyquire": "^1.7.3", "sinon": "^1.14.1" } }