forked from rgeraldporter/node-stream-player
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
36 lines (36 loc) · 888 Bytes
/
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
{
"name": "stream-player",
"version": "0.3.0",
"description": "Queue mp3 streams from the web and play them out of your speakers.",
"main": "index.js",
"scripts": {
"test": "mocha test/all.js",
"build": "./node_modules/coffee-script/bin/coffee -o ./lib -c ./src/"
},
"devDependencies": {
"coffee-script": "^1.12.3",
"mocha": ">=1.4.28"
},
"repository": {
"type": "git",
"url": "https://github.com/michael-gillett/node-stream-player"
},
"keywords": [
"stream",
"mp3",
"player",
"audio"
],
"author": "Michael Gillett",
"license": "MIT",
"bugs": {
"url": "https://github.com/michael-gillett/node-stream-player/issues"
},
"homepage": "https://github.com/michael-gillett/node-stream-player",
"dependencies": {
"lame": "^1.2.2",
"node-gyp": "^3.5.0",
"request": "^2.60.0",
"speaker": "0.3.0"
}
}