-
Notifications
You must be signed in to change notification settings - Fork 15
/
package.json
113 lines (113 loc) · 2.64 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
111
112
113
{
"name": "videojs-ogvjs",
"description": "A Video.js Tech plugin for Ogv.js",
"author": "Derk-Jan Hartman",
"license": "(MIT OR Apache-2.0)",
"version": "2.0.0",
"keywords": [
"audio",
"ogg",
"ogv",
"ogv.js",
"ogvjs",
"opus",
"techplugin",
"video",
"videojs",
"videojs-plugin",
"vorbis",
"webm"
],
"repository": {
"type": "git",
"url": "https://github.com/hartman/videojs-ogvjs.git"
},
"browserslist": [
"defaults",
"ie 11"
],
"vjsstandard": {
"ignore": [
"es",
"cjs",
"dist",
"docs",
"test/dist"
]
},
"files": [
"CONTRIBUTING.md",
"cjs/",
"dist/",
"docs/",
"es/",
"index.html",
"scripts/",
"src/",
"test/"
],
"scripts": {
"prebuild": "npm run clean",
"build": "npm-run-all -p build:*",
"build:js": "rollup -c scripts/rollup.config.js",
"clean": "shx rm -rf ./dist ./test/dist",
"postclean": "shx mkdir -p ./dist ./test/dist",
"lint": "vjsstandard",
"server": "karma start scripts/karma.conf.js --singleRun=false --auto-watch",
"start": "npm-run-all -p server watch",
"pretest": "npm-run-all lint build",
"test": "npm-run-all test:*",
"posttest": "shx cat test/dist/coverage/text.txt",
"test:unit": "karma start scripts/karma.conf.js",
"test:verify": "vjsverify --verbose",
"update-changelog": "conventional-changelog -p videojs -i CHANGELOG.md -s",
"preversion": "npm test",
"version": "is-prerelease || npm run update-changelog && git add CHANGELOG.md",
"watch": "npm-run-all -p watch:*",
"watch:js": "npm run build:js -- -w",
"prepublishOnly": "npm-run-all build test:verify"
},
"dependencies": {
"@babel/runtime": "^7.14.0",
"global": "^4.4.0",
"ogv": "^1.8.9",
"video.js": "^7.17.0"
},
"devDependencies": {
"@babel/cli": "^7.13.16",
"@videojs/babel-config": "^0.2.0",
"@videojs/generator-helpers": "~2.0.2",
"karma": "^6.3.19",
"rollup": "^2.46.0",
"sinon": "^9.1.0",
"videojs-generate-karma-config": "~8.0.0",
"videojs-generate-rollup-config": "~6.2.0",
"videojs-generator-verify": "~3.0.3",
"videojs-standard": "^8.0.4"
},
"videojs-plugin": {
"script": "dist/videojs-ogvjs.min.js"
},
"config": {
"ghooks": {
"pre-push": "npm run test"
}
},
"generator-videojs-plugin": {
"version": "8.0.0"
},
"engines": {
"node": ">=14",
"npm": ">=6"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"pre-push": "npm run test"
}
},
"lint-staged": {
"*.js": "vjsstandard --fix",
"README.md": "doctoc --notitle"
}
}