-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 971 Bytes
/
package.json
File metadata and controls
38 lines (38 loc) · 971 Bytes
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
{
"name": "jest-reporter-log-validator",
"version": "0.1.6",
"description": "Jest reporter to validate log messages produced by tests",
"main": "src/reporter.js",
"scripts": {
"test": "jest src/",
"test:watch": "jest src/ --watch",
"prepublishOnly": "npm run test",
"release": "standard-version"
},
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/victorandcode/jest-reporter-log-validator.git"
},
"keywords": [
"jest",
"unit-test",
"reporter",
"logging"
],
"author": "Victor Cordova",
"license": "MIT",
"bugs": {
"url": "https://github.com/victorandcode/jest-reporter-log-validator/issues"
},
"homepage": "https://github.com/victorandcode/jest-reporter-log-validator#readme",
"devDependencies": {
"jest": "^26.6.3",
"standard-version": "^9.3.0",
"strip-ansi": "^6.0.0"
},
"dependencies": {
"chalk": "^4.1.1",
"table": "^6.0.7",
"yup": "^0.32.9"
}
}