forked from chuckfairy/node-webcam
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 1.03 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
{
"name": "node-webcam",
"version": "0.8.2",
"description": "Cross platform webcam capture",
"main": "index.js",
"scripts": {
"test": "node_modules/.bin/mocha test",
"postinstall": "node ./bin/postinstall.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/chuckfairy/node-webcam.git"
},
"keywords": [
"webcam",
"nodejs",
"node",
"capture",
"cli",
"camera",
"webcamera"
],
"author": {
"name": "chuckfairy",
"email": "charlieabeling@gmail.com",
"url": "chuckfairy.com"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/chuckfairy/node-webcam/issues"
},
"bin": {
"node-webcam": "bin/node-webcam.js"
},
"homepage": "https://github.com/chuckfairy/node-webcam#readme",
"dependencies": {
"nopt": "*"
},
"devDependencies": {
"async": "*",
"chai": "*",
"mocha": "^6.1.4",
"ws": "*"
}
}