-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 1.18 KB
/
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
40
41
42
43
44
45
{
"name": "data-science-js",
"version": "0.0.4",
"description": "JS-based library for data-science, statistic and math project",
"main": "src/index.js",
"scripts": {
"start": "node src/index.js",
"test": "jest -i --colors --verbose",
"test:watch": "jest -i --watchAll",
"coverage": "jest -i --coverage",
"dev": "nodemon src/index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/gagocarrilloedgar/data-science-js.git"
},
"keywords": [
"data-science",
"f1score",
"maths",
"statistic",
"mean-square-error",
"mse"
],
"author": "Edgar Gago Carrillo",
"license": "MIT",
"bugs": {
"url": "https://github.com/gagocarrilloedgar/data-science-js/issues"
},
"homepage": "https://github.com/gagocarrilloedgar/data-science-js#readme",
"devDependencies": {
"eslint": "^7.32.0",
"data-science-js": "^0.0.4",
"eslint-config-standard": "^16.0.3",
"eslint-plugin-import": "^2.24.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^5.1.0",
"jest": "^27.0.6",
"nodemon": "^2.0.12"
},
"dependencies": {
"mathjs": "^9.4.4",
"ml-confusion-matrix": "^0.4.0"
}
}