This repository was archived by the owner on Aug 18, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.33 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.33 KB
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
{
"name": "@pusher/chatkit-server",
"description": "Pusher Chatkit server SDK",
"version": "2.4.0",
"main": "target/src/index.js",
"license": "MIT",
"author": "Pusher",
"types": "target/src/index.d.ts",
"repository": {
"type": "git",
"url": "git+https://github.com/pusher/chatkit-server-node.git"
},
"prettier": {
"semi": false,
"trailingComma": "all"
},
"scripts": {
"build": "rm -rf target && tsc",
"test": "bash -c 'set -o pipefail; yarn test:build && yarn test:run | tap-colorize'",
"test:build": "tsc -p tests",
"test:run": "node tests/target/tests/main.js",
"test:withSDKBuild": "yarn build && bash -c 'set -o pipefail; yarn test:build && yarn test:run | tap-colorize'",
"install-pkg": "if type yarn &> /dev/null; then yarn; else npm i; fi",
"publish-please": "publish-please",
"prepublishOnly": "publish-please guard"
},
"dependencies": {
"@pusher/platform-node": "~0.15.0",
"@types/got": "^9.4.0",
"got": "^9.6.0",
"jsonwebtoken": "^8.3.0"
},
"resolutions": {
"**/**/lodash": "^4.17.13"
},
"devDependencies": {
"@types/tape": "^4.2.32",
"babel-core": "^6.25.0",
"babel-preset-es2015": "^6.24.1",
"dts-bundle": "^0.7.3",
"publish-please": "^5.1.1",
"tap-colorize": "^1.2.0",
"tape": "^4.9.1",
"typescript": "^2.6.1"
}
}