forked from MeowWolf/node-red-contrib-amqp
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 2.11 KB
/
package.json
File metadata and controls
73 lines (73 loc) · 2.11 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
{
"name": "@meowwolf/node-red-contrib-amqp",
"version": "1.0.3",
"description": "Amqp nodes for node-red",
"main": "index.js",
"scripts": {
"start": "nodemon --exec npm run build",
"build": "rimraf build/* && tsc -p . && npm run copyassets",
"build:production": "rimraf build/* && tsc --sourceMap false -p . && npm run copyassets",
"copyassets": "copyfiles -f src/nodes/**/*.html build/src/nodes && copyfiles -f src/nodes/icons/* build/src/nodes/icons",
"lint": "eslint \"src/**\"",
"test": "npm run build && mocha",
"test:watch": "mocha -w",
"test:cov": "npm run build && nyc mocha"
},
"keywords": [
"node-red",
"amqp",
"rabbitmq",
"meow wolf"
],
"node-red": {
"nodes": {
"amqp-in": "build/src/nodes/amqp-in.js",
"amqp-out": "build/src/nodes/amqp-out.js",
"amqp-broker": "build/src/nodes/amqp-broker.js",
"amqp-in-manual-ack": "build/src/nodes/amqp-in-manual-ack.js"
}
},
"files": [
"build/src",
"examples"
],
"repository": {
"type": "git",
"url": "git@github.com:MeowWolf/node-red-contrib-mw-amqp.git"
},
"contributors": [
"Amo DelBello <adelbello@meowwolf.com>"
],
"bugs": "https://github.com/MeowWolf/node-red-contrib-mw-amqp/issues",
"license": "ISC",
"devDependencies": {
"@istanbuljs/nyc-config-typescript": "^1.0.0",
"@types/amqplib": "^0.5.13",
"@types/chai": "^4.2.12",
"@types/mocha": "^8.0.1",
"@types/node": "^14.0.27",
"@types/node-red": "^0.20.1",
"@types/sinon": "^9.0.4",
"@typescript-eslint/eslint-plugin": "^3.8.0",
"@typescript-eslint/parser": "^3.8.0",
"chai": "^4.2.0",
"copyfiles": "^2.3.0",
"eslint": "^7.6.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-prettier": "^3.1.4",
"mocha": "^8.1.1",
"node-red": "^1.1.2",
"node-red-node-test-helper": "^0.2.5",
"nodemon": "^2.0.4",
"nyc": "^15.1.0",
"prettier": "^2.0.5",
"sinon": "^9.0.2",
"source-map-support": "^0.5.19",
"ts-node": "^8.10.2",
"typescript": "^3.9.7"
},
"dependencies": {
"amqplib": "^0.6.0",
"rimraf": "^3.0.2"
}
}