-
Notifications
You must be signed in to change notification settings - Fork 47
/
package.json
42 lines (42 loc) · 1.13 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
{
"name": "mmm-face-reco-dnn",
"version": "2.0.2",
"description": "Face Recognition with Open CV and Deep Neural Network",
"main": "MMM-Face-Reco-DNN.js",
"repository": {
"type": "git",
"url": "git+https://github.com/nischi/MMM-Face-Reco-DNN.git"
},
"keywords": [
"magic",
"mirror",
"face",
"recognition",
"deep",
"neural",
"network"
],
"author": "Thierry Nischelwitzer",
"license": "MIT",
"bugs": {
"url": "https://github.com/nischi/MMM-Face-Reco-DNN/issues"
},
"homepage": "https://github.com/nischi/MMM-Face-Reco-DNN#readme",
"scripts": {
"lint": "eslint .",
"prettier": "prettier --write **/*.js",
"encode": "python tools/encode.py -i dataset -e model/encodings.pickle",
"recognition": "python tools/recognition.py -e model/encodings.pickle -c model/haarcascade_frontalface_default.xml"
},
"dependencies": {
"python-shell": "5.0.0",
"signal-exit": "3.0.1"
},
"devDependencies": {
"eslint": "8.46.0",
"eslint-config-prettier": "9.0.0",
"eslint-plugin-import": "2.28.0",
"eslint-plugin-prettier": "5.0.0",
"prettier": "3.0.1"
}
}