-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.55 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.55 KB
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
53
54
{
"name": "react-user-media",
"version": "0.2.1",
"description": "React components for webcam and audio",
"main": "build/react-user-media.js",
"engines": {
"yarn": "^1.3.2"
},
"scripts": {
"dev": "webpack-dev-server --devtool eval --progress --colors --content-base examples --host 0.0.0.0 --history-api-fallback --config webpack.dev.config.babel.js",
"build": "webpack -p --config webpack.config.babel.js",
"lint": "eslint src",
"test": "echo \"Error: no test specified\" && exit 1",
"prepublishOnly": "yarn install && yarn build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jgradim/react-user-media.git"
},
"keywords": [
"react",
"webcam",
"audio",
"usermedia"
],
"author": "João Gradim <joao.gradim@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/jgradim/react-user-media/issues"
},
"homepage": "https://github.com/jgradim/react-user-media#readme",
"peerDependencies": {
"prop-types": "^15.6.0",
"react": "^16.0.0"
},
"devDependencies": {
"babel-core": "^6.26.0",
"babel-eslint": "^8.2.1",
"babel-loader": "^7.1.2",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"babel-runtime": "^6.26.0",
"eslint": "^4.15.0",
"eslint-loader": "^1.9.0",
"eslint-plugin-react": "^7.5.1",
"path": "^0.12.7",
"react": "^16.2.0",
"react-dom": "^16.2.0",
"webpack": "^3.10.0",
"webpack-dev-server": "^2.11.0",
"webpack-notifier": "^1.5.0"
}
}