package.json 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. {
  2. "name": "@e22m4u/js-path-trie",
  3. "version": "0.0.3",
  4. "description": "A router for Node.js based on a prefix tree",
  5. "type": "module",
  6. "main": "src/index.js",
  7. "scripts": {
  8. "lint": "tsc && eslint ./src",
  9. "lint:fix": "tsc && eslint ./src --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": "git+https://github.com/e22m4u/js-path-trie.git"
  18. },
  19. "keywords": [
  20. "path",
  21. "trie",
  22. "router"
  23. ],
  24. "author": "e22m4u <e22m4u@yandex.ru>",
  25. "license": "MIT",
  26. "homepage": "https://github.com/e22m4u/js-path-trie",
  27. "dependencies": {
  28. "@e22m4u/js-format": "~0.1.0",
  29. "debug": "~4.3.7",
  30. "path-to-regexp": "~8.2.0"
  31. },
  32. "devDependencies": {
  33. "@commitlint/cli": "~19.5.0",
  34. "@commitlint/config-conventional": "~19.5.0",
  35. "@eslint/js": "~9.12.0",
  36. "c8": "~10.1.2",
  37. "chai": "~5.1.1",
  38. "eslint": "~9.12.0",
  39. "eslint-config-prettier": "~9.1.0",
  40. "eslint-plugin-chai-expect": "~3.1.0",
  41. "eslint-plugin-jsdoc": "~50.3.1",
  42. "eslint-plugin-mocha": "~10.5.0",
  43. "globals": "~15.10.0",
  44. "husky": "~9.1.6",
  45. "mocha": "~10.7.3",
  46. "prettier": "~3.3.3",
  47. "typescript": "~5.6.2"
  48. }
  49. }