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

74 lines
2.4 KiB

10 months ago
10 months ago
10 months ago
10 months ago
10 months ago
10 months ago
  1. {
  2. "name": "eslint-visitor-keys",
  3. "version": "3.4.3",
  4. "description": "Constants and utilities about visitor keys to traverse AST.",
  5. "type": "module",
  6. "main": "dist/eslint-visitor-keys.cjs",
  7. "types": "./dist/index.d.ts",
  8. "exports": {
  9. ".": [
  10. {
  11. "import": "./lib/index.js",
  12. "require": "./dist/eslint-visitor-keys.cjs"
  13. },
  14. "./dist/eslint-visitor-keys.cjs"
  15. ],
  16. "./package.json": "./package.json"
  17. },
  18. "files": [
  19. "dist/index.d.ts",
  20. "dist/visitor-keys.d.ts",
  21. "dist/eslint-visitor-keys.cjs",
  22. "dist/eslint-visitor-keys.d.cts",
  23. "lib"
  24. ],
  25. "engines": {
  26. "node": "^12.22.0 || ^14.17.0 || >=16.0.0"
  27. },
  28. "devDependencies": {
  29. "@types/estree": "^0.0.51",
  30. "@types/estree-jsx": "^0.0.1",
  31. "@typescript-eslint/parser": "^5.14.0",
  32. "c8": "^7.11.0",
  33. "chai": "^4.3.6",
  34. "eslint": "^7.29.0",
  35. "eslint-config-eslint": "^7.0.0",
  36. "eslint-plugin-jsdoc": "^35.4.0",
  37. "eslint-plugin-node": "^11.1.0",
  38. "eslint-release": "^3.2.0",
  39. "esquery": "^1.4.0",
  40. "json-diff": "^0.7.3",
  41. "mocha": "^9.2.1",
  42. "opener": "^1.5.2",
  43. "rollup": "^2.70.0",
  44. "rollup-plugin-dts": "^4.2.3",
  45. "tsd": "^0.19.1",
  46. "typescript": "^4.6.2"
  47. },
  48. "scripts": {
  49. "build": "npm run build:cjs && npm run build:types",
  50. "build:cjs": "rollup -c",
  51. "build:debug": "npm run build:cjs -- -m && npm run build:types",
  52. "build:keys": "node tools/build-keys-from-ts",
  53. "build:types": "tsc",
  54. "lint": "eslint .",
  55. "prepare": "npm run build",
  56. "release:generate:latest": "eslint-generate-release",
  57. "release:generate:alpha": "eslint-generate-prerelease alpha",
  58. "release:generate:beta": "eslint-generate-prerelease beta",
  59. "release:generate:rc": "eslint-generate-prerelease rc",
  60. "release:publish": "eslint-publish-release",
  61. "test": "mocha tests/lib/**/*.cjs && c8 mocha tests/lib/**/*.js && npm run test:types",
  62. "test:open-coverage": "c8 report --reporter lcov && opener coverage/lcov-report/index.html",
  63. "test:types": "tsd"
  64. },
  65. "repository": "eslint/eslint-visitor-keys",
  66. "funding": "https://opencollective.com/eslint",
  67. "keywords": [],
  68. "author": "Toru Nagashima (https://github.com/mysticatea)",
  69. "license": "Apache-2.0",
  70. "bugs": {
  71. "url": "https://github.com/eslint/eslint-visitor-keys/issues"
  72. },
  73. "homepage": "https://github.com/eslint/eslint-visitor-keys#readme"
  74. }