租房小程序前端代码
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.

181 lines
5.6 KiB

6 months ago
2 months ago
6 months ago
2 months ago
6 months ago
2 months ago
6 months ago
2 months ago
6 months ago
2 months ago
6 months ago
2 months ago
6 months ago
  1. {
  2. "name": "eslint",
  3. "version": "8.57.1",
  4. "author": "Nicholas C. Zakas <nicholas+npm@nczconsulting.com>",
  5. "description": "An AST-based pattern checker for JavaScript.",
  6. "bin": {
  7. "eslint": "./bin/eslint.js"
  8. },
  9. "main": "./lib/api.js",
  10. "exports": {
  11. "./package.json": "./package.json",
  12. ".": "./lib/api.js",
  13. "./use-at-your-own-risk": "./lib/unsupported-api.js"
  14. },
  15. "scripts": {
  16. "build:docs:update-links": "node tools/fetch-docs-links.js",
  17. "build:site": "node Makefile.js gensite",
  18. "build:webpack": "node Makefile.js webpack",
  19. "build:readme": "node tools/update-readme.js",
  20. "lint": "node Makefile.js lint",
  21. "lint:docs:js": "node Makefile.js lintDocsJS",
  22. "lint:docs:rule-examples": "node Makefile.js checkRuleExamples",
  23. "lint:fix": "node Makefile.js lint -- fix",
  24. "lint:fix:docs:js": "node Makefile.js lintDocsJS -- fix",
  25. "release:generate:alpha": "node Makefile.js generatePrerelease -- alpha",
  26. "release:generate:beta": "node Makefile.js generatePrerelease -- beta",
  27. "release:generate:latest": "node Makefile.js generateRelease -- latest",
  28. "release:generate:maintenance": "node Makefile.js generateRelease -- maintenance",
  29. "release:generate:rc": "node Makefile.js generatePrerelease -- rc",
  30. "release:publish": "node Makefile.js publishRelease",
  31. "test": "node Makefile.js test",
  32. "test:cli": "mocha",
  33. "test:fuzz": "node Makefile.js fuzz",
  34. "test:performance": "node Makefile.js perf"
  35. },
  36. "gitHooks": {
  37. "pre-commit": "lint-staged"
  38. },
  39. "lint-staged": {
  40. "*.js": "eslint --fix",
  41. "*.md": "markdownlint --fix",
  42. "lib/rules/*.js": [
  43. "node tools/update-eslint-all.js",
  44. "git add packages/js/src/configs/eslint-all.js"
  45. ],
  46. "docs/src/rules/*.md": [
  47. "node tools/check-rule-examples.js",
  48. "node tools/fetch-docs-links.js",
  49. "git add docs/src/_data/further_reading_links.json"
  50. ],
  51. "docs/**/*.svg": "npx svgo -r --multipass"
  52. },
  53. "files": [
  54. "LICENSE",
  55. "README.md",
  56. "bin",
  57. "conf",
  58. "lib",
  59. "messages"
  60. ],
  61. "repository": "eslint/eslint",
  62. "funding": "https://opencollective.com/eslint",
  63. "homepage": "https://eslint.org",
  64. "bugs": "https://github.com/eslint/eslint/issues/",
  65. "dependencies": {
  66. "@eslint-community/eslint-utils": "^4.2.0",
  67. "@eslint-community/regexpp": "^4.6.1",
  68. "@eslint/eslintrc": "^2.1.4",
  69. "@eslint/js": "8.57.1",
  70. "@humanwhocodes/config-array": "^0.13.0",
  71. "@humanwhocodes/module-importer": "^1.0.1",
  72. "@nodelib/fs.walk": "^1.2.8",
  73. "@ungap/structured-clone": "^1.2.0",
  74. "ajv": "^6.12.4",
  75. "chalk": "^4.0.0",
  76. "cross-spawn": "^7.0.2",
  77. "debug": "^4.3.2",
  78. "doctrine": "^3.0.0",
  79. "escape-string-regexp": "^4.0.0",
  80. "eslint-scope": "^7.2.2",
  81. "eslint-visitor-keys": "^3.4.3",
  82. "espree": "^9.6.1",
  83. "esquery": "^1.4.2",
  84. "esutils": "^2.0.2",
  85. "fast-deep-equal": "^3.1.3",
  86. "file-entry-cache": "^6.0.1",
  87. "find-up": "^5.0.0",
  88. "glob-parent": "^6.0.2",
  89. "globals": "^13.19.0",
  90. "graphemer": "^1.4.0",
  91. "ignore": "^5.2.0",
  92. "imurmurhash": "^0.1.4",
  93. "is-glob": "^4.0.0",
  94. "is-path-inside": "^3.0.3",
  95. "js-yaml": "^4.1.0",
  96. "json-stable-stringify-without-jsonify": "^1.0.1",
  97. "levn": "^0.4.1",
  98. "lodash.merge": "^4.6.2",
  99. "minimatch": "^3.1.2",
  100. "natural-compare": "^1.4.0",
  101. "optionator": "^0.9.3",
  102. "strip-ansi": "^6.0.1",
  103. "text-table": "^0.2.0"
  104. },
  105. "devDependencies": {
  106. "@babel/core": "^7.4.3",
  107. "@babel/preset-env": "^7.4.3",
  108. "@sinonjs/fake-timers": "11.2.2",
  109. "@wdio/browser-runner": "^8.14.6",
  110. "@wdio/cli": "^8.14.6",
  111. "@wdio/concise-reporter": "^8.14.0",
  112. "@wdio/globals": "^8.14.6",
  113. "@wdio/mocha-framework": "^8.14.0",
  114. "babel-loader": "^8.0.5",
  115. "c8": "^7.12.0",
  116. "chai": "^4.0.1",
  117. "cheerio": "^0.22.0",
  118. "common-tags": "^1.8.0",
  119. "core-js": "^3.1.3",
  120. "ejs": "^3.0.2",
  121. "eslint": "file:.",
  122. "eslint-config-eslint": "file:packages/eslint-config-eslint",
  123. "eslint-plugin-eslint-comments": "^3.2.0",
  124. "eslint-plugin-eslint-plugin": "^5.2.1",
  125. "eslint-plugin-internal-rules": "file:tools/internal-rules",
  126. "eslint-plugin-jsdoc": "^46.2.5",
  127. "eslint-plugin-n": "^16.6.0",
  128. "eslint-plugin-unicorn": "^49.0.0",
  129. "eslint-release": "^3.3.0",
  130. "eslump": "^3.0.0",
  131. "esprima": "^4.0.1",
  132. "fast-glob": "^3.2.11",
  133. "fs-teardown": "^0.1.3",
  134. "glob": "^7.1.6",
  135. "got": "^11.8.3",
  136. "gray-matter": "^4.0.3",
  137. "lint-staged": "^11.0.0",
  138. "load-perf": "^0.2.0",
  139. "markdown-it": "^12.2.0",
  140. "markdown-it-container": "^3.0.0",
  141. "markdownlint": "^0.32.0",
  142. "markdownlint-cli": "^0.37.0",
  143. "marked": "^4.0.8",
  144. "memfs": "^3.0.1",
  145. "metascraper": "^5.25.7",
  146. "metascraper-description": "^5.25.7",
  147. "metascraper-image": "^5.29.3",
  148. "metascraper-logo": "^5.25.7",
  149. "metascraper-logo-favicon": "^5.25.7",
  150. "metascraper-title": "^5.25.7",
  151. "mocha": "^8.3.2",
  152. "mocha-junit-reporter": "^2.0.0",
  153. "node-polyfill-webpack-plugin": "^1.0.3",
  154. "npm-license": "^0.3.3",
  155. "pirates": "^4.0.5",
  156. "progress": "^2.0.3",
  157. "proxyquire": "^2.0.1",
  158. "recast": "^0.23.0",
  159. "regenerator-runtime": "^0.14.0",
  160. "rollup-plugin-node-polyfills": "^0.2.1",
  161. "semver": "^7.5.3",
  162. "shelljs": "^0.8.2",
  163. "sinon": "^11.0.0",
  164. "vite-plugin-commonjs": "0.10.1",
  165. "webdriverio": "^8.14.6",
  166. "webpack": "^5.23.0",
  167. "webpack-cli": "^4.5.0",
  168. "yorkie": "^2.0.0"
  169. },
  170. "keywords": [
  171. "ast",
  172. "lint",
  173. "javascript",
  174. "ecmascript",
  175. "espree"
  176. ],
  177. "license": "MIT",
  178. "engines": {
  179. "node": "^12.22.0 || ^14.17.0 || >=16.0.0"
  180. }
  181. }