forked from thelinmichael/spotify-web-api-node
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.1 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.1 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
{
"name": "spotify-web-api-node",
"version": "3.1.1",
"homepage": "https://github.com/thelinmichael/spotify-web-api-node",
"description": "A Node.js wrapper for Spotify's Web API",
"main": "./src/server.js",
"types": "./spotify-web-api-node.d.ts",
"author": "Michael Thelin",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/thelinmichael/spotify-web-api-node.git"
},
"dependencies": {
"superagent": "^3.7.0"
},
"scripts": {
"test": "jest",
"travis":
"npm test -- --coverage && cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js",
"precommit": "lint-staged"
},
"lint-staged": {
"*.{js,json,css,md}": ["prettier --single-quote --write", "git add"]
},
"devDependencies": {
"coveralls": "^2.13.3",
"husky": "^0.14.3",
"jest": "^22.4.3",
"lint-staged": "^7.0.5",
"prettier": "1.12.1",
"sinon": "~1.12.2"
},
"keywords": [
"spotify",
"echonest",
"music",
"api",
"wrapper",
"client",
"web api"
],
"browser": {
"./src/server.js": "./src/client.js"
}
}