forked from justadudewhohacks/face-recognition.js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
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": "face-recognition",
"version": "0.6.0",
"description": "Simple Node.js API for robust face detection and face recognition.",
"keywords": [
"face",
"detection",
"recognition"
],
"author": "justadudewhohacks",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/justadudewhohacks/face-recognition.js"
},
"bugs": {
"url": "https://github.com/justadudewhohacks/face-recognition.js/issues"
},
"homepage": "https://github.com/justadudewhohacks/face-recognition.js#readme",
"main": "./lib/index.js",
"typings": "./lib/index.d.ts",
"scripts": {
"test": "mocha --timeout 30000 --recursive ./tests",
"install": "node-gyp rebuild",
"configure": "node-gyp configure",
"build": "node-gyp configure build",
"rebuild": "node-gyp rebuild",
"clean": "node-gyp clean",
"build-debug": "node-gyp rebuild --debug"
},
"gypfile": true,
"dependencies": {
"dlib-build": "0.0.6",
"face-recognition-models": "0.0.0",
"nan": "^2.7.0",
"native-node-utils": "0.0.0"
},
"devDependencies": {
"chai": "^4.1.2",
"mocha": "^4.1.0"
}
}