forked from scf4/lyricist
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) Β· 1.14 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
{
"name": "lyricist",
"version": "2.2.0",
"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"
}
}