-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
64 lines (64 loc) · 1.61 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
{
"name": "geniurl",
"version": "1.3.3",
"description": "Simple JSON and XML REST API to search for song metadata, the lyrics URL and lyrics translations on genius.com",
"main": "src/index.ts",
"scripts": {
"start": "tsc && node --enable-source-maps out/src/index.js",
"dev": "nodemon -e \"ts,d.ts\" -x \"npm start\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/Sv443/geniURL.git"
},
"keywords": [
"rest-api",
"lyrics",
"lyrics-search",
"song-metadata"
],
"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",
"engines": {
"node": ">=16",
"npm": ">=8"
},
"dependencies": {
"axios": "^1.2.1",
"compression": "^1.7.4",
"cors": "^2.8.5",
"express": "^4.17.3",
"fuse.js": "^6.6.2",
"helmet": "^7.0.0",
"js2xmlparser": "^5.0.0",
"kleur": "^4.1.4",
"nanoid": "^3.3.6",
"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": "^20.3.3",
"@types/tcp-port-used": "^1.0.1",
"@typescript-eslint/eslint-plugin": "^6.4.1",
"@typescript-eslint/parser": "^6.4.1",
"dotenv": "^16.0.0",
"eslint": "^8.9.0",
"jest": "^29.3.1",
"nodemon": "^3.0.1",
"percentile": "^1.6.0",
"ts-node": "^10.9.1",
"tslib": "^2.4.0"
}
}