-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
46 lines (46 loc) · 1.14 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
{
"name": "@vaadin/vaadin-list-mixin",
"version": "2.5.3",
"description": "vaadin-list-mixin",
"main": "vaadin-list-mixin.html",
"repository": "vaadin/vaadin-list-mixin",
"keywords": [
"Vaadin",
"vaadin-list-mixin",
"web-components",
"web-component",
"polymer"
],
"author": "Vaadin Ltd",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/vaadin/vaadin-list-mixin/issues"
},
"homepage": "https://vaadin.com/elements",
"files": [
"*.d.ts",
"vaadin-*.js"
],
"husky": {
"hooks": {
"pre-commit": "npm run lint"
}
},
"scripts": {
"start": "polymer serve --port 3000",
"test": "wct",
"lint": "npm-run-all --parallel lint:*",
"lint:css": "stylelint *.html demo/*.html test/*html",
"lint:html": "eslint *.html demo test --ext .html",
"lint:js": "eslint *.js test",
"lint:polymer": "polymer lint --rules polymer-2 --input *.html"
},
"devDependencies": {
"@vaadin/vaadin-component-dev-dependencies": "^3.2.0"
},
"overrides": {
"wct-sauce": {
"sauce-connect-launcher": "vaadin/sauce-connect-launcher#upgrade-sauce-connect-5"
}
}
}