This repository has been archived by the owner on Nov 13, 2024. It is now read-only.
forked from video-dev/clappr-rtmp-plugin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
56 lines (56 loc) · 1.49 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
{
"name": "@vgrid/clappr-rtmp",
"version": "1.2.1",
"description": "RTMP Support for Clappr Player",
"main": "dist/rtmp.min.js",
"author": "Flávio Ribeiro",
"keywords": [
"rtmp",
"clappr",
"player",
"online video",
"streaming"
],
"homepage": "http://clappr.io",
"license": "Apache-2.0",
"bugs": {
"url": "http://github.com/vgrid/clappr-rtmp-plugin"
},
"repository": {
"type": "git",
"url": "git@github.com:vgrid/clappr-rtmp-plugin.git"
},
"files": [
"dist/**/*",
"src/**/*"
],
"scripts": {
"build_swf": "sh build_player.sh",
"release": "NODE_ENV=production webpack",
"build": "webpack --progress",
"watch": "webpack --progress --watch",
"test": "karma start --single-run --browsers Chrome",
"start": "node_modules/.bin/webpack-dev-server --content-base public/ --output-public-path /latest --hot",
"lock": "rm -rf npm-shrinkwrap.json node_modules && npm install --silent && npm shrinkwrap",
"prepublishOnly": "npm run release"
},
"dependencies": {
"clappr": "latest",
"html-loader": "^1.3.2",
"raw-loader": "^4.0.2",
"sass-loader": "^10.1.0"
},
"devDependencies": {
"@babel/core": "^7.12.9",
"@babel/preset-env": "^7.12.7",
"babel-loader": "^8.2.2",
"copy-webpack-plugin": "^6.3.2",
"css-loader": "^5.0.1",
"mocha": "^8.2.1",
"mocha-loader": "^5.1.5",
"node-sass": "^4.14.1",
"style-loader": "^2.0.0",
"webpack": "^5.8.0",
"webpack-cli": "^4.2.0"
}
}