-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
37 lines (37 loc) · 1023 Bytes
/
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
{
"name": "k-means-clustering",
"version": "1.0.0",
"description": "K Means clustering implementation for school.",
"main": "main.js",
"scripts": {
"watch": "npx webpack --watch",
"build": "npx webpack",
"start": "npm run build && npx webpack-dev-server"
},
"repository": {
"type": "git",
"url": "git+https://github.com/chrisbmoore/k-means-clustering.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/chrisbmoore/k-means-clustering/issues"
},
"homepage": "https://github.com/chrisbmoore/k-means-clustering#readme",
"devDependencies": {
"@types/mathjs": "^6.0.2",
"@types/plotly.js": "^1.44.10",
"clean-webpack-plugin": "^3.0.0",
"html-webpack-plugin": "^3.2.0",
"ts-loader": "^6.1.0",
"typescript": "^3.6.3",
"webpack": "^4.40.2",
"webpack-cli": "^3.3.8",
"webpack-dev-server": "^3.8.0"
},
"dependencies": {
"mathjs": "^6.2.1",
"ml-distance-euclidean": "^2.0.0",
"plotly.js": "^1.49.4"
}
}