-
Notifications
You must be signed in to change notification settings - Fork 20
/
package.json
56 lines (56 loc) · 1.32 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
46
47
48
49
50
51
52
53
54
55
56
{
"name": "ml-cart",
"version": "2.1.1",
"description": "CART decision tree algorithm",
"main": "cart.js",
"module": "src/index.js",
"files": [
"src",
"cart.js"
],
"scripts": {
"compile": "rollup -c",
"eslint": "eslint src",
"eslint-fix": "npm run eslint -- --fix",
"prepack": "npm run compile",
"prettier": "prettier --check src",
"prettier-write": "prettier --write src",
"test": "npm run test-only && npm run eslint && npm run prettier",
"test-only": "jest --coverage"
},
"repository": {
"type": "git",
"url": "https://github.com/mljs/decision-tree-cart"
},
"keywords": [
"CART",
"decision",
"tree",
"data",
"mining",
"datamining",
"machine",
"learning",
"regression"
],
"author": "Jefferson Hernández",
"license": "MIT",
"bugs": {
"url": "https://github.com/mljs/decision-tree-cart/issues"
},
"homepage": "https://github.com/mljs/decision-tree-cart",
"devDependencies": {
"@babel/plugin-transform-modules-commonjs": "^7.16.8",
"@types/jest": "^27.4.0",
"eslint": "^8.6.0",
"eslint-config-cheminfo": "^7.2.1",
"jest": "^27.4.7",
"ml-dataset-iris": "^1.2.1",
"prettier": "^2.5.1",
"rollup": "^2.63.0"
},
"dependencies": {
"ml-array-mean": "^1.1.5",
"ml-matrix": "^6.8.2"
}
}