-
Notifications
You must be signed in to change notification settings - Fork 45
/
Copy pathpackage.json
34 lines (34 loc) · 916 Bytes
/
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
{
"name": "amq-js-demo",
"description": "AMQ Javascript Client",
"version": "1.0.0",
"author": "Red Hat, Inc.",
"license": "Apache-2.0",
"main": "app.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "node app.js",
"producer": "node producer.js",
"consumer": "node consumer.js",
"openshift": "nodeshift --strictSSL=false --dockerImage=registry.access.redhat.com/rhoar-nodejs/nodejs-8 --tryServiceAccount=false --configLocation /openshift.local.config/master/admin.kubeconfig"
},
"repository": {
"type": "git",
"url": "git://github.com/hguerrero/amq-examples.git"
},
"bugs": {
"url": "https://developers.redhat.com"
},
"homepage": "https://developers.redhat.com/amq",
"keywords": [
"amqp",
"amq",
"rheajs"
],
"dependencies": {
"rhea": "^0.2.12"
},
"devDependencies": {
"nodeshift": "^1.7.1"
}
}