-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 1.94 KB
/
package.json
File metadata and controls
72 lines (72 loc) · 1.94 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
{
"name": "@breautek/router",
"version": "5.0.0",
"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 ./src ./spec",
"lint:fix": "eslint --fix ./src ./spec",
"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 || 19.x",
"react-dom": "16.x || 17.x || 18.x || 19.x"
},
"devDependencies": {
"@jest/types": "30.2.0",
"@rollup/plugin-commonjs": "29.0.1",
"@rollup/plugin-json": "6.1.0",
"@rollup/plugin-node-resolve": "16.0.3",
"@testing-library/dom": "10.4.1",
"@testing-library/jest-dom": "6.9.1",
"@testing-library/react": "16.3.2",
"@totalpave/eslint-plugin": "7.0.17",
"@types/jest": "30.0.0",
"@types/react": "19.2.14",
"@types/react-dom": "19.2.3",
"ajv": "8.18.0",
"glob": "13.0.6",
"ignore-styles": "5.0.1",
"jest": "30.2.0",
"jest-environment-jsdom": "30.2.0",
"react": "19.2.4",
"react-dom": "19.2.4",
"rollup": "4.59.0",
"rollup-plugin-progress": "1.1.2",
"rollup-plugin-sass": "1.15.3",
"rollup-plugin-typescript2": "0.36.0",
"sass": "1.97.3",
"ts-jest": "29.4.6",
"ts-node": "10.9.2",
"typescript": "5.9.3"
},
"dependencies": {
"@types/events": "3.0.3",
"events": "3.3.0",
"tslib": "2.8.1"
}
}