This repository has been archived by the owner on Aug 26, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
83 lines (83 loc) · 2.28 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
{
"name": "@honestfoodcompany/pubsub",
"version": "1.7.9",
"description": "pubsub framework for managing topics and subscriptions",
"main": "dist/index.js",
"scripts": {
"watch": "nodemon --watch 'src/**/*' -e ts --exec yarn run build",
"test": "jest --coverage",
"clean": "./node_modules/.bin/rimraf dist",
"prepare": "npm run clean && ./node_modules/.bin/tsc --declaration",
"docs": "./node_modules/.bin/typedoc --out documentation/ src/index.ts",
"lint": "tslint -p tsconfig.json",
"subscriptions": "ts-node src/cli/subscriptions.ts",
"postinstall": "node postinstall.js"
},
"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.3.0",
"chalk": "^2.4.2",
"cli-ux": "^5.4.9",
"dot-prop": ">=5.1.1",
"dotenv": "^8.2.0",
"find-config": "^1.0.0",
"fs": "0.0.1-security",
"grpc": "^1.24.3",
"wrap-ansi": "^6.2.0",
"yargs": "^14.2.3"
},
"devDependencies": {
"@types/jest": "^24.9.1",
"@types/node": ">=4.2.0 < 13",
"@types/wrap-ansi": "^3.0.0",
"@types/yargs": "^13.0.9",
"@typescript-eslint/eslint-plugin": "2.17.0",
"@typescript-eslint/parser": "2.17.0",
"@typescript-eslint/typescript-estree": "2.17.0",
"rimraf": "^3.0.2",
"eslint": "5.16.0",
"eslint-config-prettier": "6.9.0",
"eslint-plugin-prettier": "3.1.2",
"husky": "^3.1.0",
"jest": "^24.9.0",
"lint-staged": "8.1.7",
"nodemon": "^2.0.4",
"prettier": "^1.19.1",
"ts-jest": "^24.3.0",
"ts-node": "8.1.0",
"tslint": "5.16.0",
"typedoc": "^0.17.8",
"typescript": "^3.9.6",
"yarn": "^1.22.4"
},
"lint-staged": {
"*.{ts,tsx}": [
"./node_modules/.bin/prettier --write",
"git add"
]
},
"author": "Delivery Hero HF Kitchens GmbH",
"repository": {
"type": "git",
"url": "https://github.com/honest-food-company/pubsub.git"
},
"license": "MIT",
"bin": {
"subscriptions": "./dist/cli/subscriptions.js"
},
"husky": {
"hooks": {
"post-commit": "(git-branch-is develop && HUSKY_SKIP_HOOKS=1 yarn version --patch)"
}
}
}