-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
52 lines (51 loc) · 1.86 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
{
"name": "rx-amqplib",
"version": "0.1.6",
"description": "RxJS wrapper for the amqplib from squaremo",
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/SkippyZA/rx-amqplib.git"
},
"keywords": [
"rxjs",
"amqp",
"amqplib",
"rabbitmq",
"queue"
],
"author": "Steven Inskip",
"license": "MIT",
"bugs": {
"url": "https://github.com/SkippyZA/rx-amqplib/issues"
},
"main": "index.js",
"scripts": {
"clean": "node_modules/.bin/rimraf dist/*",
"build:lint": "node_modules/.bin/tslint --config=tslint.json --project=tsconfig.json",
"build:ts": "node_modules/.bin/tsc",
"build": "npm run build:lint && npm run build:ts",
"example-client": "npm run build && node ./examples/client.js",
"example-emit-logs-direct": "npm run build && node ./examples/emit_log_direct.js",
"example-emit-logs-topic": "npm run build && node ./examples/emit_log_topic.js",
"example-emit-logs": "npm run build && node ./examples/emit_logs.js",
"example-new-task": "npm run build && node ./examples/new_task.js",
"example-receive-logs": "npm run build && node ./examples/receive_logs.js",
"example-receive-logs-direct": "npm run build && node ./examples/receive_logs_direct.js",
"example-receive-logs-topic": "npm run build && node ./examples/receive_logs_topic.js",
"example-rcp-client": "npm run build && node ./examples/rpc_client.js",
"example-rcp-server": "npm run build && node ./examples/rpc_server.js",
"example-server": "npm run build && node ./examples/server.js",
"example-worker": "npm run build && node ./examples/worker.js"
},
"homepage": "https://github.com/SkippyZA/rx-amqplib#readme",
"dependencies": {
"amqplib": "^0.4.1",
"node-uuid": "^1.4.7",
"rx": "^4.1.0"
},
"devDependencies": {
"rimraf": "^2.5.4",
"tslint": "^3.15.1",
"typescript": "^2.0.3"
}
}