forked from lgraubner/sitemap-generator-cli
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
90 lines (90 loc) · 1.72 KB
/
Copy pathpackage.json
File metadata and controls
90 lines (90 loc) · 1.72 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
81
82
83
84
85
86
87
88
89
90
{
"name": "sitemap-generator-cli",
"version": "7.6.0",
"description": "Create xml sitemaps from the command line.",
"homepage": "https://github.com/lgraubner/sitemap-generator-cli",
"author": {
"name": "Lars Graubner",
"email": "mail@larsgraubner.de",
"url": "http://larsgraubner.de"
},
"keywords": [
"sitemap",
"xml",
"sitemap.xml",
"generator",
"crawler",
"seo",
"google",
"ecosystem:node"
],
"main": "index.js",
"repository": {
"type": "git",
"url": "https://github.com/lgraubner/sitemap-generator-cli.git"
},
"bugs": {
"url": "https://github.com/lgraubner/sitemap-generator-cli/issues"
},
"dependencies": {
"chalk": "^4.1.2",
"commander": "^9.5.0",
"sitemap-generator": "^8.5.1",
"http-proxy-agent": "^5.0.0",
"https-proxy-agent": "^5.0.1",
"minimatch": "^5.1.6"
},
"devDependencies": {
"eslint": "^8.57.0",
"execa": "^5.1.1",
"husky": "^8.0.3",
"jest": "^29.7.0",
"lint-staged": "^13.3.0",
"prettier": "^3.2.5"
},
"preferGlobal": true,
"engines": {
"node": ">=14"
},
"bin": {
"sitemap-generator": "index.js"
},
"license": "MIT",
"scripts": {
"lint": "eslint .",
"test": "jest"
},
"lint-staged": {
"*.js": [
"eslint --fix",
"prettier --write",
"git add"
]
},
"prettier": {
"singleQuote": true
},
"eslintConfig": {
"parserOptions": {
"ecmaVersion": 6
},
"extends": [
"eslint:recommended"
],
"env": {
"jest": true,
"node": true
},
"rules": {
"no-console": 0
}
},
"jest": {
"testEnvironment": "node"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
}
}