merkletreejs/package.json

78 lines
1.9 KiB
JSON

{
"name": "merkletreejs",
"version": "0.2.1",
"description": "Construct Merkle Trees and verify proofs",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"test": "tape test/*.js",
"build": "rm -rf dist/ && tsc",
"lint": "standardx --fix index.ts test/*.js",
"docs:md": "rm -rf docs/ && typedoc --theme markdown index.ts --out docs --mdEngine github --mdDocusaurus --mdHideSources"
},
"repository": {
"type": "git",
"url": "https://github.com/miguelmota/merkletreejs"
},
"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/merkletreejs/blob/master/LICENSE"
},
"bugs": {
"url": "https://github.com/miguelmota/merkletreejs/issues"
},
"homepage": "https://github.com/miguelmota/merkletreejs",
"devDependencies": {
"@types/node": "^11.12.1",
"@typescript-eslint/eslint-plugin": "^3.0.2",
"@typescript-eslint/parser": "^3.0.2",
"crypto": "0.0.3",
"ethereumjs-util": "6.1.0",
"sha1": "^1.1.1",
"standard": "^14.3.4",
"standardx": "^5.0.0",
"tape": "^4.9.2",
"typedoc": "^0.14.2",
"typedoc-plugin-markdown": "^1.2.1",
"typescript": "^3.4.1"
},
"engines": {
"node": ">= 7.6.0"
},
"dependencies": {
"buffer-reverse": "^1.0.1",
"crypto-js": "^3.1.9-1",
"is-buffer": "^2.0.3",
"merkle-lib": "^2.0.10",
"treeify": "^1.1.0"
},
"eslintConfig": {
"rules": {
"no-unused-vars": "off",
"@typescript-eslint/no-unused-vars": "error"
}
},
"standardx": {
"parser": "@typescript-eslint/parser",
"plugins": [ "@typescript-eslint/eslint-plugin" ]
}
}