forked from hexojs/hexo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
85 lines (85 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
82
83
84
85
{
"name": "hexo",
"version": "6.3.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": "c8 --reporter=lcovonly npm test -- --no-parallel",
"prepare": "husky install"
},
"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": "^2.0.0",
"archy": "^1.0.0",
"bluebird": "^3.7.2",
"hexo-cli": "^4.3.0",
"hexo-front-matter": "^4.0.0",
"hexo-fs": "^4.0.0",
"hexo-i18n": "^2.0.0",
"hexo-log": "^4.0.1",
"hexo-util": "^3.0.1",
"js-yaml": "^4.1.0",
"js-yaml-js-types": "^1.0.0",
"micromatch": "^4.0.4",
"moize": "^6.1.0",
"moment": "^2.29.1",
"moment-timezone": "^0.5.34",
"nunjucks": "^3.2.3",
"picocolors": "^1.0.0",
"pretty-hrtime": "^1.0.3",
"resolve": "^1.22.0",
"strip-ansi": "^6.0.0",
"text-table": "^0.2.0",
"tildify": "^2.0.0",
"titlecase": "^1.1.3",
"warehouse": "^5.0.0"
},
"devDependencies": {
"@easyops/git-exec-and-restage": "^1.0.4",
"0x": "^5.1.2",
"c8": "^7.12.0",
"chai": "^4.3.6",
"cheerio": "0.22.0",
"decache": "^4.6.1",
"eslint": "^8.8.0",
"eslint-config-hexo": "^5.0.0",
"hexo-renderer-marked": "^6.0.0",
"husky": "^8.0.1",
"lint-staged": "^13.0.3",
"mocha": "^10.0.0",
"sinon": "^15.0.0"
},
"engines": {
"node": ">=14"
}
}