songlyrics-finder
Version:
Find a lyrics just enter the song title
57 lines (56 loc) • 1.4 kB
JSON
{
"name": "songlyrics-finder",
"version": "1.0.0",
"description": "Find a lyrics just enter the song title",
"keywords": [
"lyrics",
"songlyrics",
"unofficial"
],
"scripts": {
"dev": "ts-node-dev --respawn --cls --transpile-only --poll ./src/index.ts",
"pretty": "prettier --write .",
"lint": "eslint . --ext .ts"
},
"main": "./build/index.js",
"types": "./build/index.d.ts",
"files": [
"/build"
],
"repository": {
"type": "git",
"url": "https://github.com/legenstam/songlyrics-finder.git"
},
"author": "legenstam <legenstam@gmail.com>",
"license": "MIT",
"dependencies": {
"follow-redirects": "^1.15.1",
"node-html-parser": "^5.3.3"
},
"devDependencies": {
"@types/follow-redirects": "^1.14.1",
"@types/node": "^16.10.2",
"@types/user-agents": "^1.0.2",
"@typescript-eslint/eslint-plugin": "^5.25.0",
"@typescript-eslint/parser": "^5.25.0",
"eslint": "^8.16.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.0.0",
"husky": "^8.0.1",
"lint-staged": "^12.4.1",
"prettier": "^2.4.1",
"rimraf": "^3.0.2",
"ts-node-dev": "^1.1.8",
"tsc-files": "^1.1.3",
"typescript": "^4.4.3"
},
"lint-staged": {
"**/*.{js,jsx,ts,tsx}": [
"yarn eslint",
"yarn prettier --write"
],
"**/*.ts": [
"tsc-files --noEmit"
]
}
}