-
-
Notifications
You must be signed in to change notification settings - Fork 80
/
package.json
80 lines (80 loc) · 1.98 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
{
"name": "hexo-cli",
"version": "4.3.2",
"description": "Command line interface for Hexo",
"main": "dist/hexo",
"bin": {
"hexo": "./bin/hexo"
},
"files": [
"dist/**",
"completion",
"bin",
"assets"
],
"types": "./dist/hexo.d.ts",
"scripts": {
"prepublishOnly": "npm install && npm run clean && npm run build",
"build": "tsc -b",
"clean": "tsc -b --clean",
"eslint": "eslint .",
"pretest": "npm run clean && npm run build",
"test": "mocha test/**/*.ts --require ts-node/register",
"test-cov": "nyc --reporter=lcovonly npm test",
"prepare": "git submodule init && git submodule update && git submodule foreach git pull origin master"
},
"repository": {
"type": "git",
"url": "git+https://github.com/hexojs/hexo-cli.git"
},
"homepage": "https://hexo.io/",
"keywords": [
"website",
"blog",
"cms",
"framework",
"hexo",
"cli"
],
"author": "Tommy Chen <[email protected]> (https://zespia.tw)",
"maintainers": [
"Abner Chou <[email protected]> (https://abnerchou.me)"
],
"license": "MIT",
"dependencies": {
"abbrev": "^2.0.0",
"bluebird": "^3.7.2",
"command-exists": "^1.2.9",
"hexo-fs": "^4.1.1",
"hexo-log": "^4.0.1",
"hexo-util": "^3.3.0",
"minimist": "^1.2.5",
"picocolors": "^1.0.0",
"resolve": "^1.20.0",
"tildify": "^2.0.0"
},
"devDependencies": {
"@types/abbrev": "^1.1.5",
"@types/bluebird": "^3.5.37",
"@types/chai": "^4.3.14",
"@types/command-exists": "^1.2.3",
"@types/minimist": "^1.2.5",
"@types/mocha": "^10.0.6",
"@types/node": "^18.11.8",
"@types/rewire": "^2.5.30",
"@types/sinon": "^17.0.3",
"chai": "^4.3.4",
"eslint": "^8.2.0",
"eslint-config-hexo": "^5.0.0",
"hexo-renderer-marked": "^6.0.0",
"mocha": "^10.0.0",
"nyc": "^15.1.0",
"rewire": "^6.0.0",
"sinon": "^17.0.1",
"ts-node": "^10.9.1",
"typescript": "^5.0.0"
},
"engines": {
"node": ">=14"
}
}