forked from infctr/eslint-plugin-typescript-sort-keys
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
116 lines (116 loc) · 3.88 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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
{
"name": "eslint-plugin-typescript-sort-keys",
"version": "3.2.0",
"description": "Sort interface and enum keys",
"keywords": [
"eslint",
"eslintplugin",
"eslint-plugin",
"typescript"
],
"author": "infctr <[email protected]>",
"main": "./lib/index.cjs.js",
"repository": "[email protected]:infctr/eslint-plugin-typescript-sort-keys.git",
"url": "https://github.com/infctr/eslint-plugin-typescript-sort-keys",
"files": [
"/lib",
"package.json",
"CHANGELOG.md",
"LICENSE.md",
"README.md"
],
"exports": {
".": {
"import": "./lib/index.mjs",
"require": "./lib/index.cjs.js",
"default": "./lib/index.cjs.js"
},
"./package.json": "./package.json"
},
"scripts": {
"build": "yarn rimraf lib && yarn compile",
"compile": "yarn rollup -c",
"coverage-preview": "http-server -o -p 5000 coverage/lcov-report",
"deduplicate": "yarn-deduplicate --strategy fewer",
"docs:check": "eslint-docs check",
"docs": "eslint-docs",
"format": "prettier --write src/**/*.{js,ts} tests/**/*.{js,ts}",
"lint": "eslint --ext .js,.ts src/ tests/",
"lint:fix": "yarn lint --fix",
"prepublishOnly": "MINIFY=1 yarn build",
"purge": "yarn -s rimraf node_modules lib",
"test:autofix": "yarn -s jest ./tests/autofix.spec.ts",
"test:config": "yarn -s jest ./tests/config.spec.ts",
"test:enum": "yarn -s jest ./tests/rules/enum/*.spec.ts",
"test:interface": "yarn -s jest ./tests/rules/interface/*.spec.ts",
"test:rules": "yarn -s jest ./tests/rules/*/*.spec.ts --collectCoverage=true",
"test:watch:autofix": "yarn jest --watch ./tests/autofix.spec.ts",
"test:watch:config": "yarn jest --watch ./tests/config.spec.ts",
"test:watch:enum": "yarn jest --watch ./tests/rules/enum/*.spec.ts",
"test:watch:interface": "yarn jest --watch ./tests/rules/interface/*.spec.ts",
"test:watch:rules": "yarn jest --watch ./tests/rules/*/*.spec.ts",
"test:watch": "yarn -s jest --watch .*.spec.ts",
"test": "yarn -s jest .*.spec.ts --collectCoverage=true",
"typecheck": "tsc --noEmit --skipLibCheck",
"verify": "yarn typecheck && yarn lint && yarn build && yarn test",
"prepare": "husky install"
},
"dependencies": {
"@typescript-eslint/utils": "^6.7.4",
"json-schema": "^0.4.0",
"natural-compare-lite": "^1.4.0"
},
"devDependencies": {
"@babel/cli": "~7.23.0",
"@babel/core": "~7.23.0",
"@babel/preset-env": "~7.23.0",
"@babel/preset-typescript": "~7.23.0",
"@infctr/eslint-docs": "~0.4.0",
"@rollup/plugin-commonjs": "~25.0.5",
"@rollup/plugin-json": "~6.0.1",
"@rollup/plugin-node-resolve": "~15.2.2",
"@rollup/plugin-terser": "~0.4.4",
"@rollup/plugin-typescript": "~11.1.4",
"@types/eslint": "~8.44.3",
"@types/jest": "~29.5.5",
"@types/natural-compare-lite": "~1.4.0",
"@types/node": "^18.0.0",
"@types/tmp": "~0.2.4",
"@typescript-eslint/eslint-plugin": "^6.7.4",
"@typescript-eslint/parser": "~6.13.2",
"babel-jest": "~29.7.0",
"babel-plugin-module-resolver": "~5.0.0",
"chalk": "~5.3.0",
"eslint": "~8.50.0",
"eslint-config-prettier": "~9.0.0",
"eslint-import-resolver-typescript": "~3.6.1",
"eslint-plugin-eslint-plugin": "~5.1.1",
"eslint-plugin-import": "~2.28.1",
"eslint-plugin-jest": "~27.4.2",
"eslint-plugin-prettier": "~5.0.0",
"http-server": "^14.0.0",
"husky": "^8.0.0",
"jest": "~29.7.0",
"lint-staged": "^14.0.1",
"lorem-ipsum": "~2.0.8",
"prettier": "^3.1.0",
"rimraf": "^5.0.5",
"rollup": "~4.7.0",
"tmp": "~0.2.1",
"typescript": "~5.2.2",
"yarn-deduplicate": "^6.0.2"
},
"peerDependencies": {
"@typescript-eslint/parser": "^6 || ^7",
"eslint": "^7 || ^8",
"typescript": "^3 || ^4 || ^5"
},
"engines": {
"node": ">=18"
},
"volta": {
"node": "18.19.0",
"yarn": "1.22.19"
},
"license": "ISC"
}