-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
34 lines (34 loc) · 975 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
32
33
34
{
"name" : "validatr",
"description" : "A data validation language",
"keywords" : ["language", "compiler", "validation"],
"author" : "Christophe Eymard <[email protected]> (http://www.ravelsoft.com)",
"version" : "0.0.5",
"homepage" : "http://www.ravelsoft.com/",
"repository" : {
"type": "git",
"url": "git://github.com/ravelsoft/validatr"
},
"licenses" : [ {
"type" : "MIT",
"url" : "https://github.com/satyr/coco/raw/master/LICENSE"
}
],
"engines" : {"node": ">=0.4.0"},
"directories" : {"lib" : "./lib" },
"main" : "./lib/main",
"bin" : {
"validatr" : "./lib/command.js"
},
"dependencies" : {
"optimist": "0.2.3",
"jinjs": "latest"
},
"devDependencies" : {
"pegco": "latest",
"rbuild": "latest",
"coco": "0.6.x",
"async": "latest",
"vows": "latest"
}
}