-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathpackage.json
29 lines (29 loc) · 879 Bytes
/
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
{
"name": "merkle-patricia-trees-examples",
"version": "1.0.0",
"description": "A collection of JavaScript examples to explore Merkle Patricia Trees as used in Ethereum",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/gabrocheleau/merkle-patricia-trees-examples.git"
},
"keywords": [
"merkle-patricia-trees",
"ethereum"
],
"author": "Gabriel Rocheleau",
"license": "ISC",
"bugs": {
"url": "https://github.com/gabrocheleau/merkle-patricia-trees-examples/issues"
},
"homepage": "https://github.com/gabrocheleau/merkle-patricia-trees-examples#readme",
"dependencies": {
"@ethereumjs/rlp": "^4.0.0-beta.3",
"@ethereumjs/trie": "^5.0.0-beta.3",
"ethereum-cryptography": "^1.1.2",
"request": "^2.88.2"
}
}