-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
41 lines (41 loc) · 888 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
41
{
"name": "gulp-lcov-to-html",
"version": "2.0.0",
"description": "Pure javascript implementation of LCOV's genhtml function for use in gulp",
"main": "lib/index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [
"gulp",
"lcov",
"genhtml",
"html",
"coverage",
"testing"
],
"files": [
"lib",
"templates",
"README.md"
],
"author": "Zachary Cava <technogeek00@gmail.com>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/technogeek00/gulp-lcov-to-html.git"
},
"devDependencies": {
"coffee-script": "^1.12.7",
"del": "^3.0.0",
"gulp": "^3.9.0",
"gulp-coffee": "^2.3.1"
},
"dependencies": {
"dateformat": "^2.0.0",
"gulp-util": "^3.0.7",
"lodash": "^4.17.4",
"node-sass": "^4.5.3",
"through2": "^2.0.0"
}
}