-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 779 Bytes
/
package.json
File metadata and controls
32 lines (32 loc) · 779 Bytes
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
{
"name": "@erceth/pedestrian-detection",
"version": "1.2.0",
"description": "pedestrian detection using node.js",
"main": "pedestrian-detect.js",
"scripts": {
"test": "node test1.js",
"test2": "node test2.js"
},
"keywords": [
"pedestrian detection",
"openCV",
"opencv4nodejs"
],
"author": "Eric Ethington",
"license": "ISC",
"dependencies": {
"@erceth/non-maximum-suppression": "^1.0.1",
"opencv4nodejs": "^5.5.0"
},
"opencv4nodejs": {
"autoBuildFlags": "-DBUILD_LIST=core,highgui,imgcodecs,objdetect,video,videoio",
"autoBuildOpencvVersion": "4.3.0"
},
"devDependencies": {
"request": "^2.88.2"
},
"repository": {
"type": "git",
"url": "https://github.com/erceth/pedestrian-detection.git"
}
}