-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 754 Bytes
/
package.json
File metadata and controls
31 lines (31 loc) · 754 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
{
"name": "node-red-contrib-pdfmake",
"description": "a node to create pdf documents from a well defined json",
"version": "1.1.0",
"license": "MIT",
"author": "Oliver Charlet <[email protected]>",
"repository": {
"type": "git",
"url": "https://github.com/ollixx/node-red-contrib-pdfmake.git"
},
"keywords": [
"node-red",
"pdf",
"svg",
"pdfmake"
],
"node-red": {
"nodes": {
"pdfmake": "pdfmake/pdfmake.js"
}
},
"devDependencies": {
"mocha": "^7.0.1",
"node-red": "^1.0.3",
"node-red-node-test-helper": "^0.2.3"
},
"dependencies": {
"pdfmake": "^0.1.68"
},
"scripts": {}
}