merkletreejs/package.json

53 lines
1.1 KiB
JSON
Raw Normal View History

2017-07-22 15:31:30 +08:00
{
2018-07-10 01:25:43 +08:00
"name": "merkletreejs",
2018-05-02 14:52:11 +08:00
"version": "0.0.5",
2017-08-08 11:29:54 +08:00
"description": "Construct Merkle Trees and verify proofs",
2017-07-22 15:31:30 +08:00
"main": "index.js",
"directories": {
"test": "tape test/*"
},
"scripts": {
"test": "./node_modules/tape/bin/tape test/*.js",
2017-07-22 16:05:52 +08:00
"docs:md": "node jsdoc.js"
2017-07-22 15:31:30 +08:00
},
"repository": {
"type": "git",
"url": "https://github.com/miguelmota/merkle-tree"
},
"keywords": [
"merkle",
"tree",
"hash",
"algorithm",
"crypto",
"bitcoin",
"ethereum",
"proof"
],
"author": {
"name": "Miguel Mota",
"email": "hello@miguelmota.com",
"url": "https://miguelmota.com/"
},
"license": {
"type": "MIT",
"url": "https://github.com/miguelmota/merkle-tree/blob/master/LICENSE.md"
},
"bugs": {
"url": "https://github.com/miguelmota/merkle-tree/issues"
},
"homepage": "https://github.com/miguelmota/merkle-tree",
"devDependencies": {
"crypto": "0.0.3",
"ethereumjs-util": "^5.1.2",
2017-07-22 16:05:52 +08:00
"jsdoc-to-markdown": "^3.0.0",
2017-07-22 15:31:30 +08:00
"tape": "^3.6.1"
},
"engines": {
"node": ">= 7.6.0"
},
"dependencies": {
"buffer-reverse": "^1.0.1"
}
}