-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
41 lines (41 loc) · 1.02 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
{
"name": "solidity-patricia-tree",
"version": "2.0.2",
"description": "Patricia Tree solidity implemenation",
"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-patricia-tree.git"
},
"keywords": [
"Solidity",
"Patricia",
"Merkle",
"Tree"
],
"author": "Wanseob Lim<email@wanseob.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/commitground/solidity-patricia-tree/issues"
},
"homepage": "https://github.com/commitground/solidity-patricia-tree#readme"
}