Skip to content

Commit 4575cdb

Browse files
Added JS-SDK files
0 parents  commit 4575cdb

File tree

6 files changed

+118
-0
lines changed

6 files changed

+118
-0
lines changed

CHANGELOG.md

Whitespace-only changes.

LICENSE.md

Whitespace-only changes.

README.md

Whitespace-only changes.

dist/browser.js

Lines changed: 32 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/index.js

Lines changed: 32 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 54 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,54 @@
1+
{
2+
"name": "channelize",
3+
"version": "4.2.0",
4+
"description": "Channelize JS Sdk - Javascript library for adding messaging platform to your web app.",
5+
"author": "Channelize.io",
6+
"homepage": "https://channelize.io",
7+
"main": "./dist/index.js",
8+
"browser": {
9+
"./dist/index.js": "./dist/browser.js"
10+
},
11+
"scripts": {
12+
"build:prod": "webpack --mode production --config ./webpack.config.js",
13+
"build:dev": "webpack --mode development --config ./webpack.config.js",
14+
"start": "webpack --watch --mode development --config ./webpack.config.js"
15+
},
16+
"keywords": [
17+
"channelize",
18+
"channelize.io",
19+
"chat",
20+
"messaging",
21+
"conversation"
22+
],
23+
"license": "ISC",
24+
"dependencies": {
25+
"aws-iot-device-sdk": "^2.2.1",
26+
"aws-sdk": "^2.656.0",
27+
"axios": "^0.18.0"
28+
},
29+
"devDependencies": {
30+
"@babel/core": "^7.0.0",
31+
"@babel/plugin-proposal-class-properties": "^7.0.0",
32+
"@babel/plugin-proposal-export-namespace-from": "^7.0.0",
33+
"@babel/plugin-proposal-throw-expressions": "^7.2.0",
34+
"@babel/plugin-syntax-dynamic-import": "^7.0.0",
35+
"@babel/polyfill": "^7.0.0-beta.51",
36+
"@babel/preset-env": "^7.0.0-beta.51",
37+
"@babel/preset-react": "^7.0.0-beta.51",
38+
"babel-loader": "^8.0.0-beta.0",
39+
"copy-webpack-plugin": "^4.5.1",
40+
"css-loader": "^0.28.11",
41+
"html-webpack-plugin": "^3.2.0",
42+
"mini-css-extract-plugin": "^0.4.3",
43+
"node-sass": "^4.12.0",
44+
"optimize-css-assets-webpack-plugin": "^4.0.0",
45+
"sass-loader": "^7.0.3",
46+
"style-loader": "^0.21.0",
47+
"uglifyjs-webpack-plugin": "^1.2.5",
48+
"webpack": "^4.12.0",
49+
"webpack-cli": "^3.0.8",
50+
"webpack-dev-server": "^3.1.4",
51+
"webpack-merge": "^4.1.3",
52+
"webpack-visualizer-plugin": "^0.1.11"
53+
}
54+
}

0 commit comments

Comments
 (0)