forked from ehynds/grunt-image-embed
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
40 lines (40 loc) · 965 Bytes
/
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
{
"name" : "grunt-image-embed",
"description" : "Grunt task for embedding images as base64 data URIs inside your stylesheets.",
"version" : "0.3.1",
"homepage" : "",
"author" : {
"name" : "Eric Hynds",
"email" : "ehynds@gmail.com",
"url" : "http://erichynds.com"
},
"repository" : {
"type" : "git",
"url" : "git://github.com/ehynds/grunt-image-embed.git"
},
"bugs" : {
"url" : "https://github.com/ehynds/grunt-image-embed/issues"
},
"main" : "grunt.js",
"bin" : "bin/grunt-image-embed",
"engines" : {
"node" : ">= 0.8.0"
},
"scripts" : {
"test" : "grunt test"
},
"dependencies" : {
"request" : "~2.11",
"buffers" : "~0.1.1",
"mime" : "1.2.x"
},
"devDependencies": {
"grunt": "0.4.x",
"grunt-contrib-watch": "0.2.x",
"grunt-contrib-jshint": "0.1.x",
"grunt-contrib-nodeunit": "0.1.x"
},
"keywords" : [
"gruntplugin", "base64", "data URI", "css", "image"
]
}