package.json 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738
  1. {
  2. "name": "serve-static",
  3. "description": "Serve static files",
  4. "version": "1.12.1",
  5. "author": "Douglas Christopher Wilson <doug@somethingdoug.com>",
  6. "license": "MIT",
  7. "repository": "expressjs/serve-static",
  8. "dependencies": {
  9. "encodeurl": "~1.0.1",
  10. "escape-html": "~1.0.3",
  11. "parseurl": "~1.3.1",
  12. "send": "0.15.1"
  13. },
  14. "devDependencies": {
  15. "eslint": "3.17.0",
  16. "eslint-config-standard": "7.0.0",
  17. "eslint-plugin-markdown": "1.0.0-beta.4",
  18. "eslint-plugin-promise": "3.5.0",
  19. "eslint-plugin-standard": "2.1.1",
  20. "istanbul": "0.4.5",
  21. "mocha": "2.5.3",
  22. "supertest": "1.1.0"
  23. },
  24. "files": [
  25. "LICENSE",
  26. "HISTORY.md",
  27. "index.js"
  28. ],
  29. "engines": {
  30. "node": ">= 0.8.0"
  31. },
  32. "scripts": {
  33. "lint": "eslint --plugin markdown --ext js,md .",
  34. "test": "mocha --reporter spec --bail --check-leaks test/",
  35. "test-ci": "istanbul cover node_modules/mocha/bin/_mocha --report lcovonly -- --reporter spec --check-leaks test/",
  36. "test-cov": "istanbul cover node_modules/mocha/bin/_mocha -- --reporter dot --check-leaks test/"
  37. }
  38. }