-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
70 lines (70 loc) · 1.93 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": "istanbul-toolkit",
"private": true,
"packageManager": "[email protected]",
"description": "istanbul toolkit",
"type": "module",
"keywords": [
"istanbul",
"istanbul-toolkit",
"coverage",
"nyc"
],
"license": "MIT",
"homepage": "https://github.com/hemengke1997/istanbul-toolkit",
"repository": {
"type": "git",
"url": "git+https://github.com/hemengke1997/istanbul-toolkit.git"
},
"author": "Minko <https://github.com/hemengke1997>",
"scripts": {
"dev": "turbo dev --filter=\"./packages/*\"",
"build": "turbo build --filter=\"./packages/*\"",
"lint": "turbo lint --filter=\"./packages/*\"",
"lint:playground": "eslint ./playground --fix",
"prepare": "simple-git-hooks",
"commitlint": "commitlint -e",
"up": "taze -I -w",
"changeset": "changeset",
"version": "changeset version && changeset tag",
"report": "nyc report --excludeAfterRemap=false"
},
"devDependencies": {
"@changesets/changelog-github": "^0.5.0",
"@changesets/cli": "^2.27.8",
"@commitlint/cli": "^19.5.0",
"@minko-fe/commitlint-config": "^2.1.2",
"@minko-fe/eslint-config": "^4.0.2",
"@minko-fe/prettier-config": "^2.2.3",
"@minko-fe/tsconfig": "latest",
"eslint": "^9.10.0",
"npm-run-all2": "^6.2.3",
"nyc": "^17.1.0",
"prettier-plugin-astro": "^0.14.1",
"prettier-plugin-tailwindcss": "^0.6.6",
"simple-git-hooks": "^2.11.1",
"taze": "^0.16.9",
"tsup": "^8.3.0",
"turbo": "^2.1.2",
"typescript": "^5.6.2"
},
"simple-git-hooks": {
"commit-msg": "npm run commitlint",
"pre-commit": "npm run lint"
},
"workspaces": [
"packages/*"
],
"pnpm": {
"patchedDependencies": {
"vite-plugin-istanbul": "patches/vite-plugin-istanbul.patch",
"serialize-javascript": "patches/serialize-javascript.patch"
}
},
"prettier": "@minko-fe/prettier-config",
"commitlint": {
"extends": [
"@minko-fe"
]
}
}