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-10-27 03:42:14 +08:00
"version": "0.0.16",
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",
2018-09-19 07:14:51 +08:00
"types": "index.d.ts",
2017-07-22 15:31:30 +08:00
"scripts": {
2018-07-10 15:05:33 +08:00
"test": "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",
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": {
"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",
2018-08-12 02:44:29 +08:00
"is-buffer": "^2.0.3",
"crypto-js": "^3.1.9-1"
2017-07-22 15:31:30 +08:00
}
}