-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 780 Bytes
/
package.json
File metadata and controls
32 lines (32 loc) · 780 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
31
32
{
"name": "eslint-plugin-sort-keys-shorthand",
"version": "4.0.0",
"description": "eslint plugin which support sorting shorthand keys",
"main": "index.js",
"scripts": {
"release": "changeset publish",
"test": "istanbul cover node_modules/mocha/bin/_mocha tests/lib/**/*.js"
},
"keywords": [
"eslint"
],
"peerDependencies": {
"eslint": "^10.0.0"
},
"author": "Dominic Buetow",
"license": "MIT",
"devDependencies": {
"@changesets/cli": "^2.30.0",
"eslint": "^10.0.3",
"eslint-plugin-import": "^2.32.0",
"istanbul": "^0.4.5",
"mocha": "11.7.5"
},
"dependencies": {
"natural-compare": "^1.4.0"
},
"repository": {
"type": "git",
"url": "https://github.com/fxOne/eslint-plugin-sort-keys-shorthand"
}
}