UNPKG

2.1 kBJSONView Raw
1{
2 "name": "hexo",
3 "version": "4.2.0",
4 "description": "A fast, simple & powerful blog framework, powered by Node.js.",
5 "main": "lib/hexo",
6 "bin": {
7 "hexo": "./bin/hexo"
8 },
9 "scripts": {
10 "eslint": "eslint .",
11 "test": "mocha test/index.js",
12 "test-cov": "nyc npm run test",
13 "lint-staged": "lint-staged"
14 },
15 "directories": {
16 "lib": "./lib",
17 "bin": "./bin"
18 },
19 "files": [
20 "lib/",
21 "bin/"
22 ],
23 "repository": "hexojs/hexo",
24 "homepage": "https://hexo.io/",
25 "funding": {
26 "type": "opencollective",
27 "url": "https://opencollective.com/hexo"
28 },
29 "keywords": [
30 "website",
31 "blog",
32 "cms",
33 "framework",
34 "hexo"
35 ],
36 "author": "Tommy Chen <tommy351@gmail.com> (https://zespia.tw)",
37 "maintainers": [
38 "Abner Chou <hi@abnerchou.me> (https://abnerchou.me)"
39 ],
40 "license": "MIT",
41 "dependencies": {
42 "abbrev": "^1.1.1",
43 "archy": "^1.0.0",
44 "bluebird": "^3.5.2",
45 "chalk": "^3.0.0",
46 "hexo-cli": "^3.0.0",
47 "hexo-front-matter": "^1.0.0",
48 "hexo-fs": "^2.0.0",
49 "hexo-i18n": "^1.0.0",
50 "hexo-log": "^1.0.0",
51 "hexo-util": "^1.8.0",
52 "js-yaml": "^3.12.0",
53 "lodash": "^4.17.11",
54 "micromatch": "^4.0.2",
55 "moment": "^2.22.2",
56 "moment-timezone": "^0.5.21",
57 "nunjucks": "^3.1.3",
58 "pretty-hrtime": "^1.0.3",
59 "resolve": "^1.8.1",
60 "strip-ansi": "^6.0.0",
61 "strip-indent": "^3.0.0",
62 "swig-extras": "0.0.1",
63 "swig-templates": "^2.0.3",
64 "text-table": "^0.2.0",
65 "tildify": "^2.0.0",
66 "titlecase": "^1.1.2",
67 "warehouse": "^3.0.1"
68 },
69 "devDependencies": {
70 "@easyops/git-exec-and-restage": "^1.0.4",
71 "chai": "^4.1.2",
72 "chai-as-promised": "^7.1.1",
73 "cheerio": "0.22.0",
74 "eslint": "^6.0.1",
75 "eslint-config-hexo": "^4.0.0",
76 "hexo-renderer-marked": "^2.0.0",
77 "husky": "^3.0.0",
78 "lint-staged": "^9.1.0",
79 "mocha": "^6.0.0",
80 "nyc": "^14.1.1",
81 "rewire": "^4.0.1",
82 "sinon": "^7.1.1"
83 },
84 "engines": {
85 "node": ">=8.10.0"
86 },
87 "husky": {
88 "hooks": {
89 "pre-commit": "lint-staged"
90 }
91 }
92}