forked from Philmod/node-kmeans
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 849 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
{
"name": "node-kmeans",
"version": "1.1.0",
"description": "Node.js asynchronous implementation of the clustering algorithm k-means",
"keywords": [
"k-means",
"clustering"
],
"author": "Philmod <[email protected]>",
"homepage": "http://github.com/philmod/node-kmeans",
"engines": {
"node": ">= v0.6.0"
},
"dependencies": {
"underscore": "1.4.2"
},
"devDependencies": {
"eslint": "^2.10.2",
"eslint-config-airbnb-base": "^3.0.1",
"eslint-plugin-import": "^1.8.0",
"mocha": "",
"should": ""
},
"scripts": {
"test": "make test",
"hint": "eslint '**/*.js'",
"pretest": "npm run hint"
},
"main": "index",
"directories": {
"test": "test"
},
"repository": {
"type": "git",
"url": "git://github.com/Philmod/node-kmeans.git"
},
"license": "BSD"
}