-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
71 lines (71 loc) · 1.87 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
62
63
64
65
66
67
68
69
70
71
{
"name": "ml-distance",
"version": "4.0.1",
"description": "Distance and similarity functions to compare vectors",
"main": "lib/index.js",
"module": "./lib-esm/index.js",
"files": [
"src",
"lib",
"lib-esm"
],
"types": "./lib/index.d.ts",
"scripts": {
"check-types": "tsc --noEmit",
"clean": "rimraf lib lib-esm",
"eslint": "eslint src",
"eslint-fix": "npm run eslint -- --fix",
"prepack": "npm run tsc",
"prettier": "prettier --check src",
"prettier-write": "prettier --write src",
"test": "npm run test-coverage && npm run eslint && npm run prettier && npm run check-types",
"test-only": "vitest run",
"test-coverage": "vitest run --coverage",
"tsc": "npm run clean && npm run tsc-cjs && npm run tsc-esm",
"tsc-cjs": "tsc --project tsconfig.cjs.json",
"tsc-esm": "tsc --project tsconfig.esm.json"
},
"repository": {
"type": "git",
"url": "https://github.com/mljs/distance.git"
},
"keywords": [
"distance",
"similarity",
"metric",
"vector",
"data",
"mining",
"datamining",
"machine",
"learning"
],
"author": "Michaël Zasso",
"contributors": [
"Miguel Asencio"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/mljs/distance/issues"
},
"homepage": "https://github.com/mljs/distance",
"devDependencies": {
"@babel/plugin-transform-modules-commonjs": "^7.25.7",
"@babel/preset-typescript": "^7.25.7",
"@types/node": "^22.7.6",
"@vitest/coverage-v8": "^2.1.3",
"cheminfo-types": "^1.8.0",
"eslint": "^9.12.0",
"eslint-config-cheminfo-typescript": "^16.0.0",
"esm": "^3.2.25",
"prettier": "^3.3.3",
"rimraf": "^6.0.1",
"typescript": "^5.6.3",
"vitest": "^2.1.3"
},
"dependencies": {
"ml-array-mean": "^1.1.6",
"ml-distance-euclidean": "^2.0.0",
"ml-tree-similarity": "^1.0.0"
}
}