-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
58 lines (58 loc) · 1.5 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
{
"name": "nabbitmq",
"version": "1.0.0",
"description": "An open source RabbitMQ client based on RxJS streams",
"main": "lib/index.js",
"scripts": {
"example": "nodemon --config ./examples/nodemon.config.json",
"example_with_custom": "nodemon --config ./examples/custom.nodemon.config.json",
"example_with_reconnect": "nodemon --config ./examples/reconnect.nodemon.config.json",
"build": "tsc",
"format": "prettier --write \"src/**/*.ts\" \"src/**/*.js\"",
"lint": "tslint -p tsconfig.json",
"unit_tests": "ts-mocha --path ./test/unit/*.spec.ts"
},
"files": [
"lib/**/*"
],
"repository": {
"type": "git",
"url": "git+https://github.com/skif48/nabbit.git"
},
"keywords": [
"RabbitMQ",
"Node.js",
"AMQP",
"AMQP-0-9-1",
"Queue",
"MQ",
"Message Queue"
],
"author": "Vladyslav Usenko",
"license": "MIT",
"bugs": {
"url": "https://github.com/skif48/nabbit/issues"
},
"homepage": "https://github.com/skif48/nabbit#readme",
"dependencies": {
"@types/amqplib": "^0.5.9",
"@types/chai": "^4.1.7",
"amqplib": "^0.5.3",
"rxjs": "^6.4.0"
},
"devDependencies": {
"@types/mocha": "^5.2.6",
"@types/node": "^10.12.21",
"chai": "^4.2.0",
"coveralls": "^3.0.3",
"mocha": "^6.0.2",
"nyc": "^14.0.0",
"prettier": "^1.16.4",
"sinon": "^7.3.0",
"ts-mocha": "^6.0.0",
"ts-node": "^8.0.2",
"tslint": "^5.12.1",
"tslint-config-prettier": "^1.17.0",
"typescript": "^3.3.1"
}
}