-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.33 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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
{
"name" : "modest",
"version" : "2.1.1",
"description" : "Create HTML modules (building blocks) that look like new HTML tags. Use modules to form other modules. Easily pass parameters from multiple sources to modules and inner modules. Use as a drop-in templating language to any web framework.",
"keywords" : ["xhtml","html","semantic","template","templating","preview","modular","tags","modules","browser","web"],
"author" : {
"name" : "Adam Stallard",
"email" : "[email protected]",
"url" : "goalzen.org"
},
"directories" : {
"test" : "test"
},
"main" : "lib/modest.js",
"bin" : "bin/modest-bin.js",
"dependencies" : {
"async" : "*",
"jquery" : "*",
"jsdom" : "*",
"commander" : "*",
"lodash" : "*",
"contextify" : "*"
},
"devDependencies" : {
"grunt-contrib-jshint" : "*",
"grunt-vows-runner" : "*",
"chai" : "*"
},
"license" : {
"type" : "MIT",
"url" : "https://github.com/goalzen/modest/blob/master/LICENSE-MIT"
},
"engines" : {
"node" : ">=0.8"
},
"preferGlobal" : true,
"scripts" : {
"test" : "grunt"
},
"repository" : {
"type" : "git",
"url" : "https://github.com/goalzen/modest.git"
},
"bugs" : {
"url" : "https://github.com/goalzen/modest/issues"
},
"homepage" : "https://github.com/goalzen/modest/wiki/Documentation"
}