package.json 975 B

12345678910111213141516171819202122232425262728293031323334353637
  1. {
  2. "name": "fs-caching-server",
  3. "version": "0.0.2",
  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": "echo \"Error: no test specified\" && exit 1"
  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.3.9",
  30. "latest": "^0.2.0",
  31. "mime": "^1.3.4",
  32. "mkdirp": "^0.5.0",
  33. "node-uuid": "^1.4.3",
  34. "path-platform": "^0.11.15",
  35. "posix-getopt": "^1.1.0"
  36. }
  37. }