-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
86 lines (86 loc) · 2.75 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
{
"author": "heap-code",
"bugs": {
"url": "https://github.com/heap-code/eslint-plugin-sort-decorators/issues"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"description": "An ESLint plugin to sort decorators",
"devDependencies": {
"@release-it/conventional-changelog": "^9.0.0",
"@swc/core": "^1.3.67",
"@types/eslint": "^8.40.2",
"@types/jest": "^29.5.2",
"@typescript-eslint/eslint-plugin": "^7.3.1",
"@typescript-eslint/parser": "^7.3.1",
"@typescript-eslint/rule-tester": "^7.3.1",
"@typescript-eslint/utils": "^7.3.1",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^8.43.0",
"eslint-config-prettier": "^9.0.0",
"eslint-doc-generator": "^1.4.3",
"eslint-plugin-eslint-comments": "^3.2.0",
"eslint-plugin-eslint-plugin": "^5.1.0",
"eslint-plugin-etc": "^2.0.3",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-jest": "^27.2.2",
"eslint-plugin-jsdoc": "^48.0.0",
"eslint-plugin-jsonc": "^2.9.0",
"eslint-plugin-markdownlint": "^0.6.0",
"eslint-plugin-prettier": "^5.0.0",
"eslint-plugin-sonarjs": "^0.25.0",
"eslint-plugin-sort-destructure-keys": "^1.5.0",
"eslint-plugin-sort-exports": "^0.9.0",
"eslint-plugin-sort-keys-plus": "^1.4.0",
"eslint-plugin-typescript-sort-keys": "^3.0.0",
"eslint-plugin-unicorn": "^52.0.0",
"eslint-plugin-unused-imports": "^3.0.0",
"eslint-plugin-yml": "^1.8.0",
"jest": "^29.5.0",
"prettier-plugin-sh": "^0.14.0",
"release-it": "^17.0.0",
"ts-jest": "^29.1.0",
"ts-loader": "^9.4.4",
"ts-node": "^10.9.1",
"tsup": "^8.0.0",
"typescript": "^5.1.5",
"typescript-json-schema": "^0.65.0"
},
"homepage": "https://github.com/heap-code/eslint-plugin-sort-decorators",
"keywords": [
"eslint",
"eslintplugin",
"decorators",
"sort",
"plugin"
],
"license": "MIT",
"main": "./dist/index.js",
"name": "eslint-plugin-sort-decorators",
"peerDependencies": {
"@typescript-eslint/parser": "^5.0.0 || ^6.0.0 || ^7.0.0",
"eslint": "^6.0.0 || ^7.0.0 || ^8.0.0"
},
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "git+https://github.com/heap-code/eslint-plugin-sort-decorators.git"
},
"scripts": {
"build": "tsup-node src/index.ts --minify --sourcemap --treeshake",
"docs:update": "npx eslint-doc-generator",
"lint": "eslint .",
"lint:fix": "npm run lint -- --fix",
"postschemas:update": "eslint src/lib/sort-rule/sort-rule.options.schema.json --fix",
"schemas:update": "typescript-json-schema src/lib/sort-rule/sort-rule.options.ts SortRuleOptions --noExtraProps --required -o src/lib/sort-rule/sort-rule.options.schema.json",
"test": "jest --config jest.config.ts",
"test:coverage": "npm run test -- --coverage",
"test:watch": "npm run test -- --watch"
},
"version": "0.2.6"
}