-
-
Notifications
You must be signed in to change notification settings - Fork 51
/
package.json
58 lines (58 loc) · 1.24 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
{
"name": "hexo-server",
"version": "3.0.0",
"description": "Server module of Hexo.",
"main": "index",
"scripts": {
"eslint": "eslint .",
"test": "mocha test/index.js",
"test-cov": "nyc --reporter=lcovonly npm run test"
},
"directories": {
"lib": "./lib"
},
"files": [
"index.js",
"lib/"
],
"repository": "hexojs/hexo-server",
"homepage": "https://hexo.io/",
"keywords": [
"hexo",
"server",
"connect"
],
"author": "Tommy Chen <[email protected]> (https://zespia.tw)",
"maintainers": [
"Abner Chou <[email protected]> (https://abnerchou.me)"
],
"license": "MIT",
"dependencies": {
"bluebird": "^3.7.2",
"compression": "^1.7.4",
"connect": "^3.7.0",
"mime": "^3.0.0",
"morgan": "^1.10.0",
"open": "^8.4.0",
"picocolors": "^1.0.0",
"serve-static": "^1.15.0"
},
"devDependencies": {
"chai": "^4.3.6",
"chai-as-promised": "^7.1.1",
"eslint": "^8.23.0",
"eslint-config-hexo": "^5.0.0",
"hexo": "^7.1.1",
"hexo-fs": "^4.0.0",
"hexo-util": "^3.0.1",
"mocha": "^10.0.0",
"nyc": "^15.1.0",
"rewire": "^7.0.0",
"sinon": "^15.0.1",
"supertest": "^6.2.4",
"uuid": "^9.0.0"
},
"engines": {
"node": ">=14"
}
}