-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
86 lines (86 loc) · 1.93 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
{
"name": "healthier",
"description": "An opinionated code linter – a friendly companion to prettier",
"version": "7.0.0",
"license": "MIT",
"author": {
"name": "Karolis Narkevicius",
"url": "http://twitter.com/KidkArolis"
},
"bin": {
"healthier": "./bin/cmd.js"
},
"main": "index.js",
"scripts": {
"test": "./bin/cmd.js && prettier --check '**/*.{js,json}' && tape test/*.js",
"format": "prettier --write '**/*.{js,json}'"
},
"standard": {
"ignore": "tmp/**"
},
"dependencies": {
"eslint": "^8.52.0",
"eslint-config-prettier": "^9.0.0",
"eslint-config-standard": "^17.1.0",
"eslint-config-standard-jsx": "^11.0.0",
"eslint-config-standard-react": "^13.0.0",
"eslint-plugin-import": "^2.29.0",
"eslint-plugin-n": "^16.2.0",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^4.6.0",
"find-root": "^1.1.0",
"minimist": "^1.2.8",
"resolve": "^1.22.8",
"standard-engine": "^15.1.0"
},
"devDependencies": {
"merge": "^2.1.1",
"mkdirp": "^3.0.1",
"prettier": "^3.0.3",
"rimraf": "^5.0.5",
"run-series": "^1.1.9",
"tape": "^5.7.2",
"xtend": "^4.0.2"
},
"engines": {
"node": ">=10"
},
"homepage": "https://github.com/KidkArolis/healthier",
"repository": {
"type": "git",
"url": "https://github.com/KidkArolis/healthier.git"
},
"bugs": {
"url": "https://github.com/KidkArolis/healthier/issues"
},
"keywords": [
"JavaScript Standard Style",
"bikeshed",
"check",
"checker",
"code",
"code checker",
"code linter",
"code standards",
"code style",
"enforce",
"eslint",
"hint",
"jscs",
"jshint",
"lint",
"policy",
"quality",
"simple",
"standard",
"standard style",
"style",
"style checker",
"style linter",
"verify",
"prettier",
"format",
"formatter"
]
}