-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
51 lines (51 loc) · 1.43 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
{
"name": "eslint-plugin-throw-aware",
"version": "1.0.0-beta.8",
"description": "An ESLint plugin to enforce naming conventions and JSDoc annotations for functions that throw exceptions.",
"type": "module",
"main": "cjs/index.js",
"module": "lib/index.js",
"exports": {
".": {
"import": "./lib/index.js",
"require": "./cjs/index.js"
}
},
"scripts": {
"lint": "eslint 'lib/**/*.js'",
"build": "tsc --project tsconfig.json",
"test": "ava",
"prepublishOnly": "rm -rf cjs/ && npm run lint && npm run test && npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/cedeber/eslint-plugin-throw-aware.git"
},
"keywords": [
"eslint",
"eslintplugin",
"eslint-plugin"
],
"author": "Cédric Eberhardt <[email protected]>",
"license": "Unlicense",
"bugs": {
"url": "https://github.com/cedeber/eslint-plugin-throw-aware/issues"
},
"homepage": "https://github.com/cedeber/eslint-plugin-throw-aware#readme",
"peerDependencies": {
"eslint": ">=8.57.0 || >=9.0.0"
},
"devDependencies": {
"@eslint/js": "^9.10.0",
"ava": "^6.1.3",
"eslint": "^9.10.0",
"eslint-ava-rule-tester": "^5.0.1",
"eslint-plugin-ava": "^15.0.1",
"eslint-plugin-eslint-plugin": "^6.2.0",
"eslint-plugin-n": "^17.10.2",
"eslint-plugin-unicorn": "^55.0.0",
"globals": "^15.9.0",
"prettier": "^3.3.3",
"typescript": "^5.6.2"
}
}