mirror of
https://github.com/jakejarvis/eslint-config.git
synced 2025-04-26 07:35:23 -04:00
55 lines
1.1 KiB
JSON
55 lines
1.1 KiB
JSON
{
|
|
"name": "@jakejarvis/eslint-config",
|
|
"version": "2.0.0",
|
|
"description": "My ESLint config. Inspired heavily by eslint-config-google and moderately by eslint-config-airbnb.",
|
|
"license": "MIT",
|
|
"author": {
|
|
"name": "Jake Jarvis",
|
|
"email": "jake@jarv.is",
|
|
"url": "https://jarv.is/"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/jakejarvis/eslint-config.git"
|
|
},
|
|
"main": "index.js",
|
|
"files": [
|
|
"index.js"
|
|
],
|
|
"scripts": {
|
|
"lint": "eslint .",
|
|
"lint:fix": "eslint --fix ."
|
|
},
|
|
"dependencies": {},
|
|
"peerDependencies": {
|
|
"eslint": "^7 || >=8",
|
|
"eslint-plugin-compat": "~3.13.0",
|
|
"eslint-plugin-import": "~2.25.2"
|
|
},
|
|
"peerDependenciesMeta": {
|
|
"eslint-plugin-compat": {
|
|
"optional": true
|
|
},
|
|
"eslint-plugin-import": {
|
|
"optional": true
|
|
}
|
|
},
|
|
"devDependencies": {
|
|
"eslint": "^8.0.0"
|
|
},
|
|
"eslintConfig": {
|
|
"extends": "./index.js",
|
|
"env": {
|
|
"node": true
|
|
}
|
|
},
|
|
"keywords": [
|
|
"javascript",
|
|
"ecmascript",
|
|
"eslint",
|
|
"eslint-config",
|
|
"lint",
|
|
"config"
|
|
]
|
|
}
|