-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
59 lines (59 loc) · 1.82 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
{
"name": "@vonage/video-subscriber",
"description": "video-subscriber Web Component to be used with Video API following open-wc recommendations",
"homepage": "https://github.com/opentok/web-components/tree/main/video-subscriber#readme",
"repository": "https://github.com/opentok/web-components/tree/main/video-subscriber",
"license": "MIT",
"author": "Vonage",
"version": "0.0.2",
"main": "index.js",
"module": "index.js",
"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",
"test": "web-test-runner --coverage",
"test:watch": "web-test-runner --watch",
"storybook": "npm run analyze -- --exclude dist && web-dev-server -c .storybook/server.mjs",
"storybook:build": "npm run analyze -- --exclude dist && build-storybook"
},
"dependencies": {
"lit": "^2.0.2"
},
"devDependencies": {
"@custom-elements-manifest/analyzer": "^0.4.17",
"@open-wc/eslint-config": "^4.3.0",
"@open-wc/testing": "next",
"@web/dev-server": "^0.1.28",
"@web/dev-server-storybook": "next",
"@web/test-runner": "^0.13.22",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"husky": "^4.3.8",
"lint-staged": "^10.5.4",
"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"
]
}
}