forked from terryweiss/grunt-template-module
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
57 lines (57 loc) · 1.25 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
52
53
54
55
56
57
{
"name": "grunt-template-module",
"description": "Precompile templates to a file with option to expose templates as a node/commonjs module.",
"version": "0.4.0",
"homepage": "https://github.com/terryweiss/grunt-template-module",
"contributors": [
{
"name": "Terry Weiss",
"url": "http://terryweiss.net"
},
{
"name": "Grunt Team",
"url": "http://gruntjs.com/"
}
],
"repository": {
"type": "git",
"url": "git://github.com/terryweiss/grunt-template-module.git"
},
"bugs": {
"url": "https://github.com/terryweiss/grunt-template-module/issues"
},
"licenses": [
{
"type": "MIT",
"url": "https://github.com/terryweiss/grunt-template-module/blob/master/LICENSE-MIT"
}
],
"engines": {
"node": ">=0.8.0"
},
"scripts": {
"test": "grunt test"
},
"keywords": [
"gruntplugin",
"grunt",
"compile template",
"jst",
"ejs",
"lodash",
"underscore",
"templates"
],
"dependencies": {
"ejs": "~1.0.0",
"lodash": "~2.4.1",
"underscore": "~1.6.0",
"node-beautify": "0.0.2"
},
"devDependencies": {
"grunt": "^0.4.5",
"grunt-beautify": "^0.1.1",
"grunt-contrib-jshint": "^0.10.0",
"grunt-contrib-nodeunit": "^0.4.0"
}
}