-
Notifications
You must be signed in to change notification settings - Fork 22
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.53 KB
/
package.json
File metadata and controls
62 lines (62 loc) · 1.53 KB
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
62
{
"name": "ml-random-forest",
"version": "2.1.0",
"description": "Random forest for classification and regression",
"main": "random-forest.js",
"module": "src/index.js",
"files": [
"src",
"random-forest.js",
"types"
],
"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/random-forest.git"
},
"keywords": [
"random",
"forest",
"ensemble",
"machine",
"learning",
"data",
"mining",
"datamining"
],
"author": "Jefferson Hernandez",
"license": "MIT",
"types": "types/types.d.ts",
"bugs": {
"url": "https://github.com/mljs/random-forest/issues"
},
"homepage": "https://github.com/mljs/random-forest#readme",
"devDependencies": {
"@babel/plugin-transform-modules-commonjs": "^7.16.8",
"benchmark": "^2.1.4",
"eslint": "^8.10.0",
"eslint-config-cheminfo": "^7.2.2",
"jest": "^27.5.1",
"ml-dataset-iris": "^1.2.1",
"npm-run-all": "^4.1.5",
"prettier": "^2.5.1",
"rollup": "^2.68.0"
},
"dependencies": {
"ml-array-mean": "^1.1.6",
"ml-array-median": "^1.1.6",
"ml-array-mode": "^1.1.5",
"ml-cart": "^2.1.1",
"ml-matrix": "^6.9.0",
"random-js": "^2.1.0"
}
}