forked from hexojs/hexo-generator-sitemap
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 1022 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
49
{
"name": "hexo-generator-sitemap",
"version": "2.0.0",
"description": "Sitemap generator plugin for Hexo",
"main": "index",
"scripts": {
"eslint": "eslint .",
"test": "mocha test/index.js",
"test-cov": "nyc npm run test"
},
"directories": {
"lib": "./lib"
},
"files": [
"lib",
"index.js",
"sitemap.xml"
],
"repository": "hexojs/hexo-generator-sitemap",
"keywords": [
"hexo",
"sitemap",
"seo",
"generator"
],
"author": "Tommy Chen <tommy351@gmail.com> (http://zespia.tw)",
"maintainers": [
"Abner Chou <hi@abnerchou.me> (http://abnerchou.me)"
],
"license": "MIT",
"dependencies": {
"hexo-util": "^2.1.0",
"micromatch": "^4.0.2",
"nunjucks": "^3.1.6"
},
"devDependencies": {
"camaro": "^5.0.0",
"chai": "^4.2.0",
"cheerio": "^0.22.0",
"eslint": "^7.1.0",
"eslint-config-hexo": "^4.1.0",
"hexo": "^5.0.0",
"mocha": "^8.0.1",
"nyc": "^15.0.0"
},
"engines": {
"node": ">=10.13.0"
}
}