forked from benjaminws/stomp-js
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.5 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.5 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
{
"name": "eyeos-stomp",
"description": "Implementation of the STOMP protocol in node.js",
"keywords": [
"STOMP",
"messaging",
"queue",
"protocol"
],
"version": "0.1.2",
"homepage": "https://github.com/benjaminws/stomp-js",
"author": {
"name": "Benjamin W. Smith",
"email": "benjaminws@just-another.net"
},
"contributors": [
{
"name": "rofflwaffls@gmail.com"
},
{
"name": "eyeos@eyeos.com"
}
],
"main": "lib/stomp",
"repository": {
"type": "git",
"url": "https://github.com/eyeos2/stomp-js.git"
},
"directories": {
"lib": "./lib",
"examples": "./examples"
},
"devDependencies": {
"nodeunit": "0.9.0"
},
"licenses": [
{
"type": "BSD",
"url": "https://github.com/benjaminws/stomp-js/raw/master/LICENSE"
}
],
"readme": "stomp-js\n========\n\n## Overview\n\nAn exercise with node.js to implement the STOMP protocol.\n\nFor documentation see http://benjaminws.github.com/stomp-js/\n\n## Installation\n\n`npm install stomp`\n\n`git clone https://benjaminws@github.com/benjaminws/stomp-js.git`\n\n## Examples\n\n### Consumer\n\nSee examples/stomp-consumer.js\n\n### Producer\n\nSee examples/stomp-producer.js\n\n### Producer with Transaction Support\n\nSee examples/stomp-producer-txn.js\n\n### Contributors\n\nrofflwaffls -at- gmail.com\n",
"readmeFilename": "README.md",
"bugs": {
"url": "https://github.com/eyeos2/stomp-js/issues"
},
"_id": "eyeos-stomp@0.1.2",
"_from": "eyeos-stomp@*"
}