You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
67 lines
2.1 KiB
67 lines
2.1 KiB
{ |
|
"name": "eslint-config-prettier", |
|
"version": "6.15.0", |
|
"license": "MIT", |
|
"author": "Simon Lydell", |
|
"description": "Turns off all rules that are unnecessary or might conflict with Prettier.", |
|
"repository": "prettier/eslint-config-prettier", |
|
"files": [ |
|
"bin/", |
|
"@typescript-eslint.js", |
|
"babel.js", |
|
"flowtype.js", |
|
"index.js", |
|
"react.js", |
|
"standard.js", |
|
"unicorn.js", |
|
"vue.js" |
|
], |
|
"bin": { |
|
"eslint-config-prettier-check": "bin/cli.js" |
|
}, |
|
"keywords": [ |
|
"eslint", |
|
"eslintconfig", |
|
"prettier" |
|
], |
|
"scripts": { |
|
"doctoc": "doctoc README.md && replace \"\\[\\[([\\w/-]+)\\](?:([^\\[\\]]+)\\[([\\w/-]+)\\])?\\]\" \"[\\$1\\$2\\$3]\" README.md", |
|
"prettier": "prettier --write .", |
|
"test:lint": "eslint . && prettier --check .", |
|
"test:lint-verify-fail": "eslint \"test-lint/*.{js,ts,vue}\" --config .eslintrc.base.js --format json", |
|
"test:lint-rules": "eslint index.js --config test-config/.eslintrc.js --format json", |
|
"test:deprecated": "eslint-find-rules --deprecated index.js", |
|
"test:jest": "jest", |
|
"test:cli-sanity": "eslint --print-config index.js | node ./bin/cli.js", |
|
"test:cli-sanity-warning": "eslint --print-config ./bin/cli.js | node ./bin/cli.js", |
|
"test": "npm run test:lint && npm run test:jest && npm run test:cli-sanity && npm run test:cli-sanity-warning" |
|
}, |
|
"dependencies": { |
|
"get-stdin": "^6.0.0" |
|
}, |
|
"devDependencies": { |
|
"@typescript-eslint/eslint-plugin": "4.6.0", |
|
"@typescript-eslint/parser": "4.6.0", |
|
"babel-eslint": "10.1.0", |
|
"cross-spawn": "7.0.3", |
|
"doctoc": "1.4.0", |
|
"eslint": "7.12.1", |
|
"eslint-config-google": "0.14.0", |
|
"eslint-find-rules": "3.6.1", |
|
"eslint-plugin-babel": "5.3.1", |
|
"eslint-plugin-flowtype": "5.2.0", |
|
"eslint-plugin-prettier": "3.1.4", |
|
"eslint-plugin-react": "7.21.5", |
|
"eslint-plugin-standard": "4.0.2", |
|
"eslint-plugin-unicorn": "23.0.0", |
|
"eslint-plugin-vue": "7.1.0", |
|
"jest": "26.6.1", |
|
"prettier": "2.1.2", |
|
"replace": "1.2.0", |
|
"rimraf": "3.0.2", |
|
"typescript": "4.0.5" |
|
}, |
|
"peerDependencies": { |
|
"eslint": ">=3.14.1" |
|
} |
|
}
|
|
|