forked from bellbind/node-v4l2camera
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.25 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
{
"name": "v4l2camera",
"version": "1.0.4",
"description": "Capturing images from USB(UVC) webcam on linux machines",
"keywords": [
"linux",
"camera",
"native",
"v4l2",
"video4linux2"
],
"homepage": "https://github.com/bellbind/node-v4l2camera",
"bugs": {
"url": "https://github.com/bellbind/node-v4l2camera/issues"
},
"license": "(MIT OR LGPL-3.0)",
"author": "bellbind <[email protected]> (http://bellbind.tumblr.com)",
"main": "./index.js",
"directories": {
"example": "./examples"
},
"repository": {
"type": "git",
"url": "http://github.com/bellbind/node-v4l2camera.git"
},
"devDependencies": {
"pngjs": "*",
"jpeg-js": "*"
},
"engines": {
"node": ">=4.0.0"
},
"scripts": {
"test": "node test.js",
"make-c-examples": "make -f c-examples.makefile"
},
"os": [
"linux"
],
"dependencies": {
"nan": ">=2.3.0"
},
"contributors": [
"Tim Cameron Ryan <[email protected]> (https://github.com/tcr)",
"vird <[email protected]> (https://github.com/vird)",
"Lennart Kolmodin <[email protected]> (https://github.com/kolmodin)"
]
}