-
Notifications
You must be signed in to change notification settings - Fork 21
/
package.json
40 lines (40 loc) · 1.01 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
{
"name": "alike",
"version": "1.3.0",
"description": "A simple kNN library for Machine Learning, comparing JSON objects using Euclidean distances, returning top k similar objects -- supports normalization, weights, key and filter parameters",
"main": "lib/main.js",
"devDependencies": {
"mocha": "1.8.1",
"should": "1.2.1",
"coffee-script": "~1.6.3",
"benchmark": "1.0.x",
"node-uuid": "1.4.x",
"cli-table": "~0.2.0"
},
"directories": {
"test": "test"
},
"scripts": {
"test": "mocha test/*.js"
},
"author": "mck- <[email protected]>",
"keywords": [
"knn",
"Machine Learning",
"recommender system",
"euclidean distances",
"similarity",
"object comparison"
],
"readmeFilename": "README.md",
"homepage": "https://github.com/axiomzen/Alike",
"repository": {
"type": "git",
"url": "https://github.com/axiomzen/Alike"
},
"bugs": "https://github.com/axiomzen/Alike/issues",
"license": "LGPL",
"dependencies": {
"stable": "~0.1.3"
}
}