forked from tea3/hexo-related-popular-posts
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
executable file
·74 lines (74 loc) · 1.77 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
65
66
67
68
69
70
71
72
73
74
{
"name": "hexo-related-popular-posts",
"version": "4.0.0",
"main": "index.js",
"scripts": {
"test-normal": "mocha test/test.js",
"test": "mocha test/test.js --require intelli-espower-loader",
"test-cov": "istanbul cover --print both _mocha -- test/test.js --require intelli-espower-loader",
"eslint": "eslint .",
"eslint-fix": "eslint --fix ."
},
"dependencies": {
"cheerio": "^1.0.0-rc.2",
"columnify": "^1.5.4",
"ga-analytics": "^0.0.7",
"hexo-fs": "^0.2.2",
"mkdirp": "^0.5.1",
"moment": "^2.19.1",
"kuromoji": "^0.1.1",
"hasha": "^3.0.0",
"log-util": "^1.2.0"
},
"devDependencies": {
"eslint": "^4.12.0",
"eslint-config-google": "^0.9.1",
"hexo": "^4.2.0",
"intelli-espower-loader": "^1.0.1",
"istanbul": "^0.4.5",
"mocha": "^4.0.1",
"power-assert": "^1.4.4"
},
"description": "A hexo plugin that generates a list of links to related posts and popular posts. Also , this plugin can get Visitor Counts (PageView) on posts.",
"directories": {
"lib": "./lib",
"test": "test/"
},
"author": {
"email": "[email protected]",
"name": "tea3",
"url": "https://photo-tea.com/"
},
"bugs": {
"url": "https://github.com/tea3/hexo-related-popular-posts/issues"
},
"keywords": [
"popularPosts",
"relatedPosts",
"similarPosts",
"staticSiteGenerator",
"hexo",
"blog",
"MorphologicalAnalysis",
"node.js",
"list",
"helper",
"visitorCounts",
"pageViews",
"pv"
],
"license": "MIT",
"maintainers": [
{
"name": "tea3gt",
"email": "[email protected]"
}
],
"repository": {
"type": "git",
"url": "https://github.com/tea3/hexo-related-popular-posts"
},
"engines": {
"node": ">=8.10.0"
}
}