-
Notifications
You must be signed in to change notification settings - Fork 66
/
package.json
50 lines (50 loc) · 1.18 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
{
"name": "libspotify",
"description": "Node bindings to the libspotify C library",
"author": "Florent Jaby <[email protected]>",
"keywords": [
"spotify",
"libspotify",
"bindings",
"play",
"player",
"music"
],
"version": "0.3.0",
"maintainers": [
{
"name": "Florent Jaby",
"email": "[email protected]"
}
],
"homepage": "http://projects.flo.by/node-libspotify/",
"bugs": {
"url": "https://github.com/floby/node-libspotify/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/Floby/node-libspotify.git"
},
"engines": {
"node": ">0.10.0"
},
"dependencies": {
"bindings": "^1.1.1",
"i": "^0.3.5",
"format": "^0.1.0",
"backoff": "^2.0.0",
"nan": "*"
},
"devDependencies": {
"nodeunit": "^0.9",
"trycatch": "*",
"colors": "*",
"istanbul": "~0.2.3"
},
"scripts": {
"install": "node-gyp configure build",
"pretest": "rm -rf /tmp/node-libspotify 2>/dev/null ; node-gyp clean >/dev/null && node-gyp configure --debug >/dev/null && node-gyp build >/dev/null",
"test": "istanbul cover nodeunit test/test-*"
},
"main": "lib/libspotify.js"
}