forked from hexojs/hexo-cli
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
65 lines (65 loc) · 1.35 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
{
"name": "hexo-cli",
"version": "4.2.0",
"description": "Command line interface for Hexo",
"main": "lib/hexo",
"bin": {
"hexo": "./bin/hexo"
},
"files": [
"lib",
"completion",
"bin"
],
"scripts": {
"eslint": "eslint .",
"test": "mocha test/index.js",
"test-cov": "nyc --reporter=lcovonly npm run test"
},
"directories": {
"lib": "./lib",
"bin": "./bin"
},
"repository": "hexojs/hexo-cli",
"homepage": "https://hexo.io/",
"keywords": [
"website",
"blog",
"cms",
"framework",
"hexo",
"cli"
],
"author": "Tommy Chen <[email protected]> (http://zespia.tw)",
"maintainers": [
"Abner Chou <[email protected]> (http://abnerchou.me)"
],
"license": "MIT",
"dependencies": {
"abbrev": "^1.1.1",
"bluebird": "^3.5.5",
"chalk": "^4.0.0",
"command-exists": "^1.2.8",
"hexo-fs": "^3.0.1",
"hexo-log": "^2.0.0",
"hexo-util": "^2.0.0",
"minimist": "^1.2.5",
"resolve": "^1.11.0",
"tildify": "^2.0.0"
},
"devDependencies": {
"chai": "^4.2.0",
"chai-as-promised": "^7.1.1",
"eslint": "^7.0.0",
"eslint-config-hexo": "^4.0.0",
"hexo-renderer-marked": "^3.0.0",
"mocha": "^8.0.1",
"nyc": "^15.0.0",
"proxyquire": "^2.1.0",
"rewire": "^5.0.0",
"sinon": "^9.0.2"
},
"engines": {
"node": ">=10.13.0"
}
}