-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
36 lines (36 loc) · 933 Bytes
/
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
{
"name": "tslint-totals-formatter",
"description": "A TSLint formatter that displays short overview of lint issues' scale in your project",
"keywords": [
"typescript",
"tslint",
"formatter",
"lint"
],
"repository": {
"type": "git",
"url": "git+https://github.com/dprokop/tslint-totals-formatter.git"
},
"version": "1.1.1",
"main": "index.js",
"author": "Dominik Prokop <prokopd@gmail.com>",
"license": "MIT",
"scripts": {
"build": "tsc",
"lint:distribution": "tslint -s formatters -t issues-distribution test/*.ts",
"lint:totals": "tslint -s formatters -t totals test/*.ts",
"prepublish": "yarn build"
},
"devDependencies": {
"@types/chalk": "2.2.0",
"@types/lodash": "4.14.116",
"@types/table": "4.0.5",
"tslint": "5.11.0",
"typescript": "3.0.1"
},
"dependencies": {
"chalk": "2.4.1",
"lodash": "4.17.10",
"table": "4.0.3"
}
}