forked from cartant/eslint-plugin-rxjs
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
102 lines (102 loc) · 2.89 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
{
"name": "eslint-plugin-rxjs-x",
"type": "commonjs",
"version": "0.6.2",
"packageManager": "[email protected]+sha512.5383cc12567a95f1d668fbe762dfe0075c595b4bfff433be478dbbe24e05251a8e8c3eb992a986667c1d53b6c3a9c85b8398c35a960587fbd9fa3a0915406728",
"description": "ESLint v9+ plugin for RxJS",
"author": "Jason Weinzierl <[email protected]>",
"license": "MIT",
"homepage": "https://github.com/JasonWeinzierl/eslint-plugin-rxjs-x",
"repository": {
"type": "git",
"url": "git+https://github.com/JasonWeinzierl/eslint-plugin-rxjs-x.git"
},
"bugs": {
"url": "https://github.com/JasonWeinzierl/eslint-plugin-rxjs-x/issues"
},
"keywords": [
"lint",
"rules",
"eslint",
"eslintplugin",
"eslint-plugin",
"rxjs"
],
"sideEffects": false,
"exports": {
".": {
"import": {
"types": "./dist/index.d.mts",
"default": "./dist/index.mjs"
},
"require": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
}
}
},
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"files": [
"dist",
"docs"
],
"scripts": {
"build": "tsup",
"lint": "yarn lint-js && yarn lint-docs && yarn lint-eslint-docs",
"lint-js": "eslint",
"lint-docs": "markdownlint-cli2 \"**/*.md\" \"#node_modules\"",
"lint-eslint-docs": "yarn build && eslint-doc-generator --check",
"docs": "eslint-doc-generator",
"release": "bumpp && echo \"Create a new release in GitHub to trigger the publish workflow.\"",
"test": "vitest",
"coverage": "vitest run --coverage",
"typecheck": "tsc --noEmit"
},
"dependencies": {
"@typescript-eslint/scope-manager": "^8.19.1",
"@typescript-eslint/utils": "^8.19.1",
"common-tags": "^1.8.0",
"decamelize": "^5.0.1",
"ts-api-utils": "^2.0.0",
"tslib": "^2.1.0"
},
"peerDependencies": {
"eslint": "^8.57.0 || ^9.0.0",
"rxjs": ">=7.2.0",
"typescript": ">=4.8.4"
},
"peerDependenciesMeta": {
"rxjs": {
"optional": true
}
},
"devDependencies": {
"@eslint/js": "^9.19.0",
"@stylistic/eslint-plugin": "^3.0.1",
"@types/common-tags": "^1.8.4",
"@types/node": "~18.18.0",
"@typescript-eslint/rule-tester": "^8.22.0",
"@typescript/vfs": "^1.6.0",
"@vitest/coverage-v8": "^2.1.8",
"@vitest/eslint-plugin": "^1.1.25",
"bumpp": "^9.9.3",
"eslint": "^9.19.0",
"eslint-config-flat-gitignore": "^2.0.0",
"eslint-doc-generator": "^2.0.2",
"eslint-import-resolver-typescript": "^3.7.0",
"eslint-plugin-eslint-plugin": "^6.4.0",
"eslint-plugin-import-x": "^4.6.1",
"eslint-plugin-n": "^17.15.1",
"markdownlint-cli2": "^0.17.2",
"rxjs": "^7.8.1",
"tsup": "^8.3.6",
"typescript": "~5.7.3",
"typescript-eslint": "^8.22.0",
"vitest": "^2.1.9"
},
"engines": {
"node": "^18.18.0 || ^20.9.0 || >= 21.1.0"
}
}