UNPKG

1.68 kBJSONView Raw
1{
2 "name": "@osjs/server",
3 "version": "3.0.50",
4 "description": "OS.js v3 Server",
5 "main": "index.js",
6 "scripts": {
7 "test": "npm run eslint && npm run test:coverage",
8 "test:coverage": "jest",
9 "eslint": "eslint index.js src",
10 "prepublishOnly": "npm run test"
11 },
12 "files": [
13 "src/",
14 "index.js",
15 "README.md",
16 "CHANGELOG.md",
17 "LICENSE"
18 ],
19 "repository": {
20 "type": "git",
21 "url": "git+https://github.com/os-js/osjs-server.git"
22 },
23 "keywords": [
24 "osjs"
25 ],
26 "author": "Anders Evenrud <andersevenrud@gmail.com>",
27 "license": "BSD-2-Clause",
28 "bugs": {
29 "url": "https://github.com/os-js/osjs-server/issues"
30 },
31 "engines": {
32 "node": ">=8.0.0"
33 },
34 "homepage": "https://github.com/os-js/osjs-server#readme",
35 "dependencies": {
36 "@osjs/common": "^3.0.3",
37 "body-parser": "^1.19.0",
38 "chokidar": "^2.1.8",
39 "connect-loki": "^1.1.0",
40 "consola": "^2.11.3",
41 "deepmerge": "^2.2.1",
42 "express": "^4.17.1",
43 "express-http-proxy": "^1.6.0",
44 "express-session": "^1.17.0",
45 "express-ws": "^4.0.0",
46 "fast-glob": "^2.2.7",
47 "filehound": "^1.17.3",
48 "formidable": "^1.2.1",
49 "fs-extra": "^8.1.0",
50 "mime": "^2.4.4",
51 "minimist": "^1.2.0",
52 "morgan": "^1.9.1",
53 "nocache": "^2.1.0",
54 "sanitize-filename": "^1.6.3",
55 "uuid": "^3.3.3"
56 },
57 "devDependencies": {
58 "@osjs/eslint-config": "^1.0.2",
59 "eslint": "^6.8.0",
60 "jest-express": "^1.10.1",
61 "temp": "^0.9.1"
62 },
63 "eslintConfig": {
64 "env": {
65 "browser": true,
66 "node": true
67 },
68 "parserOptions": {
69 "sourceType": "module"
70 },
71 "extends": "@osjs/eslint-config"
72 }
73}