forked from aws/connect-rtc-js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
69 lines (69 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
67
68
69
{
"name": "@crisiscleanup/connect-rtc",
"version": "1.1.4",
"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/"
},
"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 && grunt build && grunt copyForPublish && git add package.json release/* && git commit -m 'Add connect-rtc-js artifacts' --allow-empty",
"version": "",
"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 && mocha --compilers js:babel-core/register test/unit"
},
"dependencies": {
"uuid": "^3.0.1",
"webrtc-adapter": "^6.4.0"
},
"engines": {
"npm": ">=3.10.0",
"node": ">=6.0.0"
},
"devDependencies": {
"babel-polyfill": "^6.23.0",
"babel-plugin-transform-runtime": "^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.0.1",
"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",
"mocha": "^3.2.0",
"selenium-webdriver": "^3.3.0",
"sinon": "^2.1.0",
"tape": "^4.6.3",
"travis-multirunner": "^3.1.0"
},
"directories": {
"test": "test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/CrisisCleanup/connect-rtc-js.git"
},
"author": "Amazon Web Services",
"bugs": {
"url": "https://github.com/CrisisCleanup/connect-rtc-js/issues"
}
}