-
Notifications
You must be signed in to change notification settings - Fork 29
/
Copy pathpackage.json
48 lines (48 loc) · 1.03 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-inline-css",
"version": "4.0.0",
"description": "Inline linked css in an html file. Useful for emails.",
"main": "index.js",
"directories": {
"test": "test"
},
"dependencies": {
"inline-css": "^3.0.0",
"plugin-error": "^1.0.1",
"through2": "^4.0.2"
},
"devDependencies": {
"babel-eslint": "^10.1.0",
"coveralls": "^3.1.0",
"event-stream": "^4.0.1",
"gulp": "^4.0.2",
"gulp-eslint": "^6.0.0",
"gulp-mocha": "^7.0.2",
"mocha": "^8.2.0",
"nyc": "^15.1.0",
"should": "*",
"vinyl": "^2.2.1"
},
"engines": {
"node": ">=0.10.0"
},
"scripts": {
"test": "mocha",
"lint": "gulp lint",
"coverage": "nyc npm test && nyc report",
"coveralls": "nyc npm test && nyc report --reporter=lcov"
},
"files": [
"index.js"
],
"repository": "jonkemp/gulp-inline-css",
"keywords": [
"gulpplugin",
"inline",
"css",
"html",
"email"
],
"author": "Jonathan Kemp <[email protected]> (http://jonkemp.com/)",
"license": "MIT"
}