-
-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
44 lines (44 loc) · 952 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
36
37
38
39
40
41
42
43
44
{
"name": "opencv-facecrop",
"version": "0.0.5",
"description": "Npm package to autodetect and crop faces using opencv",
"main": "index.js",
"scripts": {
"test": "jest --silent --coverage"
},
"jest": {
"verbose": true,
"collectCoverageFrom": [
"<rootDir>/*.js"
],
"testTimeout": 300000
},
"repository": {
"type": "git",
"url": "git+https://github.com/arghyadeep-k/opencv-facecrop.git"
},
"keywords": [
"image",
"image processing",
"face",
"crop",
"opencv",
"npm",
"unlicense"
],
"author": "Arghyadeep",
"license": "Unlicense",
"bugs": {
"url": "https://github.com/arghyadeep-k/opencv-facecrop/issues"
},
"homepage": "https://github.com/arghyadeep-k/opencv-facecrop#readme",
"dependencies": {
"canvas": "^2.11.2",
"fs": "0.0.1-security",
"jsdom": "^16.6.0",
"opencv4js": "0.0.1"
},
"devDependencies": {
"jest": "^26.4.2"
}
}