-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
109 lines (109 loc) · 4.27 KB
/
Copy pathpackage.json
File metadata and controls
109 lines (109 loc) · 4.27 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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
{
"name": "@pauldeng/node-red-contrib-dapr-http",
"version": "0.2.1",
"description": "Node-RED nodes for Dapr pub/sub, service invocation, state management, dynamic configuration, output bindings, and secrets over HTTP.",
"license": "MIT",
"author": {
"name": "Paul Deng",
"email": "dengpeng.cn@gmail.com"
},
"repository": {
"type": "git",
"url": "git+https://github.com/pauldeng/node-red-contrib-dapr-http.git"
},
"bugs": {
"url": "https://github.com/pauldeng/node-red-contrib-dapr-http/issues"
},
"homepage": "https://github.com/pauldeng/node-red-contrib-dapr-http#readme",
"publishConfig": {
"registry": "https://registry.npmjs.org/",
"access": "public"
},
"keywords": [
"node-red",
"node-red-contrib",
"dapr",
"daprd",
"pubsub",
"publish-subscribe",
"service-invocation",
"state-management",
"dynamic-configuration",
"output-bindings",
"secrets",
"cloudevents",
"sidecar",
"microservices"
],
"engines": {
"node": ">=22.9.0"
},
"dependencies": {
"@opentelemetry/api": "1.9.1",
"@opentelemetry/api-logs": "0.221.0",
"@opentelemetry/exporter-logs-otlp-http": "0.221.0",
"@opentelemetry/exporter-trace-otlp-http": "0.221.0",
"@opentelemetry/resources": "2.10.0",
"@opentelemetry/sdk-logs": "0.221.0",
"@opentelemetry/sdk-trace-node": "2.10.0"
},
"exports": {
"./logging": "./lib/logging-bridge.js"
},
"files": [
"lib/",
"nodes/",
"examples/",
"docs/",
"README.md",
"CHANGELOG.md",
"LICENSE"
],
"node-red": {
"version": ">=5.0.1 <6",
"nodes": {
"dapr-connection": "nodes/dapr-connection.js",
"dapr-publish": "nodes/dapr-publish.js",
"dapr-subscribe": "nodes/dapr-subscribe.js",
"dapr-ack": "nodes/dapr-ack.js",
"dapr-invoke": "nodes/dapr-invoke.js",
"dapr-service": "nodes/dapr-service.js",
"dapr-response": "nodes/dapr-response.js",
"dapr-state": "nodes/dapr-state.js",
"dapr-config-get": "nodes/dapr-config-get.js",
"dapr-config-subscribe": "nodes/dapr-config-subscribe.js",
"dapr-binding-out": "nodes/dapr-binding-out.js",
"dapr-secret-get": "nodes/dapr-secret-get.js"
}
},
"scripts": {
"test": "node --test \"test/unit/**/*.test.js\"",
"test:coverage": "node --test --experimental-test-coverage --test-coverage-include='lib/**' --test-coverage-lines=90 --test-coverage-functions=90 --test-coverage-branches=85 \"test/unit/**/*.test.js\"",
"test:runtime": "node --test --test-concurrency=1 \"test/runtime/**/*.test.js\"",
"test:runtime:parallel": "node --test \"test/runtime/**/*.test.js\"",
"pretest:integration": "node test/helpers/pull-images.js",
"test:integration": "npm run test:integration:nats && npm run test:integration:dapr && npm run test:integration:redis && node --test --test-concurrency=1 test/integration/telemetry.test.js test/integration/memorydb-pubsub.test.js",
"test:integration:nats": "node --test --test-concurrency=1 \"test/integration/nats-*.test.js\"",
"test:integration:dapr": "node --test --test-concurrency=1 test/integration/acl.test.js test/integration/invoke.test.js test/integration/invoke-matrix.test.js test/integration/shutdown.test.js test/integration/binding-out.test.js test/integration/secret-get.test.js test/integration/metadata.test.js",
"test:integration:redis": "node --test --test-concurrency=1 test/integration/pubsub.test.js test/integration/retry.test.js test/integration/dead-letter.test.js test/integration/token.test.js test/integration/state.test.js test/integration/configuration.test.js",
"test:integration:memorydb": "node --test test/integration/memorydb-pubsub.test.js",
"test:e2e": "playwright test",
"validate": "npx --yes node-red-dev@latest validate",
"lint": "eslint . && html-validate \"nodes/*.html\"",
"lint:fix": "eslint . --fix",
"format": "prettier --write .",
"format:check": "prettier --check .",
"lint:html": "html-validate \"nodes/*.html\""
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@nats-io/jetstream": "3.4.0",
"@nats-io/transport-node": "3.4.0",
"@playwright/test": "^1.62.1",
"eslint": "^10.8.1",
"globals": "^17.11.0",
"html-validate": "^11.6.2",
"node-red": "5.0.4",
"prettier": "^3.9.6"
}
}