-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
65 lines (65 loc) · 1.82 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
{
"name": "ethereum-libp2p",
"version": "0.0.0",
"description": "ethereum node running on top of libp2p",
"main": "lib/index.js",
"jsnext:main": "src/index.js",
"pre-commit": [
"lint",
"test"
],
"scripts": {
"test": "PHANTOM=off gulp test",
"lint": "aegir-lint",
"test:node": "gulp test:node",
"test:browser": "PHANTOM=off gulp test:browser",
"build": "gulp build",
"release": "PHANTOM=off gulp release",
"release-minor": "PHANTOM=off gulp release --type minor",
"release-major": "PHANTOM=off gulp release --type major",
"coverage": "gulp coverage",
"coverage-publish": "aegir-coverage publish"
},
"repository": {
"type": "git",
"url": "git+https://github.com/diasdavid/js-ethereum-libp2p.git"
},
"keywords": [
"libp2p",
"ethereum"
],
"author": "David Dias <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/diasdavid/js-ethereum-libp2p/issues"
},
"homepage": "https://github.com/diasdavid/js-ethereum-libp2p#readme",
"devDependencies": {
"aegir": "^8.1.0",
"chai": "^3.5.0",
"gulp": "^3.9.1",
"pre-commit": "^1.1.3"
},
"dependencies": {
"async": "^2.0.1",
"detect-node": "^2.0.3",
"ethereumjs-account": "^2.0.4",
"ethereumjs-block": "ethereumjs/ethereumjs-block#84b1ac4",
"ethereumjs-blockchain": "^1.4.1",
"ethereumjs-tx": "^1.1.2",
"ethereumjs-util": "^4.5.0",
"ethereumjs-vm": "ethereumjs/ethereumjs-vm#2b63932",
"level-js": "^2.2.4",
"levelup": "^1.3.2",
"libp2p-ipfs": "^0.14.1",
"libp2p-ipfs-browser": "^0.15.1",
"lodash.random": "^3.2.0",
"memdown": "^1.2.2",
"merkle-patricia-tree": "^2.1.2",
"peer-id": "^0.7.0",
"peer-info": "^0.7.1",
"pull-pushable": "^2.0.1",
"pull-stream": "^3.4.5",
"run-parallel": "^1.1.6"
}
}