forked from OpenZeppelin/merkle-tree
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
47 lines (47 loc) · 1.14 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
{
"name": "@tallyxyz/merkle-tree",
"version": "1.0.7",
"description": "Utilities to work with merkle trees, fork from OZ to internal usage on tally",
"repository": {
"type": "git",
"url": "git+https://github.com/withtally/merkle-tree.git"
},
"main": "dist/index.js",
"scripts": {
"prepublishOnly": "npm run clean",
"prepare": "tsc",
"clean": "rm -rf dist",
"test": "mocha",
"coverage": "c8 npm run test --"
},
"files": [
"/src",
"/dist",
"!**/*.tsbuildinfo",
"!**/*.test.*"
],
"keywords": [],
"author": "Arthur Abeilice <[email protected]>",
"license": "MIT",
"dependencies": {
"@ethersproject/abi": "^5.7.0",
"ethereum-cryptography": "^1.1.2"
},
"devDependencies": {
"@types/mocha": "^10.0.0",
"c8": "^7.12.0",
"fast-check": "^3.3.0",
"mocha": "^10.1.0",
"ts-node": "^10.9.1",
"ethers": "^6.4.0",
"typescript": "^4.8.4"
},
"publishConfig": {
"access": "public"
},
"types": "./dist/index.d.ts",
"bugs": {
"url": "https://github.com/withtally/merkle-tree/issues"
},
"homepage": "https://github.com/withtally/merkle-tree#readme"
}