forked from ashaffer/gulp-inline
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
50 lines (50 loc) · 1.19 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
49
50
{
"name": "gulp-inline",
"version": "0.1.0",
"description": "Inline styles and scripts into an html file.",
"main": "index.js",
"scripts": {
"test": "istanbul test ./node_modules/mocha/bin/_mocha --report lcov -- -R spec",
"badge": "coverage-badge `coverage-percentage ./coverage/lcov.info --lcov` badge.png"
},
"repository": {
"type": "git",
"url": "https://github.com/ashaffer/gulp-inline.git"
},
"author": "ashaffer",
"license": "ISC",
"bugs": {
"url": "https://github.com/ashaffer/gulp-inline/issues"
},
"homepage": "https://github.com/ashaffer/gulp-inline",
"devDependencies": {
"mocha": "*",
"lcov-parse": "0.0.6",
"coverage-percentage": "*",
"coverage-badge": "git://github.com/ashaffer/node-coverage-badge#patch-1",
"istanbul": "~0.2.6",
"gulp": "^3.8.7",
"readable-stream": "^2.0.0"
},
"standard": {
"globals": [
"it",
"describe"
]
},
"keywords": [
"inline",
"gulp",
"gulpplugin",
"gulp inline",
"inline css",
"inline js",
"compress html"
],
"dependencies": {
"cheerio": "^0.19.0",
"event-stream": "~3.1.0",
"gulp-util": "^3.0.1",
"through2": "~0.4.1"
}
}