-
Notifications
You must be signed in to change notification settings - Fork 22
/
package.json
50 lines (50 loc) · 1.19 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
{
"name": "ml-knn",
"version": "3.0.0",
"description": "k-nearest neighbors algorithm",
"main": "lib/index.js",
"module": "src/index.js",
"files": [
"lib",
"src"
],
"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": "git+https://github.com/mljs/knn.git"
},
"keywords": [
"nearest",
"neighboor",
"classifier",
"machine",
"learning"
],
"author": "Jefferson Hernandez",
"license": "MIT",
"bugs": {
"url": "https://github.com/mljs/knn/issues"
},
"homepage": "https://github.com/mljs/knn#readme",
"devDependencies": {
"@babel/plugin-transform-modules-commonjs": "^7.16.8",
"eslint": "^8.10.0",
"eslint-config-cheminfo": "^7.2.2",
"jest": "^27.5.1",
"ml-dataset-iris": "^1.2.1",
"prettier": "^2.5.1",
"rollup": "^2.69.1"
},
"dependencies": {
"ml-distance-euclidean": "^2.0.0"
}
}