UNPKG

2.34 kBJSONView Raw
1{
2 "name": "karma-coverage-istanbul-reporter",
3 "version": "1.3.3",
4 "description": "A karma reporter that uses the latest istanbul 1.x APIs (with full sourcemap support) to report coverage.",
5 "main": "src/reporter.js",
6 "files": [
7 "src"
8 ],
9 "scripts": {
10 "start": "npm run test:watch",
11 "lint": "xo",
12 "pretest": "npm run lint",
13 "test": "nyc mocha",
14 "test:watch": "mocha --watch",
15 "codecov": "cat coverage/lcov.info | codecov",
16 "commitmsg": "commitlint -e",
17 "commit": "git-cz",
18 "prerelease": "npm test",
19 "release": "standard-version && git push --follow-tags origin master",
20 "postrelease": "npm publish"
21 },
22 "repository": {
23 "type": "git",
24 "url": "git+https://github.com/mattlewis92/karma-coverage-istanbul-reporter.git"
25 },
26 "keywords": [
27 "karma-plugin",
28 "karma-reporter",
29 "coverage",
30 "istanbul",
31 "istanbuljs"
32 ],
33 "author": "Matt Lewis",
34 "license": "MIT",
35 "bugs": {
36 "url": "https://github.com/mattlewis92/karma-coverage-istanbul-reporter/issues"
37 },
38 "homepage": "https://github.com/mattlewis92/karma-coverage-istanbul-reporter#readme",
39 "dependencies": {
40 "istanbul-api": "^1.1.14",
41 "minimatch": "^3.0.4"
42 },
43 "devDependencies": {
44 "@commitlint/cli": "^5.2.6",
45 "@commitlint/config-conventional": "^5.2.3",
46 "@commitlint/prompt": "^5.2.6",
47 "@types/chai": "^4.0.4",
48 "@types/mocha": "^2.2.33",
49 "chai": "^4.0.0",
50 "codecov-lite": "^0.1.3",
51 "commitizen": "^2.9.6",
52 "husky": "^0.14.3",
53 "istanbul-instrumenter-loader": "^3.0.0",
54 "karma": "^2.0.0",
55 "karma-mocha": "^1.3.0",
56 "karma-phantomjs-launcher": "^1.0.2",
57 "karma-sourcemap-loader": "^0.3.7",
58 "karma-webpack": "^2.0.1",
59 "mocha": "^4.0.1",
60 "nyc": "^11.2.1",
61 "rimraf": "^2.5.4",
62 "standard-version": "^4.0.0",
63 "ts-loader": "^3.2.0",
64 "tslint": "^5.3.2",
65 "tslint-loader": "^3.3.0",
66 "typescript": "^2.3.3",
67 "webpack": "^3.7.1",
68 "xo": "^0.18.2"
69 },
70 "nyc": {
71 "reporter": [
72 "html",
73 "text-summary",
74 "lcovonly"
75 ]
76 },
77 "xo": {
78 "space": true,
79 "envs": [
80 "node",
81 "mocha"
82 ]
83 },
84 "config": {
85 "commitizen": {
86 "path": "@commitlint/prompt"
87 }
88 },
89 "commitlint": {
90 "extends": [
91 "@commitlint/config-conventional"
92 ]
93 }
94}