forked from red5pro/streaming-html5
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
41 lines (41 loc) · 1.18 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
{
"name": "red5pro-html-sdk-testbed",
"version": "5.7.2",
"description": "Testbed examples for Red5 Pro HTML SDK",
"main": "src/js/index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/infrared5/red5pro-html-sdk-testbed.git"
},
"keywords": [
"Red5",
"Red5Pro",
"Testbed",
"HTML",
"SDK"
],
"author": "Infrared5, Inc.",
"license": "LICENSE.USAGE",
"bugs": {
"url": "https://github.com/infrared5/red5pro-html-sdk-testbed/issues"
},
"homepage": "https://github.com/infrared5/red5pro-html-sdk-testbed#readme",
"devDependencies": {
"eslint": "^3.8.0",
"gulp": "^3.9.1",
"gulp-bump": "^2.4.0",
"gulp-compile-handlebars": "^0.6.1",
"gulp-rename": "^1.2.2",
"gulp-replace": "^1.0.0"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"clean:build": "rm -rf build",
"clean:dist": "rm -rf dist",
"prebuild": "./scripts/inject-license.sh",
"build": "NODE_ENV=develop gulp build",
"predist": "npm run clean:dist && npm run prebuild",
"dist": "gulp bump-version && NODE_ENV=production gulp build",
"dist:webapp": "NODE_ENV=production gulp build:webapp"
}
}