package.json 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. {
  2. "name": "file-system-cache",
  3. "version": "2.3.0",
  4. "description": "A super-fast, promise-based cache that reads and writes to the file-system.",
  5. "main": "./lib/index.js",
  6. "scripts": {
  7. "test": "ts-mocha -p tsconfig.json src/**/*.TEST.ts",
  8. "build": "tsc",
  9. "prepublish": "npm test && npm run build"
  10. },
  11. "dependencies": {
  12. "fs-extra": "11.1.1",
  13. "ramda": "0.29.0"
  14. },
  15. "devDependencies": {
  16. "@types/chai": "4.3.4",
  17. "@types/expect": "24.3.0",
  18. "@types/fs-extra": "11.0.1",
  19. "@types/mocha": "10.0.1",
  20. "@types/ramda": "0.29.1",
  21. "chai": "4.3.7",
  22. "mocha": "10.2.0",
  23. "ts-mocha": "10.0.0",
  24. "typescript": "5.0.4"
  25. },
  26. "repository": {
  27. "type": "git",
  28. "url": "https://github.com/philcockfield/file-system-cache"
  29. },
  30. "resolutions": {
  31. "json5": ">=1.0.2"
  32. },
  33. "keywords": [
  34. "cache",
  35. "fs",
  36. "file-system"
  37. ],
  38. "author": {
  39. "name": "Phil Cockfield",
  40. "email": "phil@cockfield.net",
  41. "url": "https://github.com/philcockfield"
  42. },
  43. "homepage": "https://github.com/philcockfield/file-system-cache",
  44. "license": "MIT"
  45. }