block-syncer-js

Fast block sync and retrieval using bloom filters
git clone git://git.defalsify.org/block-sync-js.git
Log | Files | Refs

package.json (684B)


      1 {
      2 	"name": "block-syncer",
      3 	"version": "0.2.5",
      4 	"description": "Block syncer using bloom filters for selection",
      5 	"main": "dist/index.js",
      6 	"directories": {
      7 		"tests": "tests"
      8 	},
      9 	"files": [
     10 		"dist"
     11 	],
     12 	"dependencies": {
     13 		"moolb": "^0.1.1",
     14 		"web3": "^1.3.0"
     15 	},
     16 	"scripts": {
     17 		"test": "mocha --reporter spec ./tests",
     18 		"build": "sh ./build.sh",
     19 		"clean": "rm -rf dist"
     20 	},
     21 	"repository": {
     22 		"type": "git",
     23 		"url": "https://gitlab.com/nolash/block-syncer-js"
     24 	},
     25 	"author": "Louis Holbrook <npm@holbrook.no> (https://holbrook.no)",
     26 	"license": "GPL-3.0-or-later",
     27 	"engine": {
     28 		"node": "^12.0.0"
     29 	},
     30 	"devDependencies": {
     31 		"cic-client": "0.0.2",
     32 		"mocha": "^8.2.1"
     33 	}
     34 }