-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 962 Bytes
/
Copy pathpackage.json
File metadata and controls
35 lines (35 loc) · 962 Bytes
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
{
"name": "remon-browser-sdk",
"version": "0.3.10",
"description": "RemoteMonster Browser SDK",
"main": "remon.min.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"clean": "if [ -d 'cache' ]; then rm -rf cache; fi",
"prepackage": "if [ ! -d 'cache' ]; then mkdir cache; fi",
"package:examples": "cp -r examples cache",
"package:doc": "cp -r doc cache",
"package": "npm run prepackage && npm run package:examples && npm run package:doc",
"deploy:gh-pages": "gh-pages --dist cache",
"deploy": "npm run package && npm run deploy:gh-pages && npm run clean"
},
"keywords": [
"WebRTC",
"RemoteMonster",
"remon",
"RTC",
"SDK",
"API",
"PaaS",
"Cloud"
],
"author": "RemoteMonster",
"license": "UNLICENSED",
"repository": {
"type": "git",
"url": "https://github.com/RemoteMonster/browser-sdk"
},
"devDependencies": {
"gh-pages": "^0.12.0"
}
}