forked from zackradisic/node-soundcloud-downloader
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
59 lines (59 loc) · 1.65 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
{
"name": "soundcloud-downloader",
"version": "1.0.1",
"description": "Download Soundcloud audio with Node.js",
"main": "index.js",
"types": "./index.d.ts",
"scripts": {
"docs": "typedoc --out docs ./src --excludeInternal; touch ./docs/.nojekyll",
"build": "tsc",
"publish-script": "./publish.sh",
"test": "jest --runInBand",
"prepublish": "npm run build"
},
"keywords": [
"soundcloud",
"soundcloud-api",
"soundcloud downloader",
"soundcloud download",
"soundcloud audio",
"download soundcloud",
"scdl"
],
"repository": {
"type": "git",
"url": "https://github.com/zackradisic/node-soundcloud-downloader"
},
"author": "Zack Radisic",
"license": "MIT",
"dependencies": {
"@babel/runtime": "^7.10.3",
"axios": "^0.21.4",
"dotenv": "^8.2.0",
"m3u8stream": "^0.8.6",
"soundcloud-key-fetch": "gitlab:be195/soundcloud-key-fetch"
},
"typings": "./index.d.ts",
"devDependencies": {
"@babel/cli": "^7.10.1",
"@babel/core": "^7.10.2",
"@babel/plugin-transform-runtime": "^7.10.3",
"@babel/preset-env": "^7.10.2",
"@typescript-eslint/eslint-plugin": "^3.5.0",
"@typescript-eslint/parser": "^3.5.0",
"axios-mock-adapter": "^1.18.1",
"babel-watch": "^7.0.0",
"eslint": "^7.3.1",
"eslint-config-standard": "^14.1.1",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-jest": "^23.13.2",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"file-type": "^18.0.0",
"jest": "^26.0.1",
"music-metadata": "^7.6.6",
"typedoc": "^0.22.17",
"typescript": "^4.0.2"
}
}