-
Notifications
You must be signed in to change notification settings - Fork 17
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1008 Bytes
/
package.json
File metadata and controls
41 lines (41 loc) · 1008 Bytes
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
{
"name": "eslint-plugin-only-warn",
"version": "1.2.1",
"license": "MIT",
"description": "Downgrade errors to warnings",
"keywords": [
"eslint",
"eslintplugin",
"eslint-plugin"
],
"author": "Bob Fanger",
"homepage": "https://github.com/bfanger/eslint-plugin-only-warn",
"repository": {
"type": "git",
"url": "https://github.com/bfanger/eslint-plugin-only-warn.git"
},
"type": "commonjs",
"main": "src/only-warn.js",
"types": "types/only-warn.d.ts",
"files": [
"src",
"types"
],
"prettier": {},
"scripts": {
"lint": "prettier --check . && eslint . && tsc",
"format": "eslint --fix . && prettier --write .",
"test": "vitest run",
"test:watch": "vitest",
"prepublish": "rm -rf types && tsc"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@types/node": "^25.3.2",
"eslint": "^10.0.2",
"eslint-config-prettier": "^10.1.8",
"prettier": "^3.8.1",
"typescript": "^5.9.3",
"vitest": "^4.0.18"
}
}