1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253 |
- {
- "name": "geniurl",
- "version": "1.1.0",
- "description": "Simple JSON and XML REST API to search for song metadata and the lyrics URL on genius.com",
- "main": "src/index.ts",
- "scripts": {
- "start": "tsc && node --enable-source-maps out/src/index.js",
- "watch": "nodemon -e \"ts,d.ts\" -x \"npm start\""
- },
- "repository": {
- "type": "git",
- "url": "git+https://github.com/Sv443/geniURL.git"
- },
- "keywords": [
- "rest-api",
- "lyrics",
- "rest-proxy",
- "lyrics-search"
- ],
- "author": {
- "name": "Sv443",
- "url": "https://github.com/Sv443",
- "email": "[email protected]"
- },
- "license": "MIT",
- "bugs": {
- "url": "https://github.com/Sv443/geniURL/issues"
- },
- "homepage": "https://github.com/Sv443/geniURL",
- "dependencies": {
- "axios": "^0.26.0",
- "compression": "^1.7.4",
- "cors": "^2.8.5",
- "express": "^4.17.3",
- "fuse.js": "^6.6.2",
- "helmet": "^5.0.2",
- "js2xmlparser": "^4.0.2",
- "kleur": "^4.1.4",
- "rate-limiter-flexible": "^2.3.6",
- "svcorelib": "^1.15.0",
- "tcp-port-used": "^1.0.2"
- },
- "devDependencies": {
- "@types/compression": "^1.7.2",
- "@types/cors": "^2.8.12",
- "@types/express": "^4.17.14",
- "@types/node": "^18.11.3",
- "@types/tcp-port-used": "^1.0.1",
- "dotenv": "^16.0.0",
- "eslint": "^8.9.0",
- "nodemon": "^2.0.20"
- }
- }
|