package.json 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. {
  2. "name": "cache-require-paths",
  3. "description": "Caches resolved paths in module require to avoid Node hunting for right module. Speeds up app load.",
  4. "main": "index.js",
  5. "version": "0.3.0",
  6. "scripts": {
  7. "test": "cd test; npm install; node index; node index --cache; node index --cache",
  8. "semantic-release": "semantic-release pre && npm publish && semantic-release post",
  9. "size": "t=\"$(npm pack .)\"; wc -c \"${t}\"; tar tvf \"${t}\"; rm \"${t}\";"
  10. },
  11. "repository": {
  12. "type": "git",
  13. "url": "https://github.com/bahmutov/cache-require-paths.git"
  14. },
  15. "files": [
  16. "index.js"
  17. ],
  18. "keywords": [
  19. "npm",
  20. "node",
  21. "application",
  22. "load",
  23. "startup",
  24. "performance",
  25. "speed",
  26. "cache",
  27. "resolution"
  28. ],
  29. "author": "Gleb Bahmutov <gleb.bahmutov@gmail.com>",
  30. "license": "MIT",
  31. "bugs": {
  32. "url": "https://github.com/bahmutov/cache-require-paths/issues"
  33. },
  34. "homepage": "https://github.com/bahmutov/cache-require-paths",
  35. "devDependencies": {
  36. "pre-git": "0.2.1",
  37. "semantic-release": "^4.3.5"
  38. },
  39. "pre-commit": [
  40. "npm test",
  41. "npm version"
  42. ]
  43. }