-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
60 lines (60 loc) · 1.45 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
{
"name": "kmpp",
"version": "0.1.2",
"description": "k-means with k-means++-initialization",
"main": "lib/index.js",
"scripts": {
"test": "node test",
"start": "budo --open --live --host localhost example/index.js",
"build": "browserify -g es2040 example/index.js | uglifyjs -cm | indexhtmlify | html-inject-github-corner > docs/index.html",
"lint": "semistandard",
"lint-fix": "semistandard --fix"
},
"repository": {
"type": "git",
"url": "git://github.com/cmtt/kmpp.git"
},
"keywords": [
"k-means",
"k-means++",
"clustering",
"data",
"partition",
"algorithm",
"kmeans",
"browser"
],
"author": "Matthias Thoemmes <thoemmes@gmail.com>",
"contributors": [
{
"name": "Matthias Thoemmes",
"email": "thoemmes@gmail.com"
},
{
"name": "Ricky Reusser",
"email": "rsreusser@gmail.com"
}
],
"license": "MIT",
"bugs": {
"url": "https://github.com/cmtt/kmpp/issues"
},
"homepage": "https://github.com/cmtt/kmpp",
"devDependencies": {
"assert": "^2.0.0",
"budo": "^11.6.3",
"control-panel": "^1.3.4",
"create-html": "^4.1.0",
"es2040": "^1.2.6",
"fail-nicely": "^2.0.0",
"float-hsl2rgb": "^1.0.2",
"h": "^1.0.0",
"html-inject-github-corner": "^2.1.4",
"indexhtmlify": "^2.0.0",
"insert-css": "^2.0.0",
"regl": "^1.3.13",
"semistandard": "^14.2.0",
"tape": "^4.11.0",
"uglify-js": "^3.6.5"
}
}