-
Notifications
You must be signed in to change notification settings - Fork 53
/
Copy pathpackage.json
110 lines (110 loc) · 3.3 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
{
"name": "@vaadin/router",
"version": "2.0.0",
"description": "Small and powerful client-side router for Web Components. Framework-agnostic.",
"main": "dist/index.js",
"module": "dist/index.js",
"type": "module",
"repository": "vaadin/vaadin-router",
"keywords": [
"Vaadin",
"vaadin-router",
"router",
"client-side",
"web-components"
],
"author": "Vaadin Ltd",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/vaadin/vaadin-router/issues"
},
"homepage": "https://vaadin.com",
"files": [
"dist"
],
"scripts": {
"clean:build": "git clean -fx . -e .vite -e node_modules -e .idea -e .vscode",
"install:dependencies": "bower install",
"lint": "concurrently npm:lint:*",
"lint:js": "eslint --ext .html,.js src test demo *.js *.html",
"lint:css": "stylelint demo/**/*.html",
"build": "concurrently npm:build:*",
"build:esbuild": "tsx scripts/build.ts",
"build:copy-dts": "tsx scripts/copy-dts.ts",
"build:tsc": "tsc --emitDeclarationOnly -p tsconfig.build.json",
"start": "vite",
"test": "karma start karma.config.cjs",
"test:watch": "npm run test -- --watch",
"test:coverage": "npm run test -- --coverage",
"docs": "typedoc",
"browserslist": "browserslist && browserslist --coverage",
"prepack": "npm run clean:build",
"prepare": "npm run build",
"typecheck": "tsc --noEmit"
},
"browserslist": [
"last 1 Chrome major versions",
"last 1 Firefox major versions",
"Firefox ESR",
"last 1 Edge major versions",
"Safari >= 13",
"iOS >= 13",
"last 1 ChromeAndroid major versions"
],
"dependencies": {
"@vaadin/vaadin-usage-statistics": "^2.1.2",
"path-to-regexp": "^6.3.0",
"type-fest": "^4.26.1"
},
"devDependencies": {
"@esm-bundle/chai": "^4.3.4-fix.0",
"@mxssfd/typedoc-theme": "^1.1.7",
"@testing-library/dom": "^10.4.0",
"@testing-library/user-event": "^14.5.2",
"@types/chai-as-promised": "^8.0.1",
"@types/chai-dom": "^1.11.0",
"@types/glob": "^8.1.0",
"@types/karma": "^6.3.8",
"@types/karma-chrome-launcher": "^3.1.1",
"@types/karma-mocha": "^1.3.1",
"@types/mocha": "^10.0.1",
"@types/sinon": "^17.0.3",
"@types/sinon-chai": "^4.0.0",
"bower": "^1.8.14",
"browserslist": "^4.24.0",
"chai-as-promised": "^8.0.0",
"chai-dom": "^1.11.0",
"concurrently": "^9.0.1",
"esbuild": "^0.24.0",
"eslint": "^8.57.1",
"eslint-config-vaadin": "^1.0.0-alpha.28",
"eslint-plugin-html": "^8.1.2",
"eslint-plugin-oxlint": "^0.9.9",
"eslint-plugin-perfectionist": "^3.8.0",
"eslint-plugin-tsdoc": "^0.3.0",
"fs-extra": "^11.1.1",
"glob": "^11.0.0",
"karma": "^6.4.4",
"karma-chrome-launcher": "^3.2.0",
"karma-coverage": "^2.2.1",
"karma-iframes": "^1.3.1",
"karma-mocha": "^2.0.1",
"karma-parallel": "^0.3.1",
"karma-spec-reporter": "^0.0.36",
"karma-vite": "^1.0.5",
"magic-string": "^0.30.11",
"mocha": "^10.2.0",
"oxlint": "^0.9.9",
"prettier": "^3.1.0",
"sinon": "^19.0.2",
"sinon-chai": "^4.0.0",
"stylelint": "^16.10.0",
"tsx": "^4.19.1",
"typedoc": "^0.26.8",
"typedoc-plugin-missing-exports": "^3.0.0",
"typescript": "^5.6.2",
"typescript-eslint": "^8.8.1",
"vite": "5.4.8",
"yargs": "^17.7.2"
}
}