-
Notifications
You must be signed in to change notification settings - Fork 12
/
package.json
47 lines (47 loc) · 1.14 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
{
"name": "grunt-handlebars-compiler",
"description": "Grunt task to precompile Handlebars.js templates with same options as the CLI utility",
"version": "0.4.0",
"homepage": "https://github.com/mattacular/grunt-handlebars-compiler",
"author": {
"name": "Matt Stills",
"email": "[email protected]"
},
"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": "^4.7.6",
"uglify-js": ">=2.0.0"
},
"devDependencies": {
"grunt": "^1.3.0",
"grunt-contrib-clean": "~0.4.0",
"grunt-contrib-internal": "~0.4.3",
"grunt-contrib-jshint": "^2.1.0",
"grunt-contrib-nodeunit": "^2.1.0"
},
"peerDependencies": {
"grunt": ">=0.4.0"
},
"keywords": [
"gruntplugin",
"grunt",
"templating",
"handlebars"
]
}