forked from infctr/eslint-plugin-typescript-sort-keys
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
63 lines (63 loc) · 1.64 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
{
"name": "eslint-plugin-typescript-sort-keys",
"version": "0.8.0",
"description": "Sort interface and string enum keys",
"keywords": [
"eslint",
"eslintplugin",
"eslint-plugin",
"typescript"
],
"author": "infctr <[email protected]>",
"main": "lib/index.js",
"repository": "[email protected]:infctr/eslint-plugin-typescript-sort-keys.git",
"scripts": {
"lint": "eslint lib/ tests/",
"lint:fix": "eslint lib/ tests/ --fix",
"docs": "eslint-docs",
"docs:check": "eslint-docs check",
"format": "prettier --write lib/**/*.js tests/**/*.js",
"pretest": "yarn lint",
"test": "jest --silent --runInBand",
"posttest": "yarn docs:check"
},
"dependencies": {
"natural-compare-lite": "~1.4.0",
"requireindex": "~1.2.0"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^2.26.0",
"@typescript-eslint/parser": "~2.26.0",
"cross-spawn": "^7.0.1",
"eslint": "~6.8.0",
"eslint-config-airbnb-base": "~14.1.0",
"eslint-config-prettier": "~6.10.1",
"eslint-docs": "~0.4.0",
"eslint-plugin-import": "~2.20.2",
"eslint-plugin-node": "~11.1.0",
"eslint-plugin-prettier": "~3.1.2",
"husky": "~4.2.3",
"jest": "~25.2.4",
"lint-staged": "~10.1.1",
"prettier": "~2.0.2",
"tmp": "^0.1.0",
"typescript": "~3.8.3"
},
"peerDependencies": {
"@typescript-eslint/parser": "^1 || ^2",
"eslint": "^5 || ^6",
"typescript": "^3"
},
"engines": {
"node": ">=8.3.0"
},
"jest": {
"testRegex": "tests/.*\\.spec\\.(js|ts)$"
},
"license": "ISC",
"husky": {
"hooks": {
"pre-commit": "yarn test && lint-staged"
}
}
}