forked from bfanger/eslint-plugin-only-warn
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
52 lines (52 loc) · 1.17 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
{
"name": "eslint-plugin-only-warn",
"version": "1.0.3",
"description": "Downgrade errors to warnings",
"keywords": [
"eslint",
"eslintplugin",
"eslint-plugin"
],
"main": "src/only-warn.js",
"scripts": {
"test": "npm run lint && jest",
"lint": "prettier --check --loglevel=warn src tests && eslint src tests",
"format": "prettier --write --loglevel=warn src tests && eslint --fix src tests",
"jest:watch": "jest --watch"
},
"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"
},
"prettier": {
"semi": false,
"singleQuote": true
},
"eslintConfig": {
"extends": "eslint:recommended",
"plugins": [
"prettier"
],
"env": {
"jest": true,
"node": true,
"es6": true
},
"rules": {
"prettier/prettier": "error"
}
},
"dependencies": {},
"devDependencies": {
"eslint": "^7.31.0",
"eslint-plugin-prettier": "^3.1.2",
"jest": "^27.0.6",
"prettier": "^2.3.2"
},
"engines": {
"node": ">=6"
},
"license": "MIT"
}