-
Notifications
You must be signed in to change notification settings - Fork 69
/
package.json
63 lines (63 loc) · 1.48 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
{
"name": "pusher",
"description": "Node.js client to interact with the Pusher Channels REST API",
"version": "5.2.0",
"author": "Pusher <[email protected]>",
"contributors": [
{
"name": "fabrik42",
"email": "[email protected]"
},
{
"name": "Jaewoong Kim",
"email": "[email protected]"
},
{
"name": "Phil Leggetter",
"email": "[email protected]"
},
{
"name": "Paweł Ledwoń",
"email": "[email protected]"
}
],
"dependencies": {
"abort-controller": "^3.0.0",
"is-base64": "^1.1.0",
"node-fetch": "^2.6.1",
"tweetnacl": "^1.0.0",
"tweetnacl-util": "^0.15.0",
"@types/node-fetch": "^2.5.7"
},
"devDependencies": {
"@types/node": "^14.14.6",
"eslint": "^7.11.0",
"expect.js": "=0.3.1",
"express": "^4.17.1",
"https-proxy-agent": "^5.0.0",
"mocha": "^7.2.0",
"nock": "^12.0.3",
"prettier": "2.1.2",
"sinon": "=1.10.2",
"webpack": "^4.42.1",
"webpack-cli": "^3.3.11"
},
"scripts": {
"local-test": "npx mocha 'tests/integration/**/*.js'",
"test": "npx mocha 'tests/{integration,remote}/**/*.js'",
"lint": "npx eslint . && npx prettier --check .",
"format": "npx prettier --write ."
},
"keywords": [
"pusher",
"websockets",
"realtime"
],
"license": "MIT",
"repository": "git://github.com/pusher/pusher-http-node",
"main": "lib/pusher",
"typings": "index.d.ts",
"engines": {
"node": ">= 4.0.0"
}
}