UNPKG

973 BJSONView Raw
1{
2 "name": "bloomrun",
3 "version": "2.1.0",
4 "description": "JS object pattern matching, powered by bloom filters",
5 "main": "bloomrun.js",
6 "scripts": {
7 "bench": "node bench.js",
8 "lint": "standard",
9 "test": "tape test.js | faucet",
10 "coverage": "istanbul cover tape test.js > /dev/null; open coverage/lcov-report/index.html",
11 "coveralls": "istanbul cover tape test.js; cat coverage/lcov.info | coveralls"
12 },
13 "precommit": [
14 "lint",
15 "test"
16 ],
17 "author": "Matteo Collina <hello@matteocollina.com>",
18 "contributors": [
19 "Dean McDonnell (http://mcdonnelldean.me)"
20 ],
21 "repository": "https://github.com/mcollina/bloomrun.git",
22 "license": "MIT",
23 "dependencies": {
24 "bloomfilter": "0.0.16"
25 },
26 "devDependencies": {
27 "coveralls": "^2.11.6",
28 "fastbench": "^1.0.0",
29 "faucet": "0.0.1",
30 "istanbul": "^0.4.1",
31 "patrun": "^0.4.4",
32 "pre-commit": "^1.1.1",
33 "standard": "^5.0.0",
34 "tape": "^4.0.2"
35 }
36}