-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
42 lines (42 loc) · 1.04 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
{
"name": "solidity-partial-tree",
"version": "2.0.1",
"description": "Solidity implementation of partial merkle tree",
"directories": {
"test": "test"
},
"devDependencies": {
"chai": "^4.2.0",
"chai-bignumber": "^2.0.2",
"ganache-cli": "^6.4.2",
"solidity-coverage": "^0.5.11",
"solidity-docgen": "^0.1.1",
"standard": "^12.0.1",
"truffle": "^5.0.12",
"truffle-hdwallet-provider": "^0.0.5"
},
"dependencies": {},
"scripts": {
"coverage": "scripts/coverage.sh",
"build": "truffle compile",
"migrate": "truffle migrate",
"test": "scripts/test.sh"
},
"repository": {
"type": "git",
"url": "git+https://github.com/commitground/solidity-partial-tree.git"
},
"keywords": [
"Solidity",
"Partial",
"Patricia",
"Merkle",
"Tree"
],
"author": "Wanseob Lim<email@wanseob.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/commitground/solidity-partial-tree/issues"
},
"homepage": "https://github.com/commitground/solidity-partial-tree#readme"
}