-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
58 lines (58 loc) · 1.55 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
{
"name": "livestream-wrapper",
"description": "A native component to help with the start, playback and ending of live streams, or simulated live streams.",
"keywords": [
"video",
"streaming",
"live",
"component",
"events"
],
"license": "MIT",
"author": "Blair Liikala (https://blairliikala.com)",
"version": "0.11.0",
"type": "module",
"main": "livestream-wrapper.js",
"module": "livestream-wrapper.js",
"repository": "github:blairliikala/livestreamwrapper",
"scripts": {
"analyze": "cem analyze --litelement",
"start": "web-dev-server",
"lint": "eslint --ext .js,.html . --ignore-path .gitignore && prettier \"**/*.js\" --check --ignore-path .gitignore",
"format": "eslint --ext .js,.html . --fix --ignore-path .gitignore && prettier \"**/*.js\" --write --ignore-path .gitignore"
},
"devDependencies": {
"@custom-elements-manifest/analyzer": "^0.6.00",
"@esm-bundle/chai": "^4.3.4",
"@open-wc/eslint-config": "^9.2.0",
"@open-wc/testing": "3.1.7",
"@web/dev-server": "^0.1.28",
"@web/test-runner": "^0.15.0",
"esbuild": "^0.17.0",
"eslint": "^8.0.0",
"eslint-config-prettier": "^8.3.0",
"prettier": "^2.4.1"
},
"customElements": "custom-elements.json",
"eslintConfig": {
"extends": [
"@open-wc",
"prettier"
]
},
"prettier": {
"singleQuote": true,
"arrowParens": "avoid"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.js": [
"eslint --fix",
"prettier --write"
]
}
}