forked from tasshi-me/jest-md-dashboard
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
70 lines (70 loc) · 1.94 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
{
"name": "vitest-markdown-reporter",
"version": "0.1.2",
"description": "Generating a pretty Markdown report for Vitest",
"repository": {
"type": "git",
"url": "git+https://github.com/pecirep/vitest-markdown-reporter.git"
},
"bugs": {
"url": "https://github.com/pecirep/vitest-markdown-reporter/issues"
},
"homepage": "https://github.com/pecirep/vitest-markdown-reporter#readme",
"author": "Tin Pecirep <[email protected]>",
"license": "MIT",
"keywords": [
"vitest",
"reporter",
"markdown"
],
"type": "module",
"exports": "./lib/index.js",
"types": "./lib/index.d.ts",
"engines": {
"node": ">=v16.18.1"
},
"files": [
"lib",
"package.json",
"README.md",
"CHANGELOG.md",
"LICENSE"
],
"scripts": {
"prebuild": "run-s clean",
"build": "tsup src/index.ts --format esm --dts --out-dir lib",
"start": "run-s 'build -w'",
"test": "vitest run --coverage",
"test:generate-report": "vitest run --config=./vitest.config.report.mts",
"lint": "run-s lint:*",
"lint:eslint": "eslint --ext .js,.mjs,.cjs,.ts,.mts,.cts ./",
"lint:md": "prettier --check ./**/*.md",
"fix": "run-s fix:*",
"fix:eslint": "run-s 'lint:eslint --fix'",
"fix:md": "run-s 'lint:md --write'",
"clean": "rimraf lib"
},
"dependencies": {
"@actions/core": "^1.10.0",
"@vitest/runner": "^0.29.2",
"isomorphic-git": "^1.21.0"
},
"devDependencies": {
"@cybozu/eslint-config": "^18.0.0",
"@tsconfig/recommended": "^1.0.1",
"@typescript-eslint/parser": "^5.48.1",
"@vitest/coverage-istanbul": "^0.29.2",
"@vitest/ui": "^0.29.2",
"eslint": "^8.31.0",
"eslint-import-resolver-typescript": "^3.5.3",
"eslint-plugin-import": "^2.27.4",
"npm-run-all": "^4.1.5",
"prettier": "^2.8.2",
"release-please": "^15.1.1",
"rimraf": "^3.0.2",
"tsup": "^6.6.3",
"typescript": "^4.9.4",
"vite": "^4.1.4",
"vitest": "^0.29.2"
}
}