-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
36 lines (36 loc) · 924 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
{
"name": "calculate-correlation",
"version": "1.2.3",
"description": "Calculates the correlation coefficient of two arrays. Simple, with no dependencies",
"keywords": [
"math",
"statistics",
"correlation",
"correlation-coefficient",
"pearson-correlation",
"arrays"
],
"homepage": "https://github.com/rubenvar/calculate-correlation",
"bugs": {
"url": "https://github.com/rubenvar/calculate-correlation/issues",
"email": "hey@rubenvara.io"
},
"license": "MIT",
"author": "Rubén Vara <hey@rubenvara.io> (https://rubenvara.io)",
"main": "index.js",
"directories": {
"lib": "./lib"
},
"repository": {
"type": "git",
"url": "https://github.com/rubenvar/calculate-correlation.git"
},
"scripts": {
"test:dev": "mocha --recursive --watch",
"test": "mocha --recursive"
},
"devDependencies": {
"chai": "^4.3.7",
"mocha": "^10.1.0"
}
}