-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.46 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
{
"name": "integreat-transporter-rabbitmq",
"version": "0.1.0",
"description": "RabbitMQ Transporter for Integreat",
"author": "Kjell-Morten Bratsberg Thorsen <[email protected]>",
"license": "ISC",
"keywords": [
"integreat",
"queue",
"rabbitmq"
],
"main": "index.js",
"scripts": {
"test": "npm run lint && npm run build && nyc --reporter=text-summary ava --config ./ava-dist.config.js",
"test:inspect": "node --inspect node_modules/ava/profile.js",
"test:watch": "npm run dev",
"test:setup": "docker compose up",
"test:teardown": "docker compose down",
"dev": "ava --watch",
"build": "tsc",
"coverage": "nyc report --reporter=text-lcov | coveralls",
"nyc:report": "nyc report --reporter=text --reporter=html",
"lint": "eslint --ext .ts src"
},
"repository": {
"type": "git",
"url": "git+https://github.com/integreat-io/integreat-transporter-rabbitmq.git"
},
"bugs": {
"url": "https://github.com/integreat-io/integreat-transporter-rabbitmq/issues"
},
"homepage": "https://github.com/integreat-io/integreat-transporter-rabbitmq#readme",
"engines": {
"node": ">= 14"
},
"dependencies": {
"@types/amqplib": "^0.8.2",
"@types/debug": "^4.1.7",
"@types/nanoid": "^3.0.0",
"amqplib": "^0.8.0",
"debug": "^4.3.3",
"nanoid": "^3.1.30"
},
"devDependencies": {
"@integreat/ts-dev-setup": "^2.2.0",
"@types/sinon": "^10.0.6",
"sinon": "^12.0.1"
}
}