forked from lukejpreston/xunit-viewer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
107 lines (107 loc) · 2.85 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
{
"name": "xunit-viewer",
"version": "7.0.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",
"bin": {
"xunit-viewer": "bin/xunit-viewer"
},
"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": "CI=true npm test",
"test:document": "./bin/xunit-viewer -r junit.xml -o gh-pages/xunit-viewer-results.html",
"test:document:serve": "npm run test:document -- -s",
"demo": "./bin/xunit-viewer -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": {
"chalk": "^4.1.0",
"chokidar": "^3.4.2",
"console-clear": "^1.1.1",
"debounce": "^1.2.0",
"get-port": "^5.1.1",
"handlebars": "^4.7.6",
"ip": "^1.1.5",
"koa": "^2.13.0",
"lzutf8": "^0.5.6",
"merge": "^1.2.1",
"socket.io": "^2.3.0",
"xml2js": "^0.4.23",
"yargs": "^15.4.1"
},
"devDependencies": {
"@fortawesome/fontawesome-free": "^5.14.0",
"bulma": "^0.9.0",
"codemirror": "^5.56.0",
"eslint": "^7.7.0",
"eslint-config-standard": "^14.1.1",
"eslint-config-standard-react": "^9.2.0",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-react": "^7.20.6",
"eslint-plugin-standard": "^4.0.1",
"fuzzy": "^0.1.3",
"gh-pages": "^2.2.0",
"jest-junit": "^10.0.0",
"react": "^16.13.1",
"react-codemirror2": "^7.2.1",
"react-dom": "^16.13.1",
"react-scripts": "^3.4.3",
"react-test-renderer": "^16.13.1"
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
],
"eslintIgnore": [
"cli/static/**/*"
],
"eslintConfig": {
"extends": [
"standard",
"standard-react"
],
"env": {
"browser": true,
"jest": true,
"jasmine": true
},
"rules": {
"react/prop-types": 0,
"react/jsx-closing-tag-location": 0,
"react/jsx-closing-bracket-location": 0
}
}
}