-
Notifications
You must be signed in to change notification settings - Fork 43
/
Copy pathpackage.json
122 lines (122 loc) · 3.37 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
118
119
120
121
122
{
"name": "xunit-viewer",
"type": "module",
"version": "10.6.1",
"description": "parses xunit xml into xunit viewer",
"repository": {
"url": "https://github.com/lukejpreston/xunit-viewer.git",
"type": "git"
},
"bugs": {
"url": "https://github.com/lukejpreston/xunit-viewer.git"
},
"homepage": "./",
"keywords": [
"test",
"junit",
"xunit",
"viewer",
"parser"
],
"author": "lukejpreston <[email protected]>",
"license": "MIT",
"main": "xunit-viewer.js",
"bin": {
"xunit-viewer": "bin/xunit-viewer.js"
},
"directories": {
"bin": "bin",
"cli": "src/cli"
},
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test --reporters=default --reporters=jest-junit",
"update": "node src/cli/update-expected.js",
"eject": "react-scripts eject",
"lint": "eslint xunit-viewer.js src --ignore-pattern src/cli/static/js/**/*",
"test:ci": "echo blah",
"test:document": "./bin/xunit-viewer.js -r junit.xml -o gh-pages/xunit-viewer-results.html",
"test:document:serve": "npm run test:document -- -s",
"demo": "./bin/xunit-viewer.js -r data -o gh-pages/index.html",
"release:demo": "npm run test:document && npm run demo && gh-pages -d gh-pages",
"deploy": "rm -rf src/cli/static && cp -r build/static src/cli/static",
"build:cli": "npm run build && npm run deploy",
"release": "./release.sh"
},
"dependencies": {
"@uiw/react-codemirror": "^4.21.3",
"chalk": "^5.2.0",
"chokidar": "^3.5.3",
"console-clear": "^1.1.1",
"debounce": "^1.2.1",
"detect-file-encoding-and-language": "^2.4.0",
"express": "^4.18.2",
"get-port": "^7.0.0",
"handlebars": "^4.7.7",
"ip": "^1.1.8",
"lzutf8": "^0.6.3",
"merge": "^2.1.1",
"socket.io": "^4.6.2",
"xml2js": "^0.6.0",
"yargs": "^17.7.2"
},
"devDependencies": {
"@babel/plugin-proposal-private-property-in-object": "^7.21.11",
"@fortawesome/fontawesome-free": "^6.4.0",
"bulma": "^0.9.4",
"eslint": "^8.43.0",
"eslint-config-standard": "^17.1.0",
"eslint-config-standard-react": "^13.0.0",
"eslint-import-resolver-node": "^0.3.7",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-standard": "^5.0.0",
"fuzzy": "^0.1.3",
"gh-pages": "^5.0.0",
"jest-junit": "^16.0.0",
"linkify-html": "^4.1.1",
"linkifyjs": "^4.1.1",
"localforage": "^1.10.0",
"match-sorter": "^6.3.1",
"query-string": "^8.1.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-linkify": "^1.0.0-alpha",
"react-render-if-visible": "^2.1.1",
"react-router-dom": "^6.13.0",
"react-scripts": "^5.0.1",
"react-test-renderer": "^18.2.0",
"sort-by": "^1.2.0",
"stream": "^0.0.2",
"timers": "^0.1.1"
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
],
"eslintIgnore": [
"cli/static/**/*"
],
"eslintConfig": {
"extends": [
"standard",
"standard-react",
"plugin:react/recommended"
],
"env": {
"browser": true,
"jest": true,
"jasmine": true
},
"rules": {
"react/prop-types": 0,
"react/jsx-closing-tag-location": 0,
"react/jsx-closing-bracket-location": 0
}
}
}