You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

40 lines
1.1 KiB

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