-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
50 lines (50 loc) · 1.33 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
{
"name": "eslint-config-problems",
"version": "8.0.0",
"description": "An eslint config that catches problems in your code, without checking style. For use with prettier.",
"keywords": [
"eslint",
"eslint-config",
"eslintconfig",
"formatting",
"prettier"
],
"homepage": "https://github.com/ryanzim/eslint-config-problems#readme",
"bugs": {
"url": "https://github.com/ryanzim/eslint-config-problems/issues"
},
"license": "ISC",
"author": "Ryan Zimmerman <opensrc@ryanzim.com>",
"main": "index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/ryanzim/eslint-config-problems.git"
},
"scripts": {
"eslint": "eslint -c internal-eslintrc.js .",
"format": "npm run prettier -- --write && npm run eslint -- --fix",
"test": "npm run eslint && npm run prettier -- --list-different",
"toc": "doctoc README.md && prettier README.md --write",
"prettier": "prettier \"**/*.{js,md,json}\""
},
"devDependencies": {
"doctoc": "^2.0.0",
"eslint": "~8.38.0",
"lodash.defaultsdeep": "^4.6.0",
"prettier": "^3.0.0"
},
"peerDependencies": {
"eslint": "^8.27.0"
},
"prettier": {
"singleQuote": true,
"quoteProps": "consistent"
},
"renovate": {
"extends": [
"config:base",
":preserveSemverRanges",
":label(deps)"
]
}
}