-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
35 lines (35 loc) · 902 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
{
"name": "jscast",
"version": "0.1.1",
"description": "A SHOUTcast Server/Library written in JavaScript",
"author": "BigTeri",
"license": "MIT",
"repository": "https://github.com/BigTeri/jscast",
"bugs": "https://github.com/BigTeri/jscast/issues",
"main": "build/index.js",
"dependencies": {
"async": "^2.0.1",
"commander": "^2.9.0",
"destroy": "^1.0.4",
"express": "^4.14.0",
"fluent-ffmpeg": "^2.1.0",
"geoip-lite": "^1.1.8",
"ip": "^1.1.3",
"mkdirp": "^0.5.1",
"shortid": "^2.2.6",
"sm-parsers": "^0.1.2",
"socket.io": "^1.4.8",
"ytdl-core": "^0.7.17"
},
"devDependencies": {
"babel-cli": "^6.11.4",
"babel-preset-es2015": "^6.13.2"
},
"scripts": {
"start": "babel-node demo --presets es2015",
"build": "babel src --out-dir build --presets es2015"
},
"bin": {
"jscast-server": "./bin/index.js"
}
}