forked from pubnub/javascript
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 1.51 KB
/
package.json
File metadata and controls
73 lines (73 loc) · 1.51 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
{
"name": "pubnub",
"preferGlobal": false,
"version": "3.8.0",
"author": "PubNub <[email protected]>",
"description": "Publish & Subscribe Real-time Messaging with PubNub",
"contributors": [
{
"name": "Stephen Blum",
"email": "[email protected]"
}
],
"bin": {},
"scripts": {
"test": "grunt test --force"
},
"main": "./node.js/pubnub.js",
"browser": "./modern/pubnub.js",
"repository": {
"type": "git",
"url": "git://github.com/pubnub/javascript.git"
},
"keywords": [
"cloud",
"publish",
"subscribe",
"websockets",
"comet",
"bosh",
"xmpp",
"real-time",
"messaging"
],
"dependencies": {
"agentkeepalive": "~0.2",
"lodash": "^4.1.0"
},
"noAnalyze": false,
"devDependencies": {
"eslint": "^1.10.3",
"eslint-config-airbnb": "^5.0.0",
"eslint-plugin-mocha": "^1.1.0",
"eslint-plugin-react": "^3.16.1",
"grunt": "^0.4.5",
"grunt-contrib-clean": "^0.6.0",
"grunt-env": "^0.4.4",
"grunt-eslint": "^17.3.1",
"grunt-mocha-istanbul": "^3.0.1",
"istanbul": "^0.4.2",
"load-grunt-tasks": "^3.4.0",
"mocha": "^2.1.0",
"nock": "^1.1.0",
"node-uuid": "^1.4.7",
"nodeunit": "^0.9.0",
"sinon": "^1.17.2",
"uglify-js": "^2.6.1",
"underscore": "^1.7.0"
},
"bundleDependencies": [],
"license": "MIT",
"engine": {
"node": ">=0.8"
},
"files": [
"core",
"node.js",
"modern/pubnub.js",
"CHANGELOG",
"FUTURE.md",
"LICENSE",
"README.md"
]
}