-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 990 Bytes
/
Copy pathpackage.json
File metadata and controls
46 lines (46 loc) · 990 Bytes
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
{
"name": "@docspring/node-red-docspring",
"version": "0.1.0",
"description": "Node-RED nodes for DocSpring — generate, combine, and sign PDFs from your templates.",
"keywords": [
"node-red",
"docspring",
"pdf",
"documents",
"esignature"
],
"license": "MIT",
"homepage": "https://docspring.com",
"author": {
"name": "DocSpring",
"email": "support@docspring.com"
},
"repository": {
"type": "git",
"url": "git+https://github.com/DocSpring/node-red_integration.git"
},
"engines": {
"node": ">=18"
},
"node-red": {
"version": ">=3.0.0",
"nodes": {
"docspring-config": "nodes/docspring-config.js",
"docspring": "nodes/docspring.js"
}
},
"scripts": {
"test": "mocha \"test/**/*_spec.js\""
},
"files": [
"nodes",
"lib",
"icons"
],
"devDependencies": {
"mocha": "^10.7.3",
"node-red": "^4.0.9",
"node-red-node-test-helper": "^0.3.4",
"should": "^13.2.3"
}
}