-
Notifications
You must be signed in to change notification settings - Fork 155
/
package.json
55 lines (55 loc) · 1.41 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
{
"name": "@vaadin/vaadin-grid",
"version": "5.10.1",
"description": "A free, flexible and high-quality Web Component for showing large amounts of tabular data",
"main": "vaadin-grid.html",
"author": "Vaadin Ltd",
"license": "Apache-2.0",
"repository": "vaadin/vaadin-grid",
"bugs": {
"url": "https://github.com/vaadin/vaadin-grid/issues"
},
"homepage": "https://vaadin.com/components",
"files": [
"vaadin-*.d.ts",
"vaadin-*.js",
"all-imports.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",
"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"
},
"keywords": [
"vaadin",
"elements",
"components",
"webcomponents",
"web-components",
"grid",
"datagrid",
"datatable",
"data-grid",
"data-table"
],
"dependencies": {}
}