forked from abreits/amqp-ts
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.12 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
{
"name": "amqp-ts",
"version": "1.5.2",
"description": "Easy to use AMQP library written in Typescript (using amqplib).",
"repository": {
"type": "git",
"url": "git+https://github.com/abreits/amqp-ts"
},
"keywords": [
"amqp",
"rabbitmq",
"typescript"
],
"license": "MIT",
"author": "Ab Reitsma",
"main": "lib/amqp-ts.js",
"typings": "lib/amqp-ts.d.ts",
"scripts": {
"docker-develop": "npm install && node tools/alive",
"test": "gulp test",
"test-integration": "gulp test:integration"
},
"dependencies": {
"@types/node": "^12.7.2",
"amqplib": "^0.4.1",
"bluebird": "^3.3.5",
"winston": "^2.2.0"
},
"devDependencies": {
"@types/mocha": "^5.2.7",
"chai": "^3.5.0",
"del": "^2.2.0",
"gulp": "^4.0.2",
"gulp-add-src": "^1.0.0",
"gulp-mocha": "^7.0.1",
"gulp-rename": "^1.2.2",
"gulp-sourcemaps": "^1.6.0",
"gulp-tslint": "^8.1.4",
"gulp-typescript": "^5.0.1",
"line-reader": "^0.3.1",
"merge2": "^0.3.7",
"mocha": "^6.2.0",
"source-map-support": "^0.3.3",
"tslint": "^5.19.0",
"typescript": "^3.5.3"
}
}