-
Notifications
You must be signed in to change notification settings - Fork 497
/
package.json
65 lines (65 loc) · 1.46 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
60
61
62
63
64
65
{
"name": "spotify-web-api-node",
"version": "5.0.2",
"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"
}
],
"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/"
},
"lint-staged": {
"*.{js,json,css,md}": [
"prettier --single-quote --write",
"git add"
]
},
"dependencies": {
"superagent": "^6.1.0"
},
"devDependencies": {
"coveralls": "^3.1.0",
"husky": "^4.3.0",
"jest": "^26.6.3",
"lint-staged": "^10.4.0",
"prettier": "^2.1.2",
"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"
}
}