forked from mattacular/grunt-handlebars-compiler
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 loc) · 1.04 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
{
"name": "grunt-handlebars-compiler",
"description": "Grunt task to precompile Handlebars.js templates with same options as the CLI utility",
"version": "0.0.7",
"homepage": "https://github.com/mattacular/grunt-handlebars-compiler",
"author": {
"name": "Matt Stills",
"email": "mattacular@gmail.com"
},
"repository": {
"type": "git",
"url": "git://github.com/mattacular/grunt-handlebars-compiler.git"
},
"bugs": {
"url": "https://github.com/mattacular/grunt-handlebars-compiler/issues"
},
"licenses": [
{
"type": "MIT",
"url": "https://github.com/mattacular/grunt-handlebars-compiler/blob/master/LICENSE-MIT"
}
],
"main": "grunt.js",
"engines": {
"node": "*"
},
"dependencies": {
"handlebars": "~1.3.0"
},
"devDependencies": {
"grunt-contrib-jshint": "~0.2.0",
"grunt-contrib-nodeunit": "~0.1.2",
"grunt-contrib-clean": "~0.4.0",
"grunt-contrib-internal": "~0.4.3",
"grunt": "~0.4.0"
},
"peerDependencies": {
"grunt": "~0.4.0"
},
"keywords": [
"gruntplugin",
"grunt",
"templating",
"handlebars"
]
}