Skip to content

Instantly share code, notes, and snippets.

@kix
Created September 7, 2012 06:05
Show Gist options
  • Save kix/3663665 to your computer and use it in GitHub Desktop.
Save kix/3663665 to your computer and use it in GitHub Desktop.
Typical package.json
{
"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"
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment