forked from baus/compute-histogram
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 774 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 774 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
25
26
27
28
29
30
31
32
33
34
{
"name": "compute-histogram",
"version": "0.9.8",
"description": "Computes histogram bin counts for an array of values.",
"main": "./dist",
"scripts": {
"test": "jest",
"build": "babel lib --out-dir dist"
},
"repository": {
"type": "git",
"url": "git://github.com/baus/compute-histogram.git"
},
"keywords": [
"compute",
"statistics",
"stats",
"histogram"
],
"author": "Christopher Baus",
"license": "MIT",
"bugs": {
"url": "https://github.com/baus/compute-histogram/issues"
},
"homepage": "https://github.com/baus/compute-histogram#readme",
"dependencies": {
"compute-iqr": "^1.1.0"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-preset-env": "^1.7.0",
"jest": "^22.4.3"
}
}