package.json 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. {
  2. "name": "@e22m4u/js-format",
  3. "version": "0.1.0",
  4. "description": "Extended version of the format utility for Node.js",
  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-format.git"
  18. },
  19. "keywords": [
  20. "format",
  21. "printf",
  22. "errorf"
  23. ],
  24. "author": "e22m4u <e22m4u@yandex.ru>",
  25. "license": "MIT",
  26. "homepage": "https://github.com/e22m4u/js-format",
  27. "devDependencies": {
  28. "@commitlint/cli": "~19.5.0",
  29. "@commitlint/config-conventional": "~19.5.0",
  30. "@eslint/js": "~9.12.0",
  31. "c8": "~10.1.2",
  32. "chai": "~5.1.1",
  33. "eslint": "~9.12.0",
  34. "eslint-config-prettier": "~9.1.0",
  35. "eslint-plugin-chai-expect": "~3.1.0",
  36. "eslint-plugin-mocha": "~10.5.0",
  37. "globals": "~15.10.0",
  38. "husky": "~9.1.6",
  39. "mocha": "~10.7.3",
  40. "prettier": "~3.3.3",
  41. "typescript": "~5.6.2"
  42. }
  43. }