mirror of
https://gitlab.com/deeplydrumming/DeemixFix.git
synced 2026-01-15 16:32:59 -03:00
Amended spotify-web-api-node-plus Buffer() outdated syntax<br> Incorporated deemix.js as submodule<br> Fixed wrong API error displayed when track unavailable on Deezer<br> Removed bug report section in About<br> Removed reference to subreddit in About, now pointing to Telegram
80 lines
1.7 KiB
JSON
80 lines
1.7 KiB
JSON
{
|
|
"name": "spotify-web-api-node-plus",
|
|
"version": "7.0.1",
|
|
"homepage": "https://github.com/manhbi18112005/spotify-web-api-node-plus",
|
|
"description": "A Node.js wrapper for Spotify's Web API",
|
|
"main": "./src/server.js",
|
|
"author": "Michael Thelin",
|
|
"contributors": [
|
|
{
|
|
"name": "Le Ngo Duc Manh",
|
|
"url": "https://github.com/manhbi18112005"
|
|
},
|
|
{
|
|
"name": "Deeplydrumming",
|
|
"url": "https://gitlab.com/deeplydrumming"
|
|
}
|
|
],
|
|
"license": "MIT",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/manhbi18112005/spotify-web-api-node-plus.git"
|
|
},
|
|
"scripts": {
|
|
"test": "jest",
|
|
"travis": "npm test -- --coverage && cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js",
|
|
"precommit": "lint-staged",
|
|
"prettier": "prettier . --write"
|
|
},
|
|
"jest": {
|
|
"verbose": true,
|
|
"testURL": "http://localhost/",
|
|
"setupFiles": [
|
|
"./setupJest.js"
|
|
]
|
|
},
|
|
"lint-staged": {
|
|
"*.{js,json,css,md}": [
|
|
"prettier --single-quote --write",
|
|
"git add"
|
|
]
|
|
},
|
|
"devDependencies": {
|
|
"coveralls": "^3.1.0",
|
|
"husky": "^4.3.0",
|
|
"jest": "^26.6.3",
|
|
"jest-fetch-mock": "^3.0.3",
|
|
"jest-resolve": "^26.6.2",
|
|
"lint-staged": "^10.4.0",
|
|
"node-fetch": "^2.6.12",
|
|
"prettier": "^2.1.2"
|
|
},
|
|
"keywords": [
|
|
"spotify",
|
|
"echonest",
|
|
"music",
|
|
"api",
|
|
"wrapper",
|
|
"client",
|
|
"web api"
|
|
],
|
|
"browser": {
|
|
"./src/server.js": "./src/client.js"
|
|
},
|
|
"files": [
|
|
"./src",
|
|
"./LICENSE",
|
|
"./package.json",
|
|
"./README.md",
|
|
"./CHANGELOG.md"
|
|
],
|
|
"prettier": {
|
|
"trailingComma": "none",
|
|
"tabWidth": 2,
|
|
"semi": true,
|
|
"singleQuote": true,
|
|
"bracketSpacing": true,
|
|
"arrowParens": "avoid"
|
|
}
|
|
}
|