forked from pusher/chatkit-server-node
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
28 lines (28 loc) · 737 Bytes
/
package.json
File metadata and controls
28 lines (28 loc) · 737 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
{
"name": "@pusher/chatkit-server",
"description": "Pusher Chatkit server library",
"version": "0.12.2",
"main": "./target/index.js",
"license": "MIT",
"author": "Pusher",
"types": "target/index.d.ts",
"repository": {
"type": "git",
"url": "git+https://github.com/pusher/chatkit-server-node.git"
},
"scripts": {
"build": "rm -rf lib target && tsc",
"test": "echo Testing...\n",
"install-pkg": "if type yarn &> /dev/null; then yarn; else npm i; fi"
},
"dependencies": {
"jsonwebtoken": "^8.3.0",
"pusher-platform-node": "~0.13.0"
},
"devDependencies": {
"babel-core": "^6.25.0",
"babel-preset-es2015": "^6.24.1",
"dts-bundle": "^0.7.3",
"typescript": "^2.6.1"
}
}