-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
56 lines (56 loc) · 1.7 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
{
"name": "@liftr/tscov",
"version": "2.0.0",
"description": "Check the type coverage of any TypeScript project with this easy npm package",
"main": "lib/index.js",
"repository": "https://github.com/jeroenouw/liftr-tscov.git",
"author": "Jeroen Ouwehand @jeroenouw",
"license": "MIT",
"scripts": {
"start": "npm run build && npm run global",
"build": " rm -rf ./lib && tsc -p .",
"global": "npm i -g && tscov",
"link-upstream": "git remote add upstream https://github.com/jeroenouw/liftr-tscov",
"sync": "git fetch origin && git checkout master && git pull && git checkout <your-branch> && git merge master && git push",
"reset": "rm -rf ./node_modules ./package-lock.json ./lib && npm install",
"publish-package": "npm run build && npm publish"
},
"typeCoverage": {
"minCoverage": 90
},
"bin": {
"tscov": "bin/tscov"
},
"keywords": [
"cli",
"liftr",
"tscov",
"typescript",
"javascript",
"type",
"coverage",
"nodejs"
],
"dependencies": {
"commander": "^6.0.0",
"figlet": "^1.5.0",
"glob": "7.1.6",
"minimist": "1.2.5",
"prompts": "^2.3.2",
"tslib": "2.0.1"
},
"devDependencies": {
"@types/glob": "7.1.1",
"@types/jasmine": "3.5.10",
"@types/minimist": "1.2.0",
"@types/node": "14.6.0",
"jasmine": "3.5.0",
"no-unused-export": "1.10.2",
"standard": "14.3.3",
"ts-node": "^9.0.0",
"tslint": "6.1.3",
"tslint-config-standard": "9.0.0",
"tslint-sonarts": "1.9.0",
"typescript": "^4.0.2"
}
}