-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 785 Bytes
/
Copy pathpackage.json
File metadata and controls
31 lines (31 loc) · 785 Bytes
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
{
"name": "htmlmap",
"version": "1.0.0",
"description": "Fetches, transforms, and serves a sitemap.xml as simple HTML page (for when XSLT can't be used).",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "node index.js",
"html": "node index.js --html",
"text": "node index.js --text"
},
"author": "Jeremy Helms <digitaljhelms@gmail.com>",
"license": "ISC",
"repository": {
"type": "git",
"url": "https://github.com/digitaljhelms/htmlmap.git"
},
"engines": {
"node": ">=18"
},
"dependencies": {
"node-json2html": "^2.2.3",
"pretty": "^2.0.0",
"request": "^2.88.2",
"xml2js": "^0.4.23",
"yargs": "^17.7.1"
},
"devDependencies": {
"eslint": "^8.35.0"
}
}