package.json 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. {
  2. "name": "@e22m4u/js-service",
  3. "version": "0.1.0",
  4. "description": "Реализация сервис-локатора",
  5. "type": "module",
  6. "main": "src/index.js",
  7. "scripts": {
  8. "lint": "tsc && eslint .",
  9. "lint:fix": "tsc && eslint . --fix",
  10. "format": "prettier --write \"./src/**/*.js\"",
  11. "test": "npm run lint && c8 --reporter=text-summary mocha",
  12. "test:coverage": "npm run lint && c8 --reporter=text mocha",
  13. "prepare": "husky"
  14. },
  15. "repository": {
  16. "type": "git",
  17. "url": "https://github.com/e22m4u/js-service.git"
  18. },
  19. "keywords": [
  20. "DI",
  21. "Service",
  22. "Locator",
  23. "Container"
  24. ],
  25. "author": "e22m4u <e22m4u@yandex.ru>",
  26. "license": "MIT",
  27. "homepage": "https://github.com/e22m4u/js-service",
  28. "dependencies": {
  29. "@e22m4u/js-format": "0.1.x"
  30. },
  31. "devDependencies": {
  32. "@commitlint/cli": "~19.5.0",
  33. "@commitlint/config-conventional": "~19.5.0",
  34. "@eslint/js": "~9.11.1",
  35. "c8": "~10.1.2",
  36. "chai": "~5.1.1",
  37. "eslint": "~9.11.1",
  38. "eslint-config-prettier": "~9.1.0",
  39. "eslint-plugin-chai-expect": "~3.1.0",
  40. "eslint-plugin-mocha": "~10.5.0",
  41. "globals": "^15.9.0",
  42. "husky": "~9.1.6",
  43. "mocha": "~10.7.3",
  44. "prettier": "~3.3.3",
  45. "typescript": "~5.6.2"
  46. }
  47. }