This repository has been archived by the owner on Oct 18, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
83 lines (83 loc) · 2.5 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
{
"name": "@stormpass/node-red-contrib-amqp",
"license": "ISC",
"version": "1.4.1",
"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",
"login": "npm login --registry https://registry.npmjs.com --auth-type=web",
"publish": "npm publish --registry https://registry.npmjs.com"
},
"keywords": [
"node-red",
"amqp",
"rabbitmq"
],
"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": "[email protected]:Stormpass/node-red-contrib-amqp.git"
},
"contributors": [
"Amo DelBello <[email protected]>",
"Stormpass <[email protected]>",
"Corentin <[email protected]>"
],
"bugs": "https://github.com/stormpass/node-red-contrib-amqp/issues",
"devDependencies": {
"@istanbuljs/nyc-config-typescript": "^0.1.3",
"@types/amqplib": "^0.8.1",
"@types/chai": "^4.2.21",
"@types/lodash.clonedeep": "^4.5.6",
"@types/mocha": "^9.0.0",
"@types/node": "^16.4.12",
"@types/node-red": "^1.1.1",
"@types/node-red-node-test-helper": "^0.2.2",
"@types/sinon": "^10.0.2",
"@typescript-eslint/eslint-plugin": "^4.29.0",
"@typescript-eslint/parser": "^4.29.0",
"chai": "^4.3.4",
"copyfiles": "^2.4.1",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^3.4.0",
"mocha": "^8.1.3",
"node-red": "^2.0.5",
"node-red-node-test-helper": "^0.2.7",
"nodemon": "^2.0.12",
"nyc": "^15.1.0",
"prettier": "^2.3.2",
"rimraf": "^3.0.2",
"sinon": "^11.1.2",
"source-map-support": "^0.5.19",
"ts-node": "^10.1.0",
"typescript": "^4.3.5"
},
"dependencies": {
"amqplib": "^0.10.3",
"lodash.clonedeep": "^4.5.0",
"uuid": "^8.3.2"
},
"publishConfig": {
"access": "public"
}
}