-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
43 lines (43 loc) · 1.04 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
{
"name": "eslint-plugin-try-catch-failsafe",
"version": "0.1.4",
"description": "Make sure to use try-catch to wrap up some dangerous actions!",
"main": "lib/index.js",
"scripts": {
"build": "rm -rf lib && swc src -d lib",
"prepack": "pnpm build",
"test": "ts-mocha tests/**/*.spec.ts"
},
"dependencies": {
"requireindex": "^1.2.0"
},
"devDependencies": {
"@swc/cli": "^0.1.59",
"@swc/core": "^1.3.25",
"@types/eslint": "^8.4.10",
"@types/estree": "^1.0.0",
"@types/expect": "^24.3.0",
"@types/mocha": "^10.0.1",
"@types/node": "^18.11.18",
"@types/requireindex": "^1.2.0",
"eslint": "^8.31.0",
"mocha": "^10.2.0",
"ts-mocha": "^10.0.0",
"typescript": "^4.9.4"
},
"repository": {
"type": "git",
"url": "https://github.com/RexSkz/eslint-plugin-try-catch-failsafe.git"
},
"author": "Rex Zeng <[email protected]>",
"keywords": [
"eslint",
"eslintplugin",
"eslint-plugin",
"try-catch",
"try",
"catch",
"failsafe"
],
"license": "MIT"
}