forked from merkletreejs/merkletreejs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
96 lines (96 loc) · 2.56 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
{
"name": "merkletreejs",
"version": "0.3.8",
"description": "Construct Merkle Trees and verify proofs",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist",
"merkletree.js"
],
"scripts": {
"test": "tape test/*.js",
"clean": "rimraf dist",
"dev": "tsc -w",
"build": "npm run clean && tsc && npm run build:browser",
"build:browser": "browserify -t [ babelify --presets [ @babel/preset-env ] ] dist/index.js | uglifyjs > merkletree.js",
"lint": "standardx --fix src/*.ts test/*.js",
"lint:example": "standardx --fix example/*.js",
"docs": "rimraf docs/ && typedoc --plugin typedoc-plugin-markdown --hideSources --theme markdown --hideGenerator --excludeExternals --excludePrivate --out docs src/",
"prepare": "npm run lint && npm run build && npm run build:browser && npm run docs"
},
"repository": {
"type": "git",
"url": "https://github.com/miguelmota/merkletreejs"
},
"keywords": [
"merkle",
"tree",
"hash",
"algorithm",
"crypto",
"bitcoin",
"ethereum",
"proof"
],
"author": {
"name": "Miguel Mota",
"email": "[email protected]",
"url": "https://miguelmota.com/"
},
"license": {
"type": "MIT",
"url": "https://github.com/miguelmota/merkletreejs/blob/master/LICENSE"
},
"bugs": {
"url": "https://github.com/miguelmota/merkletreejs/issues"
},
"homepage": "https://github.com/miguelmota/merkletreejs",
"devDependencies": {
"@babel/core": "^7.10.2",
"@babel/preset-env": "^7.10.2",
"@types/node": "^11.12.1",
"@typescript-eslint/eslint-plugin": "^3.0.2",
"@typescript-eslint/parser": "^3.0.2",
"babelify": "^10.0.0",
"browserify": "^16.5.1",
"circomlibjs": "^0.1.7",
"crypto": "0.0.3",
"ethereum-cryptography": "^1.0.3",
"ethereumjs-util": "^7.0.9",
"keccak256": "^1.0.6",
"rimraf": "^2.6.3",
"sha1": "^1.1.1",
"standard": "^14.3.4",
"standardx": "^5.0.0",
"tape": "^4.9.2",
"typedoc": "^0.17.7",
"typedoc-plugin-markdown": "^2.3.1",
"typescript": "^3.4.1"
},
"engines": {
"node": ">= 7.6.0"
},
"dependencies": {
"bignumber.js": "^9.0.1",
"buffer-reverse": "^1.0.1",
"crypto-js": "^3.1.9-1",
"treeify": "^1.1.0",
"web3-utils": "^1.3.4"
},
"eslintConfig": {
"rules": {
"no-unused-vars": "off",
"@typescript-eslint/no-unused-vars": "error"
}
},
"standardx": {
"parser": "@typescript-eslint/parser",
"plugins": [
"@typescript-eslint/eslint-plugin"
],
"globals": [
"BigInt"
]
}
}