forked from jonkemp/gulp-inline-css
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1010 Bytes
/
package.json
File metadata and controls
46 lines (46 loc) · 1010 Bytes
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": "gulp-inline-css",
"version": "3.1.0",
"description": "Inline linked css in an html file. Useful for emails.",
"main": "index.js",
"directories": {
"test": "test"
},
"dependencies": {
"gulp-util": "^3.0.0",
"inline-css": "^2.2.1",
"through2": "^0.6.1"
},
"devDependencies": {
"coveralls": "^2.11.6",
"event-stream": "^3.3.2",
"gulp": "^3.9.0",
"gulp-eslint": "^2.0.0",
"gulp-mocha": "^2.0.0",
"mocha": "*",
"nyc": "^6.1.1",
"should": "*"
},
"engines": {
"node": ">=0.10.0"
},
"scripts": {
"test": "mocha",
"lint": "gulp lint",
"coverage": "nyc npm test && nyc report",
"coveralls": "nyc npm test && nyc report --reporter=text-lcov | coveralls"
},
"files": [
"index.js"
],
"repository": "jonkemp/gulp-inline-css",
"keywords": [
"gulpplugin",
"inline",
"css",
"html",
"email"
],
"author": "Jonathan Kemp <kempdogg@gmail.com> (http://jonkemp.com/)",
"license": "MIT"
}