-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
74 lines (74 loc) · 1.66 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
{
"name": "beamengine",
"version": "0.0.13",
"description": "Redis-backed highly-scale-able and cloud-fit distributed media processing engine.",
"main": "index.js",
"engines": {
"node": "^8.0.0"
},
"scripts": {
"test": "cross-env NODE_ENV=test tape test/*Spec.js",
"dev": "nodemon --signal SIGTERM app.js",
"start": "cross-env NODE_ENV=production app.js",
"lint": "eslint **/*.js",
"lint-html": "eslint **/*.js -f html -o ./reports/lint-results.html",
"lint-fix": "eslint --fix **/*.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Streampunk/aerostat.git"
},
"keywords": [
"Media",
"Beam API",
"Agile Media Blueprint",
"Beam Engine",
"AMB",
"FFmpeg",
"video",
"audio",
"transcoding",
"encoding",
"decoding",
"Redis"
],
"author": "Streampunk Media Ltd",
"license": "GPL-3.0",
"devDependencies": {
"cross-env": "^6.0.3",
"eslint": "^6.8.0",
"nodemon": "^2.0.3",
"supertest": "^4.0.2"
},
"bugs": {
"url": "https://github.com/Streampunk/aerostat/issues"
},
"homepage": "https://github.com/Streampunk/aerostat#readme",
"dependencies": {
"beamcoder": "^0.5.2",
"boom": "^7.3.0",
"bull": "^3.13.0",
"got": "^10.7.0",
"ioredis": "^4.16.2",
"koa": "^2.11.0",
"koa-bodyparser": "^4.3.0",
"koa-ejs": "^4.3.0",
"koa-router": "^7.4.0",
"path-to-regexp": "^6.1.0",
"tape": "^4.13.2",
"uuid": "^3.4.0"
},
"nodemonConfig": {
"watch": [
"views",
"lib",
"app.js",
"config",
"config.js"
],
"ext": "js,html"
},
"bin": {
"beamengine": "./app.js"
}
}