package.json 1.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. {
  2. "name": "fs-caching-server",
  3. "version": "0.0.3",
  4. "description": "A caching HTTP server/proxy that stores data on the local filesystem",
  5. "main": "fs-caching-server.js",
  6. "preferGlobal": true,
  7. "scripts": {
  8. "test": "./node_modules/tape/bin/tape tests/*.js"
  9. },
  10. "bin": {
  11. "fs-caching-server": "./fs-caching-server.js"
  12. },
  13. "repository": {
  14. "type": "git",
  15. "url": "git://github.com/bahamas10/node-fs-caching-server.git"
  16. },
  17. "keywords": [
  18. "fs",
  19. "caching",
  20. "proxy"
  21. ],
  22. "author": "Dave Eddy <dave@daveeddy.com> (http://www.daveeddy.com)",
  23. "license": "MIT",
  24. "bugs": {
  25. "url": "https://github.com/bahamas10/node-fs-caching-server/issues"
  26. },
  27. "homepage": "https://github.com/bahamas10/node-fs-caching-server",
  28. "dependencies": {
  29. "access-log": "^0.4.1",
  30. "assert-plus": "^1.0.0",
  31. "latest": "^0.2.0",
  32. "mime": "^1.3.4",
  33. "mkdirp": "^0.5.0",
  34. "posix-getopt": "^1.2.0",
  35. "readable-stream-clone": "^0.0.7",
  36. "uuid": "^8.3.2"
  37. },
  38. "devDependencies": {
  39. "rimraf": "^3.0.2",
  40. "tape": "^5.2.2"
  41. }
  42. }