-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
62 lines (62 loc) · 1.83 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
{
"name": "eslint-plugin-exception-handling",
"version": "1.5.4",
"description": "💣 Lints unhandled functions that might throw errors. For JavaScript/TypeScript eslint.",
"author": {
"email": "[email protected]",
"name": "Alexandre Daubricourt"
},
"repository": {
"type": "git",
"url": "https://github.com/Akronae/eslint-plugin-exception-handling.git"
},
"keywords": [
"eslint",
"plugin",
"exception",
"handling",
"error",
"throw",
"try",
"catch"
],
"license": "MIT",
"type": "module",
"main": "./dist/src/index.js",
"module": "./dist/src/index.js",
"types": "./dist/src/index.d.ts",
"files": [
"dist/src"
],
"scripts": {
"build": "yarn rimraf dist && tsc && tsc-alias",
"test": "yarn build && vitest run --reporter verbose",
"docs": "yarn build && eslint-doc-generator && eslint-doc-generator --init-rule-docs && eslint-doc-generator",
"v:major": "npm version major -m \"chore: bump major to %s\"",
"v:minor": "npm version minor -m \"chore: bump minor to %s\"",
"v:patch": "npm version patch -m \"chore: bump patch to %s\""
},
"dependencies": {
"eslint": "^9.3.0"
},
"devDependencies": {
"@types/eslint": "^9.6.1",
"@types/espree": "^10.1.0",
"@types/node": "^20.12.12",
"@types/react": "^18.3.12",
"@typescript-eslint/parser": "^7.9.0",
"@typescript-eslint/rule-tester": "^7.9.0",
"@typescript-eslint/types": "^7.9.0",
"@typescript-eslint/utils": "^7.9.0",
"eslint-doc-generator": "^1.7.1",
"espree": "^10.1.0",
"rimraf": "^6.0.1",
"tsc": "^2.0.4",
"tsc-alias": "^1.8.10",
"typescript": "^5.4.5",
"typescript-eslint": "^7.9.0",
"vite-tsconfig-paths": "^4.3.2",
"vitest": "^1.6.0"
},
"packageManager": "[email protected]+sha1.ac34549e6aa8e7ead463a7407e1c7390f61a6610"
}