-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
64 lines (64 loc) · 1.73 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
{
"name": "media-group",
"version": "0.1.5",
"description": "Resurrection of mediagroup / MediaController (renamed) which can be used to sync and control multiple audio / video elements.",
"type": "module",
"main": "dist/index.js",
"module": "dist/index.js",
"types": "dist/types/index.d.ts",
"files": [
"src",
"dist"
],
"scripts": {
"lint": "eslint src/*",
"test": "web-test-runner **/*test.js --config test/web-test-runner.config.mjs",
"dev": "esbuild src/index.ts --bundle --format=esm --outdir=dist --servedir=.",
"build": "npm run build:esm && npm run build:types",
"build:esm": "esbuild src/index.ts --bundle --format=esm --outdir=dist",
"build:types": "tsc --declaration --emitDeclarationOnly --outDir dist/types"
},
"repository": "muxinc/media-group",
"author": "Wesley Luyten <me@wesleyluyten.com> (https://wesleyluyten.com)",
"license": "MIT",
"homepage": "https://github.com/muxinc/media-group#readme",
"bugs": {
"url": "https://github.com/muxinc/media-group/issues"
},
"devDependencies": {
"@open-wc/testing": "^3.1.6",
"@typescript-eslint/parser": "^5.37.0",
"@web/dev-server-esbuild": "^0.3.1",
"@web/test-runner": "^0.14.0",
"esbuild": "^0.15.7",
"eslint": "^8.23.1",
"typescript": "^4.8.3"
},
"eslintConfig": {
"root": true,
"globals": {
"globalThis": "writable"
},
"env": {
"browser": true,
"es6": true,
"mocha": true
},
"parser": "@typescript-eslint/parser",
"extends": [
"eslint:recommended"
],
"parserOptions": {
"ecmaVersion": 2022,
"sourceType": "module"
}
},
"keywords": [
"html5",
"video",
"audio",
"media",
"player",
"controls"
]
}