forked from hexojs/hexo-generator-index
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
45 lines (45 loc) · 1.1 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
{
"name": "hexo-generator-index-plus",
"version": "1.0.0",
"description": "Index generator plus for Hexo, which includes Top and UpdateDate.",
"main": "index",
"scripts": {
"eslint": "eslint .",
"jscs": "jscs .",
"test": "mocha test/index.js",
"test-cov": "istanbul cover --print both _mocha -- test/index.js"
},
"directories": {
"lib": "./lib"
},
"engines": {
"node": ">= 0.10.0"
},
"repository": "YuyingWu/hexo-generator-index-plus",
"homepage": "https://github.com/YuyingWu/hexo-generator-index-plus/blob/master/README.md",
"keywords": [
"hexo",
"generator",
"index",
"home",
"top",
"updateDate"
],
"author": "Yuying Wu <[email protected]> (http://demo.wuyuying.com/)",
"license": "MIT",
"devDependencies": {
"chai": "^3.4.0",
"eslint": "^1.8.0",
"eslint-config-hexo": "^1.0.2",
"hexo": "^3.0.0",
"istanbul": "^0.4.0",
"jscs": "^2.5.0",
"jscs-preset-hexo": "^1.0.1",
"mocha": "^2.0.1"
},
"dependencies": {
"hexo-pagination": "0.0.2",
"moment": "^2.18.1",
"object-assign": "^4.0.1"
}
}