forked from max-huster/TidalAPI
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.22 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.22 KB
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
{
"name": "tidalapi-ts",
"version": "2.1.2",
"description": "Unofficial Node.js TIDAL API with support for TypeScript and async/await",
"main": "./lib/TidalAPI.js",
"scripts": {
"test": "yarn run mocha -r ts-node/register lib/**/*.test.ts",
"build": "yarn run tsc",
"bin": "yarn node ./src/bin/tidal-playlist-import.js",
"coverage": "nyc npm run test",
"coverage-report": "nyc report --reporter=json > coverage/coverage.json"
},
"repository": {
"type": "git",
"url": "git+https://github.com/max-huster/TidalAPI"
},
"keywords": [
"node",
"tidal",
"api",
"music",
"flac",
"typescript"
],
"author": "Max Huster (maxekinge@gmail.com)",
"license": "MIT",
"bugs": {
"url": "https://github.com/max-huster/TidalAPI/issues"
},
"homepage": "https://github.com/max-huster/TidalAPI#readme",
"dependencies": {
"lodash": "^4.17.20",
"node-fetch": "^2.6.1"
},
"devDependencies": {
"@types/chai": "^4.2.15",
"@types/lodash": "^4.14.166",
"@types/mocha": "^8.2.1",
"@types/node": "^14.14.28",
"@types/node-fetch": "^2.5.7",
"chai": "^4.2.0",
"mocha": "^8.2.1",
"nyc": "^15.1.0",
"ts-node": "^9.1.1",
"typescript": "^4.1.3"
}
}