-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathpackage.json
39 lines (39 loc) · 967 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
{
"name": "lcov-parse",
"description": "Parse lcov results files and return JSON",
"version": "1.0.0",
"author": "Dav Glass <davglass@gmail.com>",
"contributors": [
"Alan Gutierrez <alan@prettyrobots.com>",
"Gerard Escalante <gerard@saygo.ca>",
"Daniel Howe <dhowe@swipeclock.com>"
],
"bin": {
"lcov-parse": "./bin/cli.js"
},
"bugs": {
"url": "http://github.com/davglass/lcov-parse/issues"
},
"main": "./lib/index",
"tags": [
"lcov",
"json",
"coverage",
"parser"
],
"devDependencies": {
"istanbul": "^0.2.10",
"jshint": "^2.5.1",
"vows": "*",
"yui-lint": "~0.1.1"
},
"scripts": {
"pretest": "jshint --config ./node_modules/yui-lint/jshint.json ./lib/",
"test": "istanbul cover --print both ./node_modules/vows/bin/vows -- --spec ./tests/*.js"
},
"license": "BSD-3-Clause",
"repository": {
"type": "git",
"url": "http://github.com/davglass/lcov-parse.git"
}
}