forked from mozmorris/react-webcam
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1.13 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
{
"name": "react-webcam",
"version": "0.1.0",
"description": "React webcam component",
"main": "dist/react-webcam.js",
"scripts": {
"prepublish": "npm run build:umd",
"build": "webpack src/react-webcam.js dist/react-webcam.js",
"build:umd": "npm run build && NODE_ENV=production webpack src/react-webcam.js dist/react-webcam.min.js",
"lint": "eslint src"
},
"repository": {
"type": "git",
"url": "https://github.com/mozmorris/react-webcam.git"
},
"keywords": [
"react",
"react-component",
"webcam"
],
"author": "Moz Morris <mozmorris@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/mozmorris/react-webcam/issues"
},
"homepage": "https://github.com/mozmorris/react-webcam",
"peerDependencies": {
"react": ">=0.14.0",
"react-dom": ">=0.14.0"
},
"devDependencies": {
"babel": "^5.6.7",
"babel-core": "^5.6.18",
"babel-eslint": "^3.1.15",
"babel-loader": "^5.1.4",
"eslint": "^0.23",
"eslint-config-airbnb": "0.0.6",
"eslint-plugin-react": "^2.3.0",
"webpack": "^1.9.6"
},
"dependencies": {
"prop-types": "^15.5.8"
}
}