forked from mljs/decision-tree-cart
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
61 lines (61 loc) · 1.36 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
57
58
59
60
61
{
"name": "ml-cart",
"version": "2.1.0",
"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",
"prepublishOnly": "npm run compile",
"test": "npm run test-coverage && npm run eslint",
"test-only": "jest",
"test-coverage": "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.12.1",
"eslint": "^7.11.0",
"eslint-config-cheminfo": "^5.2.2",
"jest": "^26.5.3",
"ml-dataset-iris": "^1.1.1",
"prettier": "^2.1.2",
"rollup": "^2.32.0"
},
"dependencies": {
"ml-array-mean": "^1.1.4",
"ml-matrix": "^6.5.3"
},
"prettier": {
"arrowParens": "always",
"semi": true,
"singleQuote": true,
"tabWidth": 2,
"trailingComma": "all"
}
}