forked from plantain-00/type-coverage
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 1.08 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
{
"name": "type-coverage",
"description": "A CLI tool to check type coverage for typescript code",
"repository": "https://github.com/plantain-00/type-coverage.git",
"author": "york yao <[email protected]>",
"license": "MIT",
"devDependencies": {
"@types/glob": "7.1.3",
"@types/minimist": "1.2.1",
"@types/node": "14.14.19",
"@typescript-eslint/eslint-plugin": "4.11.1",
"@typescript-eslint/parser": "4.11.1",
"clean-release": "2.15.2",
"clean-scripts": "1.20.1",
"eslint": "7.16.0",
"eslint-config-prettier": "7.1.0",
"eslint-plugin-plantain": "1.1.0",
"markdownlint-cli": "0.26.0",
"no-unused-export": "1.14.0",
"rimraf": "3.0.2",
"ts-node": "9.1.1",
"tsconfig-plantain": "0.0.1",
"typescript": "4.1.3",
"vscode": "1.1.37"
},
"scripts": {
"build": "clean-scripts build",
"lint": "clean-scripts lint",
"test": "clean-scripts test",
"release": "clean-release",
"fix": "clean-scripts fix"
},
"workspaces": [
"packages/*"
],
"private": true,
"typeCoverage": {
"atLeast": 98.91
}
}