forked from Randomize163/MenashMQ
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 1.62 KB
/
package.json
File metadata and controls
65 lines (65 loc) · 1.62 KB
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
{
"name": "menashmq",
"version": "0.0.5",
"description": "Easy to use RabbitMQ abstraction with auto-reconnect for JavaScript and TypeScript",
"keywords": [
"rabbitmq",
"rabbit",
"mq",
"amqplib",
"amqp",
"typescript",
"reconnect",
"rpc",
"menash"
],
"author": "Alexander Gurevich",
"homepage": "https://github.com/Randomize163/MenashMQ#readme",
"repository": {
"type": "git",
"url": "https://github.com/Randomize163/MenashMQ.git"
},
"bugs": {
"url": "https://github.com/Randomize163/MenashMQ/issues",
"email": "guran1996@gmail.com"
},
"main": "dist/lib/index.js",
"types": "dist/lib/index.d.ts",
"files": [
"dist/**/*",
"src/**/*"
],
"scripts": {
"start": "node --async-stack-traces ./dist/index.js",
"dev": "npm run build && npm start",
"build": "tsc",
"build:watch": "tsc --watch",
"clean": "rimraf dist",
"test": "mocha -r ts-node/register src/**/*.spec.ts",
"prepare": "npm run build",
"prepublishOnly": "npm test",
"version": "git add -A src",
"postversion": "git push && git push --tags"
},
"license": "ISC",
"dependencies": {
"@types/amqplib": "^0.5.13",
"@types/p-retry": "^3.0.1",
"amqplib": "^0.5.6",
"p-retry": "^4.2.0"
},
"devDependencies": {
"@types/chai": "^4.2.11",
"@types/chai-as-promised": "^7.1.2",
"@types/mocha": "^7.0.2",
"@types/node": "^13.11.1",
"@types/yargs": "^15.0.5",
"chai": "^4.2.0",
"chai-as-promised": "^7.1.1",
"mocha": "^7.1.2",
"rimraf": "^3.0.2",
"ts-node": "^8.10.1",
"typescript": "^3.8.3",
"yargs": "^15.3.1"
}
}