web 3d图形渲染器
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.

125 lines
3.7 KiB

  1. {
  2. "name": "eslint-plugin-import",
  3. "version": "2.22.1",
  4. "description": "Import with sanity.",
  5. "engines": {
  6. "node": ">=4"
  7. },
  8. "main": "lib/index.js",
  9. "directories": {
  10. "test": "tests"
  11. },
  12. "files": [
  13. "*.md",
  14. "LICENSE",
  15. "docs",
  16. "lib",
  17. "config",
  18. "memo-parser/{*.js,LICENSE,*.md}"
  19. ],
  20. "scripts": {
  21. "prebuild": "rimraf lib",
  22. "build": "babel --quiet --out-dir lib src",
  23. "postbuild": "npm run copy-metafiles",
  24. "copy-metafiles": "node --require babel-register ./scripts/copyMetafiles",
  25. "watch": "npm run tests-only -- -- --watch",
  26. "pretest": "linklocal",
  27. "posttest": "eslint .",
  28. "mocha": "cross-env BABEL_ENV=test nyc -s mocha",
  29. "tests-only": "npm run mocha tests/src",
  30. "test": "npm run tests-only",
  31. "test-compiled": "npm run prepublish && BABEL_ENV=testCompiled mocha --compilers js:babel-register tests/src",
  32. "test-all": "node --require babel-register ./scripts/testAll",
  33. "prepublish": "not-in-publish || npm run build",
  34. "coveralls": "nyc report --reporter lcovonly && coveralls < ./coverage/lcov.info"
  35. },
  36. "repository": {
  37. "type": "git",
  38. "url": "https://github.com/benmosher/eslint-plugin-import"
  39. },
  40. "keywords": [
  41. "eslint",
  42. "eslintplugin",
  43. "es6",
  44. "jsnext",
  45. "modules",
  46. "import",
  47. "export"
  48. ],
  49. "author": "Ben Mosher <me@benmosher.com>",
  50. "license": "MIT",
  51. "bugs": {
  52. "url": "https://github.com/benmosher/eslint-plugin-import/issues"
  53. },
  54. "homepage": "https://github.com/benmosher/eslint-plugin-import",
  55. "devDependencies": {
  56. "@eslint/import-test-order-redirect-scoped": "file:./tests/files/order-redirect-scoped",
  57. "@test-scope/some-module": "file:./tests/files/symlinked-module",
  58. "@typescript-eslint/parser": "^2.23.0 || ^3.3.0",
  59. "array.prototype.flatmap": "^1.2.3",
  60. "babel-cli": "^6.26.0",
  61. "babel-core": "^6.26.3",
  62. "babel-eslint": "^8.2.6",
  63. "babel-plugin-istanbul": "^4.1.6",
  64. "babel-plugin-module-resolver": "^2.7.1",
  65. "babel-preset-es2015-argon": "latest",
  66. "babel-preset-flow": "^6.23.0",
  67. "babel-register": "^6.26.0",
  68. "babylon": "^6.18.0",
  69. "chai": "^4.2.0",
  70. "coveralls": "^3.1.0",
  71. "cross-env": "^4.0.0",
  72. "eslint": "^2 || ^3 || ^4 || ^5 || ^6 || ^7.2.0",
  73. "eslint-import-resolver-node": "file:./resolvers/node",
  74. "eslint-import-resolver-typescript": "^1.1.1",
  75. "eslint-import-resolver-webpack": "file:./resolvers/webpack",
  76. "eslint-import-test-order-redirect": "file:./tests/files/order-redirect",
  77. "eslint-module-utils": "file:./utils",
  78. "eslint-plugin-eslint-plugin": "^2.3.0",
  79. "eslint-plugin-import": "2.x",
  80. "eslint-plugin-json": "^2.1.2",
  81. "fs-copy-file-sync": "^1.1.1",
  82. "glob": "^7.1.6",
  83. "in-publish": "^2.0.1",
  84. "linklocal": "^2.8.2",
  85. "lodash.isarray": "^4.0.0",
  86. "mocha": "^3.5.3",
  87. "npm-which": "^3.0.1",
  88. "nyc": "^11.9.0",
  89. "redux": "^3.7.2",
  90. "rimraf": "^2.7.1",
  91. "semver": "^6.3.0",
  92. "sinon": "^2.4.1",
  93. "typescript": "~3.9.5",
  94. "typescript-eslint-parser": "^22.0.0"
  95. },
  96. "peerDependencies": {
  97. "eslint": "^2 || ^3 || ^4 || ^5 || ^6 || ^7.2.0"
  98. },
  99. "dependencies": {
  100. "array-includes": "^3.1.1",
  101. "array.prototype.flat": "^1.2.3",
  102. "contains-path": "^0.1.0",
  103. "debug": "^2.6.9",
  104. "doctrine": "1.5.0",
  105. "eslint-import-resolver-node": "^0.3.4",
  106. "eslint-module-utils": "^2.6.0",
  107. "has": "^1.0.3",
  108. "minimatch": "^3.0.4",
  109. "object.values": "^1.1.1",
  110. "read-pkg-up": "^2.0.0",
  111. "resolve": "^1.17.0",
  112. "tsconfig-paths": "^3.9.0"
  113. },
  114. "nyc": {
  115. "require": [
  116. "babel-register"
  117. ],
  118. "sourceMap": false,
  119. "instrument": false,
  120. "include": [
  121. "src/",
  122. "resolvers/"
  123. ]
  124. }
  125. }