-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) 路 750 Bytes
/
Copy pathpackage.json
File metadata and controls
38 lines (38 loc) 路 750 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
35
36
37
38
{
"name": "statslator",
"version": "1.0.1",
"description": "Conversion between statistical reporting styles",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"scripts": {
"build": "tsc",
"publish": "npm run build && npm publish",
"test": "jest"
},
"author": "Damien Masson (http://damienmasson.com)",
"license": "MIT",
"devDependencies": {
"@types/jest": "^29.5.5",
"jest": "^29.7.0",
"ts-jest": "^29.1.1",
"typescript": "^5.2.2"
},
"dependencies": {
"jstat": "^1.9.6"
},
"files": [
"lib",
"src"
],
"keywords": [
"statistics",
"stats",
"reporting",
"conversion",
"estimation",
"nhst",
"p-value",
"effect size",
"confidence interval"
]
}