Files
DeemixFix/spotify-web-api-node/package.json
DeeplyDrumming 733fe73926 Main
2024-08-02 15:17:28 +00:00

62 lines
1.4 KiB
JSON

{
"name": "spotify-web-api-node",
"version": "5.0.4",
"homepage": "https://github.com/thelinmichael/spotify-web-api-node",
"description": "A Node.js wrapper for Spotify's Web API",
"main": "./src/server.js",
"author": "Michael Thelin",
"contributors": [
{
"name": "José M. Perez",
"url": "https://github.com/JMPerez"
},
{
"name": "Deeplydrumming",
"url": "https://gitlab.com/deeplydrumming"
}
],
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/thelinmichael/spotify-web-api-node.git"
},
"scripts": {
"test": "jest",
"travis": "npm test -- --coverage && cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js",
"precommit": "lint-staged"
},
"jest": {
"verbose": true,
"testURL": "http://localhost/"
},
"dependencies": {
"superagent": "^6.1.0"
},
"devDependencies": {
"coveralls": "^3.1.0",
"husky": "^4.3.0",
"jest": "^26.6.3",
"sinon": "^9.0.3",
"canvas": "^2.6.1",
"bufferutil": "^4.0.1",
"utf-8-validate": "^5.0.2",
"jest-resolve": "^26.6.2",
"minimist": "^1.2.5",
"set-value": ">=2.0.1",
"mixin-deep": ">=1.3.2",
"ini": ">=1.3.6"
},
"keywords": [
"spotify",
"echonest",
"music",
"api",
"wrapper",
"client",
"web api"
],
"browser": {
"./src/server.js": "./src/client.js"
}
}