generated from tasshi-me/ts-node-template
-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
68 lines (68 loc) · 1.98 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
{
"name": "jest-md-dashboard",
"version": "0.8.0",
"description": "Generating a pretty Markdown dashboard for Jest",
"repository": {
"type": "git",
"url": "git+https://github.com/tasshi-me/jest-md-dashboard.git"
},
"bugs": {
"url": "https://github.com/tasshi-me/jest-md-dashboard/issues"
},
"homepage": "https://github.com/tasshi-me/jest-md-dashboard#readme",
"author": "Masaharu TASHIRO <[email protected]>",
"license": "MIT",
"keywords": [
"jest",
"reporter",
"markdown"
],
"type": "module",
"exports": "./lib/index.js",
"engines": {
"node": ">=18.20.5"
},
"packageManager": "[email protected]",
"scripts": {
"preinstall": "npx only-allow pnpm",
"prebuild": "run-s clean",
"build": "tsc --build tsconfig.json --force",
"start": "run-s 'build -w'",
"test": "jest",
"test:generate-dashboard": "jest --config=./jest.config.dashboard.js",
"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": {
"isomorphic-git": "^1.27.1"
},
"devDependencies": {
"@babel/core": "^7.26.0",
"@babel/preset-env": "^7.26.0",
"@babel/preset-typescript": "^7.26.0",
"@cybozu/eslint-config": "^22.0.2",
"@jest/globals": "^29.7.0",
"@jest/reporters": "^29.7.0",
"@jest/test-result": "^29.7.0",
"@jest/types": "^29.6.3",
"@tsconfig/recommended": "^1.0.8",
"@types/jest": "^29.5.14",
"@typescript-eslint/parser": "^8.14.0",
"babel-jest": "^29.7.0",
"eslint": "^8.57.1",
"eslint-import-resolver-typescript": "^3.6.3",
"eslint-plugin-import": "^2.31.0",
"jest": "^29.7.0",
"jest-cli": "^29.7.0",
"npm-run-all": "^4.1.5",
"prettier": "^3.3.3",
"release-please": "^16.15.0",
"rimraf": "^5.0.10",
"typescript": "^5.6.3"
}
}