mirror of
https://github.com/tornadocash/provider.git
synced 2024-11-22 17:50:02 +01:00
117 lines
2.3 KiB
JSON
117 lines
2.3 KiB
JSON
{
|
|
"name": "eslint-plugin-unicorn",
|
|
"version": "22.0.0",
|
|
"description": "Various awesome ESLint rules",
|
|
"license": "MIT",
|
|
"repository": "sindresorhus/eslint-plugin-unicorn",
|
|
"funding": "https://github.com/sindresorhus/eslint-plugin-unicorn?sponsor=1",
|
|
"author": {
|
|
"name": "Sindre Sorhus",
|
|
"email": "sindresorhus@gmail.com",
|
|
"url": "https://sindresorhus.com"
|
|
},
|
|
"engines": {
|
|
"node": ">=10"
|
|
},
|
|
"scripts": {
|
|
"test": "xo && nyc ava",
|
|
"lint": "node ./test/lint/lint.js",
|
|
"integration": "node ./test/integration/test.js"
|
|
},
|
|
"files": [
|
|
"index.js",
|
|
"rules"
|
|
],
|
|
"keywords": [
|
|
"eslint",
|
|
"eslintplugin",
|
|
"eslint-plugin",
|
|
"unicorn",
|
|
"linter",
|
|
"lint",
|
|
"style",
|
|
"xo"
|
|
],
|
|
"dependencies": {
|
|
"ci-info": "^2.0.0",
|
|
"clean-regexp": "^1.0.0",
|
|
"eslint-ast-utils": "^1.1.0",
|
|
"eslint-template-visitor": "^2.2.1",
|
|
"eslint-utils": "^2.1.0",
|
|
"import-modules": "^2.0.0",
|
|
"lodash": "^4.17.20",
|
|
"pluralize": "^8.0.0",
|
|
"read-pkg-up": "^7.0.1",
|
|
"regexp-tree": "^0.1.21",
|
|
"reserved-words": "^0.1.2",
|
|
"safe-regex": "^2.1.1",
|
|
"semver": "^7.3.2"
|
|
},
|
|
"devDependencies": {
|
|
"@ava/babel": "^1.0.1",
|
|
"@babel/code-frame": "7.10.4",
|
|
"@lubien/fixture-beta-package": "^1.0.0-beta.1",
|
|
"@typescript-eslint/parser": "^4.1.0",
|
|
"ava": "^3.12.1",
|
|
"babel-eslint": "^10.1.0",
|
|
"chalk": "^4.1.0",
|
|
"eslint": "^7.8.0",
|
|
"eslint-ava-rule-tester": "^4.0.0",
|
|
"eslint-plugin-eslint-plugin": "^2.3.0",
|
|
"execa": "^4.0.3",
|
|
"listr": "^0.14.3",
|
|
"mem": "6.1.1",
|
|
"nyc": "^15.1.0",
|
|
"outdent": "^0.7.1",
|
|
"pify": "^5.0.0",
|
|
"typescript": "^4.0.2",
|
|
"vue-eslint-parser": "^7.1.0",
|
|
"xo": "^0.33.1"
|
|
},
|
|
"peerDependencies": {
|
|
"eslint": ">=7.8.0"
|
|
},
|
|
"ava": {
|
|
"babel": true,
|
|
"files": [
|
|
"test/*.js"
|
|
]
|
|
},
|
|
"nyc": {
|
|
"reporter": [
|
|
"text",
|
|
"lcov"
|
|
]
|
|
},
|
|
"xo": {
|
|
"parserOptions": {
|
|
"sourceType": "script"
|
|
},
|
|
"plugins": [
|
|
"eslint-plugin"
|
|
],
|
|
"extends": [
|
|
"plugin:eslint-plugin/all"
|
|
],
|
|
"overrides": [
|
|
{
|
|
"files": "rules/utils/*.js",
|
|
"rules": {
|
|
"eslint-plugin/prefer-object-rule": "off",
|
|
"eslint-plugin/require-meta-docs-url": "off"
|
|
}
|
|
},
|
|
{
|
|
"files": "test/*.js",
|
|
"parserOptions": {
|
|
"sourceType": "module"
|
|
}
|
|
}
|
|
],
|
|
"rules": {
|
|
"strict": "error",
|
|
"unicorn/no-null": "error"
|
|
}
|
|
}
|
|
}
|