-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
94 lines (94 loc) · 2.81 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
{
"name": "jscast",
"version": "0.5.0",
"description": "An Audio Streaming Application written in JavaScript",
"author": "ardean",
"license": "MIT",
"keywords": [
"blacklist",
"cli",
"ffmpeg",
"icecast",
"jscast",
"json",
"radio",
"radio-station",
"station",
"storage-types",
"stream",
"whitelist",
"youtube"
],
"repository": "https://github.com/ardean/jsCast",
"bugs": "https://github.com/ardean/jsCast/issues",
"main": "dist/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",
"lame": "^1.2.4",
"mkdirp": "^0.5.1",
"shortid": "^2.2.6",
"sm-parsers": "^0.1.2",
"socket.io": "^1.4.8",
"speaker": "^0.3.0",
"ytdl-core": "^0.8.0"
},
"devDependencies": {
"babel-cli": "^6.11.4",
"babel-preset-node6": "^11.0.0",
"cpy-cli": "^1.0.1",
"del-cli": "^0.2.1",
"jspm": "^0.17.0-beta.38"
},
"scripts": {
"start": "babel-node demo",
"debug-cli": "npm run build && node ./dist/cli.js -p 8000 -s Memory --youtube-items https://www.youtube.com/watch?v=ytWz0qVvBZ0,https://www.youtube.com/watch?v=D67jM8nO7Ag -t IcyServer,Client",
"debug-cli-win": "npm run build && node ./dist/cli.js -p 8000 -s Memory --youtube-items https://www.youtube.com/watch?v=ytWz0qVvBZ0,https://www.youtube.com/watch?v=D67jM8nO7Ag --ffmpeg-path C:/projects/ffmpeg/bin/ffmpeg.exe",
"build": "npm run cleanup && npm run build-server && npm run build-client",
"build-server": "babel src --out-dir dist/server",
"build-client": "npm run build-js && npm run build-html && npm run build-css",
"build-js": "jspm build client/js/index.js dist/client/index.js --minify --skip-source-maps",
"build-css": "cpy client/css/**/*.css dist/client/css",
"build-html": "cpy client/*.html dist/client",
"cleanup": "del-cli dist"
},
"bin": {
"jsCast": "./bin/index.js"
},
"jspm": {
"name": "jscast",
"main": "client/js/index.js",
"dependencies": {
"events": "github:jspm/nodelibs-events@^0.1.1",
"jquery": "npm:jquery@^3.1.1",
"knockout": "github:knockout/knockout@^3.4.1"
},
"devDependencies": {
"plugin-babel": "npm:systemjs-plugin-babel@^0.0.20"
},
"peerDependencies": {
"assert": "npm:jspm-nodelibs-assert@^0.2.0",
"process": "npm:jspm-nodelibs-process@^0.2.0",
"util": "npm:jspm-nodelibs-util@^0.2.0"
},
"overrides": {
"github:knockout/knockout@3.4.1": {
"main": "dist/knockout.debug",
"meta": {
"dist/knockout.debug.js": {
"exports": "ko",
"format": "global"
}
}
},
"npm:jquery@3.1.1": {
"format": "amd"
}
}
}
}