CommunitySolidServer/package.json
2021-05-04 15:24:08 +01:00

171 lines
5.9 KiB
JSON

{
"name": "@solid/community-server",
"version": "0.9.0",
"description": "Community Solid Server: an open and modular implementation of the Solid specifications",
"keywords": [
"solid",
"linked-data",
"rdf",
"ldp"
],
"contributors": [
"Joachim Van Herwegen <joachim.vanherwegen@ugent.be>",
"Ruben Taelman <ruben.taelman@ugent.be> (https://www.rubensworks.net/)",
"Ruben Verborgh <ruben.verborgh@ugent.be> (https://ruben.verborgh.org/)"
],
"license": "MIT",
"engines": {
"node": ">=12.17"
},
"lsd:module": "https://linkedsoftwaredependencies.org/bundles/npm/@solid/community-server",
"lsd:components": "dist/components/components.jsonld",
"lsd:contexts": {
"https://linkedsoftwaredependencies.org/bundles/npm/@solid/community-server/^0.0.0/components/context.jsonld": "dist/components/context.jsonld"
},
"lsd:importPaths": {
"https://linkedsoftwaredependencies.org/bundles/npm/@solid/community-server/^0.0.0/components/": "dist/components/",
"https://linkedsoftwaredependencies.org/bundles/npm/@solid/community-server/^0.0.0/config/": "config/",
"https://linkedsoftwaredependencies.org/bundles/npm/@solid/community-server/^0.0.0/dist/": "dist/"
},
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"bin": {
"community-solid-server": "bin/server.js"
},
"repository": "git@github.com:solid/community-server.git",
"bugs": {
"url": "https://github.com/solid/community-server/issues"
},
"homepage": "https://github.com/solid/community-server#readme",
"scripts": {
"build": "npm run build:ts && npm run build:components",
"build:components": "componentsjs-generator -s src -c dist/components -i .componentsignore --typeScopedContexts",
"build:ts": "tsc",
"docker": "npm run docker:setup && npm run docker:start",
"docker:clean": "./test/docker/docker-clean.sh",
"docker:setup": "./test/docker/docker-setup.sh",
"docker:start": "./test/docker/docker-start.sh",
"docker:stop": "./test/docker/docker-stop.sh",
"docs": "typedoc",
"jest": "jest --coverageReporters text-summary --",
"lint": "eslint . --cache --ignore-path .gitignore",
"prepare": "npm run build",
"start": "node ./bin/server.js",
"start:file": "node ./bin/server.js -c config/config-file.json -f ./data",
"test": "npm run test:ts && npm run jest",
"test:deploy": "test/deploy/validate-package.sh",
"test:ts": "tsc -p test --noEmit",
"test:integration": "jest --coverageReporters text-summary -- test/integration",
"test:unit": "jest --config=./jest.coverage.config.js test/unit",
"test:watch": "jest --coverageReporters none --watch test/unit",
"validate": "componentsjs-compile-config urn:solid-server:default:Initializer -c config/config-default.json -f > /dev/null",
"version": "manual-git-changelog onversion",
"watch": "nodemon --watch \"dist/**/*.js\" --exec npm start"
},
"husky": {
"hooks": {
"pre-commit": "npm run build && npm run lint && npm run test:unit && npm run test:integration"
}
},
"files": [
"bin",
"dist",
"config",
"templates"
],
"dependencies": {
"@rdfjs/data-model": "^1.2.0",
"@rdfjs/fetch": "^2.1.0",
"@solid/identity-token-verifier": "^0.7.0",
"@types/arrayify-stream": "^1.0.0",
"@types/async-lock": "^1.1.2",
"@types/bcrypt": "^3.0.0",
"@types/cors": "^2.8.9",
"@types/end-of-stream": "^1.4.0",
"@types/mime-types": "^2.1.0",
"@types/n3": "^1.4.4",
"@types/node": "^14.10.2",
"@types/nodemailer": "^6.4.0",
"@types/pump": "^1.1.0",
"@types/punycode": "^2.1.0",
"@types/rdf-js": "^4.0.0",
"@types/rdfjs__fetch": "^2.0.2",
"@types/rdfjs__fetch-lite": "^2.0.2",
"@types/redis": "^2.8.28",
"@types/redlock": "^4.0.1",
"@types/sparqljs": "^3.1.0",
"@types/streamify-array": "^1.0.0",
"@types/url-join": "^4.0.0",
"@types/uuid": "^8.3.0",
"@types/ws": "^7.4.0",
"@types/yargs": "^16.0.0",
"arrayify-stream": "^1.0.0",
"async-lock": "^1.2.4",
"bcrypt": "^5.0.0",
"componentsjs": "^4.1.0",
"cors": "^2.8.5",
"ejs": "^3.1.5",
"end-of-stream": "^1.4.4",
"escape-string-regexp": "^4.0.0",
"fetch-sparql-endpoint": "^1.8.0",
"handlebars": "^4.7.6",
"jose": "^3.11.6",
"mime-types": "^2.1.27",
"n3": "^1.8.0",
"nodemailer": "^6.4.17",
"oidc-provider": "^6.29.8",
"pump": "^3.0.0",
"punycode": "^2.1.1",
"rdf-parse": "^1.7.0",
"rdf-serialize": "^1.1.0",
"rdf-terms": "^1.5.1",
"redis": "^3.0.2",
"redlock": "^4.2.0",
"sparqlalgebrajs": "^2.5.1",
"sparqljs": "^3.1.2",
"streamify-array": "^1.0.1",
"url-join": "^4.0.1",
"uuid": "^8.3.0",
"winston": "^3.3.3",
"winston-transport": "^4.4.0",
"ws": "^7.4.0",
"yargs": "^16.0.0"
},
"devDependencies": {
"@inrupt/solid-client-authn-node": "^1.8.1",
"@microsoft/tsdoc-config": "^0.15.0",
"@tsconfig/node12": "^1.0.7",
"@types/cheerio": "^0.22.27",
"@types/ejs": "^3.0.5",
"@types/jest": "^26.0.13",
"@types/rimraf": "^3.0.0",
"@types/set-cookie-parser": "^2.4.0",
"@types/supertest": "^2.0.10",
"@typescript-eslint/eslint-plugin": "^4.1.1",
"@typescript-eslint/parser": "^4.1.1",
"cheerio": "^1.0.0-rc.5",
"componentsjs-generator": "^2.1.0",
"cross-fetch": "^3.0.6",
"eslint": "^7.9.0",
"eslint-config-es": "^3.20.3",
"eslint-import-resolver-typescript": "^2.3.0",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-jest": "^24.1.0",
"eslint-plugin-tsdoc": "^0.2.7",
"eslint-plugin-unused-imports": "^1.0.0",
"husky": "^4.2.5",
"jest": "^26.6.3",
"jest-rdf": "^1.5.0",
"manual-git-changelog": "^1.0.1",
"node-mocks-http": "^1.8.1",
"nodemon": "^2.0.4",
"rimraf": "^3.0.2",
"set-cookie-parser": "^2.4.8",
"stream-to-string": "^1.1.0",
"supertest": "^6.0.0",
"ts-jest": "^26.3.0",
"typedoc": "^0.20.36",
"typescript": "^4.0.2"
}
}