-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathpackage.json
More file actions
75 lines (75 loc) · 1.99 KB
/
package.json
File metadata and controls
75 lines (75 loc) · 1.99 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
63
64
65
66
67
68
69
70
71
72
73
74
75
{
"name": "libsvm-js",
"version": "0.2.1",
"description": "A port of libsvm to javascript using emscripten",
"type": "module",
"module": "wasm.js",
"files": [
"src",
"build",
"wasm.js",
"LICENSE"
],
"scripts": {
"benchmark": "node benchmark/bin",
"build": "run-s build-emscripten-wasm build-emscripten-clean",
"build-benchmark": "(cd benchmark/iris; make clean && make)",
"build-emscripten-clean": "make clean",
"build-emscripten-wasm": "rm -rf build && make wasm",
"demo-build": "vite build demos",
"docs": "jsdoc2md src/loadSVM.js -t .docs/Readme.hbs --no-cache > README.md",
"prepare": "git submodule init && git submodule update",
"dev": "vite demos",
"test": "npm run test-mocha",
"test-mocha": "mocha --require should --recursive test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mljs/libsvm.git"
},
"keywords": [
"svm",
"libsvm",
"machine",
"learning",
"support",
"vector",
"machines"
],
"author": "Daniel Kostro <kostro.d@gmail.com>",
"license": "BSD-3-Clause",
"bugs": {
"url": "https://github.com/mljs/libsvm/issues"
},
"homepage": "https://github.com/mljs/libsvm#readme",
"devDependencies": {
"@types/react": "^18.3.23",
"@types/react-dom": "^18.3.7",
"@vitejs/plugin-react-refresh": "^1.3.6",
"bootstrap": "^5.3.7",
"chroma-js": "^3.1.2",
"cli-table": "^0.3.1",
"jsdoc-to-markdown": "^9.1.1",
"lodash-es": "^4.17.4",
"lodash.range": "^3.2.0",
"ml-dataset-iris": "^1.0.0",
"ml-kernel": "^3.0.0",
"ml-svm": "^2.1.2",
"mocha": "^11.7.1",
"npm-run-all": "^4.1.2",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-icons": "^5.5.0",
"react-hook-form": "^7.29.0",
"react-redux": "^9.2.0",
"react-router": "^7.6.3",
"react-router-dom": "^7.6.3",
"redux": "^5.0.1",
"redux-undo": "^1.0.0",
"should": "^13.2.3",
"vite": "^7.0.4"
},
"volta": {
"node": "24.4.0"
}
}