-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
99 lines (99 loc) · 2.85 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
{
"name": "media-stream-transmuxer",
"version": "1.0.0",
"description": "",
"main": "cjs/index.js",
"module": "dist/media-stream-transmuxer.es.js",
"browser": "dist/media-stream-transmuxer.js",
"scripts": {
"build": "npm-run-all -s clean -p build:*",
"build-prod": "cross-env-shell NO_TEST_BUNDLE=1 'npm run build'",
"build-test": "cross-env-shell TEST_BUNDLE_ONLY=1 'npm run build'",
"build:js": "rollup -c scripts/rollup.config.js",
"build:cjs": "babel-config-cjs -d ./cjs ./src",
"build:es": "babel-config-es -d ./es ./src",
"clean": "shx rm -rf ./dist ./test/dist ./es ./cjs && shx mkdir -p ./dist ./test/dist ./es ./cjs",
"docs": "npm-run-all docs:*",
"docs:api": "jsdoc src -g plugins/markdown -r -d docs/api",
"docs:toc": "doctoc --notitle README.md",
"lint": "vjsstandard",
"server": "karma start scripts/karma.conf.js --singleRun=false --auto-watch",
"start": "npm-run-all -p server watch",
"test": "npm-run-all lint build-test && karma start scripts/karma.conf.js",
"posttest": "shx cat test/dist/coverage/text.txt",
"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",
"watch:cjs": "npm run build:cjs -- -w",
"watch:es": "npm run build:es -- -w",
"prepublishOnly": "npm-run-all build-prod && vjsverify --verbose",
"install": "patch-package"
},
"author": "brandonocasey <[email protected]>",
"license": "Apache-2.0",
"generator-videojs-plugin": {
"version": "7.7.3"
},
"browserslist": [
"defaults",
"ie 11"
],
"engines": {
"node": ">=8",
"npm": ">=5"
},
"vjsstandard": {
"ignore": [
"dist",
"es",
"cjs",
"docs",
"test/dist",
"src/*.worker.js"
]
},
"files": [
"CONTRIBUTING.md",
"dist/",
"docs/",
"index.html",
"scripts/",
"src/",
"test/",
"cjs/",
"es/"
],
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.js": "vjsstandard --fix",
"README.md": "doctoc --notitle"
},
"dependencies": {
"@videojs/vhs-utils": "^3.0.0",
"binary-parser": "^1.7.0",
"byte-data": "^19.0.1",
"global": "^4.4.0",
"punycode": "^2.1.1"
},
"devDependencies": {
"@babel/cli": "^7.12.10",
"@babel/runtime": "^7.12.5",
"@videojs/babel-config": "^0.1.0",
"@videojs/generator-helpers": "~2.0.1",
"jsdoc": "3.6.11",
"karma": "^6.0.0",
"patch-package": "^6.4.6",
"rollup": "^2.36.1",
"sinon": "^9.2.3",
"videojs-generate-karma-config": "~7.0.0",
"videojs-generate-rollup-config": "~6.1.0",
"videojs-generator-verify": "~3.0.1",
"videojs-standard": "^8.0.4"
}
}