-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
30 lines (30 loc) · 908 Bytes
/
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
{
"name": "node-red-contrib-nunjucks-templating",
"version": "1.0.10",
"description": "Nunjucks is a full featured templating engine for javascript. It is heavily inspired by jinja2.",
"main": "main.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [
"nunjucks",
"templating",
"node-red"
],
"author": "Wesley Stam <[email protected]",
"bugs": {
"url": "https://github.com/wstam88/node-red-contrib-nunjucks-templating/issues",
"email": "[email protected]"
},
"homepage": "https://github.com/wstam88/node-red-contrib-nunjucks-templating",
"license": "ISC",
"node-red": {
"nodes": {
"nunjucks": "nodes/nunjucks.js",
"nunjucks_render": "nodes/nunjucks_render.js"
}
},
"dependencies": {
"nunjucks": "^3.2.3"
}
}