-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
117 lines (117 loc) · 2.76 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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
{
"name": "@takeshape/typescript-jest-junit-reporter",
"version": "1.0.2",
"description": "Produce Jest JUnit-style XML output from TypeScript compiler messages.",
"keywords": [
"typescript",
"xunit",
"junit",
"xml"
],
"homepage": "https://github.com/takeshape/typescript-jest-junit-reporter#readme",
"bugs": {
"url": "https://github.com/takeshape/typescript-jest-junit-reporter/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/takeshape/typescript-jest-junit-reporter.git"
},
"license": "MIT",
"author": "Michael Shick <[email protected]>",
"main": "./src/main.mjs",
"bin": {
"typescript-jest-junit-reporter": "bin/main.js"
},
"scripts": {
"build": "del-cli dist && esbuild src/main.mjs --bundle --platform=node --target=es2022 --main-fields=module,main --banner:js='#!/usr/bin/env node' --outdir=bin",
"format": "eslint src --fix --ext .mjs,.js,.json",
"prepare": "npm run build",
"release": "np --no-publish",
"test": "npm run format && SCRIPT_PATH=../bin/main.js ./tests/test.sh"
},
"prettier": {
"bracketSpacing": true,
"jsxSingleQuote": true,
"printWidth": 100,
"semi": false,
"singleQuote": true,
"tabWidth": 2,
"trailingComma": "all"
},
"eslintConfig": {
"env": {
"node": true
},
"parserOptions": {
"ecmaVersion": 12,
"sourceType": "module"
},
"extends": [
"eslint:recommended"
],
"rules": {
"capitalized-comments": "off",
"no-console": "error",
"no-unreachable": "error"
},
"overrides": [
{
"files": [
"**/*.js"
],
"extends": [
"plugin:prettier/recommended"
]
},
{
"files": [
"*.json"
],
"plugins": [
"json-format"
]
},
{
"files": [
"*.mdx",
"*.md"
],
"settings": {
"mdx/code-blocks": false,
"mdx/language-mapper": {}
},
"extends": "plugin:mdx/recommended",
"rules": {
"indent": "off"
}
}
]
},
"eslintIgnore": [
"dist",
"tsconfig.json",
"package-lock.json"
],
"optionalDependencies": {
"@types/node": "^20.12.10",
"del-cli": "^5.1.0",
"esbuild": "^0.20.2",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-json-format": "^2.0.1",
"eslint-plugin-mdx": "^3.1.5",
"eslint-plugin-prettier": "^5.1.3",
"find-up": "^7.0.0",
"np": "10.0.5",
"prettier": "^3.2.5",
"typescript": "^5.4.5",
"xmlbuilder": "15.1.1"
},
"engines": {
"node": "^18.0.0 || ^20.0.0"
},
"publishConfig": {
"access": "public"
}
}