-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
58 lines (58 loc) · 1.42 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
{
"name": "songlyrics",
"version": "2.4.5",
"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",
"build": "rimraf ./build && tsc",
"pretty": "prettier --write .",
"lint": "eslint . --ext .ts",
"prepare": "husky install"
},
"main": "./build/index.js",
"types": "./build/index.d.ts",
"files": [
"/build"
],
"repository": {
"type": "git",
"url": "https://github.com/vookav2/songlyrics"
},
"author": "mr687 <davinomoehdanino@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"
]
}
}