-
Notifications
You must be signed in to change notification settings - Fork 14
/
package.json
82 lines (82 loc) · 2.01 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
{
"name": "junit-report-builder",
"version": "5.1.1",
"description": "Aimed at making it easier to build Jenkins compatible JUnit XML reports in plugins for testing frameworks",
"main": "./dist/index.js",
"module": "./dist/index.es.js",
"scripts": {
"prepublish": "npm run build",
"check": "prettier --check .",
"format": "prettier --write .",
"test": "jest",
"release": "release-it",
"build": "rollup --configPlugin @rollup/plugin-typescript -c rollup.config.ts",
"lint": "tslint -c tslint.json src/**/*.ts",
"prepare": "husky",
"doctest": "markdown-doctest"
},
"repository": {
"type": "git",
"url": "git://github.com/davidparsson/junit-report-builder.git"
},
"keywords": [
"junit",
"xunit",
"report",
"builder"
],
"author": {
"name": "David Pärsson",
"email": "[email protected]"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/davidparsson/junit-report-builder/issues"
},
"homepage": "https://github.com/davidparsson/junit-report-builder",
"engines": {
"node": ">=16"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^26.0.1",
"@rollup/plugin-node-resolve": "^15.2.3",
"@rollup/plugin-typescript": "^11.1.6",
"@types/jest": "^29.5.12",
"@types/lodash": "^4.17.0",
"@types/node": "^20.12.7",
"@types/rimraf": "^4.0.5",
"husky": "^9.1.4",
"jest": "^29.7.0",
"markdown-doctest": "^1.1.0",
"prettier": "^3.0.3",
"release-it": "^16.2.1",
"rimraf": "^2.7.1",
"rollup": "^4.19.1",
"ts-jest": "^29.1.2",
"ts-node": "^10.9.2",
"tslint": "^6.1.3",
"typescript": "^5.4.5"
},
"dependencies": {
"lodash": "^4.17.21",
"make-dir": "^3.1.0",
"xmlbuilder": "^15.1.1"
},
"release-it": {
"github": {
"release": false
},
"hooks": {
"before:init": [
"npm run build",
"npm test",
"npm run check",
"npm run doctest"
]
}
},
"files": [
"./dist/*"
],
"typings": "./dist/index.d.ts"
}