forked from axiomzen/Look-Alike
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1.06 KB
/
Copy pathpackage.json
File metadata and controls
40 lines (40 loc) · 1.06 KB
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": "look-alike",
"version": "1.0.1",
"description": "A simple-yet-powerful KD-tree library for NodeJS, with support for lightning-fast k-Nearest Neighbour queries. Supports normalization, weights, key and filter parameters",
"main": "lib/kdtree.js",
"scripts": {
"test": "./node_modules/.bin/mocha --compilers coffee:coffee-script --reporter spec",
"prepublish": "./node_modules/.bin/coffee --compile --output lib coffee"
},
"repository": {
"type": "git",
"url": "https://github.com/axiomzen/Look-Alike"
},
"keywords": [
"knn",
"kd-tree",
"tree",
"kdtree",
"Machine",
"Learning",
"Recommender",
"Systems",
"Nearest",
"Neighbor",
"recommendation",
"similarity"
],
"author": "mck- <kuomarc2@gmail.com>",
"license": "LGPL",
"devDependencies": {
"coffee-script": "~1.6.3",
"mocha": "~1.12.0",
"chai": "~1.7.2"
},
"dependencies": {
"heap": "~0.2.1"
},
"homepage": "https://github.com/axiomzen/Look-Alike",
"bugs": "https://github.com/axiomzen/Look-Alike/issues"
}