package.json 670 B

123456789101112131415161718192021222324252627282930313233
  1. {
  2. "name": "neocities-proxy",
  3. "version": "0.0.1",
  4. "description": "Neocities' proxy server for web pages",
  5. "main": "./src/index.js",
  6. "keywords": [
  7. "neocities"
  8. ],
  9. "contributors": [
  10. {
  11. "name": "Kyle Drake",
  12. "email": "kyle@kyledrake.net",
  13. "url": "http://kyledrake.net/"
  14. }
  15. ],
  16. "repository": {
  17. "type": "git",
  18. "url": "https://github.com/neocities/neocities-proxy.git"
  19. },
  20. "devDependencies": {},
  21. "scripts": {
  22. "coverage": "istanbul cover _mocha -- test/*.js",
  23. "test": "npm run-script unit"
  24. },
  25. "dependencies": {
  26. "spdy": "*",
  27. "ejs": "*",
  28. "optimist": "*",
  29. "mime": "*",
  30. "leveldown": "*"
  31. }
  32. }