-
Notifications
You must be signed in to change notification settings - Fork 112
/
package.json
49 lines (49 loc) · 1.36 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
48
49
{
"name": "@openzeppelin/merkle-tree",
"version": "1.0.7",
"description": "Utilities to work with merkle trees",
"repository": "github:OpenZeppelin/merkle-tree",
"main": "dist/index.js",
"scripts": {
"prepublishOnly": "npm run clean",
"prepare": "npm run compile",
"compile": "tsc",
"compile:watch": "tsc -w",
"clean": "rimraf dist",
"lint": "eslint . --ignore-path .gitignore --max-warnings 0",
"lint:fix": "eslint . --ignore-path .gitignore --max-warnings 0 --fix",
"test": "ava",
"test:watch": "ava -w",
"test:coverage": "c8 npm run test --"
},
"files": [
"/src",
"/dist",
"!**/*.tsbuildinfo",
"!**/*.test.*"
],
"keywords": [],
"author": "Francisco Giordano <[email protected]>",
"license": "MIT",
"dependencies": {
"@ethersproject/abi": "^5.7.0",
"@ethersproject/bytes": "^5.7.0",
"@ethersproject/constants": "^5.7.0",
"@ethersproject/keccak256": "^5.7.0"
},
"devDependencies": {
"@fast-check/ava": "^1.2.1",
"@typescript-eslint/eslint-plugin": "^7.1.0",
"@typescript-eslint/parser": "^7.1.0",
"ava": "^6.1.1",
"c8": "^7.12.0",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"fast-check": "^3.3.0",
"prettier": "^3.2.5",
"rimraf": "^5.0.5",
"ts-node": "^10.9.1",
"typescript": "^4.8.4"
}
}