@meese-os/server
Version:
meeseOS Server
139 lines • 3.13 kB
JSON
{
"name": "@meese-os/server",
"version": "1.2.0",
"description": "meeseOS Server",
"license": "BSD-2-Clause",
"main": "index.js",
"files": [
"src/",
"index.js",
"README.md"
],
"engines": {
"node": ">=12.0.0"
},
"devDependencies": {
"eslint": "^9.39.2",
"eslint-plugin-jest": "^29.5.0",
"jest-express": "^1.12.0",
"temp": "^0.9.4",
"jest": "^30.2.0",
"@meese-os/eslint-config": "1.1.0"
},
"dependencies": {
"body-parser": "^2.2.1",
"chokidar": "^3.6.0",
"connect-loki": "^1.2.0",
"consola": "^3.4.2",
"deepmerge": "^4.3.1",
"express": "^5.2.1",
"express-http-proxy": "^2.1.2",
"express-session": "^1.18.2",
"express-ws": "^5.0.2",
"extract-zip": "^2.0.1",
"fast-glob": "^3.3.3",
"filehound": "^1.17.6",
"formidable": "^3.5.4",
"fs-extra": "^11.3.2",
"helmet": "^8.1.0",
"jsonwebtoken": "^9.0.3",
"lokijs": "^1.5.12",
"mime": "^3.0.0",
"minimist": "^1.2.8",
"morgan": "^1.10.1",
"nocache": "^4.0.0",
"sanitize-filename": "^1.6.3",
"uuid": "^9.0.1",
"yazl": "^3.3.1",
"@meese-os/common": "1.0.5"
},
"eslintConfig": {
"env": {
"browser": true,
"node": true,
"jest/globals": true
},
"plugins": [
"jest"
],
"parserOptions": {
"sourceType": "module"
},
"extends": [
"@meese-os/eslint-config",
"plugin:jest/recommended"
]
},
"esdoc": {
"source": "./src",
"destination": "./doc",
"plugins": [
{
"name": "esdoc-standard-plugin",
"option": {
"brand": {
"title": "meeseOS Server API",
"description": "meeseOS Server API Documentation"
},
"lint": {
"enable": false
},
"coverage": {
"enable": false
},
"undocumentIdentifier": {
"enable": false
}
}
},
{
"name": "esdoc-publish-html-plugin"
},
{
"name": "esdoc-ecmascript-proposal-plugin",
"option": {
"all": true
}
},
{
"name": "esdoc-node"
}
]
},
"jest": {
"collectCoverage": true,
"coverageReporters": [
"lcov"
],
"moduleNameMapper": {
"^meeseOS$": "<rootDir>/__mocks__/core.js"
},
"coveragePathIgnorePatterns": [
"src/esdoc.js",
"src/config.js",
"src/providers",
"/node_modules/"
]
},
"repository": {
"type": "git",
"url": "https://github.com/meese-os/meeseOS.git",
"directory": "backend/server"
},
"keywords": [
"os",
"osjs",
"operating system",
"webOS",
"meeseOS",
"server"
],
"scripts": {
"build": "echo \"There is no build command for server\" && exit 0",
"eslint": "eslint index.js src",
"jest": "jest --detectOpenHandles --forceExit",
"jest:debug": "jest --runInBand --silent false --verbose true --useStderr=true --detectOpenHandles --forceExit",
"coverage": "jest --coverage",
"test": "npm run eslint && npm run jest"
}
}