-
Notifications
You must be signed in to change notification settings - Fork 85
/
package.json
49 lines (49 loc) · 1.37 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
{
"name": "@vaadin/vaadin-combo-box",
"version": "5.5.3",
"description": "Web Component for displaying a list of items with filtering",
"main": "vaadin-combo-box.html",
"repository": "vaadin/vaadin-combo-box",
"keywords": [
"Vaadin",
"combo-box",
"web-components",
"web-component",
"polymer"
],
"author": "Vaadin Ltd",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/vaadin/vaadin-combo-box/issues"
},
"homepage": "https://vaadin.com/components",
"files": [
"vaadin-*.d.ts",
"vaadin-*.js",
"@types",
"src",
"theme"
],
"husky": {
"hooks": {
"pre-commit": "npm run lint"
}
},
"scripts": {
"test": "wct",
"check": "npm-run-all --parallel check:*",
"check:bower": "magi check-bower",
"check:version": "magi check-version",
"lint": "npm-run-all --parallel lint:*",
"lint:css": "stylelint *.html src/*.html demo/*.html theme/**/*.html test/*html",
"lint:html": "eslint *.html src demo test --ext .html",
"lint:js": "eslint *.js test",
"lint:polymer": "polymer lint --rules polymer-2 --input ./src/*.html ./theme/**/*.html",
"prestart": "polymer analyze vaadin-* > analysis.json",
"start": "polymer serve --port 3000 --open",
"preversion": "magi update-version"
},
"devDependencies": {
"@vaadin/vaadin-component-dev-dependencies": "^3.2.0"
}
}