forked from peterbraden/node-opencv
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
executable file
·43 lines (43 loc) · 1.09 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
{
"name": "opencv",
"description": "Node Bindings to OpenCV",
"author": "Peter Braden <[email protected]>",
"dependencies": {
"node-pre-gyp": "0.5.31",
"buffers": "0.1.1",
"nan": "^1.3.0"
},
"version": "1.0.0",
"devDependencies": {
"tape": "^3.0.0",
"aws-sdk": "~2.0.21"
},
"bundledDependencies":["node-pre-gyp"],
"license": "MIT",
"scripts": {
"build": "node-gyp build",
"test": "node test/unit.js",
"install": "node-pre-gyp install --fallback-to-build"
},
"keywords": [
"opencv",
"computer",
"vision",
"quadrocopter"
],
"main": "./lib/opencv",
"repository": {
"type": "git",
"url": "https://github.com/peterbraden/node-opencv.git"
},
"engines": {
"node": ">=0.10"
},
"binary": {
"module_name" : "opencv",
"module_path" : "./build/{module_name}/v{version}/{configuration}/{node_abi}-{platform}-{arch}/",
"remote_path" : "./{module_name}/v{version}/{configuration}/",
"package_name": "{node_abi}-{platform}-{arch}.tar.gz",
"host" : "https://node-opencv.s3.amazonaws.com"
}
}