forked from hexojs/hexo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
81 lines (81 loc) · 1.94 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
75
76
77
78
79
80
81
{
"name": "hexo",
"version": "3.7.1",
"description": "A fast, simple & powerful blog framework, powered by Node.js.",
"main": "lib/hexo",
"bin": {
"hexo": "./bin/hexo"
},
"scripts": {
"eslint": "eslint-ci .",
"test": "mocha test/index.js",
"test-cov": "istanbul cover --print both _mocha -- test/index.js",
"precommit": "lint-staged",
"lint-staged": "lint-staged"
},
"directories": {
"lib": "./lib",
"bin": "./bin"
},
"repository": "hexojs/hexo",
"homepage": "https://hexo.io/",
"keywords": [
"website",
"blog",
"cms",
"framework",
"hexo"
],
"author": "Tommy Chen <[email protected]> (http://zespia.tw)",
"maintainers": [
"Abner Chou <[email protected]> (http://abnerchou.me)"
],
"license": "MIT",
"dependencies": {
"abbrev": "^1.0.7",
"archy": "^1.0.0",
"bluebird": "^3.4.0",
"chalk": "^2.3.1",
"cheerio": "0.22.0",
"hexo-cli": "^1.1.0",
"hexo-front-matter": "^0.2.2",
"hexo-fs": "^0.2.0",
"hexo-i18n": "^0.2.1",
"hexo-log": "^0.2.0",
"hexo-util": "^0.6.3",
"js-yaml": "^3.6.1",
"lodash": "^4.17.5",
"minimatch": "^3.0.4",
"moment": "^2.19.4",
"moment-timezone": "^0.5.14",
"nunjucks": "^3.1.2",
"pretty-hrtime": "^1.0.2",
"resolve": "^1.5.0",
"strip-ansi": "^4.0.0",
"strip-indent": "^2.0.0",
"swig-extras": "0.0.1",
"swig-templates": "^2.0.2",
"text-table": "^0.2.0",
"tildify": "^1.2.0",
"titlecase": "^1.1.2",
"warehouse": "^2.2.0"
},
"devDependencies": {
"@easyops/git-exec-and-restage": "^1.0.4",
"chai": "^4.1.2",
"chai-as-promised": "^7.1.1",
"eslint": "^4.13.1",
"eslint-ci": "^0.1.1",
"eslint-config-hexo": "^3.0.0",
"hexo-renderer-marked": "^0.3.0",
"husky": "^0.14.3",
"istanbul": "^0.4.3",
"lint-staged": "^7.0.0",
"mocha": "^5.0.5",
"rewire": "^3.0.2",
"sinon": "^4.1.2"
},
"engines": {
"node": ">=6.9.0"
}
}