sb-rabbitmq-provider 1.0.11

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/README.md +29 -0
  2. package/package.json +42 -0
package/README.md ADDED
@@ -0,0 +1,29 @@
1
+ # README #
2
+
3
+ This README would normally document whatever steps are necessary to get your application up and running.
4
+
5
+ ### What is this repository for? ###
6
+
7
+ * Quick summary
8
+ * Version
9
+ * [Learn Markdown](https://bitbucket.org/tutorials/markdowndemo)
10
+
11
+ ### How do I get set up? ###
12
+
13
+ * Summary of set up
14
+ * Configuration
15
+ * Dependencies
16
+ * Database configuration
17
+ * How to run tests
18
+ * Deployment instructions
19
+
20
+ ### Contribution guidelines ###
21
+
22
+ * Writing tests
23
+ * Code review
24
+ * Other guidelines
25
+
26
+ ### Who do I talk to? ###
27
+
28
+ * Repo owner or admin
29
+ * Other community or team contact
package/package.json ADDED
@@ -0,0 +1,42 @@
1
+ {
2
+ "name": "sb-rabbitmq-provider",
3
+ "version": "1.0.11",
4
+ "description": "Pub/Sub model for RabbitMq",
5
+ "main": "dist/index.js",
6
+ "types": "dist/index.d.ts",
7
+ "scripts": {
8
+ "build": "tsc && tsc-alias",
9
+ "test": "jest --config jestconfig.json",
10
+ "format": "prettier --write \"app/**/*.ts\"",
11
+ "lint": "eslint . --ext .ts",
12
+ "prepare": "npm run build",
13
+ "publish": "npm run clean && npm run format && npm run build && npm test && npm publish --ignore-scripts",
14
+ "clean": "rimraf dist"
15
+ },
16
+ "keywords": [
17
+ "rabbitmq",
18
+ "connect",
19
+ "channel",
20
+ "pub/sub"
21
+ ],
22
+ "author": "Sportsbuzz",
23
+ "license": "ISC",
24
+ "dependencies": {
25
+ "@types/amqplib": "^0.10.1",
26
+ "amqplib": "^0.10.3"
27
+ },
28
+ "files": [
29
+ "dist/**/*"
30
+ ],
31
+ "devDependencies": {
32
+ "@types/jest": "^29.5.1",
33
+ "jest": "^29.4.3",
34
+ "eslint": "^8.50.0",
35
+ "prettier": "^2.8.4",
36
+ "rimraf": "^4.1.2",
37
+ "ts-jest": "^29.0.5",
38
+ "tsc-alias": "^1.8.6",
39
+ "tslint-config-prettier": "^1.18.0",
40
+ "typescript": "^5.2.2"
41
+ }
42
+ }