forked from xavierdutreilh/wintersmith-sitemap
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1.16 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
{
"name": "wintersmith-sitemap",
"description": "A Wintersmith plugin to generate a sitemap.xml file",
"version": "0.2.1",
"homepage": "https://github.com/xavierdutreilh/wintersmith-sitemap",
"author": {
"name": "Xavier Dutreilh",
"email": "[email protected]",
"url": "http://xavier.dutreilh.com/"
},
"repository": {
"type": "git",
"url": "git://github.com/xavierdutreilh/wintersmith-sitemap.git"
},
"bugs": {
"url": "https://github.com/xavierdutreilh/wintersmith-sitemap/issues"
},
"license": "MIT",
"main": "lib/",
"engines": {
"node": ">= 0.10.0"
},
"scripts": {
"prepublish": "coffee -o lib -b -c src",
"pretest": "jshint . && jscs . && wintersmith build -C test/fixtures",
"test": "nodeunit"
},
"dependencies": {
"xml": "^1.0.0"
},
"devDependencies": {
"coffee-script": ">1.5",
"jscs": "^2.3.0",
"jshint": "^2.8.0",
"nodeunit": "^0.9.1",
"wintersmith": "2.x",
"wintersmith-contents": "^0.1.2"
},
"peerDependencies": {
"wintersmith": "2.x",
"wintersmith-contents": "^0.1.2"
},
"keywords": [
"sitemap",
"wintersmith",
"wintersmith-plugin"
]
}