forked from alexcanessa/typescript-coverage-report
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
78 lines (78 loc) · 2.25 KB
/
package.json
File metadata and controls
78 lines (78 loc) · 2.25 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
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
78
{
"name": "typescript-coverage-report",
"version": "0.4.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": "git@github.com:alexcanessa/typescript-coverage-report.git",
"author": "Alex Canessa <canessa.alex@gmail.com>",
"license": "MIT",
"private": false,
"dependencies": {
"colors": "^1.4.0",
"commander": "^5.0.0",
"ncp": "^2.0.0",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"rimraf": "^3.0.2",
"semantic-ui-react": "^0.88.2",
"terminal-table": "^0.0.12",
"type-coverage-core": "^2.14.2",
"typescript": "^4.1.3"
},
"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",
"release": "gren release"
},
"devDependencies": {
"@babel/core": "^7.9.0",
"@babel/preset-env": "^7.9.0",
"@babel/preset-react": "^7.9.4",
"@babel/preset-typescript": "^7.9.0",
"@commitlint/cli": "^8.3.5",
"@commitlint/config-conventional": "^8.3.4",
"@testing-library/react": "^10.0.1",
"@types/jest": "^25.1.4",
"@types/ncp": "^2.0.3",
"@types/node": "^13.9.2",
"@types/react": "^16.9.23",
"@types/react-dom": "^16.9.5",
"@types/testing-library__react": "^9.1.3",
"@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",
"eslint-plugin-react": "^7.19.0",
"github-release-notes": "^0.17.1",
"husky": "^4.2.3",
"jest": "^25.1.0",
"lint-staged": "^10.0.8",
"prettier": "^2.0.2"
},
"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": 100
}
}