mirror of
https://github.com/CommunitySolidServer/CommunitySolidServer.git
synced 2024-10-03 14:55:10 +00:00
Certain prettier rules were conflicting with those of eslint-config-es, so it will be removed until we discover cases where it would actually be needed, since most of it seems to already be covered.
41 lines
861 B
JSON
41 lines
861 B
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 lint && npm run build"
|
|
}
|
|
},
|
|
"files": [
|
|
"index.js",
|
|
"index.d.ts",
|
|
"src/**/*.js",
|
|
"src/**/*.d.ts"
|
|
],
|
|
"dependencies": {
|
|
"@rdfjs/data-model": "^1.1.2",
|
|
"@types/node": "^14.0.1",
|
|
"@types/rdf-js": "^3.0.0"
|
|
},
|
|
"devDependencies": {
|
|
"@types/jest": "^25.2.1",
|
|
"@typescript-eslint/eslint-plugin": "^2.33.0",
|
|
"@typescript-eslint/parser": "^2.33.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",
|
|
"ts-jest": "^25.5.1",
|
|
"typescript": "^3.9.2"
|
|
}
|
|
}
|