Files
CommunitySolidServer/package.json
Joachim Van Herwegen 39853b0bd0 fix: update N3 typings
2020-06-25 08:56:37 +02:00

50 lines
1.1 KiB
JSON

{
"name": "open-solid-server",
"private": true,
"version": "0.0.1",
"main": "index.js",
"license": "MIT",
"scripts": {
"build": "tsc",
"lint": "eslint . --ext .ts",
"test": "jest"
},
"husky": {
"hooks": {
"pre-commit": "npm run build && npm run lint && npm run test"
}
},
"files": [
"index.js",
"index.d.ts",
"src/**/*.js",
"src/**/*.d.ts"
],
"dependencies": {
"@rdfjs/data-model": "^1.1.2",
"@types/n3": "^1.4.0",
"@types/node": "^14.0.1",
"@types/rdf-js": "^3.0.0",
"n3": "^1.4.0"
},
"devDependencies": {
"@types/arrayify-stream": "^1.0.0",
"@types/express": "^4.17.6",
"@types/jest": "^25.2.1",
"@types/streamify-array": "^1.0.0",
"@typescript-eslint/eslint-plugin": "^2.33.0",
"@typescript-eslint/parser": "^2.33.0",
"arrayify-stream": "^1.0.0",
"eslint": "^7.0.0",
"eslint-config-es": "^3.19.61",
"eslint-plugin-tsdoc": "^0.2.4",
"husky": "^4.2.5",
"jest": "^26.0.1",
"jest-rdf": "^1.5.0",
"node-mocks-http": "^1.8.1",
"streamify-array": "^1.0.1",
"ts-jest": "^26.0.0",
"typescript": "^3.9.2"
}
}