-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 905 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
38
39
40
41
42
43
{
"name": "@ridwan-p/kmeans",
"version": "1.0.4",
"description": "kmeans",
"homepage": "https://github.com/ridwan-p/kmeans#readme.md",
"main": "dist/kmeans.js",
"author": "ridwan pamungkas <ridwan.pamungks@gmail.com> (https://ridwanpa.com/)",
"license": "MIT",
"types": "kmeans.d.ts",
"keywords": [
"kmeans",
"k-means",
"datamining",
"clustering",
"data",
"mining",
"machine",
"learning",
"cluster",
"algorithm",
"data science"
],
"repository": {
"type": "git",
"url": "https://github.com/ridwan-p/kmeans"
},
"scripts": {
"build": "rollup -c",
"test": "jest",
"pretest": "npm run build"
},
"devDependencies": {
"@babel/core": "^7.18.5",
"@babel/preset-env": "^7.18.2",
"@rollup/plugin-babel": "^5.3.1",
"jest": "^28.1.1",
"rollup": "^2.75.7"
},
"files": [
"*.d.ts",
"dist"
]
}