-
Notifications
You must be signed in to change notification settings - Fork 30
/
Copy pathpackage.json
64 lines (64 loc) · 1.59 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
53
54
55
56
57
58
59
60
61
62
63
64
{
"name": "hexo-generator-seo-friendly-sitemap",
"description": "SEO-friendly sitemap generator plugin for Hexo",
"version": "0.2.1",
"author": {
"name": "Ludovic LEFEVRE",
"email": "[email protected]",
"url": "http://www.ludoviclefevre.fr"
},
"bugs": {
"url": "http://github.com/ludoviclefevre/hexo-generator-seo-friendly-sitemap/issues"
},
"publishConfig": {
"registry": "https://registry.npmjs.org/"
},
"dependencies": {
"bluebird": "3.5.4",
"ejs": "2.6.1",
"lodash": "4.17.12",
"moment": "2.24.0",
"pretty-data": "0.40.0",
"url-join": "4.0.0"
},
"devDependencies": {
"eslint": "^5.16.0",
"eslint-config-recommended": "^4.0.0",
"eslint-plugin-prettier": "^3.0.1",
"hexo": "^3.9.0",
"jest": "^24.7.1",
"normalize-newline": "3.0.0",
"prettier": "^1.16.4",
"rimraf": "2.6.3",
"xmldom": "0.1.27"
},
"engines": {
"node": ">=8.0.0"
},
"files": [
"index.js",
"lib",
"views",
"README.md",
"LICENSE"
],
"homepage": "https://github.com/ludoviclefevre/hexo-generator-seo-friendly-sitemap#readme",
"keywords": [
"generator",
"google",
"hexo",
"seo",
"sitemap"
],
"license": "MIT",
"main": "index",
"repository": {
"type": "git",
"url": "https://github.com/ludoviclefevre/hexo-generator-seo-friendly-sitemap.git"
},
"scripts": {
"test": "./node_modules/.bin/jest test",
"prettify": "./node_modules/.bin/prettier --config .prettierrc --write '{lib/**/*.js,test/**/*.js,.prettierrc}'",
"postversion": "git push && git push --tags"
}
}