-
Notifications
You must be signed in to change notification settings - Fork 90
/
Copy pathpackage.json
168 lines (168 loc) · 5.04 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
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
{
"name": "mochawesome-report-generator",
"version": "6.2.0",
"description": "Generates gorgeous HTML reports from mochawesome reporter.",
"scripts": {
"lint": "eslint src test --ext js",
"stylelint": "stylelint src/**/*.css src/components/**/*.css",
"pretest": "npm run lint",
"test": "cross-env NODE_ENV=test nyc mocha \"test/spec/**/*.test.js\" --exit",
"tdd": "cross-env NODE_ENV=test nyc mocha --watch \"test/spec/**/*.test.js\"",
"test:single": "cross-env NODE_ENV=test nyc mocha ",
"test:functional": "cross-env NODE_ENV=test node ./test-functional/index.js",
"compile:main": "babel ./src/lib -d lib/",
"compile:cli": "babel ./src/bin -d bin/",
"compile": "npm run compile:main && npm run compile:cli",
"build": "rm -rf dist/assets && NODE_ENV=production npm run webpack",
"prepack": "npm run build && npm run compile",
"webpack": "npm run pack:external && npm run pack:inline",
"pack:external": "MARGE_ASSETS=external webpack",
"pack:inline": "MARGE_ASSETS=inline webpack",
"devserver": "webpack-dev-server --inline --watch --hot",
"cli": "node ./bin/cli test/sample-data/test.json --dev",
"dev": "npm run compile && npm run cli && npm run devserver",
"dev:cli": "nodemon --watch src/bin --watch src/lib --exec npm run compile"
},
"author": "Adam Gruber",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/adamgruber/mochawesome-report-generator"
},
"keywords": [
"mochawesome",
"mocha",
"reporter",
"json",
"react",
"report generator"
],
"main": "lib/main.js",
"bin": {
"marge": "./bin/cli.js"
},
"files": [
"bin/cli.js",
"bin/cli-main.js",
"bin/types.js",
"bin/logger.js",
"lib/main.js",
"lib/main-html.js",
"lib/options.js",
"dist"
],
"nyc": {
"sourceMap": false,
"instrument": false,
"reporter": [
"html",
"text",
"cobertura",
"lcov"
],
"exclude": [
"test/**/*",
"src/client/components/mobxDevtool.js",
"src/client/components/summary",
"src/client/components/status-bar",
"src/client/components/radio-button"
],
"check-coverage": true,
"statements": 95,
"branches": 90,
"functions": 95,
"lines": 95
},
"dependencies": {
"chalk": "^4.1.2",
"dateformat": "^4.5.1",
"escape-html": "^1.0.3",
"fs-extra": "^10.0.0",
"fsu": "^1.1.1",
"lodash.isfunction": "^3.0.9",
"opener": "^1.5.2",
"prop-types": "^15.7.2",
"tcomb": "^3.2.17",
"tcomb-validation": "^3.3.0",
"validator": "^13.6.0",
"yargs": "^17.2.1"
},
"devDependencies": {
"@babel/cli": "^7.1.0",
"@babel/core": "^7.4.0",
"@babel/plugin-proposal-class-properties": "^7.4.0",
"@babel/plugin-proposal-decorators": "^7.4.0",
"@babel/preset-env": "^7.4.2",
"@babel/preset-react": "^7.0.0",
"@babel/register": "^7.4.0",
"app-module-path": "^2.1.0",
"axios": "^0.18.0",
"babel-eslint": "^10.0.1",
"babel-loader": "^8.0.5",
"babel-plugin-istanbul": "^5.1.1",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-preset-minify": "^0.5.0",
"chai": "^4.1.2",
"chai-as-promised": "^7.1.1",
"chai-enzyme": "^1.0.0-beta.0",
"chartist": "^0.11.0",
"classnames": "^2.2.5",
"cross-env": "^5.1.3",
"css-loader": "^2.1.1",
"css-modules-require-hook": "^4.0.5",
"cssnano": "^4.1.10",
"date-fns": "^1.29.0",
"enzyme": "^3.9.0",
"enzyme-adapter-react-16": "^1.11.2",
"eslint": "^5.15.3",
"eslint-config-airbnb": "^17.1.0",
"eslint-config-prettier": "^4.1.0",
"eslint-loader": "^2.1.2",
"eslint-plugin-import": "^2.16.0",
"eslint-plugin-jsx-a11y": "^6.2.1",
"eslint-plugin-react": "^7.12.4",
"faker": "^4.1.0",
"file-loader": "^3.0.1",
"highlight.js": "^9.15.6",
"jsdom": "^14.0.0",
"jsdom-global": "^3.0.2",
"json-loader": "^0.5.7",
"lodash": "^4.16.4",
"material-design-icons": "^3.0.1",
"mini-css-extract-plugin": "^0.5.0",
"mobx": "^5.9.0",
"mobx-react": "^5.2.8",
"mobx-react-devtools": "^6.1.1",
"mocha": "^6.0.2",
"nodemon": "^1.18.10",
"normalize.css": "^8.0.0",
"nyc": "^13.3.0",
"postcss": "^7.0.14",
"postcss-extend-rule": "^2.0.0",
"postcss-import": "^12.0.0",
"postcss-loader": "^3.0.0",
"postcss-preset-env": "^6.6.0",
"postcss-reporter": "^6.0.1",
"postcss-url": "^8.0.0",
"prettier": "^1.16.4",
"pretty-ms": "^7.0.0",
"proxyquire": "^2.1.0",
"raf": "^3.4.0",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-test-renderer": "^16.8.5",
"sinon": "^7.3.0",
"string-replace-loader": "^2.1.1",
"style-loader": "^0.23.0",
"stylelint": "^9.10.1",
"stylelint-config-prettier": "^5.0.0",
"stylelint-config-standard": "^18.2.0",
"stylelint-order": "^2.1.0",
"stylelint-webpack-plugin": "^0.10.5",
"terser-webpack-plugin": "^4.2.3",
"url-loader": "^1.1.1",
"webpack": "^4.29.6",
"webpack-cli": "^3.3.0",
"webpack-dev-server": "^3.2.1"
}
}