-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
49 lines (49 loc) · 1.06 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
{
"name": "media-offset",
"version": "0.3.0",
"description": "Configures a media element to lock playback to a defined segment of the media.",
"main": "media-offset-attribute.js",
"files": [
"media-offset.js"
],
"scripts": {
"lint": "eslint *.js",
"dev": "npx serve . -c vercel.json"
},
"repository": "muxinc/media-offset",
"author": "Wesley Luyten <me@wesleyluyten.com> (https://wesleyluyten.com)",
"license": "MIT",
"homepage": "https://github.com/muxinc/media-offset#readme",
"bugs": {
"url": "https://github.com/muxinc/media-offset/issues"
},
"devDependencies": {
"eslint": "^8.32.0"
},
"eslintConfig": {
"root": true,
"globals": {
"globalThis": "writable"
},
"env": {
"browser": true,
"es6": true,
"node": true,
"mocha": true
},
"extends": [
"eslint:recommended"
],
"parserOptions": {
"ecmaVersion": 2022,
"sourceType": "module"
}
},
"keywords": [
"audio",
"video",
"player",
"web component",
"custom element"
]
}