-
Notifications
You must be signed in to change notification settings - Fork 19
/
Copy pathpackage.json
44 lines (44 loc) · 893 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
35
36
37
38
39
40
41
42
43
44
{
"name": "node-red-contrib-amqp",
"version": "1.0.1",
"description": "Node-RED AMQP input and output nodes",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [
"node-red",
"amqp",
"rabbitmq",
"amqp-ts"
],
"node-red": {
"nodes": {
"amqp": "lib/amqp.js"
}
},
"files": [
"lib/*"
],
"author": "Ab Reitsma",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/abreits/node-red-contrib-amqp"
},
"dependencies": {
"amqp-ts": "^1.0.0",
"getos": "^3.1.1"
},
"devDependencies": {
"del": "^2.2.2",
"gulp": "^4.0.1",
"gulp-add-src": "^1.0.0",
"gulp-concat": "^2.6.1",
"gulp-rename": "^1.4.0",
"gulp-tslint": "^5.0.0",
"gulp-typescript": "^2.14.1",
"tslint": "^3.15.1",
"typescript": "^1.8.10"
}
}