-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
113 lines (113 loc) · 3.22 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
{
"name": "@honestfoodcompany/pubsub",
"version": "2.3.0",
"description": "pubsub framework for managing topics and subscriptions",
"main": "dist/index.js",
"homepage": "https://deliveryhero.github.io/hfc-pubsub/",
"scripts": {
"prebuild": "yarn rimraf dist",
"build": "tsc -p tsconfig.build.json",
"check-types": "tsc",
"docs": "yarn docusaurus build",
"docs-start": "yarn docusaurus start",
"lint": "yarn eslint src examples __tests__ --ignore-path .gitignore --ext .js,.ts",
"lint-fix": "yarn lint --fix",
"list": "yarn subscriptions list",
"start": "yarn subscriptions start",
"subscriptions": "yarn ts-node -r tsconfig-paths/register src/cli/subscriptions.ts",
"test": "jest",
"test-with-coverage": "yarn test --coverage",
"watch": "yarn build -w",
"prepack": "yarn build",
"prepare": "yarn build",
"prepublishOnly": "yarn build",
"postinstall": "node postinstall.js",
"serve": "yarn docusaurus serve"
},
"keywords": [
"google pubsub",
"pubsub",
"publish/subscribe",
"subscriptions",
"pubsub framework",
"event driven microservices",
"microservices",
"google pub/sub"
],
"types": "dist/index.d.ts",
"dependencies": {
"@google-cloud/pubsub": "2.18.1",
"@google-cloud/resource": "1.2.1",
"bluebird": "3.7.2",
"chalk": "4.1.2",
"cli-table": "0.3.6",
"dotenv": "10.0.0",
"find-config": "1.0.0",
"pako": "2.1.0",
"wrap-ansi": "7.0.0",
"yargs": "17.2.1"
},
"devDependencies": {
"@changesets/cli": "^2.17.0",
"@changesets/get-github-info": "^0.5.0",
"@docusaurus/core": "^2.0.0-beta.ff31de0ff",
"@docusaurus/preset-classic": "^2.0.0-beta.ff31de0ff",
"@types/bluebird": "^3.5.36",
"@types/cli-table": "^0.3.0",
"@types/jest": "^27.0.2",
"@types/node": "^16",
"@types/pako": "^2",
"@types/react": "^17.0.34",
"@types/wrap-ansi": "^8.0.1",
"@types/yargs": "^17.0.5",
"@typescript-eslint/eslint-plugin": "^4.33.0",
"@typescript-eslint/parser": "^4.33.0",
"clsx": "^1.1.1",
"docusaurus-plugin-typedoc": "^0.16.3",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.24.2",
"eslint-plugin-jest": "^24.5.2",
"eslint-plugin-prettier": "^4.0.0",
"husky": "^7.0.2",
"jest": "^27.2.4",
"lint-staged": "^11.2.0",
"nodemon": "^2.0.13",
"prettier": "^2.4.1",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"rimraf": "^3.0.2",
"ts-jest": "^27.0.5",
"ts-node": "^10.2.1",
"tsconfig-paths": "^3.11.0",
"typedoc": "^0.22.7",
"typedoc-plugin-markdown": "^3.11.3",
"typescript": "^4.4.3"
},
"author": "Delivery Hero HF Kitchens GmbH",
"repository": {
"type": "git",
"url": "https://github.com/deliveryhero/hfc-pubsub.git"
},
"bugs": {
"url": "https://github.com/deliveryhero/hfc-pubsub/issues"
},
"license": "MIT",
"bin": {
"subscriptions": "./dist/cli/subscriptions.js"
},
"engines": {
"node": ">=12.22.0"
},
"lint-staged": {
"*.{ts,js}": [
"yarn eslint --ignore-path .gitignore --ext .js,.ts --fix"
]
},
"husky": {
"hooks": {
"pre-commit": "yarn lint-staged"
}
},
"packageManager": "[email protected]"
}