hexo/node_modules/hexo-server/package.json

58 lines
1.3 KiB
JSON
Raw Normal View History

2023-10-03 11:14:36 +08:00
{
"name": "hexo-server",
"version": "2.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": "http://hexo.io/",
"keywords": [
"hexo",
"server",
"connect"
],
"author": "Tommy Chen <tommy351@gmail.com> (http://zespia.tw)",
"maintainers": [
"Abner Chou <hi@abnerchou.me> (http://abnerchou.me)"
],
"license": "MIT",
"dependencies": {
"bluebird": "^3.5.5",
"chalk": "^4.0.0",
"compression": "^1.7.4",
"connect": "^3.7.0",
"mime": "^2.4.3",
"morgan": "^1.9.1",
"open": "^7.0.0",
"serve-static": "^1.14.1"
},
"devDependencies": {
"chai": "^4.2.0",
"chai-as-promised": "^7.1.1",
"eslint": "^7.0.0",
"eslint-config-hexo": "^4.0.0",
"hexo": "^5.0.0",
"hexo-fs": "^3.0.1",
"hexo-util": "^2.1.0",
"mocha": "^8.0.1",
"nyc": "^15.0.0",
"sinon": "^9.0.2",
"supertest": "^4.0.2",
"uuid": "^8.0.0"
},
"engines": {
"node": ">=10.13.0"
}
}