bloomfilter.js/package.json

26 lines
573 B
JSON
Raw Normal View History

2011-09-05 13:44:26 +01:00
{
2011-12-07 11:55:04 +00:00
"name": "bloomfilter",
"version": "0.0.9",
2011-09-05 13:44:26 +01:00
"description": "Fast bloom filter in JavaScript.",
"keywords": [
"bloom filter",
"probabilistic data structure"
],
"homepage": "https://github.com/jasondavies/bloomfilter.js",
"author": {
"name": "Jason Davies",
"url": "http://www.jasondavies.com/"
},
"repository": {
"type": "git",
"url": "http://github.com/jasondavies/bloomfilter.js.git"
},
2011-12-07 11:55:04 +00:00
"main": "bloomfilter.js",
"devDependencies": {
2011-12-06 23:31:54 +00:00
"vows": "0.6.0"
},
"scripts": {
"test": "./node_modules/vows/bin/vows"
2011-09-05 13:44:26 +01:00
}
}