-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
67 lines (67 loc) · 1.87 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
{
"name": "@breautek/router",
"version": "4.1.3",
"description": "An alternate react router.",
"main": "dist/router.js",
"types": "dist/src/api.d.ts",
"type": "commonjs",
"publishConfig": {
"registry": "https://registry.npmjs.org"
},
"scripts": {
"test": "jest",
"lint": "eslint --ext .ts,.tsx '?(src|spec)/**/*.?(ts|tsx)' --cache",
"build": "rollup -c rollup.config.js --bundleConfigAsCjs",
"publish-beta": "npm publish --tag beta",
"prepublishOnly": "npm run build",
"version": "npm run-script build",
"postversion": "git push && git push --tags"
},
"repository": {
"type": "git",
"url": "https://github.com/breautek/router"
},
"keywords": [
"react",
"router",
"page",
"screen",
"navigation"
],
"author": "norman@normanbreau.com",
"license": "MIT",
"homepage": "https://github.com/breautek/router",
"peerDependencies": {
"react": "16.x || 17.x || 18.x",
"react-dom": "16.x || 17.x || 18.x"
},
"devDependencies": {
"@rollup/plugin-commonjs": "28.0.1",
"@rollup/plugin-json": "6.1.0",
"@rollup/plugin-node-resolve": "15.3.0",
"@testing-library/jest-dom": "6.6.3",
"@testing-library/react": "16.0.1",
"@types/jest": "29.5.14",
"@types/react": "18.3.12",
"@types/react-dom": "18.3.1",
"@typescript-eslint/eslint-plugin": "7.18.0",
"@typescript-eslint/parser": "7.18.0",
"ajv": "8.17.1",
"eslint": "8.57.1",
"eslint-plugin-react": "7.37.2",
"glob": "11.0.0",
"ignore-styles": "5.0.1",
"jest": "29.7.0",
"jest-environment-jsdom": "29.7.0",
"node-sass": "9.0.0",
"react": "18.3.1",
"react-dom": "18.3.1",
"rollup": "4.24.4",
"rollup-plugin-progress": "1.1.2",
"rollup-plugin-sass": "1.14.0",
"rollup-plugin-typescript2": "0.36.0",
"ts-jest": "29.2.5",
"ts-node": "10.9.2",
"typescript": "5.5.4"
}
}