-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
74 lines (74 loc) · 1.95 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
{
"name": "@biut-block/biutjs-devp2p",
"version": "1.0.1",
"description": "A JavaScript implementation of ÐΞVp2p Protocol for BiutBlock, Based on Ethereum",
"keywords": [
"biut",
"p2p",
"networking",
"ndp",
"rlp"
],
"homepage": "https://github.com/BIUT-Block/biutjs-devp2p",
"bugs": {
"url": "https://github.com/BIUT-Block/biutjs-devp2p/issues"
},
"license": "MIT",
"contributors": [
"Li, Yuan <[email protected]> (https://github.com/abysmli)"
],
"files": [
"src",
"lib"
],
"main": "./lib/index.js",
"repository": {
"type": "git",
"url": "https://github.com/BIUT-Block/biutjs-devp2p.git"
},
"engines": {
"node": ">=6.0"
},
"scripts": {
"coverage": "nyc npm run test && nyc report --reporter=text-lcov > .nyc_output/lcov.info",
"coveralls": "npm run coverage && coveralls <.nyc_output/lcov.info",
"build": "babel src -d lib",
"integration": "tape -r babel-register test/integration/*.js",
"lint": "standard",
"prepublish": "npm run build",
"test": "npm run lint && npm run unit && npm run integration",
"unit": "tape -r babel-register test/*.js"
},
"dependencies": {
"@biut-block/biutjs-rlp": "^1.0.0",
"babel-runtime": "^6.11.6",
"bl": "^1.1.2",
"debug": "^2.2.0",
"inherits": "^2.0.1",
"ip": "^1.1.3",
"k-bucket": "^3.2.1",
"keccak": "^1.0.0",
"lru-cache": "^4.0.1",
"ms": "^0.7.1",
"safe-buffer": "^5.1.1",
"secp256k1": "3.6.1"
},
"devDependencies": {
"async": "^2.6.1",
"babel-cli": "^6.26.0",
"babel-eslint": "^7.0.0",
"babel-plugin-transform-class-properties": "^6.16.0",
"babel-plugin-transform-runtime": "^6.15.0",
"babel-preset-env": "^1.6.1",
"babel-register": "^6.14.0",
"chalk": "^1.1.3",
"coveralls": "^3.0.2",
"eslint-config-google": "^0.9.1",
"nyc": "^11.9.0",
"standard": "^12.0.1",
"tape": "^4.9.1"
},
"standard": {
"parser": "babel-eslint"
}
}