forked from video-dev/clappr-rtmp-plugin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1.68 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
{
"name": "clappr-rtmp",
"version": "0.0.13",
"description": "RTMP Support for Clappr Player",
"main": "dist/rtmp.js",
"author": "Flávio Ribeiro",
"keywords": [
"rtmp",
"clappr",
"player",
"online video",
"streaming"
],
"homepage": "http://clappr.io",
"bugs": {
"url": "http://github.com/flavioribeiro/clappr-rtmp-plugin"
},
"repository": {
"type": "git",
"url": "git@github.com:flavioribeiro/clappr-rtmp-plugin.git"
},
"scripts": {
"build_swf": "$(find $HOME/airsdk/ -name mxmlc | head -n1) -default-background-color=0x000000 -default-size=640,360 -language=as3 -output=./public/RTMP.swf -optimize=true -compress=true -use-gpu=true -target-player=11.1 -use-network=false ./src/RTMP.as -library-path+=./src/OSMF.swc",
"release": "node_modules/.bin/webpack --progress -d --optimize-minimize --optimize-dedupe --output-filename rtmp.min.js",
"build": "node_modules/.bin/webpack --progress",
"watch": "node_modules/.bin/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"
},
"dependencies": {
"clappr": "latest"
},
"devDependencies": {
"babel-core": "^5.8.25",
"babel-loader": "^5.3.2",
"css-loader": "^0.18.0",
"html-loader": "^0.3.0",
"mocha": "^2.3.2",
"mocha-loader": "^0.7.1",
"node-sass": "^3.3.3",
"sass-loader": "^3.1.1",
"raw-loader": "^0.5.1",
"style-loader": "^0.12.4",
"webpack": "^1.12.2",
"transfer-webpack-plugin": "^0.1.4"
}
}