-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathpackage.json
119 lines (119 loc) · 3.86 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
119
{
"name": "lit-redux-router",
"version": "0.22.0",
"type": "module",
"description": "Declarative way of routing for lit powered by pwa-helpers and redux",
"repository": "fernandopasik/lit-redux-router",
"homepage": "https://github.com/fernandopasik/lit-redux-router",
"bugs": "https://github.com/fernandopasik/lit-redux-router/issues",
"author": "Fernando Pasik <[email protected]> (https://fernandopasik.com)",
"contributors": [
"Andrew Noblet (https://github.com/anoblet)",
"bnf (https://github.com/bnf)",
"Grant Hutchinson <[email protected]> (https://github.com/hutchgrant)",
"Ramy (https://github.com/ramykl)",
"Waxolunist (https://github.com/Waxolunist)",
"Zain Afzal (https://github.com/zainafzal08)"
],
"license": "MIT",
"main": "lit-redux-router.js",
"module": "lit-redux-router.js",
"typings": "lit-redux-router.d.ts",
"files": [
"/lib",
"/lit-redux-router.*"
],
"keywords": [
"lit",
"lit-element",
"lit-html",
"redux",
"router",
"routing",
"web-components"
],
"scripts": {
"all-contributors": "all-contributors --config .all-contributorsrc.json",
"analyze": "wca analyze src --format json --outFile custom-elements.json",
"build": "tsc -p tsconfig.build.json && rollup -c",
"check-types": "tsc --noEmit",
"clean": "del coverage lib lit-redux-router.*",
"format": "prettier --write .",
"format:check": "prettier --check .",
"lint": "eslint",
"lit-analyze": "lit-analyzer src --strict",
"prebuild": "del lib lit-redux-router.*",
"prepare": "husky",
"preversion": "npm run verify",
"size": "size-limit",
"start": "rollup -c",
"test": "jest",
"test:coverage": "jest --coverage",
"verify": "npm run format:check && npm run lint && npm run lit-analyze && npm run check-types && npm run test:coverage && npm run build && npm run size"
},
"peerDependencies": {
"lit": "*",
"pwa-helpers": "0.x.x",
"redux": "4.x.x"
},
"dependencies": {
"regexparam": "^3.0.0"
},
"devDependencies": {
"@commitlint/cli": "^19.6.0",
"@commitlint/config-conventional": "^19.6.0",
"@eslint/js": "^9.15.0",
"@jest/globals": "^29.7.0",
"@literals/rollup-plugin-html-css-minifier": "^3.0.0",
"@rollup/plugin-html": "^1.0.4",
"@rollup/plugin-node-resolve": "^16.0.0",
"@rollup/plugin-terser": "^0.4.4",
"@rollup/plugin-typescript": "^12.1.1",
"@size-limit/file": "^11.1.6",
"@types/deep-freeze": "^0.1.5",
"@types/jest": "^29.5.14",
"@types/mime": "^4.0.0",
"@types/redux-mock-store": "1.0.6",
"@typescript-eslint/eslint-plugin": "^8.15.0",
"@typescript-eslint/parser": "^8.15.0",
"@webcomponents/webcomponentsjs": "^2.8.0",
"all-contributors-cli": "^6.26.1",
"deep-freeze": "^0.0.1",
"del-cli": "^6.0.0",
"eslint": "^9.15.0",
"eslint-config-prettier": "^10.0.1",
"eslint-import-resolver-typescript": "^3.6.3",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-lit": "^1.15.0",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-wc": "^2.2.0",
"eslint-plugin-yml": "^1.15.0",
"globals": "^15.12.0",
"husky": "^9.1.7",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"jest-junit": "^16.0.0",
"lint-staged": "^15.2.10",
"lit": "^3.2.1",
"lit-analyzer": "^2.0.3",
"prettier": "^3.3.3",
"prettier-plugin-organize-imports": "^4.1.0",
"prettier-plugin-pkg": "^0.18.1",
"prettier-plugin-sh": "^0.14.0",
"pwa-helpers": "^0.9.1",
"redux": "^4.2.1",
"redux-mock-store": "^1.5.5",
"rollup": "^4.27.3",
"rollup-plugin-serve": "^2.0.2",
"size-limit": "^11.1.6",
"ts-jest": "^29.2.5",
"ts-lit-plugin": "^2.0.2",
"typescript": "^5.7.2",
"typescript-eslint": "^8.15.0",
"web-component-analyzer": "^2.0.0"
},
"overrides": {
"glob-parent": "6.0.2"
},
"sideEffects": false
}