-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
39 lines (39 loc) · 942 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": "chi-sq-test",
"version": "2.0.1",
"description": "Chi-Squared hypothesis tests to test distribution fitness for dataset and independence among datasets",
"main": "lib/index.js",
"typings": "./lib/index.d.ts",
"scripts": {
"files": "lib/**",
"test": "qunit",
"prepublish": "npm run build",
"build": "tsc"
},
"keywords": [
"chi-squared",
"statistics",
"hypothesis",
"chi-squared-tests",
"distribution",
"independence"
],
"repository": {
"type": "git",
"url": "git:https://github.com/neeraj3029/Chi-Squared-test.git"
},
"author": "neerajr",
"license": "MIT",
"dependencies": {
"chi-squared": "^1.1.0"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-preset-es2015": "^6.24.1",
"eslint": "^7.13.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-plugin-import": "^2.22.1",
"qunit": "^2.17.2",
"typescript": "^4.5.5"
}
}