-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
75 lines (75 loc) · 2.07 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
{
"name": "menashmq",
"version": "0.1.6",
"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": "[email protected]"
},
"main": "dist/lib/index.js",
"types": "dist/lib/index.d.ts",
"files": [
"dist/**/*",
"src/**/*"
],
"scripts": {
"start": "node --async-stack-traces ./dist/examples/index.js",
"dev": "npm run build && npm start",
"build": "tsc",
"build:watch": "tsc --watch",
"lint": "eslint . --ext .ts",
"lint:fix": "eslint . --ext .ts --fix",
"prettier": "prettier --config .prettierrc.js 'src/**/*.ts' --check",
"prettier:fix": "prettier --config .prettierrc.js 'src/**/*.ts' --write",
"clean": "rimraf dist && rimraf coverage",
"test": "jest",
"coverage": "jest --coverage",
"prepare": "npm run build",
"prepublishOnly": "npm test",
"version": "git add -A src",
"postversion": "git push && git push --tags"
},
"license": "ISC",
"dependencies": {
"@types/amqplib": "^0.8.2",
"@types/p-retry": "^3.0.1",
"amqplib": "^0.8.0",
"p-retry": "^4.2.0"
},
"devDependencies": {
"@types/jest": "^26.0.9",
"@types/node": "^14.0.23",
"@types/yargs": "^15.0.5",
"@typescript-eslint/eslint-plugin": "^3.7.0",
"@typescript-eslint/parser": "^3.7.0",
"eslint": "^7.5.0",
"eslint-config-airbnb-base": "^14.2.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-prettier": "^3.1.4",
"jest": "^26.6.3",
"prettier": "^2.0.5",
"rimraf": "^3.0.2",
"ts-jest": "^26.1.4",
"ts-node": "^8.10.2",
"typescript": "^3.9.7",
"yargs": "^15.4.1"
}
}