-
Notifications
You must be signed in to change notification settings - Fork 28
/
package.json
96 lines (96 loc) · 2.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
{
"name": "eslint-plugin-typescript-sort-keys",
"version": "3.3.0",
"description": "Sort interface and string 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": {
"prepublishOnly": "yarn compile",
"build": "yarn rimraf lib && yarn compile",
"compile": "yarn rollup -c",
"docs": "eslint-docs",
"docs:check": "eslint-docs check",
"lint": "eslint --ext .js,.ts src/ tests/",
"format": "prettier --write src/**/*.{js,ts} tests/**/*.{js,ts}",
"test": "yarn jest --watch",
"coverage": "yarn test --coverage --watchAll=false",
"coverage-preview": "http-server -o -p 5000 coverage/lcov-report",
"typecheck": "tsc --noEmit --skipLibCheck",
"verify": "yarn typecheck && yarn lint && yarn build && yarn coverage"
},
"dependencies": {
"@typescript-eslint/experimental-utils": "^5.0.0",
"json-schema": "^0.4.0",
"natural-compare-lite": "^1.4.0"
},
"devDependencies": {
"@babel/cli": "~7.14.8",
"@babel/core": "~7.15.0",
"@babel/preset-env": "~7.15.0",
"@babel/preset-typescript": "~7.15.0",
"@infctr/eslint-docs": "~0.4.0",
"@rollup/plugin-commonjs": "~12.0.0",
"@rollup/plugin-json": "~4.0.3",
"@rollup/plugin-node-resolve": "~8.0.0",
"@rollup/plugin-typescript": "~11.1.2",
"@types/babel__core": "~7.1.7",
"@types/babel__preset-env": "~7.9.0",
"@types/eslint": "~7.28.1",
"@types/jest": "~27.0.2",
"@types/natural-compare-lite": "~1.4.0",
"@types/rimraf": "~3.0.1",
"@types/tmp": "~0.2.1",
"@typescript-eslint/eslint-plugin": "~6.4.0",
"@typescript-eslint/parser": "~6.4.0",
"babel-jest": "~26.6.3",
"babel-plugin-module-resolver": "~4.1.0",
"eslint": "~8.0.1",
"eslint-config-prettier": "~9.0.0",
"eslint-plugin-eslint-plugin": "~5.1.1",
"eslint-plugin-import": "~2.28.0",
"eslint-plugin-jest": "~27.2.3",
"eslint-plugin-prettier": "~5.0.0",
"http-server": "~13.0.0",
"husky": "~4.2.5",
"jest": "~29.6.2",
"lint-staged": "~10.5.4",
"prettier": "3.0.1",
"rimraf": "~3.0.2",
"rollup": "~2.10.5",
"tmp": "~0.2.1",
"tsconfig": "~7.0.0",
"typescript": "5.1.6"
},
"peerDependencies": {
"@typescript-eslint/parser": ">=6",
"eslint": "^7 || ^8",
"typescript": "^3 || ^4 || ^5"
},
"engines": {
"node": ">= 16"
},
"license": "ISC"
}