-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
29 lines (29 loc) · 1.19 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
{
"name" : "jinjs",
"description" : "A templating language in the Jinja(python)/Twig(php) family for Javascript.\nIt's objective is to compile document templates into Javascript functions\nComes with a CLI tool to use it on static documents and not only for the web.\nIs also made in tandem with Pwilang, which can then be (optionally) used to make HaML-like templates.",
"keywords" : ["language", "compiler", "templating", "pwilang", "html", "xml", "jinjs"],
"author" : "Christophe Eymard <[email protected]> (http://www.ravelsoft.com)",
"version" : "0.3.6",
"homepage" : "http://github.com/ravelsoft/node-jinjs",
"repository" : {
"type": "hg",
"url": "https://github.com/ravelsoft/node-jinjs"
},
"licenses" : [ {
"type" : "MIT",
"url" : "https://github.com/satyr/coco/raw/master/LICENSE"
}
],
"engines" : {"node": ">= 0.4.0"},
"directories" : { "lib" : "./lib" },
"main" : "./lib/main",
"dependencies" : {
"optimist": "0.2.3"
},
"devDependencies" : {
"pegco": "0.0.1",
"coco": "0.6.x",
"vows": "latest",
"rbuild": "latest"
}
}