{ "name": "solid-server", "description": "Solid server on top of the file-system", "version": "5.6.6", "author": { "name": "Tim Berners-Lee", "email": "timbl@w3.org" }, "contributors": [ { "name": "Jackson Morgan", "email": "jacksonm@inrupt.com" }, { "name": "Nicola Greco", "email": "me@nicolagreco.com" }, { "name": "Kjetil Kjernsmo", "email": "kjetil@inrupt.com", "url": "http://kjetil.kjernsmo.net/" }, { "name": "Martin Martinez Rivera", "email": "martinmr@mit.edu" }, { "name": "Andrei Sambra", "url": "https://deiu.me/" }, { "name": "Ruben Taelman", "url": "https://www.rubensworks.net/" }, { "name": "Ruben Verborgh", "email": "ruben@verborgh.org", "url": "https://ruben.verborgh.org/" }, { "name": "Dmitri Zagidulin", "url": "https://github.com/dmitrizagidulin/" }, { "name": "Arne Hassel", "email": "arne.hassel@inrupt.com", "url": "https://icanhasweb.net/" } ], "license": "MIT", "repository": { "type": "git", "url": "https://github.com/solid/node-solid-server" }, "homepage": "https://github.com/solid/node-solid-server", "bugs": "https://github.com/solid/node-solid-server/issues", "dependencies": { "@solid/acl-check": "^0.4.5", "@solid/oidc-auth-manager": "^0.24.1", "@solid/oidc-op": "0.11.5", "async-lock": "^1.2.8", "body-parser": "^1.19.0", "bootstrap": "^3.4.1", "busboy": "^0.3.1", "cached-path-relative": "^1.0.2", "camelize": "^1.0.0", "cheerio": "^1.0.0-rc.5", "colorette": "^1.2.2", "commander": "^7.1.0", "cors": "^2.8.5", "debug": "^4.3.1", "express": "^4.17.1", "express-handlebars": "^5.2.1", "express-session": "^1.17.1", "extend": "^3.0.2", "from2": "^2.3.0", "fs-extra": "^9.1.0", "get-folder-size": "^2.0.1", "glob": "^7.1.6", "global-tunnel-ng": "^2.7.1", "handlebars": "^4.7.7", "http-proxy-middleware": "^1.0.6", "inquirer": "^8.0.0", "into-stream": "^6.0.0", "ip-range-check": "0.2.0", "is-ip": "^3.1.0", "li": "^1.3.0", "mashlib": "^1.7.0", "mime-types": "^2.1.29", "negotiator": "^0.6.2", "node-fetch": "^2.6.1", "node-forge": "^0.10.0", "nodemailer": "^6.5.0", "oidc-op-express": "^0.0.3", "owasp-password-strength-test": "^1.3.0", "rdflib": "^2.2.3", "recursive-readdir": "^2.2.2", "rimraf": "^3.0.2", "solid-namespace": "^0.5.0", "solid-ws": "^0.4.3", "text-encoder-lite": "^2.0.0", "the-big-username-blacklist": "^1.5.2", "ulid": "^2.3.0", "urijs": "^1.19.6", "uuid": "^8.3.2", "valid-url": "^1.0.9", "validator": "^13.5.2", "vhost": "^3.0.2" }, "devDependencies": { "@solid/solid-auth-oidc": "^0.3.0", "chai": "4.3.3", "chai-as-promised": "7.1.1", "cross-env": "7.0.3", "dirty-chai": "2.0.1", "localstorage-memory": "1.0.3", "mocha": "8.3.2", "nock": "13.0.11", "node-mocks-http": "1.10.1", "nyc": "15.1.0", "pre-commit": "1.2.2", "randombytes": "2.1.0", "sinon": "9.2.4", "sinon-chai": "3.5.0", "snyk": "1.483.0", "standard": "16.0.3", "supertest": "6.1.3", "turtle-validator": "1.1.1", "whatwg-url": "8.4.0" }, "pre-commit": [ "standard" ], "main": "index.js", "scripts": { "build": "echo nothing to build", "solid": "node ./bin/solid", "standard": "standard '{bin,examples,lib,test}/**/*.js'", "validate": "node ./test/validate-turtle.js", "nyc": "cross-env NODE_TLS_REJECT_UNAUTHORIZED=0 nyc --reporter=text-summary mocha --recursive test/integration/ test/unit/", "mocha": "cross-env NODE_TLS_REJECT_UNAUTHORIZED=0 mocha --recursive test/integration/ test/unit/", "prepublishOnly": "npm test", "postpublish": "git push --follow-tags", "test": "npm run standard && npm run validate && npm run nyc", "clean": "rimraf config/templates config/views", "reset": "rimraf .db data && npm run clean" }, "nyc": { "reporter": [ "html", "text-summary" ], "cache": true }, "standard": { "globals": [ "after", "afterEach", "before", "beforeEach", "describe", "it" ] }, "bin": { "solid": "bin/solid" }, "engines": { "node": ">=12.0" } }