-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
40 lines (40 loc) · 1.33 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
{
"name": "jest-fixed-default-reporter",
"version": "2.0.1",
"description": "Tiny wrapper around jest DefaultReporter that prints success messages to stdout",
"main": "DefaultReporter.js",
"scripts": {
"inner-test1": "jest tests/inner/good.spec.js >tests/results/good_stdout.txt 2>tests/results/good_stderr.txt || true",
"inner-test2": "jest tests/inner/bad.spec.js >tests/results/bad_stdout.txt 2>tests/results/bad_stderr.txt || true",
"inner-test3": "jest tests/inner/mixed.spec.js >tests/results/mixed_stdout.txt 2>tests/results/mixed_stderr.txt || true",
"inner-test": "npm run inner-test1 && npm run inner-test2 && npm run inner-test3",
"test": "npm run inner-test && jest tests/check-results.spec.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/lukaw3d/jest-fixed-default-reporter.git"
},
"keywords": [
"jest",
"jest-reporter"
],
"author": "lukaw3d",
"license": "MIT",
"bugs": {
"url": "https://github.com/lukaw3d/jest-fixed-default-reporter/issues"
},
"homepage": "https://github.com/lukaw3d/jest-fixed-default-reporter#readme",
"dependencies": {
"@jest/reporters": "^26.6.2"
},
"devDependencies": {
"@types/node": "^15.3.0",
"jest": "^26.6.3"
},
"jest": {
"reporters": [
"./DefaultReporter.js",
"./SummaryReporter.js"
]
}
}