-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 loc) · 1.4 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
{
"name": "eslint-formatter-html-extended",
"version": "1.0.2",
"description": "🌹 Beautiful ESLint HTML formatter extended from ESLint's official HTML formatter by JulianLaval combined with Stylish by Sindre Sorhus",
"main": "src/formatter.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"lint": "./node_modules/.bin/eslint --ext .js ./src --fix",
"lint:test": "./node_modules/.bin/eslint ./lint-file -f ./src/formatter.js -o eslint-report.html"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mazipan/eslint-formatter-html-extended.git"
},
"files": [
"src"
],
"keywords": [
"eslint-formatter",
"eslint-html-formatter",
"eslint-reporter",
"eslint-html-reporter",
"eslintformatter",
"eslintreporter"
],
"author": "Irfan Maulana <github.com/mazipan>",
"license": "MIT",
"bugs": {
"url": "https://github.com/mazipan/eslint-formatter-html-extended/issues"
},
"homepage": "https://github.com/mazipan/eslint-formatter-html-extended#readme",
"dependencies": {
"chalk": "^2.4.2",
"lodash": "^4.17.11",
"strip-ansi": "^5.0.0",
"text-table": "^0.2.0"
},
"devDependencies": {
"eslint": "^5.13.0",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-loader": "^2.1.2",
"eslint-plugin-import": "^2.16.0",
"eslint-plugin-node": "^8.0.1",
"eslint-plugin-promise": "^4.0.1"
}
}