-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathpackage.json
48 lines (48 loc) · 1.14 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
{
"name": "masstransit-rabbitmq",
"version": "0.1.3",
"description": "MassTransit for JavaScript, RabbitMQ",
"main": "dist/bus.js",
"typings": "dist/bus",
"scripts": {
"build": "tsc",
"prepare": "npm run build",
"prepublishOnly": "npm test",
"test": "jasmine-ts --config=jasmine.json"
},
"repository": {
"type": "git",
"url": "git+https://github.com/MassTransit/MassTransit-JS.git"
},
"bugs": {
"url": "https://github.com/MassTransit/MassTransit-JS/issues"
},
"homepage": "https://github.com/MassTransit/MassTransit-JS",
"keywords": [
"rabbitmq",
"masstransit",
"bus"
],
"author": "Chris Patterson",
"license": "Apache-2.0",
"dependencies": {
"amqplib": "^0.10.3",
"class-transformer": "^0.4.0",
"events": "^3.3.0",
"guid-typescript": "^1.0.9"
},
"devDependencies": {
"@types/amqplib": "^0.5.17",
"@types/jasmine": "^3.6.6",
"@types/node": "^14.14.33",
"jasmine-spec-reporter": "^6.0.0",
"jasmine-ts": "^0.3.0",
"readline": "^1.3.0",
"ts-node": "^7.0.1",
"typescript": "^4.2.3"
},
"files": [
"dist/**/*.js",
"dist/**/*.ts"
]
}