-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.06 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
{
"name": "ubsub",
"version": "1.0.2",
"description": "Quickly and easily integrate with events on ubsub.io",
"bin": {
"ubsub": "./cli.js"
},
"scripts": {
"test": "npm run lint",
"lint": "eslint .",
"release": "npm version patch && git push && git push --tags && npm publish",
"package": "pkg --out-path dist/ ."
},
"repository": {
"type": "git",
"url": "git+https://github.com/ubsub/ubsub-client.git"
},
"keywords": [
"PubSub",
"ubsub",
"events",
"messaging",
"queueing"
],
"author": "Chris LaPointe",
"license": "MIT",
"bugs": {
"url": "https://github.com/ubsub/ubsub-client/issues"
},
"homepage": "https://github.com/ubsub/ubsub-client#readme",
"dependencies": {
"axios": "^0.16.2",
"chalk": "^2.1.0",
"columnify": "^1.5.4",
"inquirer": "^3.3.0",
"libubsub": "^0.1.4",
"lodash": "^4.17.11",
"yargs": "^10.0.3"
},
"devDependencies": {
"eslint": "^4.8.0",
"eslint-config-airbnb-base": "^12.0.1",
"eslint-plugin-import": "^2.7.0",
"pkg": "^4.3.7"
}
}