forked from hexojs/hexo-server
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
54 lines (54 loc) · 1.22 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
{
"name": "hexo-server",
"version": "0.3.3",
"description": "Server module of Hexo.",
"main": "index",
"scripts": {
"eslint": "eslint .",
"test": "mocha test/index.js",
"test-cov": "istanbul cover --print both _mocha -- test/index.js"
},
"directories": {
"lib": "./lib"
},
"repository": "hexojs/hexo-server",
"homepage": "http://hexo.io/",
"keywords": [
"hexo",
"server",
"connect"
],
"author": "Tommy Chen <[email protected]> (http://zespia.tw)",
"maintainers": [
"Abner Chou <[email protected]> (http://abnerchou.me)"
],
"license": "MIT",
"dependencies": {
"bluebird": "^3.5.1",
"chalk": "^2.4.1",
"compression": "^1.7.3",
"connect": "^3.6.6",
"lru-cache": "^5.1.1",
"mime": "^1.6.0",
"morgan": "^1.9.0",
"opn": "^5.3.0",
"serve-static": "^1.13.2"
},
"devDependencies": {
"chai": "^4.2.0",
"chai-as-promised": "^7.1.1",
"eslint": "^5.7.0",
"eslint-config-hexo": "^3.0.0",
"hexo": "^3.7.1",
"hexo-fs": "^1.0.0",
"istanbul": "^0.4.1",
"mocha": "^5.2.0",
"sinon": "^7.0.0",
"supertest": "^1.2.0",
"supertest-promised": "^1.0.0",
"uuid": "^3.3.2"
},
"engines": {
"node": ">=6.9.0"
}
}