-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
34 lines (34 loc) · 871 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
{
"name": "@jbeuckm/k-means-js",
"version": "0.5.0",
"author": "Joseph Beuckmnan <[email protected]>",
"description": "A basic Javascript implementation of the cluster analysis algorithm.",
"main": "./dist/main.js",
"scripts": {
"test": "jest",
"build": "webpack --mode production"
},
"jest": {
"testURL": "http://localhost/"
},
"repository": {
"type": "git",
"url": "https://github.com/jbeuckm/K-Means.git"
},
"keywords": [
"machine learning",
"cluster analysis",
"k-means"
],
"devDependencies": {
"@babel/core": "^7.2.0",
"@babel/plugin-transform-modules-commonjs": "^7.2.0",
"@babel/preset-env": "^7.2.0",
"babel-core": "^7.0.0-bridge.0",
"babel-jest": "^23.6.0",
"babel-loader": "^8.0.4",
"jest": "^21.3.0-beta.15",
"webpack": "^4.27.1",
"webpack-cli": "^3.1.2"
}
}