-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathpackage.json
49 lines (49 loc) · 1.24 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": "merkle-verify",
"version": "1.0.0",
"description": "Verfies that a user ID is part of a merkle tree and that the tree is unaltered",
"main": "verify.ts",
"scripts": {
"build": "rimraf ./build && tsc",
"verify": "npm run build && node build/verify.js",
"prettier": "prettier --check './**/*.ts' --write",
"test": "jest --verbose"
},
"repository": {
"type": "git",
"url": "git+https://github.com/cakedefi/merkle-proof-tool.git"
},
"keywords": [
"merkle",
"proof",
"of",
"reservs",
"cake",
"defi"
],
"author": "Roger Sunesson",
"license": "MIT",
"bugs": {
"url": "https://github.com/cakedefi/merkle-proof-tool/issues"
},
"homepage": "https://github.com/cakedefi/merkle-proof-tool#readme",
"devDependencies": {
"@babel/preset-typescript": "^7.18.6",
"@types/deep-equal": "^1.0.1",
"@types/minimist": "^1.2.2",
"@types/node": "^18.11.10",
"@types/sha1": "^1.1.3",
"jest": "^29.3.1",
"prettier": "^2.8.0",
"rimraf": "^3.0.2",
"ts-jest": "^29.0.3",
"ts-node": "^10.9.1",
"typescript": "^4.9.3"
},
"dependencies": {
"deep-equal": "^2.1.0",
"js-big-decimal": "^1.3.13",
"minimist": "^1.2.7",
"sha1": "^1.1.1"
}
}