-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
54 lines (54 loc) · 1.36 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
50
51
52
53
54
{
"name": "node-red-contrib-face-recognition",
"version": "2.0.4",
"description": "A wrapper node for the epic face-api.js library",
"author": "thebigpotatoe",
"license": "MIT",
"keywords": [
"node-red",
"face-api.js",
"facial recognition",
"easy",
"fast",
"multiple faces",
"recognition",
"detection"
],
"repository": {
"type": "git",
"url": "git+https://github.com/thebigpotatoe/node-red-contrib-face-recognition.git"
},
"bugs": {
"url": "https://github.com/thebigpotatoe/node-red-contrib-face-recognition/issues"
},
"homepage": "https://github.com/thebigpotatoe/node-red-contrib-face-recognition#readme",
"dependencies": {
"canvas": "^2.7.0",
"chebyshev": "0.2.1",
"euclidean": "0.0.0",
"face-api.js": "^0.21.0",
"formidable": "^1.2.1",
"manhattan": "1.0.0"
},
"devDependencies": {
"nodemon": "^2.0.7",
"node-red": "^1.3.3"
},
"peerDependencies": {
"@tensorflow/tfjs-node": "1.2.11"
},
"files": [
"app/**",
"face-api.html",
"face-api.js"
],
"main": "app/face-api.js",
"scripts": {
"test": "node tests/test.js"
},
"node-red": {
"nodes": {
"face-api": "face-api.js"
}
}
}