-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
116 lines (116 loc) · 3.29 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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
{
"name": "@vaadin-component-factory/vcf-breadcrumb",
"version": "2.0.1",
"description": "Web Component providing an easy way to display breadcrumb.",
"author": "Vaadin Ltd",
"type": "module",
"main": "dist/src/index.js",
"module": "dist/src/index.js",
"license": "https://raw.githubusercontent.com/vaadin-component-factory/vcf-breadcrumb/master/LICENSE",
"exports": {
".": "./dist/src/index.js",
"./dist/src/vcf-breadcrumbs.js": "./dist/src/vcf-breadcrumbs.js"
},
"files": [
"vcf-*.js",
"src",
"dist"
],
"repository": {
"type": "git",
"url": "git+https://github.com/vaadin-component-factory/vcf-breadcrumb.git"
},
"keywords": [
"Vaadin",
"vaadin-component-factory",
"vcf-breadcrumb",
"web-components",
"web-component",
"lit-element",
"typescript",
"lit",
"vcf"
],
"scripts": {
"analyze": "cem analyze --litelement",
"start": "tsc && concurrently -k -r \"tsc --watch --preserveWatchOutput\" \"wds\"",
"build": "tsc && npm run analyze -- --exclude dist",
"prepublish": "tsc && npm run analyze -- --exclude dist",
"lint": "eslint --ext .ts,.html . --ignore-path .gitignore && prettier \"**/*.ts\" --check --ignore-path .gitignore",
"format": "eslint --ext .ts,.html . --fix --ignore-path .gitignore && prettier \"**/*.ts\" --write --ignore-path .gitignore",
"test": "tsc && wtr --coverage",
"test:watch": "tsc && concurrently -k -r \"tsc --watch --preserveWatchOutput\" \"wtr --watch\""
},
"dependencies": {
"@vaadin/component-base": "^24.5.8",
"@vaadin/vaadin-lumo-styles": "^24.5.8",
"@vaadin/vaadin-themable-mixin": "^24.5.8",
"lit": "^3.0.0"
},
"devDependencies": {
"@custom-elements-manifest/analyzer": "^0.6.3",
"@open-wc/eslint-config": "^9.2.1",
"@open-wc/testing": "^3.1.6",
"@polymer/iron-component-page": "^4.0.1",
"@polymer/iron-demo-helpers": "^3.0.0-pre.19",
"@types/jest": "^29.5.14",
"@typescript-eslint/eslint-plugin": "^5.48.0",
"@typescript-eslint/parser": "^5.48.0",
"@web/dev-server": "^0.4.3",
"@web/test-runner": "^0.19.0",
"@webcomponents/webcomponentsjs": "^2.0.0",
"concurrently": "^7.2.2",
"eslint": "^8.31.0",
"eslint-config-prettier": "^8.5.0",
"husky": "^8.0.1",
"lint-staged": "^13.0.3",
"prettier": "^2.7.1",
"tslib": "^2.4.0",
"typescript": "^5.5.2"
},
"bugs": {
"url": "https://github.com/vaadin-component-factory/vcf-breadcrumb/issues"
},
"homepage": "https://github.com/vaadin-component-factory/vcf-breadcrumb#readme",
"directories": {
"test": "test"
},
"customElements": "custom-elements.json",
"eslintConfig": {
"parser": "@typescript-eslint/parser",
"extends": [
"@open-wc",
"prettier"
],
"plugins": [
"@typescript-eslint"
],
"rules": {
"no-unused-vars": "off",
"@typescript-eslint/no-unused-vars": "error",
"import/no-unresolved": "off",
"import/extensions": [
"error",
"always",
{
"ignorePackages": true
}
]
}
},
"prettier": {
"singleQuote": true,
"arrowParens": "avoid"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.ts": [
"eslint --fix",
"prettier --write"
]
}
}