forked from houtanf/Unsupervised-KNN-JS
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.34 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
{
"name": "unsupervised-knn-js",
"version": "2.1.3",
"description": "Algorithm for fetching the k nearest neighbors of an input vector through distance calculations.",
"main": "lib/knn.js",
"scripts": {
"test": "jest",
"install": "node-pre-gyp install --fallback-to-build=false || neon build --release",
"package": "node-pre-gyp package",
"upload-binary": "node-pre-gyp package && node-pre-gyp-github publish"
},
"repository": {
"type": "git",
"url": "git+https://github.com/houtanf/Unsupervised-KNN-JS.git"
},
"files": [
"native/index.node",
"lib"
],
"binary": {
"module_name": "index",
"host": "https://github.com/houtanf/Unsupervised-KNN-JS/releases/download/",
"remote_path": "{version}",
"package_name": "{node_abi}-{platform}-{arch}.tar.gz",
"module_path": "./native",
"pkg_path": "."
},
"keywords": [
"Unsupervised",
"K-NearestNeighbors",
"KNN",
"Distance",
"Similarity"
],
"author": "houtanf",
"license": "MIT",
"dependencies": {
"neon-cli": "^0.3.1",
"node-pre-gyp": "github:amilajack/node-pre-gyp",
"node-pre-gyp-github": "^1.4.3"
},
"devDependencies": {
"jest": "^24.9.0"
},
"bugs": {
"url": "https://github.com/houtanf/Unsupervised-KNN/issues"
},
"homepage": "https://github.com/houtanf/Unsupervised-KNN#readme"
}