forked from hexojs/hexo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
88 lines (88 loc) · 1.97 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
82
83
84
85
86
87
88
{
"name": "hexo",
"version": "5.2.0",
"description": "A fast, simple & powerful blog framework, powered by Node.js.",
"main": "lib/hexo",
"bin": {
"hexo": "./bin/hexo"
},
"scripts": {
"eslint": "eslint .",
"test": "mocha test/index.js",
"test-cov": "nyc --reporter=lcovonly npm run test -- --no-parallel",
"lint-staged": "lint-staged"
},
"directories": {
"lib": "./lib",
"bin": "./bin"
},
"files": [
"lib/",
"bin/"
],
"repository": "hexojs/hexo",
"homepage": "https://hexo.io/",
"funding": {
"type": "opencollective",
"url": "https://opencollective.com/hexo"
},
"keywords": [
"website",
"blog",
"cms",
"framework",
"hexo"
],
"author": "Tommy Chen <tommy351@gmail.com> (https://zespia.tw)",
"maintainers": [
"Abner Chou <hi@abnerchou.me> (https://abnerchou.me)"
],
"license": "MIT",
"dependencies": {
"abbrev": "^1.1.1",
"archy": "^1.0.0",
"bluebird": "^3.5.2",
"chalk": "^4.0.0",
"hexo-cli": "^4.0.0",
"hexo-front-matter": "^2.0.0",
"hexo-fs": "^3.1.0",
"hexo-i18n": "^1.0.0",
"hexo-log": "^2.0.0",
"hexo-util": "^2.4.0",
"js-yaml": "^3.12.0",
"micromatch": "^4.0.2",
"moment": "^2.22.2",
"moment-timezone": "^0.5.21",
"nunjucks": "^3.2.1",
"pretty-hrtime": "^1.0.3",
"resolve": "^1.8.1",
"strip-ansi": "^6.0.0",
"text-table": "^0.2.0",
"tildify": "^2.0.0",
"titlecase": "^1.1.2",
"warehouse": "^4.0.0"
},
"devDependencies": {
"0x": "^4.9.1",
"@easyops/git-exec-and-restage": "^1.0.4",
"chai": "^4.1.2",
"cheerio": "0.22.0",
"decache": "^4.5.1",
"eslint": "^7.0.0",
"eslint-config-hexo": "^4.1.0",
"hexo-renderer-marked": "^3.0.0",
"husky": "^4.2.5",
"lint-staged": "^10.2.0",
"mocha": "^8.0.1",
"nyc": "^15.0.0",
"sinon": "^9.0.2"
},
"engines": {
"node": ">=10.13.0"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
}
}