-
Notifications
You must be signed in to change notification settings - Fork 51
/
package.json
50 lines (50 loc) · 1.42 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
{
"name": "red5pro-html-sdk-testbed",
"version": "12.6.0",
"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",
"bugs": {
"url": "https://github.com/infrared5/red5pro-html-sdk-testbed/issues"
},
"homepage": "https://github.com/infrared5/red5pro-html-sdk-testbed#readme",
"devDependencies": {
"@babel/eslint-parser": "^7.17.0",
"babel-eslint": "^10.1.0",
"eslint": "^8.9.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-config-prettier": "^8.8.0",
"gulp": "^4.0.2",
"gulp-bump": "^2.4.0",
"gulp-compile-handlebars": "^0.6.1",
"gulp-rename": "^1.4.0",
"gulp-replace": "^1.0.0",
"mkdirp": "^1.0.4",
"prettier": "^2.8.7"
},
"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"
},
"dependencies": {
"@babel/core": "^7.17.4"
}
}