-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
44 lines (44 loc) · 1.41 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-youtube-lazy",
"version": "1.2.0",
"private": false,
"dependencies": {
"react": "^16.4.0",
"react-dom": "^16.4.0",
"react-scripts": "1.1.4"
},
"devDependencies": {
"@types/react": "^16.7.17",
"@types/react-dom": "^16.0.11",
"typescript": "^3.2.2"
},
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test --env=jsdom",
"eject": "react-scripts eject"
},
"types": "src/ReactYoutube.d.ts",
"description": "After seeing many similar packages none of the had exactly what was needed for my development. Most didn't have a lazyload features, and tryin to implement broke the component, and other simply plugged the videoID you provided into youtube embed iframe. So I setout to create a customizable youtube loader that has lazyload built it and is extremely customizable.",
"main": "dist/react-youtube-lazy.jsx",
"repository": {
"type": "git",
"url": "git+https://github.com/VladyslavKochetkov/React-Youtube.git"
},
"keywords": [
"React",
"Youtube",
"Lazy",
"Lazyload",
"Load",
"ReactJS",
"TypeScript",
"TS",
],
"author": "Vladyslav Kochetkov <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/VladyslavKochetkov/React-Youtube/issues"
},
"homepage": "https://github.com/VladyslavKochetkov/React-Youtube#readme"
}