-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
40 lines (40 loc) · 858 Bytes
/
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
{
"name": "eslint-plugin-sort-exports",
"version": "0.9.1",
"description": "Sort ES6 exports",
"main": "lib/index.js",
"author": "jrdrg",
"license": "MIT",
"scripts": {
"lint": "eslint .",
"test": "jest",
"format": "prettier --write \"./lib/*.js\" \"./test/*.js\""
},
"repository": {
"type": "git",
"url": "https://github.com/jrdrg/eslint-plugin-sort-exports.git"
},
"devDependencies": {
"@typescript-eslint/parser": "^4.31.0",
"eslint": "^7.32.0",
"husky": "^3.0.9",
"jest": "^27.1.1",
"lint-staged": "^9.4.2",
"prettier": "^1.18.2",
"typescript": "^4.4.2"
},
"dependencies": {
"minimatch": "^9.0.3"
},
"peerDependencies": {
"eslint": ">=5.0.0"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.js": "eslint ."
}
}