Files
DeemixFix/spotify-web-api-node-plus/package.json
deeplydrumming 702136cc90 Moved to spotify-web-api-node-plus (thanks to Nyx Veere @monorail)
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
2024-07-25 16:58:23 +01:00

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"
}
}