-
Notifications
You must be signed in to change notification settings - Fork 49
/
package.json
45 lines (45 loc) · 1.25 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
{
"name": "videojs-landscape-fullscreen",
"author": "Prateek Rastogi",
"version": "12.3.0",
"license": "MIT",
"description": "Videojs on Mobile and/or React: Automatically Switch to Landscape on Fullscreen, and Fullscreen on Landscape",
"main": "src/plugin.js",
"repository": "https://github.com/prateekrastogi/videojs-landscape-fullscreen",
"scripts": {
"prebuild": "rimraf dist && mkdirp dist",
"build": "rollup -c rollup.config.js && rimraf test dist/*.cjs.js dist/*.es.js dist/videojs-landscape-fullscreen.js",
"lint": "vjsstandard --fix"
},
"husky": {
"hooks": {
"pre-commit": "npm run lint"
}
},
"keywords": [
"videojs",
"videojs-mobile",
"videojs-plugin",
"react"
],
"vjsstandard": {
"ignore": [
"dist"
]
},
"peerDependencies": {
"video.js": "5.x || 6.x || 7.x || 8.x"
},
"dependencies": {
"global": "^4.4.0"
},
"devDependencies": {
"acorn": "^8.4.1",
"husky": "^4.2.5",
"mkdirp": "^1.0.4",
"rimraf": "^3.0.2",
"rollup": "^2.26.3",
"videojs-generate-rollup-config": "^5.0.2",
"videojs-standard": "^8.0.4"
}
}