package.json 1.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  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. "Relation",
  30. "Inclusion",
  31. "Memory"
  32. ],
  33. "author": "e22m4u <e22m4u@gmail.com>",
  34. "license": "MIT",
  35. "homepage": "https://github.com/e22m4u/js-repository",
  36. "dependencies": {
  37. "@e22m4u/js-format": "0.0.8",
  38. "@e22m4u/js-service": "0.0.7"
  39. },
  40. "devDependencies": {
  41. "@commitlint/cli": "^18.6.0",
  42. "@commitlint/config-conventional": "^18.6.0",
  43. "@types/chai": "^4.3.11",
  44. "@types/mocha": "^10.0.6",
  45. "@typescript-eslint/eslint-plugin": "^6.19.1",
  46. "@typescript-eslint/parser": "^6.19.1",
  47. "c8": "^9.1.0",
  48. "chai": "^4.4.1",
  49. "chai-as-promised": "^7.1.1",
  50. "chai-spies": "^1.1.0",
  51. "chai-subset": "^1.6.0",
  52. "eslint": "^8.56.0",
  53. "eslint-config-prettier": "^9.1.0",
  54. "eslint-plugin-chai-expect": "^3.0.0",
  55. "eslint-plugin-jsdoc": "^48.0.4",
  56. "eslint-plugin-mocha": "^10.2.0",
  57. "husky": "^9.0.6",
  58. "mocha": "^10.2.0",
  59. "prettier": "^3.2.4",
  60. "ts-node": "^10.9.2",
  61. "typedoc": "^0.25.7",
  62. "typescript": "^5.3.3"
  63. }
  64. }