-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 982 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
37
38
39
40
41
{
"name": "media_server",
"version": "1.0.0",
"description": "Basic media server, which can stream a selection of videos",
"main": "src/main.js",
"engines": {
"node": ">=6.2.0"
},
"scripts": {
"start": "nodemon --exec babel-node src/main.js",
"build": "babel src --out-dir dist",
"serve": "node dist/main.js"
},
"license": "MIT",
"dependencies": {
"express": "^4.15.3",
"ffmpeg": "0.0.4",
"js-logger": "^1.6.0"
},
"devDependencies": {
"@babel/cli": "^7.5.0",
"@babel/core": "^7.5.4",
"@babel/node": "^7.5.0",
"@babel/preset-env": "^7.5.4",
"nodemon": "^1.19.1",
"pug": "^2.0.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/arBalasquide/media_server.git"
},
"keywords": [
"media",
"server"
],
"author": "",
"bugs": {
"url": "https://github.com/arBalasquide/media_server/issues"
},
"homepage": "https://github.com/arBalasquide/media_server#readme"
}