-
Notifications
You must be signed in to change notification settings - Fork 23
/
package.json
48 lines (48 loc) · 1.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
{
"name": "@vaadin/vaadin-button",
"version": "2.4.0",
"description": "vaadin-button",
"main": "vaadin-button.html",
"repository": "vaadin/vaadin-button",
"keywords": [
"Vaadin",
"button",
"web-components",
"web-component",
"polymer"
],
"author": "Vaadin Ltd",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/vaadin/vaadin-button/issues"
},
"homepage": "https://vaadin.com/components",
"files": [
"vaadin-*.d.ts",
"vaadin-*.js",
"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"
}
}