package.json 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. {
  2. "name": "@e22m4u/util-format",
  3. "version": "0.0.5",
  4. "description": "Расширенная версия format из Node.js модуля util",
  5. "type": "module",
  6. "main": "src/index.js",
  7. "scripts": {
  8. "lint": "eslint .",
  9. "lint:fix": "eslint . --fix",
  10. "format": "prettier --write \"./src/**/*.js\"",
  11. "test": "eslint . && c8 --reporter=text-summary mocha",
  12. "test:coverage": "eslint . && c8 --reporter=text mocha",
  13. "prepare": "npx husky install"
  14. },
  15. "repository": {
  16. "type": "git",
  17. "url": "https://github.com/e22m4u/util-format.git"
  18. },
  19. "keywords": [
  20. "format",
  21. "printf",
  22. "errorf"
  23. ],
  24. "author": "e22m4u <e22m4u@gmail.com>",
  25. "license": "MIT",
  26. "homepage": "https://github.com/e22m4u/util-format",
  27. "devDependencies": {
  28. "@commitlint/cli": "^17.7.1",
  29. "@commitlint/config-conventional": "^17.7.0",
  30. "c8": "^8.0.1",
  31. "chai": "^4.3.7",
  32. "chai-as-promised": "^7.1.1",
  33. "chai-spies": "^1.0.0",
  34. "chai-subset": "^1.6.0",
  35. "eslint": "^8.47.0",
  36. "eslint-config-prettier": "^9.0.0",
  37. "eslint-plugin-chai-expect": "^3.0.0",
  38. "eslint-plugin-mocha": "^10.1.0",
  39. "husky": "^8.0.3",
  40. "mocha": "^10.2.0",
  41. "prettier": "^3.0.1"
  42. }
  43. }