forked from leo-buneev/eslint-plugin-sort-keys-fix
-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 704 Bytes
/
package.json
File metadata and controls
30 lines (30 loc) · 704 Bytes
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
{
"name": "eslint-plugin-sort-keys",
"version": "2.3.5",
"description": "Fork of eslint rule that sorts keys in objects (https://eslint.org/docs/rules/sort-keys) with autofix enabled",
"repository": {
"url": "https://github.com/namnm/eslint-plugin-sort-keys",
"type": "git"
},
"keywords": [
"eslint",
"sort keys",
"sort object",
"autofix",
"fixable"
],
"author": "Nam Nguyen <nam@namnm.com>",
"scripts": {
"format": "prettier --loglevel=error --write .",
"test": "jest"
},
"dependencies": {
"natural-compare": "1.4.0"
},
"devDependencies": {
"eslint": "7.32.0",
"jest": "27.0.6",
"prettier": "2.3.2"
},
"license": "ISC"
}