-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
24 lines (24 loc) · 776 Bytes
/
package.json
File metadata and controls
24 lines (24 loc) · 776 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
{
"name": "streamcount",
"version": "1.0.1",
"author": "John Hurliman <jhurliman@jhurliman.org> (http://jhurliman.org/)",
"description": "Provides implementations of sketch algorithms for real-time counting of stream data. Useful for real-time web analytics and other streaming or big data scenarios.",
"keywords": ["analytics", "metrics", "countminsketch", "hyperloglog", "sketch", "realtime"],
"license": "MIT",
"main": "./index",
"scripts": {
"test": "vows --spec"
},
"devDependencies": {
"assert": "1.3.0",
"vows": "0.8.1"
},
"engines": {
"node": ">= 0.6.0"
},
"repository": {
"type": "git",
"url": "https://github.com/jhurliman/node-streamcount.git"
},
"homepage": "https://github.com/jhurliman/node-streamcount"
}