-
Notifications
You must be signed in to change notification settings - Fork 33
/
package.json
77 lines (77 loc) · 2.17 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
{
"name": "typescript-coverage-report",
"version": "1.1.0",
"description": "Node command tool to generate TypeScript coverage report.",
"main": "dist/lib/index.js",
"bin": {
"typescript-coverage-report": "dist/bin/typescript-coverage-report.js"
},
"repository": "[email protected]:alexcanessa/typescript-coverage-report.git",
"author": "Alex Canessa <[email protected]>",
"license": "MIT",
"private": false,
"dependencies": {
"chalk": "4.1.2",
"cli-table3": "^0.6.1",
"commander": "^5.0.0",
"ncp": "^2.0.0",
"rimraf": "^3.0.2",
"type-coverage-core": "^2.23.0"
},
"scripts": {
"build": "tsc",
"lint": "tsc --noEmit && eslint '*/**/*.{js,ts,tsx}' --quiet --fix",
"type-coverage": "node ./dist/bin/typescript-coverage-report",
"docs": "yarn type-coverage --outputDir docs",
"prepublish": "yarn lint && yarn build",
"test": "jest",
"release": "gren release"
},
"devDependencies": {
"@babel/core": "^7.9.0",
"@babel/preset-env": "^7.9.0",
"@babel/preset-typescript": "^7.9.0",
"@commitlint/cli": "^8.3.5",
"@commitlint/config-conventional": "^8.3.4",
"@testing-library/jest-dom": "^6.4.2",
"@testing-library/user-event": "^14.5.2",
"@types/jest": "^29.2.5",
"@types/ncp": "^2.0.3",
"@types/node": "^20.11.17",
"@typescript-eslint/eslint-plugin": "^2.25.0",
"@typescript-eslint/parser": "^2.25.0",
"babel-jest": "^25.1.0",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.10.1",
"eslint-plugin-jest": "^23.8.2",
"eslint-plugin-prettier": "^3.1.2",
"github-release-notes": "^0.17.1",
"husky": "^4.2.3",
"jest": "^29.3.1",
"jest-environment-jsdom": "^29.7.0",
"lint-staged": "^10.0.8",
"package-json-type": "^1.0.3",
"prettier": "^2.0.2",
"typescript": "5.0.4"
},
"peerDependencies": {
"typescript": "2 || 3 || 4 || 5"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS",
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,ts,tsx}": [
"eslint --fix"
],
"*.{js,ts,tsx,json,md,css}": [
"prettier --write"
]
},
"typeCoverage": {
"atLeast": 90
}
}