-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 863 Bytes
/
package.json
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
35
36
37
38
39
{
"name": "student-histogram",
"version": "2.0.0",
"description": "Record a sample and compute its statistical significance",
"license": "MIT",
"author": "Vincent Weevers",
"scripts": {
"test": "standard && node test.js"
},
"files": [
"index.js",
"lib"
],
"dependencies": {
"big.js": "^6.2.1",
"int64-buffer": "^1.0.1",
"native-hdr-histogram": "^1.0.0",
"sample-sizer": "0.1.0"
},
"devDependencies": {
"standard": "^17.0.0",
"tape": "^5.6.1"
},
"keywords": [
"benchmark",
"distribution",
"hdr-histogram",
"histogram",
"sample",
"student",
"student-t"
],
"engines": {
"node": ">=16"
},
"repository": "vweevers/student-histogram",
"bugs": "https://github.com/vweevers/student-histogram/issues",
"homepage": "https://github.com/vweevers/student-histogram"
}