-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
85 lines (85 loc) · 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
{
"name": "karma-brief-reporter",
"description": "Reports test progress statistics and lists failures at the end of a Karma test run.",
"version": "0.2.2",
"homepage": "https://github.com/prantlf/karma-brief-reporter",
"author": {
"name": "Ferdinand Prantl",
"email": "prantlf@gmail.com",
"url": "http://prantl.tk"
},
"repository": {
"type": "git",
"url": "https://github.com/prantlf/karma-brief-reporter.git"
},
"bugs": {
"url": "https://github.com/prantlf/karma-brief-reporter/issues"
},
"license": "MIT",
"licenses": [
{
"type": "MIT",
"url": "https://github.com/prantlf/karma-brief-reporter/blob/master/LICENSE"
}
],
"engines": {
"node": ">= 8"
},
"main": "index.js",
"files": [
"index.js",
"lib"
],
"scripts": {
"lint": "standard --verbose",
"fix": "standard --verbose --fix",
"check": "c8 mocha --report lcov -- test/*",
"test": "npm run lint && npm run check"
},
"release": {
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
"@semantic-release/changelog",
"@semantic-release/npm",
[
"@semantic-release/github",
{
"failComment": false
}
],
"@semantic-release/git"
]
},
"dependencies": {
"cli-color": "2.0.2"
},
"devDependencies": {
"@semantic-release/changelog": "6.0.1",
"@semantic-release/git": "10.0.1",
"c8": "^7.11.2",
"chai": "4.3.6",
"coveralls": "3.1.1",
"eslint-config-standard": "17.0.0",
"eslint-plugin-import": "2.26.0",
"eslint-plugin-node": "11.1.0",
"eslint-plugin-promise": "6.0.0",
"eslint-plugin-standard": "4.1.0",
"mocha": "10.0.0",
"mocha-lcov-reporter": "1.3.0",
"rewire": "6.0.0",
"sinon": "13.0.2",
"sinon-chai": "3.7.0",
"standard": "17.0.0"
},
"peerDependencies": {
"karma": ">=4.3"
},
"keywords": [
"karma-plugin",
"karma-reporter",
"progress",
"brief",
"test"
]
}