-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
37 lines (37 loc) · 876 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
30
31
32
33
34
35
36
37
{
"name": "merkle-mountain-range",
"version": "2.0.0",
"description": "Merkle tree optimized for lists of sequentially appended data and its proofs",
"main": "index.js",
"scripts": {
"test": "npx mocha --timeout 50000"
},
"repository": {
"type": "git",
"url": "git+https://github.com/zmitton/merkle-mountain-range.git"
},
"keywords": [
"Merkle",
"Mountain",
"Range",
"MerkleMountainRange",
"FlyClient",
"Ethereum"
],
"author": "Zac Mitton",
"license": "MIT",
"homepage": "https://github.com/zmitton/merkle-mountain-range#readme",
"dependencies": {
"bignumber.js": "^8.1.1",
"buffer": "^5.4.3",
"js-sha3": "^0.8.0",
"level": "^6.0.0",
"rlp": "^2.2.3",
"semaphore-async-await": "^1.5.1",
"sha.js": "^2.4.11"
},
"devDependencies": {
"chai": "^4.2.0",
"mocha": "^6.1.3"
}
}