-
Notifications
You must be signed in to change notification settings - Fork 63
/
package.json
66 lines (66 loc) · 2.57 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
57
58
59
60
61
62
63
64
65
66
{
"name": "connect-rtc-js",
"version": "1.1.26",
"description": "Amazon Connect softphone library",
"license": "Apache-2.0",
"main": "./src/js/connect-rtc.js",
"authors": {
"name": "Amazon Web Services",
"email": "",
"url": "http://aws.amazon.com/"
},
"repository": {
"type": "git",
"url": "https://github.com/aws/connect-rtc-js.git"
},
"homepage": "https://github.com/aws/connect-rtc-js",
"contributors": [
"Yuliang Zhou <[email protected]>",
"Anil Kumar Vuta <[email protected]>"
],
"scripts": {
"preversion": "git stash && git checkout master && git pull && npm test && git checkout -B bumpVersion",
"version": "grunt build && grunt copyForPublish && git add package.json release/* ",
"postversion": "export GITTAG=\"echo $(git describe --abbrev=0 --tags | sed 's/^v//')\" && git push --force --set-upstream origin bumpVersion --follow-tags && git checkout gh-pages && git pull && cp out/connect-rtc-debug.js ./connect-rtc-debug-`$GITTAG`.js && cp out/connect-rtc.min.js ./connect-rtc-`$GITTAG`.min.js && ln -fs connect-rtc-debug-`$GITTAG`.js connect-rtc-debug-latest.js && ln -fs connect-rtc-`$GITTAG`.min.js connect-rtc-latest.min.js && git add connect-rtc*.js && git commit -m `$GITTAG` && git push --set-upstream origin gh-pages && git checkout master",
"prepublish": "grunt build",
"test": "grunt && nyc --reporter=html mocha --compilers js:babel-core/register test/unit/**/*.js test/unit/*.js"
},
"_ucsdk_upgrade_note": "Please follow the instruction here(https://tiny.amazon.com/18mszf5px/quipaTMFStep) to upgrade @citrix/ucsdk",
"dependencies": {
"@citrix/ucsdk": "3.1.0",
"uuid": "^3.0.1",
"webrtc-adapter": "^6.4.0"
},
"engines": {
"npm": ">=3.10.0",
"node": ">=6.0.0"
},
"devDependencies": {
"babel-plugin-transform-runtime": "^6.23.0",
"babel-polyfill": "^6.23.0",
"babel-preset-env": "^1.3.2",
"babelify": "^7.3.0",
"chai": "^3.5.0",
"chromedriver": "^2.28.0",
"eslint-config-webrtc": "^1.0.0",
"faucet": "0.0.1",
"geckodriver": "^1.12.1",
"grunt": "^1.5.3",
"grunt-browserify": "^5.3.0",
"grunt-cli": "^1.0.0",
"grunt-contrib-clean": "^1.0.0",
"grunt-contrib-connect": "^1.0.2",
"grunt-contrib-copy": "^1.0.0",
"grunt-contrib-uglify": "^2.2.1",
"grunt-contrib-watch": "^1.1.0",
"grunt-eslint": "^21.0.0",
"grunt-githooks": "^0.6.0",
"grunt-replace": "^2.0.2",
"mocha": "^3.2.0",
"nyc": "^15.1.0",
"selenium-webdriver": "^3.3.0",
"sinon": "^2.1.0",
"tape": "^4.6.3",
"travis-multirunner": "^3.1.0"
}
}