UNPKG

1.26 kBJSONView Raw
1{
2 "name": "lcov-filter",
3 "version": "0.1.1",
4 "description": "Removes records for files matching given regexp from LCOV file or stream",
5 "main": "index.js",
6 "bin": {
7 "lcov-filter": "bin/lcov-filter.js"
8 },
9 "scripts": {
10 "test": "node bin/lcov-filter.js test/lcov.info test",
11 "commit": "git-issues && commit-wizard",
12 "issues": "git-issues",
13 "size": "t=\"$(npm pack .)\"; wc -c \"${t}\"; tar tvf \"${t}\"; rm \"${t}\";"
14 },
15 "repository": {
16 "type": "git",
17 "url": "git@github.com:bahmutov/lcov-filter.git"
18 },
19 "keywords": [
20 "coverage",
21 "lcov",
22 "filter"
23 ],
24 "files": [
25 "bin",
26 "index.js"
27 ],
28 "author": "Gleb Bahmutov <gleb.bahmutov@gmail.com>",
29 "license": "MIT",
30 "bugs": {
31 "url": "https://github.com/bahmutov/lcov-filter/issues"
32 },
33 "homepage": "https://github.com/bahmutov/lcov-filter",
34 "dependencies": {
35 "simple-bin-help": "^1.2.0"
36 },
37 "devDependencies": {
38 "git-issues": "1.2.0",
39 "pre-git": "1.4.0"
40 },
41 "config": {
42 "pre-git": {
43 "commit-msg": "validate-commit-msg",
44 "pre-commit": [
45 "npm test"
46 ],
47 "pre-push": [
48 "npm run size"
49 ],
50 "post-commit": [
51 "npm version"
52 ],
53 "post-merge": []
54 }
55 }
56}