/usr/lib/nodejs/lcov-parse/package.json is in node-lcov-parse 1.0.0+20170612git80d039574ed9-1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
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"
}
}
|