Files
CommunitySolidServer/package.json
2020-09-16 12:10:42 +02:00

120 lines
3.9 KiB
JSON

{
"name": "@solid/community-server",
"version": "0.1.1",
"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",
"lsd:module": "https://linkedsoftwaredependencies.org/bundles/npm/@solid/community-server",
"lsd:components": "components/components.jsonld",
"lsd:contexts": {
"https://linkedsoftwaredependencies.org/bundles/npm/@solid/community-server/^1.0.0/components/context.jsonld": "components/context.jsonld"
},
"lsd:importPaths": {
"https://linkedsoftwaredependencies.org/bundles/npm/@solid/community-server/^1.0.0/components/": "components/",
"https://linkedsoftwaredependencies.org/bundles/npm/@solid/community-server/^1.0.0/config/": "config/"
},
"main": "./index.js",
"types": "./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:ts": "tsc",
"build:components": "componentsjs-generator -s src",
"coveralls": "jest --coverage && cat ./coverage/lcov.info | coveralls",
"lint": "eslint . --ext .ts",
"prepare": "npm run build",
"start": "node ./bin/server.js -p 3000",
"test": "jest",
"validate": "componentsjs-compile-config urn:solid-server:default -c config/config-default.json -f > /dev/null",
"version": "manual-git-changelog onversion",
"watch": "nodemon --watch \"src/**/*.js\" --watch \"bin/**/*.js\" --exec npm start"
},
"husky": {
"hooks": {
"pre-commit": "npm run build && npm run lint && npm run test"
}
},
"files": [
"index.js",
"index.d.ts",
"bin/*.js",
"bin/*.d.ts",
"src/**/*.js",
"src/**/*.d.ts",
"components/**/*.jsonld",
"config/**/*.json"
],
"dependencies": {
"@rdfjs/data-model": "^1.1.2",
"@types/arrayify-stream": "^1.0.0",
"@types/async-lock": "^1.1.2",
"@types/cors": "^2.8.6",
"@types/express": "^4.17.6",
"@types/mime-types": "^2.1.0",
"@types/n3": "^1.4.0",
"@types/node": "^14.0.1",
"@types/rdf-js": "^3.0.0",
"@types/streamify-array": "^1.0.0",
"@types/uuid": "^8.3.0",
"@types/yargs": "^15.0.5",
"arrayify-stream": "^1.0.0",
"async-lock": "^1.2.4",
"componentsjs": "^3.6.0",
"cors": "^2.8.5",
"express": "^4.17.1",
"mime-types": "^2.1.27",
"n3": "^1.4.0",
"rdf-parse": "^1.5.0",
"rdf-serialize": "^1.0.0",
"rdf-terms": "^1.5.1",
"sparqlalgebrajs": "^2.3.1",
"streamify-array": "^1.0.1",
"uuid": "^8.3.0",
"yargs": "^15.4.1"
},
"devDependencies": {
"@microsoft/tsdoc-config": "^0.13.6",
"@types/jest": "^26.0.0",
"@types/rimraf": "^3.0.0",
"@types/supertest": "^2.0.10",
"@typescript-eslint/eslint-plugin": "^2.33.0",
"@typescript-eslint/parser": "^2.33.0",
"componentjs-generator": "^1.1.0",
"coveralls": "^3.1.0",
"eslint": "^7.0.0",
"eslint-config-es": "^3.19.61",
"eslint-import-resolver-typescript": "^2.2.1",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-tsdoc": "^0.2.4",
"eslint-plugin-unused-imports": "^0.1.3",
"husky": "^4.2.5",
"jest": "^26.0.1",
"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",
"stream-to-string": "^1.1.0",
"supertest": "^4.0.2",
"ts-jest": "^26.0.0",
"typescript": "^3.9.2"
}
}