/ package.json
package.json
1 { 2 "name": "ethereumjs-devp2p", 3 "version": "2.5.1", 4 "description": "A JavaScript implementation of ÐΞVp2p", 5 "keywords": [ 6 "ethereum", 7 "p2p", 8 "networking", 9 "dpt", 10 "rlpx", 11 "eth", 12 "eth62", 13 "eth63", 14 "les", 15 "les2" 16 ], 17 "homepage": "https://github.com/ethereumjs/ethereumjs-devp2p", 18 "bugs": { 19 "url": "https://github.com/ethereumjs/ethereumjs-devp2p/issues" 20 }, 21 "license": "MIT", 22 "contributors": [ 23 "Alex Beregszaszi <alex@rtfs.hu>", 24 "Kirill Fomichev <fanatid@ya.ru> (https://github.com/fanatid)", 25 "Martin Becze <mb@ethdev.com>", 26 "Holger Drewes <holger.drewes@gmail.com>" 27 ], 28 "files": [ 29 "src", 30 "lib" 31 ], 32 "main": "./lib/index.js", 33 "repository": { 34 "type": "git", 35 "url": "https://github.com/ethereumjs/ethereumjs-devp2p.git" 36 }, 37 "engines": { 38 "node": ">=6.0" 39 }, 40 "scripts": { 41 "coverage": "nyc npm run test && nyc report --reporter=text-lcov > .nyc_output/lcov.info", 42 "coveralls": "npm run coverage && coveralls <.nyc_output/lcov.info", 43 "build": "babel src -d lib", 44 "integration": "tape -r babel-register test/integration/*.js", 45 "lint": "standard", 46 "prepublish": "npm run build", 47 "test": "npm run lint && npm run unit && npm run integration", 48 "unit": "tape -r babel-register test/*.js" 49 }, 50 "dependencies": { 51 "babel-runtime": "^6.11.6", 52 "bl": "^1.1.2", 53 "debug": "^2.2.0", 54 "inherits": "^2.0.1", 55 "ip": "^1.1.3", 56 "k-bucket": "^3.2.1", 57 "keccak": "^1.0.0", 58 "lru-cache": "^4.0.1", 59 "ms": "^0.7.1", 60 "rlp-encoding": "^3.0.0", 61 "safe-buffer": "^5.1.1", 62 "secp256k1": "^3.1.0" 63 }, 64 "devDependencies": { 65 "async": "^2.6.0", 66 "babel-cli": "^6.16.0", 67 "babel-eslint": "^7.0.0", 68 "babel-plugin-transform-class-properties": "^6.16.0", 69 "babel-plugin-transform-runtime": "^6.15.0", 70 "babel-preset-env": "^1.6.1", 71 "babel-register": "^6.14.0", 72 "chalk": "^1.1.3", 73 "coveralls": "^3.0.0", 74 "ethereum-common": "~0.2.0", 75 "ethereumjs-block": "^1.3.0", 76 "ethereumjs-tx": "^1.1.1", 77 "nyc": "^11.4.1", 78 "standard": "*", 79 "tape": "^4.5.1" 80 }, 81 "standard": { 82 "parser": "babel-eslint" 83 } 84 }