-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
62 lines (62 loc) · 1.3 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
{
"name": "@geekjuice/verse",
"version": "2.2.0",
"description": "cli for genius lyrics",
"repository": "geekjuice/verse",
"author": {
"name": "nicholas hwang",
"email": "hello@undefined.engineer",
"url": "https://undefined.engineer"
},
"license": "MIT",
"engines": {
"node": ">=8.0.0"
},
"bin": {
"verse": "index.js"
},
"files": [
"lib/**/*.js"
],
"keywords": [
"geekjuice",
"cli",
"genius",
"lyrics",
"music",
"reference"
],
"dependencies": {
"@geekjuice/cash": "0.0.1",
"axios": "^0.19.0",
"chalk": "^2.4.2",
"cheerio": "^1.0.0-rc.3",
"debug": "^4.1.1",
"dotenv": "^8.1.0",
"meow": "^5.0.0",
"ora": "^4.0.2",
"prompts": "^2.2.1"
},
"devDependencies": {
"@types/axios": "^0.14.0",
"@types/cheerio": "^0.22.13",
"@types/debug": "^4.1.5",
"@types/prompts": "^2.0.1",
"@typescript-eslint/eslint-plugin": "^2.3.3",
"@typescript-eslint/parser": "^2.3.3",
"babel-eslint": "^10.0.3",
"eslint": "^6.5.1",
"eslint-config-prettier": "^6.4.0",
"husky": "^3.0.8",
"jest": "^24.9.0",
"lint-staged": "^9.4.2",
"prettier": "^1.18.2",
"typescript": "^3.6.4"
},
"scripts": {
"eslint": "eslint",
"jest": "jest",
"prettier": "prettier",
"tsc": "tsc"
}
}