-
-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathpackage.json
53 lines (53 loc) · 1.36 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
53
{
"name": "react-livestream",
"version": "2.0.0",
"author": "Ryan Harris <harrisryan1@gmail.com> (https://ryanharris.dev)",
"description": "Automatically embed your livestream in your React app whenever you go live!",
"source": "src/index.js",
"main": "dist/index.js",
"module": "dist/index.es.js",
"umd:main": "dist/index.umd.js",
"files": [
"dist",
"src",
".eslintrc",
".eslintignore",
".prettierrc"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/ryancharris/react-livestream"
},
"keywords": [
"react",
"javascript",
"twitch",
"mixer",
"youtube"
],
"scripts": {
"build": "microbundle --external react,react-dom,styled-components --globals styled-components=styled --jsx React.createElement",
"dev": "yarn build watch",
"lint": "eslint --config .eslintrc --ext .js,.jsx src/"
},
"dependencies": {
"styled-components": "^5.0.1"
},
"devDependencies": {
"babel-eslint": "^10.1.0",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.10.1",
"eslint-plugin-prettier": "^3.1.2",
"eslint-plugin-react": "^7.19.0",
"microbundle": "^0.12.0-next.8",
"prettier": "^2.0.2",
"prop-types": "^15.7.2",
"react": "^16.13.1",
"react-dom": "^16.13.1"
},
"peerDependencies": {
"react": "^16.13.1",
"react-dom": "^16.13.1"
}
}