generated from vaadin-component-factory/vcf-element
-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
118 lines (118 loc) · 3.58 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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
{
"name": "@vaadin-component-factory/vcf-anchor-nav",
"version": "3.0.1",
"description": "Component with tabs used as anchor navigation and content sections. Automates the linking of tabs and sections.",
"main": "vcf-anchor-nav.js",
"author": "Vaadin Ltd",
"license": "https://raw.githubusercontent.com/vaadin/vaadin-incubator-element/master/LICENSE",
"repository": {
"type": "git",
"url": "git+https://github.com/vaadin-component-factory/vcf-anchor-nav.git"
},
"keywords": [
"Vaadin",
"vaadin-incubator-element",
"vaadin-component-factory",
"vcf-anchor-nav",
"web-components",
"web-component",
"polymer"
],
"scripts": {
"test": "wct",
"lint": "eslint src/*.js",
"prestart": "polymer analyze src/*.js > analysis.json",
"start": "polymer serve -o",
"build:prod": "run-s build:api build:demo",
"build:api": "npm run prestart && polymer build",
"build:demo": "webpack",
"build:lib": "rollup -c",
"publish": "node util/publish.js",
"prepare": "npm run build:lib"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"src/*.js": [
"eslint --fix",
"prettier --write",
"git add"
]
},
"dependencies": {
"@juggle/resize-observer": "^3.1.3",
"@polymer/polymer": "^3.0.0",
"@vaadin/component-base": "^24.1.1",
"@vaadin/tabs": "^24.1.1",
"@vaadin/vaadin-lumo-styles": "^24.1.1",
"@vaadin/vaadin-themable-mixin": "^24.1.1",
"intersection-observer": "^0.10.0",
"smoothscroll-polyfill": "^0.4.4",
"stickyfilljs": "^2.1.0"
},
"devDependencies": {
"@babel/core": "^7.5.5",
"@babel/plugin-proposal-class-properties": "^7.3.4",
"@babel/preset-env": "^7.5.5",
"@polymer/iron-component-page": "^4.0.1",
"@polymer/iron-demo-helpers": "^3.0.0-pre.19",
"@polymer/test-fixture": "^4.0.2",
"@rollup/plugin-commonjs": "^11.1.0",
"@rollup/plugin-node-resolve": "^7.1.3",
"@vaadin-component-factory/vcf-element-util": "^0.2.8",
"@vaadin/button": "^24.1.1",
"@vaadin/text-field": "^24.1.1",
"@webcomponents/webcomponentsjs": "^2.0.0",
"babel-eslint": "^10.0.2",
"babel-loader": "^8.0.6",
"babel-plugin-template-html-minifier": "^3.1.0",
"babel-plugin-transform-custom-element-classes": "^0.1.0",
"babel-preset-minify": "^0.5.1",
"brotli-webpack-plugin": "^1.1.0",
"chai": "^4.2.0",
"colors": "^1.3.3",
"compression-webpack-plugin": "^3.0.0",
"copy-webpack-plugin": "^5.0.4",
"eslint": "^5.16.0",
"eslint-config-prettier": "^6.0.0",
"eslint-config-vaadin": "^0.2.7",
"eslint-plugin-html": "^6.0.0",
"html-replace-webpack-plugin": "^2.5.5",
"html-webpack-plugin": "^3.2.0",
"html-webpack-tags-plugin": "^2.0.15",
"husky": "^2.3.0",
"lint-staged": "^8.1.7",
"mocha": "^5.2.0",
"npm-run-all": "^4.1.5",
"polymer-cli": "^1.9.10",
"prettier": "^1.17.1",
"prompt": "^1.0.0",
"replace-in-file": "^4.1.2",
"rollup": "^2.10.2",
"shelljs": "^0.8.3",
"terser-webpack-plugin": "^1.4.1",
"uglify-template-string-loader": "^1.1.1",
"wct-mocha": "^1.0.0",
"webpack": "^4.39.2",
"webpack-babel-multi-target-plugin": "^2.3.0",
"webpack-cli": "^3.3.7",
"webpack-dev-server": "^3.8.0",
"webpack-merge": "^4.2.1"
},
"bugs": {
"url": "https://github.com/vaadin-component-factory/vcf-anchor-nav/issues"
},
"files": [
"lib",
"src",
"theme",
"vcf-anchor-nav.js"
],
"homepage": "https://github.com/vaadin-component-factory/vcf-anchor-nav#readme",
"directories": {
"test": "test"
}
}