-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
75 lines (75 loc) · 2.35 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
{
"name": "rabbitode",
"version": "3.0.5",
"description": "A client wrapper to allow the usage of rabbitmq, amqplib with nodejs",
"main": "dist/rabbitode.min.js",
"module": "dist/rabbitode.es5.js",
"typings": "lib/rabbitode.d.ts",
"keywords": [
"rabbitmq",
"amqplib",
"amqp"
],
"scripts": {
"prebuild": "rimraf dist && rimraf lib && rimraf types",
"build": "tsc --module commonjs && rollup -c rollup.config.ts",
"start": "concurrently \"rollup -c rollup.config.ts -w\"",
"clean": "rm -rf ./dist",
"uglify": "uglifyjs ./dist/rabbitode.js -o ./dist/rabbitode.min.js -c toplevel,sequences=false -m",
"minify": "jsmin -o ./dist/rabbitode.min.js ./dist/rabbitode.js",
"watch": "tsc -w",
"preversion": "npm run build",
"test-direct": "concurrently \"node ./example/direct/publish.js\" \"node ./example/direct/consume.js\"",
"test-topic": "concurrently \"node ./example/topic/producer.js\" \"node ./example/topic/consumer.js\"",
"test-fanout": "concurrently \"node ./example/fanout/publisher.js\" \"node ./example/fanout/worker1.js\" \"node ./example/fanout/worker2.js\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/EvanBurbidge/rabbitode.git"
},
"bugs": {
"url": "https://github.com/EvanBurbidge/rabbitode/issues"
},
"homepage": "https://github.com/EvanBurbidge/rabbitode#readme",
"author": "EvanB54",
"license": "ISC",
"dependencies": {
"await-to-js": "^3.0.0",
"amqplib": "^0.7.1",
"buffer-from": "^1.1.1"
},
"devDependencies": {
"@types/amqplib": "^0.5.17",
"@types/express": "^4.16.0",
"@types/node": "^9.6.41",
"buffer-from": "^1.1.1",
"chai": "^4.3.4",
"concurrently": "^6.0.0",
"jest": "^26.6.3",
"jsmin": "^1.0.1",
"lodash": "^4.17.21",
"mocha": "^8.3.2",
"pump": "^3.0.0",
"rollup": "^0.67.0",
"rollup-plugin-commonjs": "^9.1.8",
"rollup-plugin-json": "^3.1.0",
"rollup-plugin-node-resolve": "^3.4.0",
"rollup-plugin-sourcemaps": "^0.4.2",
"rollup-plugin-typescript2": "^0.30.0",
"sinon": "^10.0.0",
"tslib": "^2.1.0",
"tslint": "^5.12.0",
"tslint-config-airbnb": "^5.11.1",
"typedoc": "^0.20.34",
"typescript": "^4.2.3",
"uglify-js": "^3.6.0"
},
"files": [
"dist",
"lib",
"types",
"package.json",
"readme.md",
"rabbitode-logo.png"
]
}