package.json 1.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  1. {
  2. "name": "@e22m4u/js-repository",
  3. "version": "0.1.14",
  4. "description": "Модуль для работы с базами данных для Node.js",
  5. "type": "module",
  6. "main": "src/index.js",
  7. "engines": {
  8. "node": ">=14"
  9. },
  10. "scripts": {
  11. "lint": "tsc && eslint .",
  12. "lint:fix": "tsc && eslint . --fix",
  13. "format": "prettier --write \"./src/**/*.js\"",
  14. "test": "npm run lint && c8 --reporter=text-summary mocha",
  15. "test:coverage": "npm run lint && c8 --reporter=text mocha",
  16. "prepare": "husky"
  17. },
  18. "repository": {
  19. "type": "git",
  20. "url": "https://gitflic.ru/project/e22m4u/js-repository.git"
  21. },
  22. "keywords": [
  23. "Repository",
  24. "ORM",
  25. "ODM",
  26. "Database",
  27. "Datasource",
  28. "Relations"
  29. ],
  30. "author": "e22m4u <e22m4u@yandex.ru>",
  31. "license": "MIT",
  32. "homepage": "https://gitflic.ru/project/e22m4u/js-repository",
  33. "dependencies": {
  34. "@e22m4u/js-format": "0.0.9",
  35. "@e22m4u/js-service": "0.0.8"
  36. },
  37. "devDependencies": {
  38. "@commitlint/cli": "^18.6.1",
  39. "@commitlint/config-conventional": "^18.6.2",
  40. "@types/chai": "^4.3.12",
  41. "@types/chai-as-promised": "^7.1.8",
  42. "@types/chai-spies": "^1.0.6",
  43. "@types/mocha": "^10.0.6",
  44. "@typescript-eslint/eslint-plugin": "^7.0.2",
  45. "@typescript-eslint/parser": "^7.0.2",
  46. "c8": "^9.1.0",
  47. "chai": "^4.4.1",
  48. "chai-as-promised": "^7.1.1",
  49. "chai-spies": "^1.1.0",
  50. "chai-subset": "^1.6.0",
  51. "eslint": "^8.57.0",
  52. "eslint-config-prettier": "^9.1.0",
  53. "eslint-plugin-chai-expect": "^3.0.0",
  54. "eslint-plugin-jsdoc": "^48.2.0",
  55. "eslint-plugin-mocha": "^10.3.0",
  56. "husky": "^9.0.11",
  57. "mocha": "^10.3.0",
  58. "prettier": "^3.2.5",
  59. "ts-node": "^10.9.2",
  60. "typescript": "^5.3.3"
  61. }
  62. }