-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
70 lines (70 loc) · 1.67 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
{
"name": "eslint-plugin-sort-export-all",
"version": "1.4.1",
"description": "ESLint rule that helps sort export *",
"repository": {
"url": "https://github.com/nirtamir2/eslint-plugin-sort-export-all",
"type": "git"
},
"main": "lib/index.js",
"scripts": {
"clean": "rimraf lib",
"build": "tsc",
"test": "jest",
"prettier": "prettier --write \"**/*.{ts,js,json}\"",
"lint": "eslint --fix \"src/**/*.{ts,js,json}\"",
"prepublish": "npm run clean && npm run build"
},
"files": [
"README.md",
"package.json",
"lib"
],
"keywords": [
"eslint",
"eslintplugin",
"eslint-plugin"
],
"author": "Nir Tamir <[email protected]>",
"license": "MIT",
"devDependencies": {
"@types/eslint": "^8.37.0",
"@types/natural-compare": "^1.4.1",
"@types/node": "^18.16.0",
"@typescript-eslint/eslint-plugin": "^5.59.1",
"@typescript-eslint/parser": "^5.59.1",
"concurrently": "^8.0.1",
"eslint": "^8.39.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^8.8.0",
"eslint-config-typescript": "^3.0.0",
"eslint-plugin-import": "^2.27.5",
"jest": "^29.5.0",
"prettier": "^2.8.8",
"rimraf": "^5.0.0",
"ts-jest": "^29.1.0",
"typescript": "~5.0.4"
},
"dependencies": {
"natural-compare": "^1.4.0"
},
"peerDependencies": {
"eslint": "^4 || ^5 || ^6 || ^7 || ^8"
},
"jest": {
"transform": {
"^.+\\.ts$": "ts-jest"
},
"testRegex": "(src/.*\\.test)\\.ts$",
"testPathIgnorePatterns": [
"/node_modules/",
"\\.d\\.ts$",
"lib/.*"
],
"moduleFileExtensions": [
"js",
"ts",
"json"
]
}
}