http-server.json 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  1. {
  2. "name": "http-server",
  3. "preferGlobal": true,
  4. "version": "0.3.0",
  5. "author": "Nodejitsu <support@nodejitsu.com>",
  6. "description": "a simple zero-configuration command-line http server",
  7. "contributors": [
  8. {
  9. "name": "Marak Squires",
  10. "email": "marak@nodejitsu.com"
  11. }
  12. ],
  13. "bin": {
  14. "http-server": "./bin/http-server"
  15. },
  16. "scripts": {
  17. "start": "node ./bin/http-server",
  18. "test": "vows --spec --isolate",
  19. "predeploy": "echo This will be run before deploying the app",
  20. "postdeploy": "echo This will be run after deploying the app"
  21. },
  22. "main": "./lib/http-server",
  23. "repository": {
  24. "type": "git",
  25. "url": "https://github.com/nodejitsu/http-server.git"
  26. },
  27. "keywords": [
  28. "cli",
  29. "http",
  30. "server"
  31. ],
  32. "dependencies" : {
  33. "colors" : "*",
  34. "flatiron" : "0.1.x",
  35. "optimist" : "0.2.x",
  36. "union" : "0.1.x",
  37. "ecstatic" : "0.1.x",
  38. "plates" : "https://github.com/flatiron/plates/tarball/master"
  39. },
  40. "analyze": false,
  41. "devDependencies": {
  42. "vows" : "0.5.x",
  43. "request" : "2.1.x"
  44. },
  45. "bundledDependencies": [
  46. "union",
  47. "ecstatic"
  48. ],
  49. "license": "MIT",
  50. "engines": {
  51. "node": ">=0.6"
  52. }
  53. }