-
Notifications
You must be signed in to change notification settings - Fork 76
/
package.json
77 lines (77 loc) · 2.03 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
{
"name": "jest-html-reporter",
"version": "3.10.2",
"description": "Jest test results processor for generating a summary in HTML",
"main": "dist/index.js",
"unpkg": "dist/index.js",
"files": [
"dist",
"style"
],
"scripts": {
"tsc": "tsc",
"lint": "tslint --project . -e '**/*.js' -e '**/*.json'",
"jest": "jest --no-cache --config=jest.config.json",
"test": "npm run lint && npm run bundle && npm run jest",
"bundle": "rollup -c",
"build": "npm run test && npm run bundle"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Hargne/jest-html-reporter.git"
},
"keywords": [
"jest",
"html",
"reporter",
"report",
"plugin"
],
"author": "Johan Hargne",
"license": "MIT",
"bugs": {
"url": "https://github.com/Hargne/jest-html-reporter/issues"
},
"homepage": "https://github.com/Hargne/jest-html-reporter#readme",
"engines": {
"node": ">=4.8.3"
},
"dependencies": {
"mkdirp": "^1.0.3",
"dateformat": "3.0.2",
"strip-ansi": "6.0.1",
"xmlbuilder": "15.0.0",
"@jest/test-result": "^29.0.2",
"@jest/types": "^29.0.2"
},
"peerDependencies": {
"jest": "19.x - 29.x",
"typescript": "^3.7.x || ^4.3.x || ^5.x"
},
"devDependencies": {
"@babel/core": "^7.9.0",
"@babel/preset-env": "^7.8.7",
"@babel/preset-typescript": "^7.8.3",
"@jest/console": "^29.0.2",
"@rollup/plugin-babel": "^5.3.0",
"@rollup/plugin-node-resolve": "^7.1.1",
"@types/dateformat": "^3.0.X",
"@types/jest": "^29.0.0",
"@types/mkdirp": "1.0.2",
"@types/node": "12.20.12",
"@types/sinon": "9.0.11",
"babel-jest": "^29.0.2",
"jest": "^29.0.2",
"rollup": "2.47.0",
"rollup-plugin-terser": "7.0.2",
"sinon": "^9.0.1",
"ts-jest": "^29.0.0",
"tslint": "^5.12.0",
"tslint-config-prettier": "^1.18.0",
"typescript": "^4.3.x"
},
"browserslist": [
"since 2017-06"
],
"packageManager": "yarn@1.22.19"
}