forked from muxinc/media-chrome
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
57 lines (57 loc) · 1.38 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
{
"name": "media-chrome",
"version": "0.1.0",
"description": "Custom elements (web components) for making audio and video player controls that look great in your website or app.",
"main": "dist/index.js",
"files": [
"./dist/*",
"README.md",
"./examples/*"
],
"scripts": {
"clean": "rimraf dist",
"build": "npm run clean && node build.js",
"dev": "npm run clean && node build.js --dev",
"test": "echo \"Error: no test specified\" && exit 1",
"publish-patch": "yarn run build && np patch --no-tests --any-branch"
},
"repository": {
"type": "git",
"url": "git+https://github.com/muxinc/media-chrome.git"
},
"keywords": [
"webcomponent",
"html5",
"video",
"audio",
"media",
"player",
"controls"
],
"author": "@muxinc",
"license": "MIT",
"bugs": {
"url": "https://github.com/muxinc/media-chrome/issues"
},
"homepage": "https://github.com/muxinc/media-chrome#readme",
"devDependencies": {
"@babel/core": "^7.9.0",
"babel": "^6.23.0",
"babel-core": "^6.26.3",
"babel-loader": "^8.1.0",
"babel-preset-es2015": "^6.24.1",
"chokidar": "^3.4.3",
"esbuild": "^0.8.26",
"lodash": "^4.17.20",
"rimraf": "^3.0.2",
"serve-handler": "^6.1.3",
"ssr-window": "^3.0.0",
"tiny-glob": "^0.2.8"
},
"dependencies": {},
"babel": {
"presets": [
"es2015"
]
}
}