forked from kuflash/react-router-sitemap
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
80 lines (80 loc) · 1.88 KB
/
package.json
File metadata and controls
80 lines (80 loc) · 1.88 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
73
74
75
76
77
78
79
80
{
"name": "@snaddyvitch-dispenser/react-router-sitemap",
"version": "2.0.0",
"description": "Module to generate a sitemap for react-router configuration",
"repository": {
"type": "git",
"url": "git+https://github.com/CADawg/react-router-sitemap.git"
},
"keywords": [
"react",
"react-router",
"sitemap",
"es2015"
],
"publishConfig": {
"registry": "https://registry.npmjs.org/",
"access": "public"
},
"main": "index.es5.js",
"jsnext:main": "index.js",
"scripts": {
"lint": "eslint",
"test": "jest",
"build": "webpack --config ./config/build.config.js",
"example": "cd example && node ./sitemap-builder.js",
"prepublish": "npm run build"
},
"author": "Igor Uvarov <kuflash@ya.ru> (http://kuflash.ru)",
"contributors": [
{
"name": "Conor",
"email": "gitwith@cadawg.com",
"url": "https://cadawg.com"
}
],
"maintainers": [
{
"name": "Conor",
"email": "gitwith@cadawg.com",
"url": "https://cadawg.com"
}
],
"license": "MIT",
"files": [
"index.js",
"index.es5.js",
"lib",
"index.d.ts"
],
"devDependencies": {
"@babel/core": "^7.29.0",
"@babel/preset-env": "^7.29.2",
"@babel/preset-react": "^7.28.5",
"@eslint/js": "^9.39.4",
"babel-jest": "^30.3.0",
"babel-loader": "^10.1.1",
"eslint": "^9.39.4",
"eslint-plugin-react": "^7.37.5",
"jest": "^30.3.0",
"react": "^18.3.1",
"terser-webpack-plugin": "^5.4.0",
"typescript": "^5.9.3",
"webpack": "^5.105.4",
"webpack-cli": "^7.0.2",
"webpack-node-externals": "^3.0.0"
},
"jest": {
"testMatch": [
"**/test/spec/**/*.spec.js"
],
"setupFilesAfterEnv": [
"./test/setup.js"
]
},
"peerDependencies": {
"react": "^17.0.0 || ^18.0.0 || ^19.0.0",
"react-router": "^5.0.0 || ^6.0.0 || ^7.0.0"
},
"types": "index.d.ts"
}