mirror of
https://github.com/jakejarvis/eslint-config.git
synced 2025-04-26 07:35:23 -04:00
48 lines
899 B
JSON
48 lines
899 B
JSON
{
|
|
"name": "@jakejarvis/eslint-config",
|
|
"version": "1.0.3",
|
|
"description": "@jakejarvis's shared eslint config.",
|
|
"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": {
|
|
"eslint-plugin-compat": "~3.13.0",
|
|
"eslint-plugin-import": "~2.24.2"
|
|
},
|
|
"peerDependencies": {
|
|
"eslint": ">=7"
|
|
},
|
|
"devDependencies": {
|
|
"eslint": "^7.32.0",
|
|
"typescript": "^4.4.2"
|
|
},
|
|
"eslintConfig": {
|
|
"extends": "./index.js",
|
|
"env": {
|
|
"node": true
|
|
}
|
|
},
|
|
"keywords": [
|
|
"javascript",
|
|
"ecmascript",
|
|
"eslint",
|
|
"lint",
|
|
"config"
|
|
]
|
|
}
|