forked from mozmorris/react-webcam
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
52 lines (52 loc) · 1.46 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
50
51
52
{
"name": "react-webcam",
"version": "1.0.1",
"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 <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/mozmorris/react-webcam/issues"
},
"homepage": "https://github.com/mozmorris/react-webcam",
"peerDependencies": {
"react": ">=15.3.0",
"react-dom": ">=15.3.0"
},
"devDependencies": {
"babel-core": "^6.25.0",
"babel-eslint": "^7.2.3",
"babel-loader": "^7.1.1",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-react-jsx": "^6.24.1",
"babel-preset-env": "^1.6.0",
"babel-preset-react": "^6.24.1",
"eslint": "^3.19.0",
"eslint-config-airbnb": "^15.0.2",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-jsx-a11y": "^5.1.1",
"eslint-plugin-react": "^7.1.0",
"react": "^16.3.1",
"react-dom": "^16.3.1",
"webpack": "^2.5.1"
},
"dependencies": {
"prop-types": "^15.5.8"
}
}