-
Notifications
You must be signed in to change notification settings - Fork 18
/
package.json
48 lines (48 loc) · 996 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
38
39
40
41
42
43
44
45
46
47
48
{
"name": "gulp-sitemap",
"version": "8.0.0",
"description": "Generate a search engine friendly sitemap.xml using a Gulp stream",
"repository": "pgilad/gulp-sitemap",
"license": "MIT",
"author": "Gilad Peleg <[email protected]> (https://www.giladpeleg.com)",
"main": "index.js",
"files": [
"index.js",
"lib"
],
"engines": {
"node": ">=10"
},
"scripts": {
"test": "mocha -R spec test/*.spec.js"
},
"keywords": [
"gulpplugin",
"gulp",
"js",
"javascript",
"SEO",
"sitemap",
"sitemap.xml",
"Google",
"search-engine",
"xml"
],
"dependencies": {
"chalk": "^2.4.2",
"fancy-log": "^1.3.3",
"lodash": "^4.17.15",
"multimatch": "^4.0.0",
"plugin-error": "^1.0.1",
"slash": "^3.0.0",
"through2": "^3.0.1",
"vinyl": "^2.2.0"
},
"devDependencies": {
"gulp": "^4.0.2",
"gulp-rename": "^1.4.0",
"mocha": "^6.2.2",
"should": "^13.2.3",
"strip-ansi": "^5.2.0"
}
}