-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
48 lines (48 loc) · 1.38 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
{
"name": "@superbalist/js-event-pubsub",
"version": "3.0.2",
"description": "An event protocol and implementation over pub/sub",
"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-event-pubsub.git"
},
"keywords": [
"pubsub",
"google",
"cloud",
"redis",
"events"
],
"author": "Superbalist.com a division of Takealot Online (Pty)",
"license": "MIT",
"bugs": {
"url": "https://github.com/Superbalist/js-event-pubsub/issues"
},
"homepage": "https://github.com/Superbalist/js-event-pubsub#readme",
"dependencies": {
"@superbalist/js-pubsub": "^3.0.0",
"ajv": "^5.0.1",
"request": "^2.81.0",
"request-promise-native": "^1.0.3",
"semver": "^5.3.0",
"uuid": "^3.0.1"
},
"devDependencies": {
"babel-cli": "^6.24.1",
"babel-preset-es2015": "^6.24.1",
"chai": "^3.5.0",
"chai-as-promised": "^6.0.0",
"eslint": "^6.8.0",
"eslint-config-google": "^0.7.1",
"istanbul": "^0.4.5",
"mocha": "^3.3.0",
"sinon": "^2.2.0"
}
}