-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
55 lines (55 loc) · 1.79 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
{
"name": "eslint-formatter-summary-chart",
"description": "A ESLint formatter to summarize errors by rules and files using bar charts",
"version": "0.3.0",
"authors": [
"David J. Bradshaw",
"koba04"
],
"bundleDependencies": [],
"dependencies": {
"bar-horizontal": "^0.5.1"
},
"deprecated": false,
"files": [
"lib"
],
"keywords": [
"eslint", "formatter"
],
"license": "MIT",
"main": "lib/index.js",
"scripts": {
"eslint": "eslint lib/*.js",
"test": "eslint lib/*.js --format ./lib/index.js",
"prepublishOnly": "npm run test",
"postpublish" : "PACKAGE_VERSION=$(cat package.json | grep \\\"version\\\" | head -1 | awk -F: '{ print $2 }' | sed 's/[\",]//g' | tr -d '[[:space:]]') && git tag v$PACKAGE_VERSION && git push --tags"
},
"devDependencies": {
"eslint": "^8.34.0",
"eslint-config-adjunct": "^4.11.2",
"eslint-config-auto": "^0.7.3",
"eslint-config-prettier": "^8.6.0",
"eslint-plugin-array-func": "^3.1.8",
"eslint-plugin-eslint-comments": "^3.2.0",
"eslint-plugin-html": "^7.1.0",
"eslint-plugin-json": "^3.1.0",
"eslint-plugin-markdown": "^3.0.0",
"eslint-plugin-mocha": "^10.1.0",
"eslint-plugin-mocha-cleanup": "^1.11.3",
"eslint-plugin-no-constructor-bind": "^2.0.4",
"eslint-plugin-no-secrets": "^0.8.9",
"eslint-plugin-no-unsanitized": "^4.0.2",
"eslint-plugin-no-use-extend-native": "^0.5.0",
"eslint-plugin-optimize-regex": "^1.2.1",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-scanjs-rules": "^0.2.1",
"eslint-plugin-security": "^1.7.1",
"eslint-plugin-simple-import-sort": "^10.0.0",
"eslint-plugin-sonarjs": "^0.18.0",
"eslint-plugin-switch-case": "^1.1.2",
"eslint-plugin-unicorn": "^45.0.2",
"mocha": "^10.2.0",
"prettier": "^2.8.4"
}
}