-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
36 lines (36 loc) · 845 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
{
"name": "super-simple-sitemap-generator",
"description": "Node.js powered scrapper that generates a sitemap.xml file from command line with just an URL.",
"version": "1.0.5",
"repository": "https://github.com/jvidalv/super-simple-sitemap-generator",
"homepage": "https://github.com/jvidalv/super-simple-sitemap-generator",
"author": "Josep Vidal <[email protected]>",
"publishConfig": {
"access": "public"
},
"keywords": [
"sitemap",
"node",
"generator",
"react",
"angular",
"puppeteer",
"fs"
],
"engines": {
"node": ">=10"
},
"scripts": {
"sitemap": "sitemap "
},
"license": "MIT",
"main": "./src/index.js",
"bin": {
"sitemap": "./bin/cli.js"
},
"dependencies": {
"commander": "^4.1.1",
"puppeteer": "^2.1.1",
"xmlbuilder": "^13.0.2"
}
}