-
Notifications
You must be signed in to change notification settings - Fork 20
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 1005 Bytes
/
package.json
File metadata and controls
38 lines (38 loc) · 1005 Bytes
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
{
"name": "node-spotify",
"version": "0.8.2",
"description": "A wrapper for libspotify",
"keywords": [
"spotify",
"music"
],
"homepage": "http://www.node-spotify.com",
"bugs": {
"url": "https://github.com/FrontierPsychiatrist/node-spotify/issues",
"email": "moritz.schulze@gmail.com"
},
"license": "MIT",
"author": "Moritz Schulze <moritz.schulze@gmail.com> (http://www.node-spotify.com)",
"main": "lib/spotify.js",
"repository": {
"type": "git",
"url": "https://github.com/FrontierPsychiatrist/node-spotify"
},
"devDependencies": {
"aws-sdk": "~2.3"
},
"dependencies": {
"node-pre-gyp": "0.6.x",
"nan": "2.3.5"
},
"scripts": {
"preinstall": "npm install node-pre-gyp",
"install": "node-pre-gyp install --fallback-to-build"
},
"binary": {
"module_name": "nodespotify",
"module_path": "./lib/binding",
"host": "https://node-spotify.s3-eu-central-1.amazonaws.com",
"remote_path": "./{name}/{version}"
}
}