forked from pubnub/javascript
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
122 lines (122 loc) · 3.98 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
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
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
{
"name": "pubnub",
"version": "4.30.1",
"author": "PubNub <support@pubnub.com>",
"description": "Publish & Subscribe Real-time Messaging with PubNub",
"bin": {},
"scripts": {
"clean": "rimraf lib dist coverage upload",
"build": "gulp compile",
"lint": "eslint \"src/**/*\" --config .eslintrc.yml",
"test:node": "mocha --config .mocharc.yml",
"test:feature:objectsv2:node": "mocha --no-config --require test/setup.js --reporter spec test/dist/objectsv2.test.js",
"test:feature:fileupload:node": "mocha --no-config --require test/setup.js --reporter spec test/feature/file_upload.node.test.js",
"test:feature:fileupload:web": "karma start karma/chrome.config.js test/feature/file_upload.web.test.js",
"test:crypto:node": "mocha --no-config --require test/setup.js --reporter spec test/crypto/node.test.js",
"test:crypto:web": "karma start karma/chrome.config.js test/crypto/web.test.js",
"coverage": "nyc npm run test:node",
"codecov": "cat coverage/lcov.info | codecov"
},
"main": "./lib/node/index.js",
"react-native": "./lib/react_native/index.js",
"nativescript": "./lib/nativescript/index.js",
"browser": "./dist/web/pubnub.min.js",
"repository": {
"type": "git",
"url": "git://github.com/pubnub/javascript.git"
},
"keywords": [
"cloud",
"publish",
"subscribe",
"websockets",
"comet",
"bosh",
"xmpp",
"real-time",
"messaging"
],
"dependencies": {
"@babel/runtime": "^7.10.5",
"agentkeepalive": "^3.5.2",
"cbor-js": "^0.1.0",
"cbor-sync": "^1.0.4",
"isomorphic-webcrypto": "^2.3.6",
"lil-uuid": "^0.1.1",
"superagent": "^3.8.1",
"superagent-proxy": "^2.0.0"
},
"noAnalyze": false,
"devDependencies": {
"@babel/core": "^7.7.7",
"@babel/plugin-proposal-class-properties": "^7.7.4",
"@babel/plugin-proposal-nullish-coalescing-operator": "^7.8.3",
"@babel/plugin-proposal-optional-chaining": "^7.9.0",
"@babel/plugin-transform-flow-strip-types": "^7.7.4",
"@babel/plugin-transform-modules-commonjs": "^7.7.5",
"@babel/plugin-transform-runtime": "^7.10.5",
"@babel/polyfill": "^7.8.7",
"@babel/preset-env": "^7.7.7",
"@babel/register": "^7.7.7",
"babel-eslint": "^10.0.3",
"babel-loader": "^8.0.6",
"babel-plugin-add-module-exports": "^1.0.2",
"chai": "^4.2.0",
"chai-as-promised": "^7.1.1",
"chai-nock": "^1.2.0",
"eslint-config-airbnb": "^17.1.1",
"eslint-plugin-flowtype": "^3.13.0",
"eslint-plugin-import": "^2.19.1",
"eslint-plugin-mocha": "^6.2.2",
"flow-bin": "^0.103.0",
"gulp": "^4.0.2",
"gulp-babel": "^8.0.0",
"gulp-clean": "^0.4.0",
"gulp-eslint": "^6.0.0",
"gulp-exec": "^4.0.0",
"gulp-gzip": "^1.4.2",
"gulp-istanbul": "git+https://github.com/raipubnub/gulp-istanbul.git#gulp4",
"gulp-mocha": "^7.0.2",
"gulp-rename": "^1.4.0",
"gulp-sourcemaps": "^2.6.5",
"gulp-terser": "^1.2.0",
"gulp-uglify": "^3.0.2",
"gulp-unzip": "^1.1.0",
"gulp4-run-sequence": "^0.4.0",
"imports-loader": "^0.7.0",
"js-yaml": "^3.13.1",
"json-loader": "^0.5.7",
"karma": "^5.0.3",
"karma-babel-preprocessor": "^8.0.1",
"karma-chai": "^0.1.0",
"karma-chrome-launcher": "^3.1.0",
"karma-coverage": "^2.0.2",
"karma-mocha": "^2.0.1",
"karma-phantomjs-launcher": "^1.0.4",
"karma-sinon-chai": "^2.0.2",
"karma-sourcemap-loader": "^0.3.7",
"karma-spec-reporter": "0.0.32",
"karma-webpack": "^4.0.2",
"mocha": "^7.1.2",
"nock": "^9.6.1",
"node-fetch": "^1.7.3",
"nyc": "^15.0.1",
"phantomjs-prebuilt": "^2.1.16",
"puppeteer": "^5.2.0",
"rimraf": "^3.0.2",
"sinon": "^7.5.0",
"sinon-chai": "^3.3.0",
"stats-webpack-plugin": "^0.7.0",
"terser": "^4.8.0",
"uglify-js": "^2.8.26",
"underscore": "^1.9.2",
"webpack": "^4.41.2",
"webpack-stream": "^5.2.1",
"wrapper-webpack-plugin": "^2.1.0"
},
"bundleDependencies": [],
"license": "MIT",
"engine": {
"node": ">=0.8"
}
}