forked from pgilad/gulp-sitemap
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.05 KB
/
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
49
50
51
52
{
"name": "gulp-sitemap",
"version": "0.5.0",
"description": "Generate a search engine friendly sitemap.xml using a Gulp stream",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/pgilad/gulp-sitemap"
},
"homepage": "https://github.com/pgilad/gulp-sitemap",
"bugs": "https://github.com/pgilad/gulp-sitemap/issues",
"author": {
"name": "Gilad Peleg",
"email": "[email protected]"
},
"engines": {
"node": ">=0.10.0"
},
"files": [
"index.js",
"LICENSE.md",
"lib"
],
"scripts": {
"watchTest": "mocha -R spec --watch test/test.js",
"test": "mocha test/test.js -R spec"
},
"main": "index.js",
"keywords": [
"gulpplugin",
"gulp",
"js",
"javascript",
"seo",
"sitemap",
"sitemap.xml",
"google",
"search-engine",
"xml"
],
"dependencies": {
"gulp-util": "^3.0.1",
"lodash.defaults": "^2.4.1",
"slash": "^1.0.0",
"through2": "^0.6.1"
},
"devDependencies": {
"gulp": "^3.8.8",
"mocha": "*",
"should": "*"
}
}