-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.28 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.28 KB
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
{
"name": "@jack-henry/web-component-router",
"version": "3.12.2",
"description": "Web Components Router",
"main": "router.js",
"type": "module",
"files": [
"lib/",
"*.js",
"*.mixin.ts",
"*.d.ts",
"package.json",
"README.md"
],
"scripts": {
"build": "tsc && yarn build:ts",
"build:ts": "tsc --project tsconfig.buildts.json",
"clean": "rimraf ./lib/**/*.d.ts ./*.d.ts ./lib/*.mixin.js --glob",
"prepublish": "yarn clean && yarn build",
"pretest": "playwright install",
"test": "vitest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Banno/web-component-router.git"
},
"author": "Chad Killingsworth <[email protected]>",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/Banno/web-component-router/issues"
},
"homepage": "https://github.com/Banno/web-component-router",
"dependencies": {
"path-to-regexp": "^6.3.0"
},
"resolutions": {
"@types/node": "^18.11.18"
},
"devDependencies": {
"@types/node": "^24.5.2",
"@vitest/browser": "^4.0.6",
"@vitest/browser-playwright": "^4.0.6",
"lit": "^3.1.1",
"playwright": "1.56.1",
"rimraf": "^6.0.1",
"typescript": "^5.9.3",
"vitest": "^4.0.6"
},
"packageManager": "[email protected]"
}