-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.31 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.31 KB
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
{
"name": "mochawesome-json-to-md",
"version": "2.2.0",
"description": "A repository containing a script to convert JSON reports generated by MochAwesome to Mardown",
"main": "index.js",
"bin": {
"mochawesome-json-to-md": "./index.js"
},
"scripts": {
"eslint": "eslint --ext .js ./",
"test": "mocha \"tests/**/*.test.js\" --reporter mochawesome --reporter-options reportDir=./mochawesome-report,reportFilename=report,quiet=true",
"test:reports": "npm test",
"format": "prettier --write \"**/*.{js,md,json,cjs}\"",
"lint:md": "markdownlint \"**/*.md\""
},
"type": "module",
"repository": {
"type": "git",
"url": "git+https://github.com/403-html/mochawesome-json-to-md.git"
},
"keywords": [
"mochawesome",
"json",
"md",
"markdown",
"reporting"
],
"author": "Tymoteusz Stępień",
"license": "MIT",
"bugs": {
"url": "https://github.com/htd-tstepien/mochawesome-json-to-md/issues"
},
"homepage": "https://github.com/htd-tstepien/mochawesome-json-to-md#readme",
"dependencies": {
"commander": "^11.1.0",
"mustache": "^4.2.0",
"winston": "^3.11.0"
},
"devDependencies": {
"eslint": "^8.57.1",
"lefthook": "^1.5.2",
"markdownlint-cli": "^0.47.0",
"mocha": "^11.7.5",
"mochawesome": "^7.1.4",
"prettier": "^3.7.4"
}
}