forked from mljs/decision-tree-cart
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
56 lines (56 loc) · 1.3 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": "1.0.8",
"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": "run-s test-coverage 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-es2015-modules-commonjs": "^6.26.0",
"eslint": "^4.19.1",
"eslint-config-cheminfo": "^1.17.3",
"eslint-plugin-import": "^2.11.0",
"eslint-plugin-jest": "^21.15.1",
"jest": "^22.4.3",
"ml-dataset-iris": "^1.0.0",
"npm-run-all": "^4.1.3",
"rollup": "^0.58.2"
},
"dependencies": {
"ml-array-mean": "^1.0.1",
"ml-matrix": "^5.1.1"
}
}