This repository has been archived by the owner on Apr 2, 2024. It is now read-only.
forked from mattlewis92/karma-coverage-istanbul-reporter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
88 lines (88 loc) · 2.2 KB
/
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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
{
"name": "@pdffiller/karma-coverage-istanbul-reporter",
"version": "1.3.5",
"description": "A karma reporter that uses the latest istanbul 1.x APIs (with full sourcemap support) to report coverage.",
"main": "src/reporter.js",
"files": [
"src"
],
"scripts": {
"start": "npm run test:watch",
"lint": "xo",
"pretest": "npm run lint",
"test": "nyc mocha",
"test:watch": "mocha --watch",
"codecov": "cat coverage/lcov.info | codecov",
"commitmsg": "validate-commit-msg",
"commit": "git-cz",
"prerelease": "npm test",
"release": "standard-version && git push --follow-tags origin master",
"postrelease": "npm publish"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mattlewis92/karma-coverage-istanbul-reporter.git"
},
"keywords": [
"karma-plugin",
"karma-reporter",
"coverage",
"istanbul",
"istanbuljs"
],
"author": "Matt Lewis",
"license": "MIT",
"bugs": {
"url": "https://github.com/mattlewis92/karma-coverage-istanbul-reporter/issues"
},
"homepage": "https://github.com/mattlewis92/karma-coverage-istanbul-reporter#readme",
"dependencies": {
"istanbul-api": "^1.1.8",
"minimatch": "^3.0.4"
},
"devDependencies": {
"@types/chai": "^3.4.34",
"@types/mocha": "^2.2.33",
"chai": "^4.0.0",
"codecov-lite": "^0.1.3",
"commitizen": "^2.9.6",
"cz-conventional-changelog": "^2.0.0",
"husky": "^0.13.3",
"istanbul-instrumenter-loader": "^2.0.0",
"karma": "^1.7.0",
"karma-mocha": "^1.3.0",
"karma-phantomjs-launcher": "^1.0.2",
"karma-sourcemap-loader": "^0.3.7",
"karma-webpack": "^2.0.1",
"mocha": "^3.4.2",
"nyc": "^10.3.2",
"rimraf": "^2.5.4",
"standard-version": "^4.0.0",
"ts-loader": "^2.1.0",
"tslint": "^5.3.2",
"tslint-loader": "^3.3.0",
"typescript": "^2.3.3",
"validate-commit-msg": "^2.12.1",
"webpack": "^2.6.1",
"xo": "^0.18.2"
},
"nyc": {
"reporter": [
"html",
"text-summary",
"lcovonly"
]
},
"xo": {
"space": true,
"envs": [
"node",
"mocha"
]
},
"config": {
"commitizen": {
"path": "node_modules/cz-conventional-changelog"
}
}
}