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
54 lines (54 loc) · 1.21 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.21 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": "sitemap-generator-cli",
"version": "3.2.2",
"description": "Create xml sitemaps from the command line.",
"homepage": "https://github.com/lgraubner/node-sitemap-generator-cli",
"author": {
"name": "Lars Graubner",
"email": "mail@larsgraubner.de",
"url": "http://larsgraubner.de"
},
"keywords": [
"sitemap",
"xml",
"generator",
"crawler",
"seo",
"google",
"ecosystem:node"
],
"main": "cli.js",
"repository": {
"type": "git",
"url": "https://github.com/lgraubner/node-sitemap-generator-cli.git"
},
"bugs": {
"url": "https://github.com/lgraubner/node-sitemap-generator-cli/issues"
},
"dependencies": {
"chalk": "^1.1.3",
"cheerio": "^0.20.0",
"commander": "^2.9.0",
"lodash": "^4.9.0",
"simplecrawler": "^0.6.2",
"url-parse": "^1.1.1",
"xmlbuilder": "^8.2.2"
},
"preferGlobal": true,
"engines": {
"node": ">=0.12"
},
"bin": {
"sitemap-generator": "cli.js"
},
"license": "MIT",
"devDependencies": {
"chai": "^3.5.0",
"eslint": "^2.7.0",
"eslint-config-graubnla": "^2.0.2",
"mocha": "^2.4.5"
},
"scripts": {
"test": "eslint cli.js lib/** && NODE_ENV=development mocha test"
}
}