-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
37 lines (37 loc) · 859 Bytes
/
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
{
"name": "sitemap-to-html",
"author": "Arijus Šukys <[email protected]>",
"version": "1.0.2",
"description": "CLI tool to generate HTML files for each link defined in sitemap.xml",
"bin": {
"sitemap-to-html": "bin/index.js"
},
"files": [
"dist",
"bin",
"*.md",
"*.json"
],
"main": "dist/index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "tsc --watch",
"build": "tsc"
},
"license": "ISC",
"dependencies": {
"minimist": "^1.2.0",
"puppeteer": "^2.0.0",
"url-parse": "^1.4.7",
"xml2json-light": "^1.0.6"
},
"devDependencies": {
"@types/minimist": "^1.2.0",
"@types/node": "^13.1.2",
"@types/puppeteer": "^2.0.0",
"@types/url-parse": "^1.4.3",
"eslint": "^6.8.0",
"prettier": "^1.19.1",
"typescript": "^3.7.4"
}
}