-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
executable file
·48 lines (48 loc) · 1.22 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
{
"name": "slyrics",
"version": "1.0.22",
"description": "Scrape Lyrics without API Key",
"main": "dist/index.js",
"scripts": {
"build": "yarn run typescript:eslint && yarn run typescript:clean && yarn run typescript:build",
"build:publish": "yarn run build && yarn publish",
"typescript:eslint": "eslint --ext .ts ./src",
"typescript:build": "tsc",
"typescript:clean": "rimraf ./dist/**/*"
},
"files": [
"dist"
],
"repository": {
"type": "git",
"url": "git+https://github.com/sannoob/slyrics.git"
},
"keywords": [
"Lyrics",
"Scrape",
"Crawl"
],
"author": "Sannoob#3144",
"license": "MIT",
"bugs": {
"url": "https://github.com/sannoob/slyrics/issues"
},
"homepage": "https://github.com/sannoob/slyrics#readme",
"devDependencies": {
"@types/jsdom": "^16.2.14",
"@typescript-eslint/eslint-plugin": "^5.10.0",
"@typescript-eslint/parser": "^5.10.0",
"eslint": "^8.7.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^4.0.0",
"jest": "^27.4.7",
"prettier": "^2.5.1",
"rimraf": "^3.0.2",
"typedoc": "^0.22.13",
"typescript": "^4.5.4"
},
"dependencies": {
"jsdom": "^19.0.0",
"undici": "^4.12.2"
}
}