-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
54 lines (54 loc) · 1.72 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
{
"name": "@cleverage/responsive-video-background",
"publishConfig": {
"access": "public"
},
"version": "1.2.0",
"description": "A JavaScript library to help build components with responsive video and/or image background",
"main": "responsive-video-background.js",
"type": "module",
"module": "responsive-video-background.js",
"files": [
"package.json",
"responsive-video-background.js",
"README.md",
"LICENSE"
],
"scripts": {
"lint:eslint": "eslint --ext .js . --ignore-path .gitignore",
"lint:prettier": "prettier \"**/*.{js,json,html}\" --check --ignore-path .gitignore",
"lint": "npm-run-all --sequential lint:eslint lint:prettier",
"format:eslint": "eslint --ext .js,.html . --fix --ignore-path .gitignore",
"format:prettier": "prettier \"**/*.{js,json,html}\" --write --ignore-path .prettierignore",
"format": "npm-run-all --sequential format:eslint format:prettier"
},
"repository": {
"type": "git",
"url": "git+https://github.com/cleverage/responsive-video-background.git"
},
"keywords": [
"web-component",
"video",
"component",
"responsive",
"background",
"cleverage"
],
"author": "Nicolas Hoizey",
"license": "MIT",
"bugs": {
"url": "https://github.com/cleverage/responsive-video-background/issues"
},
"homepage": "https://cleverage.github.io/responsive-video-background",
"devDependencies": {
"@babel/core": "^7.18.6",
"@babel/eslint-parser": "^7.18.2",
"@babel/preset-env": "^7.18.6",
"@open-wc/eslint-config": "^7.0.0",
"@open-wc/prettier-config": "^0.1.10",
"eslint": "^8.19.0",
"eslint-plugin-custom-elements": "^0.0.6",
"npm-run-all": "^4.1.5"
},
"prettier": "@open-wc/prettier-config"
}