forked from pusher/pusher-http-node
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 1.13 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
{
"name": "pusher",
"description": "Node.js client to interact with the Pusher REST API",
"version": "1.5.1",
"author": "Pusher <support@pusher.com>",
"contributors": [
{
"name": "fabrik42",
"email": "fabrik42@gmail.com"
},
{
"name": "Jaewoong Kim",
"email": "jwoongkim@gmail.com"
},
{
"name": "Phil Leggetter",
"email": "phil@leggetter.co.uk"
},
{
"name": "Paweł Ledwoń",
"email": "me@ludvik.pl"
}
],
"dependencies": {
"request": "2.74.0"
},
"devDependencies": {
"mocha": "=1.20.1",
"expect.js": "=0.3.1",
"sinon": "=1.10.2",
"nock": "=0.28.0",
"express": "=3.11.0",
"webpack": "^1.12.9"
},
"scripts": {
"test": "node node_modules/.bin/mocha tests/integration/**/*.js",
"parse-build": "echo 'Creating build for Parse Cloud.' && webpack --config=./parse.webpack.js",
"prepublish": "npm run parse-build"
},
"keywords": ["pusher", "websockets", "realtime"],
"license": "MIT",
"repository": "git://github.com/pusher/pusher-rest-node",
"main": "lib/pusher",
"engines": {
"node": ">= 0.8.0"
}
}