package.json 1.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  1. {
  2. "name": "@e22m4u/js-repository",
  3. "version": "0.1.2",
  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. "build:doc": "tsc && npx typedoc",
  17. "prepare": "husky"
  18. },
  19. "repository": {
  20. "type": "git",
  21. "url": "https://github.com/e22m4u/js-repository.git"
  22. },
  23. "keywords": [
  24. "Repository",
  25. "ORM",
  26. "ODM",
  27. "Database",
  28. "Datasource",
  29. "Relations"
  30. ],
  31. "author": "e22m4u <e22m4u@gmail.com>",
  32. "license": "MIT",
  33. "homepage": "https://github.com/e22m4u/js-repository",
  34. "dependencies": {
  35. "@e22m4u/js-format": "0.0.8",
  36. "@e22m4u/js-service": "0.0.7"
  37. },
  38. "devDependencies": {
  39. "@commitlint/cli": "^18.6.0",
  40. "@commitlint/config-conventional": "^18.6.0",
  41. "@types/chai": "^4.3.11",
  42. "@types/mocha": "^10.0.6",
  43. "@typescript-eslint/eslint-plugin": "^6.20.0",
  44. "@typescript-eslint/parser": "^6.20.0",
  45. "c8": "^9.1.0",
  46. "chai": "^4.4.1",
  47. "chai-as-promised": "^7.1.1",
  48. "chai-spies": "^1.1.0",
  49. "chai-subset": "^1.6.0",
  50. "eslint": "^8.56.0",
  51. "eslint-config-prettier": "^9.1.0",
  52. "eslint-plugin-chai-expect": "^3.0.0",
  53. "eslint-plugin-jsdoc": "^48.0.4",
  54. "eslint-plugin-mocha": "^10.2.0",
  55. "husky": "^9.0.10",
  56. "mocha": "^10.2.0",
  57. "prettier": "^3.2.5",
  58. "ts-node": "^10.9.2",
  59. "typedoc": "^0.25.7",
  60. "typescript": "^5.3.3"
  61. }
  62. }