package.json 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  1. {
  2. "name": "geniurl",
  3. "version": "1.1.0",
  4. "description": "Simple JSON and XML REST API to search for song metadata and the lyrics URL on genius.com",
  5. "main": "src/index.ts",
  6. "scripts": {
  7. "start": "tsc && node --enable-source-maps out/src/index.js",
  8. "watch": "nodemon -e \"ts,d.ts\" -x \"npm start\""
  9. },
  10. "repository": {
  11. "type": "git",
  12. "url": "git+https://github.com/Sv443/geniURL.git"
  13. },
  14. "keywords": [
  15. "rest-api",
  16. "lyrics",
  17. "rest-proxy",
  18. "lyrics-search"
  19. ],
  20. "author": {
  21. "name": "Sv443",
  22. "url": "https://github.com/Sv443",
  23. "email": "[email protected]"
  24. },
  25. "license": "MIT",
  26. "bugs": {
  27. "url": "https://github.com/Sv443/geniURL/issues"
  28. },
  29. "homepage": "https://github.com/Sv443/geniURL",
  30. "dependencies": {
  31. "axios": "^0.26.0",
  32. "compression": "^1.7.4",
  33. "cors": "^2.8.5",
  34. "express": "^4.17.3",
  35. "fuse.js": "^6.6.2",
  36. "helmet": "^5.0.2",
  37. "js2xmlparser": "^4.0.2",
  38. "kleur": "^4.1.4",
  39. "rate-limiter-flexible": "^2.3.6",
  40. "svcorelib": "^1.15.0",
  41. "tcp-port-used": "^1.0.2"
  42. },
  43. "devDependencies": {
  44. "@types/compression": "^1.7.2",
  45. "@types/cors": "^2.8.12",
  46. "@types/express": "^4.17.14",
  47. "@types/node": "^18.11.3",
  48. "@types/tcp-port-used": "^1.0.1",
  49. "dotenv": "^16.0.0",
  50. "eslint": "^8.9.0",
  51. "nodemon": "^2.0.20"
  52. }
  53. }