package.json 3.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105
  1. {
  2. "_from": "eslint-utils@^3.0.0",
  3. "_id": "eslint-utils@3.0.0",
  4. "_inBundle": false,
  5. "_integrity": "sha512-uuQC43IGctw68pJA1RgbQS8/NP7rch6Cwd4j3ZBtgo4/8Flj4eGE7ZYSZRN3iq5pVUv6GPdW5Z1RFleo84uLDA==",
  6. "_location": "/eslint-utils",
  7. "_phantomChildren": {},
  8. "_requested": {
  9. "type": "range",
  10. "registry": true,
  11. "raw": "eslint-utils@^3.0.0",
  12. "name": "eslint-utils",
  13. "escapedName": "eslint-utils",
  14. "rawSpec": "^3.0.0",
  15. "saveSpec": null,
  16. "fetchSpec": "^3.0.0"
  17. },
  18. "_requiredBy": [
  19. "/@typescript-eslint/experimental-utils"
  20. ],
  21. "_resolved": "https://registry.npmjs.org/eslint-utils/-/eslint-utils-3.0.0.tgz",
  22. "_shasum": "8aebaface7345bb33559db0a1f13a1d2d48c3672",
  23. "_spec": "eslint-utils@^3.0.0",
  24. "_where": "C:\\Users\\rickh\\Desktop\\js-hw-1\\hw1\\node_modules\\@typescript-eslint\\experimental-utils",
  25. "author": {
  26. "name": "Toru Nagashima"
  27. },
  28. "bugs": {
  29. "url": "https://github.com/mysticatea/eslint-utils/issues"
  30. },
  31. "bundleDependencies": false,
  32. "dependencies": {
  33. "eslint-visitor-keys": "^2.0.0"
  34. },
  35. "deprecated": false,
  36. "description": "Utilities for ESLint plugins.",
  37. "devDependencies": {
  38. "@mysticatea/eslint-plugin": "^13.0.0",
  39. "codecov": "^3.6.1",
  40. "dot-prop": "^4.2.0",
  41. "eslint": "^7.24.0",
  42. "esm": "^3.2.25",
  43. "espree": "github:eslint/espree#1c744b3a602b783926344811a9459b92afe57444",
  44. "mocha": "^6.2.2",
  45. "npm-run-all": "^4.1.5",
  46. "nyc": "^14.1.1",
  47. "opener": "^1.5.1",
  48. "prettier": "~2.3.0",
  49. "rimraf": "^3.0.0",
  50. "rollup": "^1.25.0",
  51. "rollup-plugin-sourcemaps": "^0.4.2",
  52. "semver": "^7.3.2",
  53. "vuepress": "^1.2.0",
  54. "warun": "^1.0.0"
  55. },
  56. "engines": {
  57. "node": "^10.0.0 || ^12.0.0 || >= 14.0.0"
  58. },
  59. "exports": {
  60. ".": {
  61. "import": "./index.mjs",
  62. "require": "./index.js"
  63. },
  64. "./package.json": "./package.json"
  65. },
  66. "files": [
  67. "index.*"
  68. ],
  69. "funding": "https://github.com/sponsors/mysticatea",
  70. "homepage": "https://github.com/mysticatea/eslint-utils#readme",
  71. "keywords": [
  72. "eslint"
  73. ],
  74. "license": "MIT",
  75. "main": "index",
  76. "module": "index.mjs",
  77. "name": "eslint-utils",
  78. "peerDependencies": {
  79. "eslint": ">=5"
  80. },
  81. "repository": {
  82. "type": "git",
  83. "url": "git+https://github.com/mysticatea/eslint-utils.git"
  84. },
  85. "scripts": {
  86. "build": "rollup -c",
  87. "clean": "rimraf .nyc_output coverage index.*",
  88. "codecov": "nyc report -r lcovonly && codecov",
  89. "coverage": "opener ./coverage/lcov-report/index.html",
  90. "docs:build": "vuepress build docs",
  91. "docs:watch": "vuepress dev docs",
  92. "format": "npm run -s format:prettier -- --write",
  93. "format:prettier": "prettier docs/.vuepress/config.js src/**/*.js test/**/*.js rollup.config.js .vscode/*.json *.json .github/**/*.yml *.yml docs/**/*.md *.md",
  94. "lint": "eslint docs/.vuepress/config.js src test rollup.config.js",
  95. "postversion": "git push && git push --tags",
  96. "prebuild": "npm run -s clean",
  97. "preversion": "npm test && npm run -s build",
  98. "prewatch": "npm run -s clean",
  99. "test": "run-s \"format:prettier -- --check\" lint build test:mocha",
  100. "test:mocha": "nyc mocha --reporter dot \"test/*.js\"",
  101. "watch": "warun \"{src,test}/**/*.js\" -- npm run -s test:mocha"
  102. },
  103. "sideEffects": false,
  104. "version": "3.0.0"
  105. }