forked from gatanaso/multiselect-combo-box
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
74 lines (74 loc) · 2.07 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
{
"description": "A multi select combo box web component based on Polymer 3 and the vaadin-combo-box",
"keywords": [
"multiselect-combo-box",
"web-components",
"vaadin",
"polymer-3",
"polymer"
],
"repository": {
"type": "git",
"url": "https://github.com/gatanaso/multiselect-combo-box"
},
"name": "multiselect-combo-box",
"version": "2.4.2",
"main": "multiselect-combo-box.js",
"directories": {
"test": "test"
},
"author": "Goran",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/gatanaso/multiselect-combo-box/issues"
},
"files": [
"multiselect-*.js",
"src",
"theme"
],
"resolutions": {
"inherits": "2.0.3",
"samsam": "1.1.3",
"supports-color": "3.1.2",
"type-detect": "1.0.0"
},
"husky": {
"hooks": {
"pre-commit": "npm run lint"
}
},
"scripts": {
"test": "npm run lint && wct --npm",
"lint": "npm-run-all --parallel lint:*",
"lint:css": "stylelint --syntax html src theme demo test",
"lint:html": "eslint *.html demo test --ext .html",
"lint:js": "eslint *.js src",
"lint:polymer": "polymer lint --rules=polymer-3 --input ./src/*.js ./theme/**/*.js",
"start": "npm run lint && wct --npm && polymer serve --npm --open"
},
"dependencies": {
"@polymer/iron-resizable-behavior": "^3.0.1",
"@polymer/polymer": "^3.0.0",
"@vaadin/vaadin-combo-box": "^5.0.9",
"@vaadin/vaadin-control-state-mixin": "^2.1.3",
"@vaadin/vaadin-lumo-styles": "^1.5.0",
"@vaadin/vaadin-material-styles": "^1.2.3",
"@vaadin/vaadin-text-field": "^2.4.8",
"@vaadin/vaadin-themable-mixin": "^1.4.4"
},
"devDependencies": {
"@polymer/iron-demo-helpers": "^3.0.0",
"@webcomponents/webcomponentsjs": "^2.0.0",
"eslint": "^6.0.1",
"eslint-config-vaadin": "^0.2.7",
"eslint-plugin-html": "^6.0.0",
"husky": "^3.0.8",
"npm-run-all": "^4.1.5",
"stylelint": "^10.1.0",
"stylelint-config-vaadin": "^0.1.4",
"wct-browser-legacy": "^1.0.2",
"wct-istanbul": "^0.14.3",
"web-component-tester": "^6.9.2"
}
}