-
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.26 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.26 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
{
"name": "static-sitemap-cli",
"version": "2.2.7",
"description": "CLI to generate XML sitemaps for static sites from local filesystem",
"author": "Jason Lee <jason@zerodevx.com>",
"type": "module",
"exports": "./src/index.js",
"bin": {
"static-sitemap-cli": "./src/cli.js",
"sscli": "./src/cli.js"
},
"scripts": {
"format": "prettier --write .",
"lint": "eslint",
"test": "prettier --check . && eslint && ava && npx publint"
},
"dependencies": {
"commander": "^13.1.0",
"cosmiconfig": "^9.0.0",
"fast-glob": "^3.3.3",
"htmlparser2": "^10.0.0",
"js2xmlparser": "^5.0.0",
"micromatch": "^4.0.8",
"tiny-async-pool": "^2.1.0"
},
"devDependencies": {
"@eslint/js": "^9.5.0",
"ava": "^6.2.0",
"eslint": "^9.19.0",
"eslint-config-prettier": "^10.0.1",
"execa": "^9.5.2",
"globals": "^15.14.0",
"prettier": "^3.4.2"
},
"engines": {
"node": "^12.20.0 || ^14.13.1 || >=16.0.0"
},
"files": [
"src/"
],
"license": "ISC",
"homepage": "https://npmjs.com/package/static-sitemap-cli",
"repository": "github:zerodevx/static-sitemap-cli",
"keywords": [
"sscli",
"sitemap",
"static-site",
"sitemap-generator",
"filesystem",
"xml",
"txt",
"cli"
]
}