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
100 lines (100 loc) · 2.35 KB
/
Copy pathpackage.json
File metadata and controls
100 lines (100 loc) · 2.35 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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
{
"name": "pubnub",
"preferGlobal": false,
"version": "3.15.0",
"author": "PubNub <support@pubnub.com>",
"description": "Publish & Subscribe Real-time Messaging with PubNub",
"contributors": [
{
"name": "Stephen Blum",
"email": "stephen@pubnub.com"
}
],
"bin": {},
"scripts": {
"test": "grunt test --force"
},
"main": "./node.js/pubnub.js",
"browser": "./modern/dist/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",
"uuid": "^2.0.1"
},
"noAnalyze": false,
"devDependencies": {
"babel-core": "^6.6.5",
"babel-eslint": "5.0.0",
"babel-plugin-transform-class-properties": "^6.6.0",
"babel-plugin-transform-flow-strip-types": "^6.6.5",
"babel-preset-es2015": "^6.6.0",
"chai": "3.5.0",
"eslint": "2.2.0",
"eslint-config-airbnb": "6.0.2",
"eslint-plugin-flowtype": "2.1.0",
"eslint-plugin-mocha": "2.0.0",
"eslint-plugin-react": "4.1.0",
"flow-bin": "^0.22.1",
"grunt": "0.4.5",
"grunt-babel": "6.0.0",
"grunt-contrib-clean": "1.0.0",
"grunt-contrib-copy": "^1.0.0",
"grunt-contrib-uglify": "^1.0.0",
"grunt-env": "0.4.4",
"grunt-eslint": "18.0.0",
"grunt-flow": "1.0.3",
"grunt-karma": "0.12.1",
"grunt-mocha-istanbul": "3.0.1",
"grunt-text-replace": "0.4.0",
"grunt-webpack": "1.0.11",
"imports-loader": "0.6.5",
"isparta": "4.0.0",
"json-loader": "0.5.4",
"karma": "0.13.21",
"karma-chai": "0.1.0",
"karma-mocha": "^0.2.2",
"karma-phantomjs-launcher": "1.0.0",
"karma-spec-reporter": "0.0.24",
"load-grunt-tasks": "^3.4.1",
"mocha": "2.4.5",
"nock": "1.1.0",
"node-uuid": "1.4.7",
"nodeunit": "0.9.0",
"phantomjs-prebuilt": "2.1.4",
"proxyquire": "1.7.4",
"sinon": "^1.17.3",
"uglify-js": "^2.6.2",
"underscore": "1.7.0",
"webpack": "^1.12.14",
"webpack-dev-server": "1.14.1"
},
"bundleDependencies": [],
"license": "MIT",
"engine": {
"node": ">=0.8"
},
"files": [
"core",
"node.js",
"modern",
"CHANGELOG",
"FUTURE.md",
"LICENSE",
"README.md"
]
}