forked from hexojs/hexo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
70 lines (70 loc) · 1.65 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
{
"name": "hexo",
"version": "3.2.0",
"description": "A fast, simple & powerful blog framework, powered by Node.js.",
"main": "lib/hexo",
"bin": {
"hexo": "./bin/hexo"
},
"scripts": {
"eslint": "eslint .",
"jscs": "jscs .",
"test": "mocha test/index.js",
"test-cov": "istanbul cover --print both _mocha -- test/index.js"
},
"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)",
"license": "MIT",
"dependencies": {
"abbrev": "^1.0.7",
"archy": "^1.0.0",
"bluebird": "^3.3.1",
"chalk": "^1.1.1",
"cheerio": "^0.20.0",
"hexo-cli": "^1.0.1",
"hexo-front-matter": "^0.2.2",
"hexo-fs": "^0.1.5",
"hexo-i18n": "^0.2.1",
"hexo-log": "^0.1.2",
"hexo-util": "^0.5.3",
"js-yaml": "^3.5.3",
"lodash": "^4.5.0",
"minimatch": "^3.0.0",
"moment": "~2.11.2",
"moment-timezone": "^0.5.0",
"nunjucks": "^2.3.0",
"pretty-hrtime": "^1.0.2",
"strip-indent": "^1.0.1",
"swig": "1.4.2",
"swig-extras": "0.0.1",
"text-table": "^0.2.0",
"tildify": "^1.1.2",
"titlecase": "^1.0.2",
"warehouse": "^2.2.0"
},
"devDependencies": {
"chai": "^3.5.0",
"chai-as-promised": "^5.2.0",
"eslint": "^2.2.0",
"eslint-config-hexo": "^1.0.3",
"hexo-renderer-marked": "^0.2.10",
"istanbul": "^0.4.2",
"jscs": "^2.10.1",
"jscs-preset-hexo": "^1.0.1",
"mocha": "^2.4.5",
"rewire": "^2.5.1",
"sinon": "^1.17.3"
}
}