package.json (537B)
1 { 2 "name": "moolb", 3 "version": "0.1.0", 4 "description": "Simple bloom filter with pluggable hash backend", 5 "main": "dist/index.js", 6 "directories": { 7 "tests": "new_test" 8 }, 9 "files": [ 10 "moolb" 11 ], 12 "dependencies": { 13 "mocha": "^7.2.0" 14 }, 15 "scripts": { 16 "test": "mocha --reporter spec ./tests" 17 }, 18 "repository": { 19 "type": "git", 20 "url": "https://gitlab.com/nolash/block-syncer-js" 21 }, 22 "author": "Louis Holbrook <npm@holbrook.no> (https://holbrook.no)", 23 "license": "GPL-3.0-or-later", 24 "engine": { 25 "node": "^12.0.0" 26 } 27 }