-
Notifications
You must be signed in to change notification settings - Fork 55
/
package.json
40 lines (40 loc) · 973 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.3",
"homepage" : "",
"main" : "grunt.js",
"bin" : "bin/grunt-image-embed",
"author" : {
"name" : "Eric Hynds",
"email" : "[email protected]",
"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"
},
"engines" : {
"node" : ">= 0.10.0"
},
"scripts" : {
"test" : "grunt test"
},
"dependencies" : {
"request" : "~2.51.0",
"buffers" : "~0.1.1",
"mime" : "1.2.x"
},
"devDependencies": {
"grunt": "~0.4.5",
"grunt-contrib-watch": "~0.6.1",
"grunt-contrib-jshint": "~0.10.0",
"grunt-contrib-nodeunit": "~0.4.1"
},
"keywords" : [
"gruntplugin", "base64", "data URI", "css", "image"
]
}