UNPKG

@meese-os/server

Version:
138 lines 3.11 kB
{ "name": "@meese-os/server", "version": "1.0.7", "description": "meeseOS Server", "license": "BSD-2-Clause", "main": "index.js", "files": [ "src/", "index.js", "README.md" ], "engines": { "node": ">=12.0.0" }, "devDependencies": { "eslint": "^8.48.0", "eslint-plugin-jest": "^27.2.3", "jest-express": "^1.12.0", "temp": "^0.9.4", "jest": "^29.6.4", "@meese-os/eslint-config": "1.0.2" }, "dependencies": { "body-parser": "^1.19.1", "chokidar": "^3.5.3", "connect-loki": "^1.2.0", "consola": "^2.15.3", "deepmerge": "^4.3.1", "express": "^4.17.2", "express-http-proxy": "^1.6.3", "express-session": "^1.17.3", "express-ws": "^5.0.2", "extract-zip": "^2.0.1", "fast-glob": "^2.2.7", "filehound": "^1.17.5", "formidable": "^2.0.1", "fs-extra": "^10.0.0", "jsonwebtoken": "^8.5.1", "lokijs": "^1.5.12", "mime": "^3.0.0", "minimist": "^1.2.5", "morgan": "^1.10.0", "nocache": "^3.0.1", "sanitize-filename": "^1.6.3", "uuid": "^8.3.2", "yazl": "^2.5.1", "@meese-os/common": "1.0.3" }, "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/meeseOS/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" } }