-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
48 lines (48 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
48
{
"name": "gulp-image-data-uri",
"version": "1.2.3",
"description": "Converts images to inline data URIs",
"main": "index.js",
"scripts": {
"prepublish": "npm test && gulp compile",
"test": "gulp test"
},
"repository": {
"type": "git",
"url": "https://github.com/adam-lynch/gulp-image-data-uri.git"
},
"keywords": [
"gulpplugin",
"image",
"data-uri",
"data",
"URI",
"CSS",
"base64",
"picture",
"inline"
],
"author": "Adam Lynch <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/adam-lynch/gulp-image-data-uri/issues"
},
"homepage": "https://github.com/adam-lynch/gulp-image-data-uri",
"devDependencies": {
"gulp": "~3.9.0",
"gulp-coffee": "~2.3.1",
"gulp-load-plugins": "~1.0.0",
"gulp-mocha": "~2.1.3",
"chai": "~3.4.0",
"glob-to-vinyl": "~1.0.0",
"coffee-script": "~1.10.0",
"eol": "~0.2.0",
"handlebars": "~4.0.4",
"nunjucks": "~2.1.0"
},
"dependencies": {
"through2": "~2.0.0",
"gulp-util": "~3.0.7",
"datauri.template": "adam-lynch/datauri.template#fixed_for_gulp_data_image_uri"
}
}