-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
35 lines (35 loc) · 906 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
{
"name": "@good-i-deer/node-red-contrib-cosine-similarity",
"version": "1.0.1",
"description": "Calculates cosine similarity of two vector values in Node-RED",
"keywords": [
"node-red",
"vector",
"cosine",
"similarity",
"distance"
],
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "https://github.com/GOOD-I-DEER/node-red-contrib-cosine-similarity"
},
"author": "GOOD-I-DDER",
"node-red": {
"nodes": {
"CalculateCosine": "calculate-cosine.js"
}
},
"dependencies": {
"fs": "^0.0.1-security"
},
"private": false,
"bugs": {
"url": "https://github.com/GOOD-I-DEER/node-red-contrib-cosine-similarity/issues"
},
"homepage": "https://github.com/GOOD-I-DEER/node-red-contrib-cosine-similarity#readme",
"main": "calculate-cosine.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
}
}