UNPKG

lyricist

Version:

Fetches song lyrics using the Genius.com API and website.

44 lines (43 loc) 1.17 kB
{ "name": "lyricist", "version": "2.2.2", "description": "Fetches song lyrics using the Genius.com API and website.", "main": "lib/index.js", "repository": { "type": "git", "url": "git+https://github.com/scf4/lyricist.git" }, "scripts": { "test": "jest", "test:watch": "jest --watch", "test:coverage": "jest --coverage", "build": "rimraf node6 && babel lib --out-dir node6 --ignore *.test.js", "precommit": "lint-staged" }, "lint-staged": { "lib/*.js": ["prettier --write", "git add"] }, "keywords": ["lyric", "lyrics", "scrape", "genius"], "author": "scf4 (https://github.com/scf4)", "license": "MIT", "bugs": { "url": "https://github.com/scf4/lyricist/issues" }, "homepage": "https://github.com/scf4/lyricist#readme", "dependencies": { "cheerio": "^0.22.0", "node-fetch": "^1.6.3" }, "devDependencies": { "babel-cli": "^6.24.1", "babel-jest": "^21.0.2", "babel-polyfill": "^6.23.0", "babel-preset-env": "^1.5.2", "dotenv": "^4.0.0", "husky": "^0.14.3", "jest": "^21.1.0", "lint-staged": "^4.1.3", "prettier": "^1.6.1", "rimraf": "^2.6.1" } }