forked from videojs/videojs-vr
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
110 lines (110 loc) · 2.96 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
{
"name": "videojs-vr",
"version": "2.0.0",
"description": "A plugin to add 360 and VR video support to video.js.",
"author": {
"name": "James Broberg",
"email": "[email protected]"
},
"contributors": [
{
"name": "Sean Lawrence",
"email": "[email protected]"
},
{
"name": "Mitchell Trent",
"email": "[email protected]"
},
{
"name": "Brandon Casey",
"email": "[email protected]"
}
],
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/videojs/videojs-vr"
},
"main": "dist/videojs-vr.cjs.js",
"module": "dist/videojs-vr.es.js",
"generator-videojs-plugin": {
"version": "7.7.3"
},
"scripts": {
"netlify": "npm run build && node scripts/netlify.js",
"build-test": "cross-env-shell TEST_BUNDLE_ONLY=1 'npm run build'",
"build-prod": "cross-env-shell NO_TEST_BUNDLE=1 'npm run build'",
"build": "npm-run-all -s clean -p build:*",
"build:js": "rollup -c scripts/rollup.config.js",
"build:css": "sass --no-source-map src/plugin.scss dist/videojs-vr.css",
"build:lang": "vjslang --dir dist/lang",
"clean": "shx rm -rf ./dist ./test/dist && shx mkdir -p ./dist ./test/dist",
"lint": "vjsstandard",
"prepublishOnly": "npm-run-all build-prod && vjsverify --skip-require --verbose --skip-syntax",
"start": "npm-run-all -p server watch",
"server": "karma start scripts/karma.conf.js --singleRun=false --auto-watch",
"test": "npm run build-test && karma start scripts/karma.conf.js",
"posttest": "shx cat test/dist/coverage/text.txt",
"version": "is-prerelease || npm run update-changelog && git add CHANGELOG.md",
"update-changelog": "conventional-changelog -p videojs -i CHANGELOG.md -s",
"watch": "npm-run-all -p watch:*",
"watch:js": "npm run build:js -- -w",
"watch:css": "npm run build:css -- -w"
},
"keywords": [
"videojs",
"videojs-plugin"
],
"vjsstandard": {
"ignore": [
"dist",
"docs",
"vendor",
"test/dist"
]
},
"files": [
"CONTRIBUTING.md",
"dist/",
"docs/",
"index.html",
"scripts/",
"src/",
"test/"
],
"greenkeeper": {
"ignore": [
"three"
]
},
"dependencies": {
"@babel/runtime": "^7.14.5",
"global": "^4.4.0",
"three": "0.125.2",
"video.js": "^6 || ^7",
"webvr-polyfill": "0.10.12"
},
"devDependencies": {
"@videojs/generator-helpers": "^3.0.1",
"karma": "^6.3.4",
"omnitone": "^1.3.0",
"rollup": "2.42.0",
"rollup-plugin-re": "^1.0.7",
"sass": "^1.34.1",
"sinon": "^7.2.2",
"videojs-generate-karma-config": "~8.0.0",
"videojs-generate-rollup-config": "7.0.0",
"videojs-generator-verify": "~4.0.0",
"videojs-languages": "^2.0.0",
"videojs-standard": "^9.0.0"
},
"lint-staged": {
"*.js": "vjsstandard --fix",
"README.md": "doctoc --notitle"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
}
}