-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
51 lines (51 loc) · 1.2 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
49
50
51
{
"name": "render-cli",
"version": "0.3.2",
"description": "Render HTML from Jade, Handlebars, Swig and most other kinds of templates on the command line. Uses the consolidate.js template engine consolidation library for all heavy lifting.",
"main": "lib/index.js",
"bin": {
"render": "bin/render"
},
"scripts": {
"test": "make test"
},
"repository": {
"type": "git",
"url": "git://github.com/debrouwere/render"
},
"keywords": [
"templating",
"template",
"engine",
"view",
"consolidate"
],
"author": {
"name": "Stijn Debrouwere",
"email": "[email protected]",
"url": "http://debrouwere.org"
},
"license": "ISC",
"bugs": {
"url": "https://github.com/debrouwere/render/issues"
},
"homepage": "https://github.com/debrouwere/render",
"dependencies": {
"async": "1.x",
"underscore": "1.8.x",
"colors": "1.x",
"commander": "2.8.x",
"consolidate": "0.14.x",
"confert": "1.x",
"mkdirp": "0.5.x",
"simple-path-expressions": "^1.1.2",
"groupby-cli": "^0.2.1"
},
"devDependencies": {
"coffee-script": "1.9.x",
"mocha": "2.x",
"should": "7.x",
"jade": "1.11.x",
"swig": "1.4.x"
}
}