1
0

package.json 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  1. {
  2. "name": "geniurl",
  3. "version": "1.3.3",
  4. "description": "Simple JSON and XML REST API to search for song metadata, the lyrics URL and lyrics translations on genius.com",
  5. "main": "src/index.ts",
  6. "scripts": {
  7. "start": "tsc && node --enable-source-maps out/src/index.js",
  8. "dev": "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. "lyrics-search",
  18. "song-metadata"
  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. "engines": {
  31. "node": ">=16",
  32. "npm": ">=8"
  33. },
  34. "dependencies": {
  35. "axios": "^1.2.1",
  36. "compression": "^1.7.4",
  37. "cors": "^2.8.5",
  38. "express": "^4.17.3",
  39. "fuse.js": "^6.6.2",
  40. "helmet": "^7.0.0",
  41. "js2xmlparser": "^5.0.0",
  42. "kleur": "^4.1.4",
  43. "nanoid": "^3.3.6",
  44. "rate-limiter-flexible": "^2.3.6",
  45. "svcorelib": "^1.15.0",
  46. "tcp-port-used": "^1.0.2"
  47. },
  48. "devDependencies": {
  49. "@types/compression": "^1.7.2",
  50. "@types/cors": "^2.8.12",
  51. "@types/express": "^4.17.14",
  52. "@types/node": "^20.3.3",
  53. "@types/tcp-port-used": "^1.0.1",
  54. "@typescript-eslint/eslint-plugin": "^6.4.1",
  55. "@typescript-eslint/parser": "^6.4.1",
  56. "dotenv": "^16.0.0",
  57. "eslint": "^8.9.0",
  58. "jest": "^29.3.1",
  59. "nodemon": "^3.0.1",
  60. "percentile": "^1.6.0",
  61. "ts-node": "^10.9.1",
  62. "tslib": "^2.4.0"
  63. }
  64. }