forked from OpenZeppelin/merkle-tree
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
35 lines (35 loc) · 822 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
{
"name": "@openzeppelin/merkle-tree",
"version": "1.0.1",
"description": "Utilities to work with merkle trees",
"repository": "github:OpenZeppelin/merkle-tree",
"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": "Francisco Giordano <[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",
"typescript": "^4.8.4"
}
}