-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
47 lines (47 loc) · 1.44 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": "@superbalist/js-pubsub-manager",
"version": "3.0.1",
"description": "A manager & factory for the js-pubsub package.",
"main": "lib/index.js",
"scripts": {
"build": "./node_modules/.bin/babel --presets babel-preset-es2015 --out-dir lib/ src/",
"prepublish": "npm run build",
"test": "npm run build && mocha test",
"coverage": "npm run build && ./node_modules/istanbul/lib/cli.js cover ./node_modules/mocha/bin/_mocha -- --ui bdd -R spec -t 5000"
},
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/Superbalist/js-pubsub-manager.git"
},
"keywords": [
"pubsub",
"google",
"cloud",
"redis"
],
"author": "Superbalist.com a division of Takealot Online (Pty)",
"license": "MIT",
"bugs": {
"url": "https://github.com/Superbalist/js-pubsub-manager/issues"
},
"homepage": "https://github.com/Superbalist/js-pubsub-manager#readme",
"dependencies": {
"@google-cloud/pubsub": "^0.11.0",
"@superbalist/js-pubsub": "^3.0.0",
"@superbalist/js-pubsub-google-cloud": "^3.0.2",
"@superbalist/js-pubsub-http": "^2.0.0",
"@superbalist/js-pubsub-redis": "^3.0.0",
"redis": "^2.7.1"
},
"devDependencies": {
"babel-cli": "^6.24.1",
"babel-preset-es2015": "^6.24.1",
"chai": "^3.5.0",
"eslint": "^6.8.0",
"eslint-config-google": "^0.7.1",
"istanbul": "^0.4.5",
"mocha": "^3.3.0",
"proxyquire": "^1.7.11",
"sinon": "^2.2.0"
}
}