forked from media-fish/rtmp-server
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
71 lines (71 loc) · 1.84 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
{
"name": "@mediafish/rtmp-server",
"version": "0.1.2",
"description": "A server that receives an RTMP live stream and populates a readable object stream of the published audio, video, and data messages",
"main": "index.js",
"scripts": {
"lint": "xo",
"audit": "npm audit --audit-level high",
"coverage": "nyc npm test && nyc report --reporter=text-lcov | coveralls",
"start": "node example.js",
"test": "npm run lint && npm run audit && ava --verbose"
},
"repository": {
"type": "git",
"url": "git+https://github.com/media-fish/rtmp-server.git"
},
"keywords": [
"RTMP",
"media",
"video",
"audio",
"streaming"
],
"author": "Kuu Miyazaki",
"license": "MIT",
"bugs": {
"url": "https://github.com/media-fish/rtmp-server/issues"
},
"homepage": "https://github.com/media-fish/rtmp-server#readme",
"dependencies": {
"@mediafish/amf0": "0.0.3",
"@mediafish/buffer-operator": "0.1.0",
"@mediafish/flv": "^0.2.0"
},
"devDependencies": {
"ava": "^3.11.0",
"coveralls": "^3.1.0",
"nyc": "^15.1.0",
"rewire": "^5.0.0",
"xo": "^0.32.1"
},
"xo": {
"esnext": true,
"space": true,
"rules": {
"ava/no-ignored-test-files": 0,
"camelcase": 0,
"capitalized-comments": 0,
"dot-notation": 0,
"import/no-dynamic-require": 0,
"indent": 0,
"new-cap": 0,
"no-cond-assign": 0,
"no-constant-condition": 0,
"no-mixed-operators": 0,
"no-multi-assign": 0,
"one-var": 0,
"one-var-declaration-per-line": 0,
"padding-line-between-statements": 0,
"quotes": 0,
"unicorn/catch-error-name": 0,
"unicorn/filename-case": 0,
"unicorn/no-for-loop": 0,
"unicorn/no-zero-fractions": 0,
"unicorn/prevent-abbreviations": 0
}
},
"directories": {
"test": "test"
}
}