forked from mattlewis92/karma-coverage-istanbul-reporter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
103 lines (103 loc) · 2.52 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
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
{
"name": "karma-coverage-istanbul-reporter",
"version": "2.0.1",
"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": "commitlint -e",
"commit": "git-cz",
"prerelease": "npm test",
"release": "standard-version && git push --follow-tags origin master",
"postrelease": "npm publish",
"precommit": "pretty-quick --staged"
},
"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.3.1",
"minimatch": "^3.0.4"
},
"devDependencies": {
"@commitlint/cli": "^6.2.0",
"@commitlint/config-conventional": "^6.1.3",
"@commitlint/prompt": "^6.1.3",
"@types/chai": "^4.1.3",
"@types/mocha": "^5.2.0",
"chai": "^4.0.0",
"codecov-lite": "^0.1.3",
"commitizen": "^2.9.6",
"husky": "^0.14.3",
"istanbul-instrumenter-loader": "^3.0.1",
"karma": "^2.0.2",
"karma-mocha": "^1.3.0",
"karma-phantomjs-launcher": "^1.0.2",
"karma-sourcemap-loader": "^0.3.7",
"karma-webpack": "^3.0.0",
"mocha": "^5.1.1",
"nyc": "^11.8.0",
"prettier": "^1.12.1",
"pretty-quick": "^1.4.1",
"rimraf": "^2.5.4",
"standard-version": "^4.3.0",
"ts-loader": "^4.3.0",
"tslint": "^5.10.0",
"tslint-loader": "^3.6.0",
"typescript": "^2.8.3",
"webpack": "^4.8.3",
"xo": "^0.21.0"
},
"nyc": {
"reporter": [
"html",
"text-summary",
"lcovonly"
]
},
"xo": {
"space": true,
"envs": [
"node",
"mocha"
],
"rules": {
"space-before-function-paren": 0,
"object-curly-spacing": 0,
"operator-linebreak": 0,
"indent": 0
}
},
"config": {
"commitizen": {
"path": "@commitlint/prompt"
}
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
}
}