package.json 1.0 KB

1234567891011121314151617181920212223242526272829303132333435363738
  1. {
  2. "name": "serve-placeholder",
  3. "version": "1.2.4",
  4. "main": "src/index.js",
  5. "license": "MIT",
  6. "description": "Connect/Express middleware to respond with better placeholders based on request instead of 404 page",
  7. "repository": "git@github.com:nuxt/serve-placeholder.git",
  8. "contributes": [
  9. "Pooya Parsa <pooya@pi0.ir>"
  10. ],
  11. "scripts": {
  12. "lint": "eslint src",
  13. "test": "npm run lint && npm run jest",
  14. "jest": "jest",
  15. "release": "standard-version && git push --follow-tags && npm publish",
  16. "prepare": "npm run test"
  17. },
  18. "files": [
  19. "src"
  20. ],
  21. "dependencies": {
  22. "defu": "^5.0.0"
  23. },
  24. "devDependencies": {
  25. "axios": "latest",
  26. "codecov": "latest",
  27. "connect": "latest",
  28. "eslint": "latest",
  29. "eslint-config-standard": "latest",
  30. "eslint-plugin-import": "latest",
  31. "eslint-plugin-jest": "latest",
  32. "eslint-plugin-node": "latest",
  33. "eslint-plugin-promise": "latest",
  34. "eslint-plugin-standard": "latest",
  35. "jest": "latest",
  36. "standard-version": "latest"
  37. }
  38. }