-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
31 lines (31 loc) · 1007 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
31
{
"name" : "pwilang",
"description" : "Compiler for an alternative syntax to HTML. Best used with JinJS for template processing or just to write documents.",
"keywords" : ["language", "compiler", "pwilang", "html", "xml", "jinjs"],
"author" : "Christophe Eymard <[email protected]> (http://www.ravelsoft.com)",
"version" : "0.3.3",
"homepage" : "http://www.ravelsoft.com/",
"repository" : {
"type": "hg",
"url": "https://pwilang.googlecode.com/hg/"
},
"licenses" : [ {
"type" : "MIT",
"url" : "https://github.com/satyr/coco/raw/master/LICENSE"
}
],
"engines" : {"node": ">=0.4.0"},
"directories" : {"lib" : "./lib" },
"main" : "./lib/grammar",
"bin" : {
"pwilang" : "./lib/command.js"
},
"dependencies" : {
"optimist": "0.2.3"
},
"devDependencies" : {
"pegjs": ">=0.6.0",
"inotify": "latest",
"coco": "0.6.1"
}
}