-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1.13 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
{
"name": "react-router-sitemap-maker",
"version": "1.1.0",
"description": "Generates a sitemap from react-router-dom routes",
"author": "RikThePixel",
"license": "MIT",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "tsc",
"test": "ts-mocha 'test/**/*.ts'",
"prepublish": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Rikthepixel/react-router-sitemap-maker.git"
},
"bugs": {
"url": "https://github.com/Rikthepixel/react-router-sitemap-maker/issues"
},
"homepage": "https://github.com/Rikthepixel/react-router-sitemap-maker#readme",
"devDependencies": {
"@types/chai": "^4.3.1",
"@types/mocha": "^9.1.1",
"@types/node": "^17.0.35",
"@types/react": "^18.0.9",
"chai": "^4.3.6",
"react": "^18.1.0",
"react-router-dom": ">=6.0.0",
"ts-mocha": "^10.0.0",
"typescript": "^4.6.4"
},
"peerDependencies": {
"react": "*",
"react-router-dom": ">=6.0.0"
},
"keywords": [
"react",
"react-router",
"react-router-dom",
"sitemap",
"xml",
""
]
}