-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 817 Bytes
/
package.json
File metadata and controls
35 lines (35 loc) · 817 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": "@channelstream/channelstream",
"version": "0.1.1",
"description": "ChannelStream JS Client",
"keywords": [
"websockets",
"websocket",
"channelstream",
"reconnecting",
"reconnection",
"reconnect",
"authentication"
],
"main": "src/index.js",
"module": "src/index.js",
"private": true,
"repository": "https://github.com/Channelstream/channelstream-js-client",
"author": "Marcin Lulek",
"license": "BSD-3-Clause",
"scripts": {
"build": "rollup -c",
"prepare": "npm run build",
"jsdoc": "jsdoc -c ./jsdoc.json"
},
"devDependencies": {
"docdash": "^1.0.0",
"jsdoc": "^3.5.5",
"rollup": "^1.1.2",
"rollup-plugin-commonjs": "^9.2.0",
"rollup-plugin-node-resolve": "^4.0.0"
},
"dependencies": {
"jssha": "^2.3.1"
}
}