-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.55 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.55 KB
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
{
"name": "eip-rabbit",
"description": "Rabbitmq Adapter for the eip module. It supports an aggregator Timer using rabbitmq queues.",
"version": "1.1.0",
"dependencies": {
"log4js": "^1.1.0"
},
"peerDependencies": {
"eip": "^1.0.2",
"rabbit-queue": ">=2.3.0"
},
"main": "build/lib/index.js",
"typings": "build/index",
"scripts": {
"clean": "rm -rf ./build",
"prebuild": "npm run clean",
"build": "tsc -p .",
"prewatch": "npm run clean",
"watch": "tsc -w -p .",
"prepublishOnly": "npm test",
"pretest": "tslint src/*.ts && npm run build",
"test": "nyc --reporter=text-summary ./node_modules/.bin/_mocha build/test -- --recursive -R spec --exit",
"posttest": "nyc report --reporter=html --reporter=lcov && nyc check-coverage --statements 80 --branches 70 --functions 80 --lines 80"
},
"author": "Nikos Kostoulas <kostoulas@workable.com>",
"license": "MIT",
"devDependencies": {
"@types/amqplib": "^0.5.13",
"@types/log4js": "0.0.32",
"@types/mocha": "^5.2.7",
"@types/node": "6.0.40",
"@types/node-uuid": "0.0.28",
"@types/should": "8.1.30",
"@types/sinon": "1.16.34",
"@types/source-map-support": "0.2.28",
"@types/supertest": "2.0.0",
"@types/uuid": "2.0.29",
"eip": "^1.6.4",
"mocha": "^6.1.4",
"nyc": "^14.1.1",
"rabbit-queue": "^5.4.1",
"should": "11.2.0",
"sinon": "1.17.7",
"source-map-support": "^0.4.5",
"tslint": "^6.1.3",
"typescript": "4.1.6"
},
"repository": {
"type": "git",
"url": "Workable/eip-rabbit"
}
}