-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
54 lines (54 loc) · 1.4 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
{
"name": "video-rtp",
"version": "0.3.1",
"description": "Real time video transmission in Web",
"main": "lib/index.js",
"scripts": {
"build": "./node_modules/.bin/rimraf lib && rollup -c"
},
"files": [
"src",
"lib",
"videoRTP.min.js",
"videoRTP.js"
],
"repository": {
"type": "git",
"url": "git+https://github.com/zhutao315/videoRTP.git"
},
"keywords": [
"video",
"webRTC",
"compress"
],
"author": "flyrains",
"license": "MIT",
"homepage": "https://github.com/zhutao315/videoRTP/blob/master/README.md",
"dependencies": {
"@babel/runtime-corejs3": "^7.9.6"
},
"devDependencies": {
"@babel/core": "^7.9.6",
"@babel/plugin-transform-runtime": "^7.9.6",
"@babel/preset-env": "^7.9.6",
"babel-eslint": "^10.1.0",
"babel-preset-latest": "^6.24.1",
"cross-env": "^7.0.2",
"eslint": "^7.0.0",
"eslint-config-prettier": "^6.11.0",
"eslint-config-standard": "^14.1.1",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^3.1.3",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"install": "^0.13.0",
"prettier": "^2.0.5",
"rimraf": "^3.0.2",
"rollup": "^2.10.0",
"rollup-plugin-babel": "^4.4.0",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-uglify": "^6.0.2"
}
}