forked from justadudewhohacks/opencv4nodejs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 1.23 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
{
"name": "opencv4nodejs",
"version": "5.6.0",
"description": "Asynchronous OpenCV 3.x nodejs bindings with JavaScript and TypeScript API.",
"keywords": [
"opencv",
"cv",
"computer vision",
"face",
"detection",
"recognition",
"machine",
"learning",
"neural",
"network",
"async",
"typescript"
],
"author": "justadudewhohacks",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/justadudewhohacks/opencv4nodejs"
},
"bugs": {
"url": "https://github.com/justadudewhohacks/opencv4nodejs/issues"
},
"homepage": "https://github.com/justadudewhohacks/opencv4nodejs#readme",
"main": "./lib/opencv4nodejs.js",
"typings": "./lib/index.d.ts",
"scripts": {
"install": "node ./install/install.js",
"configure": "node-gyp configure",
"build": "node-gyp configure build --jobs max",
"rebuild": "node-gyp rebuild --jobs max",
"clean": "node-gyp clean",
"build-debug": "BINDINGS_DEBUG=true node ./install/install.js"
},
"gypfile": true,
"dependencies": {
"nan": "^2.14.0",
"native-node-utils": "^0.2.7",
"npmlog": "^4.1.2",
"opencv-build": "^0.1.9"
},
"optionalDependencies": {
"@types/node": ">6"
}
}