merkletreejs/package.json

56 lines
1.2 KiB
JSON
Raw Normal View History

2017-07-22 15:31:30 +08:00
{
2018-07-10 01:25:43 +08:00
"name": "merkletreejs",
2019-03-30 11:04:31 +08:00
"version": "0.0.24",
2017-08-08 11:29:54 +08:00
"description": "Construct Merkle Trees and verify proofs",
"main": "dist/index.js",
"types": "typings/merkletreejs/*",
2017-07-22 15:31:30 +08:00
"scripts": {
2019-03-30 11:13:48 +08:00
"test": "npm run build && tape test/*.js",
"build": "rm -rf dist/ && tsc",
2017-07-22 16:05:52 +08:00
"docs:md": "node jsdoc.js"
2017-07-22 15:31:30 +08:00
},
"repository": {
"type": "git",
2018-08-03 07:30:11 +08:00
"url": "https://github.com/miguelmota/merkletreejs"
2017-07-22 15:31:30 +08:00
},
"keywords": [
"merkle",
"tree",
"hash",
"algorithm",
"crypto",
"bitcoin",
"ethereum",
"proof"
],
"author": {
"name": "Miguel Mota",
"email": "hello@miguelmota.com",
"url": "https://miguelmota.com/"
},
"license": {
"type": "MIT",
2018-10-23 14:44:17 +08:00
"url": "https://github.com/miguelmota/merkletreejs/blob/master/LICENSE"
2017-07-22 15:31:30 +08:00
},
"bugs": {
2018-08-03 07:30:11 +08:00
"url": "https://github.com/miguelmota/merkletreejs/issues"
2017-07-22 15:31:30 +08:00
},
2018-08-03 07:30:11 +08:00
"homepage": "https://github.com/miguelmota/merkletreejs",
2017-07-22 15:31:30 +08:00
"devDependencies": {
"@types/node": "^11.12.1",
2017-07-22 15:31:30 +08:00
"crypto": "0.0.3",
"ethereumjs-util": "^5.1.2",
2017-07-22 16:05:52 +08:00
"jsdoc-to-markdown": "^3.0.0",
2019-01-20 07:47:05 +08:00
"tape": "^4.9.2"
2017-07-22 15:31:30 +08:00
},
"engines": {
"node": ">= 7.6.0"
},
"dependencies": {
"buffer-reverse": "^1.0.1",
2018-10-27 04:09:38 +08:00
"crypto-js": "^3.1.9-1",
2018-12-10 11:10:43 +08:00
"is-buffer": "^2.0.3",
"treeify": "^1.1.0"
2017-07-22 15:31:30 +08:00
}
}